/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *














 ** require fullcalendar/fullcalendar.print
 ** require ripple













 */

/* jquery.Jcrop.css v0.9.10 - MIT License */

/*
  The outer-most container in a typical Jcrop instance
  If you are having difficulty with formatting related to styles
  on a parent element, place any fixes here or in a like selector

  You can also style this element if you want to add a border, etc
  A better method for styling can be seen below with .jcrop-light
  (Add a class to the holder and style elements for that extended class)
*/

.jcrop-holder {
  direction: ltr;
  text-align: left;
}

/* These styles define the border lines */
.jcrop-vline,.jcrop-hline{background:#FFF url(Jcrop.gif) top left repeat;font-size:0;position:absolute;}
.jcrop-vline{height:100%;width:1px!important;}
.jcrop-hline{height:1px!important;width:100%;}
.jcrop-vline.right{right:0;}
.jcrop-hline.bottom{bottom:0;}

/* Handle style - size is set by Jcrop handleSize option (currently) */
.jcrop-handle{background-color:#333;border:1px #eee solid;font-size:1px;}

/* This style is used for invisible click targets */
.jcrop-tracker
{
  height: 100%; 
  width: 100%;
  -webkit-tap-highlight-color: transparent; /* "turn off" link highlight */
  -webkit-touch-callout: none;              /* disable callout, image save panel */
  -webkit-user-select: none;                /* disable cut copy paste */
}

/* Positioning of handles and drag bars */
.jcrop-handle.ord-n{left:50%;margin-left:-4px;margin-top:-4px;top:0;}
.jcrop-handle.ord-s{bottom:0;left:50%;margin-bottom:-4px;margin-left:-4px;}
.jcrop-handle.ord-e{margin-right:-4px;margin-top:-4px;right:0;top:50%;}
.jcrop-handle.ord-w{left:0;margin-left:-4px;margin-top:-4px;top:50%;}
.jcrop-handle.ord-nw{left:0;margin-left:-4px;margin-top:-4px;top:0;}
.jcrop-handle.ord-ne{margin-right:-4px;margin-top:-4px;right:0;top:0;}
.jcrop-handle.ord-se{bottom:0;margin-bottom:-4px;margin-right:-4px;right:0;}
.jcrop-handle.ord-sw{bottom:0;left:0;margin-bottom:-4px;margin-left:-4px;}
.jcrop-dragbar.ord-n,.jcrop-dragbar.ord-s{height:7px;width:100%;}
.jcrop-dragbar.ord-e,.jcrop-dragbar.ord-w{height:100%;width:7px;}
.jcrop-dragbar.ord-n{margin-top:-4px;}
.jcrop-dragbar.ord-s{bottom:0;margin-bottom:-4px;}
.jcrop-dragbar.ord-e{margin-right:-4px;right:0;}
.jcrop-dragbar.ord-w{margin-left:-4px;}

/* The "jcrop-light" class/extension */
.jcrop-light .jcrop-vline,.jcrop-light .jcrop-hline
{
	background:#FFF;
	filter:Alpha(opacity=70)!important;
	opacity:.70!important;
}
.jcrop-light .jcrop-handle
{
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background-color:#000;
	border-color:#FFF;
	border-radius:3px;
}

/* The "jcrop-dark" class/extension */
.jcrop-dark .jcrop-vline,.jcrop-dark .jcrop-hline
{
	background:#000;
	filter:Alpha(opacity=70)!important;
	opacity:.7!important;
}
.jcrop-dark .jcrop-handle
{
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background-color:#FFF;
	border-color:#000;
	border-radius:3px;
}

/* Fix for twitter bootstrap et al. */
.jcrop-holder img,img.jcrop-preview{ max-width: none; }


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/


.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        -ms-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        -ms-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        -ms-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
.toast-title {
    font-weight: 600
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.toast-message a, .toast-message label {
    color: #fff
}

.toast-message a:hover {
    color: #ccc;
    text-decoration: none
}

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
    -ms-filter: alpha(Opacity=80);
    filter: alpha(opacity=80)
}

.toast-close-button:focus, .toast-close-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4;
    -ms-filter: alpha(Opacity=40);
    filter: alpha(opacity=40)
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.toast-top-center {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-left {
    top: 12px;
    left: 12px
}

.toast-top-right {
    top: 12px;
    right: 12px
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px
}

#toast-container {
    position: fixed;
    z-index: 999999
}

#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#toast-container > div {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #fff;
    opacity: .8;
    -ms-filter: alpha(Opacity=80);
    filter: alpha(opacity=80)
}

#toast-container > :hover {
    -moz-box-shadow: 0 0 12px #000;
    -webkit-box-shadow: 0 0 12px #000;
    box-shadow: 0 0 12px #000;
    opacity: 1;
    -ms-filter: alpha(Opacity=100);
    filter: alpha(opacity=100);
    cursor: pointer
}

#toast-container > .toast-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important
}

#toast-container > .toast-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important
}

#toast-container > .toast-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important
}

#toast-container > .toast-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important
}

#toast-container.toast-bottom-center > div, #toast-container.toast-top-center > div {
    width: 300px;
    margin: auto
}

#toast-container.toast-bottom-full-width > div, #toast-container.toast-top-full-width > div {
    width: 96%;
    margin: auto
}

.toast {
    background-color: #030303
}

.toast-success {
    background-color: #51a351
}

.toast-error {
    background-color: #bd362f
}

.toast-info {
    background-color: #2f96b4
}

.toast-warning {
    background-color: #f89406
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: .4;
    -ms-filter: alpha(Opacity=40);
    filter: alpha(opacity=40)
}

@media all and (max-width: 240px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 11em
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 18em
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container > div {
        padding: 15px 15px 15px 50px;
        width: 25em
    }
}
/* line 25, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
body.swal2-in {
  overflow-y: hidden;
}

/* line 30, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-container {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  background-color: transparent;
  z-index: 1060;
}
/* line 42, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-container:not(.in) {
  pointer-events: none;
}
/* line 47, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-container.fade {
  transition: background-color .1s;
}
/* line 51, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-container.in {
  background-color: rgba(0, 0, 0, 0.4);
}

/* line 58, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal {
  background-color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  position: relative;
}
/* line 70, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal:focus {
  outline: none;
}
/* line 74, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal.loading {
  overflow-y: hidden;
}
/* line 78, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal h2 {
  color: #595959;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 60px;
  display: block;
}
/* line 91, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-spacer {
  height: 10px;
  color: transparent;
  border: 0;
}
/* line 97, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .styled {
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  margin: 0 5px;
  padding: 10px 32px;
}
/* line 109, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .styled:not(.loading)[disabled] {
  opacity: .4;
  cursor: no-drop;
}
/* line 115, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .styled.loading {
  box-sizing: border-box;
  border: 4px solid transparent;
  border-color: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: -2px 30px;
  vertical-align: top;
  background-color: transparent !important;
  color: transparent;
  cursor: default;
  border-radius: 100%;
  animation: rotate-loading 1.5s linear 0s infinite normal;
}
/* line 134, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal :not(.styled).loading::after {
  display: inline-block;
  content: '';
  margin-left: 5px;
  vertical-align: -1px;
  height: 6px;
  width: 6px;
  border: 3px solid #999999;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate-loading 1.5s linear 0s infinite normal;
}
/* line 149, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-image {
  margin: 20px auto;
  max-width: 100%;
}
/* line 154, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-close {
  font-size: 36px;
  line-height: 36px;
  font-family: serif;
  position: absolute;
  top: 5px;
  right: 13px;
  cursor: pointer;
  color: #cccccc;
  transition: color .1s ease;
}
/* line 165, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-close:hover {
  color: #d55;
}
/* line 170, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal > .swal2-input,
.swal2-modal > .swal2-file,
.swal2-modal > .swal2-textarea,
.swal2-modal > .swal2-select,
.swal2-modal > .swal2-radio,
.swal2-modal > .swal2-checkbox {
  display: none;
}
/* line 179, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-content {
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  position: relative;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  color: #545454;
}
/* line 191, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-input,
.swal2-modal .swal2-file,
.swal2-modal .swal2-textarea,
.swal2-modal .swal2-select,
.swal2-modal .swal2-radio,
.swal2-modal .swal2-checkbox {
  margin: 20px auto;
}
/* line 200, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-input,
.swal2-modal .swal2-file,
.swal2-modal .swal2-textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  font-size: 18px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  transition: border-color box-shadow .3s;
}
/* line 211, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-input.error,
.swal2-modal .swal2-file.error,
.swal2-modal .swal2-textarea.error {
  border-color: #f06e57;
}
/* line 215, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-input:focus,
.swal2-modal .swal2-file:focus,
.swal2-modal .swal2-textarea:focus {
  outline: none;
  box-shadow: 0 0 3px #c4e6f5;
  border: 1px solid #b4dbed;
}
/* line 220, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-input:focus::placeholder,
.swal2-modal .swal2-file:focus::placeholder,
.swal2-modal .swal2-textarea:focus::placeholder {
  transition: opacity .3s .03s ease;
  opacity: .8;
}
/* line 226, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-input::placeholder,
.swal2-modal .swal2-file::placeholder,
.swal2-modal .swal2-textarea::placeholder {
  color: #e6e6e6;
}
/* line 232, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-range input {
  float: left;
  width: 80%;
}
/* line 237, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-range output {
  float: right;
  width: 20%;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
/* line 245, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-range input,
.swal2-modal .swal2-range output {
  height: 43px;
  line-height: 43px;
  vertical-align: middle;
  margin: 20px auto;
  padding: 0;
}
/* line 255, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-input {
  height: 43px;
  padding: 0 12px;
}
/* line 259, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-input[type='number'] {
  max-width: 150px;
}
/* line 264, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-file {
  font-size: 20px;
}
/* line 268, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-textarea {
  height: 108px;
  padding: 12px;
}
/* line 273, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-select {
  color: #545454;
  font-size: inherit;
  padding: 5px 10px;
  min-width: 40%;
  max-width: 100%;
}
/* line 281, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-radio {
  border: 0;
}
/* line 285, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-radio label:not(:first-child) {
  margin-left: 20px;
}
/* line 290, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-radio input,
.swal2-modal .swal2-radio span {
  vertical-align: middle;
}
/* line 295, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-radio input {
  margin: 0 3px 0 0;
}
/* line 300, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-checkbox {
  color: #545454;
}
/* line 303, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-checkbox input,
.swal2-modal .swal2-checkbox span {
  vertical-align: middle;
}
/* line 309, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-validationerror {
  background-color: #f0f0f0;
  margin: 0 -20px;
  overflow: hidden;
  padding: 10px;
  color: gray;
  font-size: 16px;
  font-weight: 300;
  display: none;
}
/* line 319, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-modal .swal2-validationerror::before {
  content: '!';
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: #fff;
  line-height: 24px;
  text-align: center;
  margin-right: 10px;
}

@supports (-ms-accelerator: true) {
  /* line 336, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
  .swal2-range input {
    width: 100% !important;
  }
  /* line 340, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
  .swal2-range output {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 348, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
  .swal2-range input {
    width: 100% !important;
  }
  /* line 352, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
  .swal2-range output {
    display: none;
  }
}
/* line 358, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon {
  width: 80px;
  height: 80px;
  border: 4px solid transparent;
  border-radius: 50%;
  margin: 20px auto 30px;
  padding: 0;
  position: relative;
  box-sizing: content-box;
  cursor: default;
  user-select: none;
}
/* line 370, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-error {
  border-color: #f27474;
}
/* line 373, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-error .x-mark {
  position: relative;
  display: block;
}
/* line 378, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-error .line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #f27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}
/* line 387, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-error .line.left {
  transform: rotate(45deg);
  left: 17px;
}
/* line 392, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-error .line.right {
  transform: rotate(-45deg);
  right: 16px;
}
/* line 399, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-warning {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #f8bb86;
  border-color: #facea8;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
}
/* line 408, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-info {
  font-family: 'Open Sans', sans-serif;
  color: #3fc3ee;
  border-color: #9de0f6;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
}
/* line 417, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-question {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #87adbd;
  border-color: #c9dae1;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
}
/* line 426, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success {
  border-color: #a5dc86;
}
/* line 429, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success::before, .swal2-icon.swal2-success::after {
  content: '';
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: #fff;
  transform: rotate(45deg);
}
/* line 440, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}
/* line 449, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0 60px;
}
/* line 458, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success .placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
/* line 471, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success .fix {
  width: 7px;
  height: 90px;
  background-color: #fff;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}
/* line 484, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success .line {
  height: 5px;
  background-color: #a5dc86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
/* line 493, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success .line.tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}
/* line 502, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-icon.swal2-success .line.long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}

/* line 514, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps {
  font-weight: 600;
  margin: 0 0 20px;
  padding: 0;
}
/* line 522, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps li {
  display: inline-block;
  position: relative;
}
/* line 527, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle {
  background: #3085d6;
  border-radius: 2em;
  color: #fff;
  height: 2em;
  line-height: 2em;
  text-align: center;
  width: 2em;
  z-index: 20;
}
/* line 537, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle:first-child {
  margin-left: 0;
}
/* line 541, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle:last-child {
  margin-right: 0;
}
/* line 545, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
  background: #3085d6;
}
/* line 548, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle {
  background: #add8e6;
}
/* line 552, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
  background: #add8e6;
}
/* line 558, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-progresssteps .swal2-progressline {
  background: #3085d6;
  height: .4em;
  margin: 0 -1px;
  z-index: 10;
}

/* line 568, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
[class^='swal2'] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
/* line 617, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.show-swal2 {
  animation: showSweetAlert 0.3s;
}
/* line 620, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.show-swal2.no-animation {
  animation: none;
}

/* line 625, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.hide-swal2 {
  animation: hideSweetAlert 0.15s forwards;
}
/* line 628, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.hide-swal2.no-animation {
  animation: none;
}

@keyframes animate-success-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animate-success-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
/* line 713, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.animate-success-tip {
  animation: animate-success-tip 0.75s;
}

/* line 717, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.animate-success-long {
  animation: animate-success-long 0.75s;
}

/* line 723, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.swal2-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in;
}

@keyframes animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
/* line 744, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.animate-error-icon {
  animation: animate-error-icon 0.5s;
}

@keyframes animate-x-mark {
  0% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
/* line 773, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.animate-x-mark {
  animation: animate-x-mark 0.5s;
}

@keyframes pulse-warning {
  0% {
    border-color: #f8d486;
  }
  100% {
    border-color: #f8bb86;
  }
}
/* line 787, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/src/sweetalert2.scss */
.pulse-warning {
  animation: pulse-warning 0.75s infinite alternate;
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* line 1, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
body.swal2-in {
  overflow-y: hidden;
}

/* line 4, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  background-color: transparent;
  z-index: 1060;
}

/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-container:not(.in) {
  pointer-events: none;
}

/* line 21, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-container.fade {
  -webkit-transition: background-color .1s;
  transition: background-color .1s;
}

/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-container.in {
  background-color: rgba(0, 0, 0, 0.4);
}

/* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal {
  background-color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  position: relative;
}

/* line 38, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal:focus {
  outline: none;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal.loading {
  overflow-y: hidden;
}

/* line 42, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal h2 {
  color: #595959;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 60px;
  display: block;
}

/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-spacer {
  height: 10px;
  color: transparent;
  border: 0;
}

/* line 57, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .styled {
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  margin: 0 5px;
  padding: 10px 32px;
}

/* line 67, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .styled:not(.loading)[disabled] {
  opacity: .4;
  cursor: no-drop;
}

/* line 70, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .styled.loading {
  box-sizing: border-box;
  border: 4px solid transparent;
  border-color: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: -2px 30px;
  vertical-align: top;
  background-color: transparent !important;
  color: transparent;
  cursor: default;
  border-radius: 100%;
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  animation: rotate-loading 1.5s linear 0s infinite normal;
}

/* line 85, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal :not(.styled).loading::after {
  display: inline-block;
  content: '';
  margin-left: 5px;
  vertical-align: -1px;
  height: 6px;
  width: 6px;
  border: 3px solid #999999;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  animation: rotate-loading 1.5s linear 0s infinite normal;
}

/* line 97, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-image {
  margin: 20px auto;
  max-width: 100%;
}

/* line 100, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-close {
  font-size: 36px;
  line-height: 36px;
  font-family: serif;
  position: absolute;
  top: 5px;
  right: 13px;
  cursor: pointer;
  color: #cccccc;
  -webkit-transition: color .1s ease;
  transition: color .1s ease;
}

/* line 111, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-close:hover {
  color: #d55;
}

/* line 113, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal > .swal2-input,
.swal2-modal > .swal2-file,
.swal2-modal > .swal2-textarea,
.swal2-modal > .swal2-select,
.swal2-modal > .swal2-radio,
.swal2-modal > .swal2-checkbox {
  display: none;
}

/* line 120, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-content {
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  position: relative;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  color: #545454;
}

/* line 130, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input,
.swal2-modal .swal2-file,
.swal2-modal .swal2-textarea,
.swal2-modal .swal2-select,
.swal2-modal .swal2-radio,
.swal2-modal .swal2-checkbox {
  margin: 20px auto;
}

/* line 137, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input,
.swal2-modal .swal2-file,
.swal2-modal .swal2-textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  font-size: 18px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  -webkit-transition: border-color box-shadow .3s;
  transition: border-color box-shadow .3s;
}

/* line 148, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input.error,
.swal2-modal .swal2-file.error,
.swal2-modal .swal2-textarea.error {
  border-color: #f06e57;
}

/* line 152, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input:focus,
.swal2-modal .swal2-file:focus,
.swal2-modal .swal2-textarea:focus {
  outline: none;
  box-shadow: 0 0 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

/* line 158, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input:focus::-webkit-input-placeholder,
.swal2-modal .swal2-file:focus::-webkit-input-placeholder,
.swal2-modal .swal2-textarea:focus::-webkit-input-placeholder {
  -webkit-transition: opacity .3s .03s ease;
  transition: opacity .3s .03s ease;
  opacity: .8;
}

/* line 164, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input:focus::-moz-placeholder,
.swal2-modal .swal2-file:focus::-moz-placeholder,
.swal2-modal .swal2-textarea:focus::-moz-placeholder {
  -webkit-transition: opacity .3s .03s ease;
  transition: opacity .3s .03s ease;
  opacity: .8;
}

/* line 170, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input:focus:-ms-input-placeholder,
.swal2-modal .swal2-file:focus:-ms-input-placeholder,
.swal2-modal .swal2-textarea:focus:-ms-input-placeholder {
  -webkit-transition: opacity .3s .03s ease;
  transition: opacity .3s .03s ease;
  opacity: .8;
}

/* line 176, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input:focus::placeholder,
.swal2-modal .swal2-file:focus::placeholder,
.swal2-modal .swal2-textarea:focus::placeholder {
  -webkit-transition: opacity .3s .03s ease;
  transition: opacity .3s .03s ease;
  opacity: .8;
}

/* line 182, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input::-webkit-input-placeholder,
.swal2-modal .swal2-file::-webkit-input-placeholder,
.swal2-modal .swal2-textarea::-webkit-input-placeholder {
  color: #e6e6e6;
}

/* line 186, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input::-moz-placeholder,
.swal2-modal .swal2-file::-moz-placeholder,
.swal2-modal .swal2-textarea::-moz-placeholder {
  color: #e6e6e6;
}

/* line 190, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input:-ms-input-placeholder,
.swal2-modal .swal2-file:-ms-input-placeholder,
.swal2-modal .swal2-textarea:-ms-input-placeholder {
  color: #e6e6e6;
}

/* line 194, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input::placeholder,
.swal2-modal .swal2-file::placeholder,
.swal2-modal .swal2-textarea::placeholder {
  color: #e6e6e6;
}

/* line 198, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-range input {
  float: left;
  width: 80%;
}

/* line 201, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-range output {
  float: right;
  width: 20%;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

/* line 207, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-range input,
.swal2-modal .swal2-range output {
  height: 43px;
  line-height: 43px;
  vertical-align: middle;
  margin: 20px auto;
  padding: 0;
}

/* line 214, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input {
  height: 43px;
  padding: 0 12px;
}

/* line 217, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-input[type='number'] {
  max-width: 150px;
}

/* line 219, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-file {
  font-size: 20px;
}

/* line 221, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-textarea {
  height: 108px;
  padding: 12px;
}

/* line 224, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-select {
  color: #545454;
  font-size: inherit;
  padding: 5px 10px;
  min-width: 40%;
  max-width: 100%;
}

/* line 230, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-radio {
  border: 0;
}

/* line 232, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-radio label:not(:first-child) {
  margin-left: 20px;
}

/* line 234, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-radio input,
.swal2-modal .swal2-radio span {
  vertical-align: middle;
}

/* line 237, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-radio input {
  margin: 0 3px 0 0;
}

/* line 239, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-checkbox {
  color: #545454;
}

/* line 241, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-checkbox input,
.swal2-modal .swal2-checkbox span {
  vertical-align: middle;
}

/* line 244, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-validationerror {
  background-color: #f0f0f0;
  margin: 0 -20px;
  overflow: hidden;
  padding: 10px;
  color: gray;
  font-size: 16px;
  font-weight: 300;
  display: none;
}

/* line 253, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-modal .swal2-validationerror::before {
  content: '!';
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: #fff;
  line-height: 24px;
  text-align: center;
  margin-right: 10px;
}

@supports (-ms-accelerator: true) {
  /* line 266, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
  .swal2-range input {
    width: 100% !important;
  }

  /* line 268, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
  .swal2-range output {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 272, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
  .swal2-range input {
    width: 100% !important;
  }

  /* line 274, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
  .swal2-range output {
    display: none;
  }
}
/* line 277, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon {
  width: 80px;
  height: 80px;
  border: 4px solid transparent;
  border-radius: 50%;
  margin: 20px auto 30px;
  padding: 0;
  position: relative;
  box-sizing: content-box;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 291, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-error {
  border-color: #f27474;
}

/* line 293, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-error .x-mark {
  position: relative;
  display: block;
}

/* line 296, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-error .line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #f27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

/* line 304, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-error .line.left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}

/* line 308, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-error .line.right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}

/* line 312, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-warning {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #f8bb86;
  border-color: #facea8;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
}

/* line 319, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-info {
  font-family: 'Open Sans', sans-serif;
  color: #3fc3ee;
  border-color: #9de0f6;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
}

/* line 326, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-question {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #87adbd;
  border-color: #c9dae1;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
}

/* line 333, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success {
  border-color: #a5dc86;
}

/* line 335, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success::before, .swal2-icon.swal2-success::after {
  content: '';
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 344, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}

/* line 352, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 60px;
  transform-origin: 0 60px;
}

/* line 360, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success .placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

/* line 370, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success .fix {
  width: 7px;
  height: 90px;
  background-color: #fff;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 380, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success .line {
  height: 5px;
  background-color: #a5dc86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

/* line 387, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success .line.tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 393, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-icon.swal2-success .line.long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 400, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps {
  font-weight: 600;
  margin: 0 0 20px;
  padding: 0;
}

/* line 404, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps li {
  display: inline-block;
  position: relative;
}

/* line 407, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle {
  background: #3085d6;
  border-radius: 2em;
  color: #fff;
  height: 2em;
  line-height: 2em;
  text-align: center;
  width: 2em;
  z-index: 20;
}

/* line 416, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle:first-child {
  margin-left: 0;
}

/* line 418, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle:last-child {
  margin-right: 0;
}

/* line 420, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
  background: #3085d6;
}

/* line 422, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle {
  background: #add8e6;
}

/* line 424, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
  background: #add8e6;
}

/* line 426, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-progresssteps .swal2-progressline {
  background: #3085d6;
  height: .4em;
  margin: 0 -1px;
  z-index: 10;
}

/* line 432, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
[class^='swal2'] {
  -webkit-tap-highlight-color: transparent;
}

@-webkit-keyframes showSweetAlert {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes showSweetAlert {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes hideSweetAlert {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes hideSweetAlert {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}
/* line 483, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.show-swal2 {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s;
}

/* line 486, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.show-swal2.no-animation {
  -webkit-animation: none;
  animation: none;
}

/* line 490, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.hide-swal2 {
  -webkit-animation: hideSweetAlert 0.15s forwards;
  animation: hideSweetAlert 0.15s forwards;
}

/* line 493, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.hide-swal2.no-animation {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes animate-success-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animate-success-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@-webkit-keyframes animate-success-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes animate-success-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes rotatePlaceholder {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}
@keyframes rotatePlaceholder {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}
/* line 605, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.animate-success-tip {
  -webkit-animation: animate-success-tip 0.75s;
  animation: animate-success-tip 0.75s;
}

/* line 609, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.animate-success-long {
  -webkit-animation: animate-success-long 0.75s;
  animation: animate-success-long 0.75s;
}

/* line 613, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.swal2-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
/* line 637, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.animate-error-icon {
  -webkit-animation: animate-error-icon 0.5s;
  animation: animate-error-icon 0.5s;
}

@-webkit-keyframes animate-x-mark {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes animate-x-mark {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
/* line 683, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.animate-x-mark {
  -webkit-animation: animate-x-mark 0.5s;
  animation: animate-x-mark 0.5s;
}

@-webkit-keyframes pulse-warning {
  0% {
    border-color: #f8d486;
  }
  100% {
    border-color: #f8bb86;
  }
}
@keyframes pulse-warning {
  0% {
    border-color: #f8d486;
  }
  100% {
    border-color: #f8bb86;
  }
}
/* line 699, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/rails-assets-sweetalert2-5.1.1/app/assets/stylesheets/sweetalert2/dist/sweetalert2.scss */
.pulse-warning {
  -webkit-animation: pulse-warning 0.75s infinite alternate;
  animation: pulse-warning 0.75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: 'footable';
  src: url('fonts/footable.eot');
  src: url('fonts/footable.eot?#iefix') format('embedded-opentype'), url('fonts/footable.woff') format('woff'), url('fonts/footable.ttf') format('truetype'), url('fonts/footable.svg#footable') format('svg');
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: 'footable';
    src: url('fonts/footable.svg#footable') format('svg');
    font-weight: normal;
    font-style: normal;
  }
}
.footable {
  width: 100%;
  /** SORTING **/

  /** PAGINATION **/

}
.footable.breakpoint > tbody > tr.footable-detail-show > td {
  border-bottom: none;
}
.footable.breakpoint > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e001";
}
.footable.breakpoint > tbody > tr:hover:not(.footable-row-detail) {
  cursor: pointer;
}
.footable.breakpoint > tbody > tr > td.footable-cell-detail {
  background: #eee;
  border-top: none;
}
.footable.breakpoint > tbody > tr > td > span.footable-toggle {
  display: inline-block;
  font-family: 'footable';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  padding-right: 5px;
  font-size: 14px;
  color: #888888;
}
.footable.breakpoint > tbody > tr > td > span.footable-toggle:before {
  content: "\e000";
}
.footable.breakpoint.toggle-circle > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e005";
}
.footable.breakpoint.toggle-circle > tbody > tr > td > span.footable-toggle:before {
  content: "\e004";
}
.footable.breakpoint.toggle-circle-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e003";
}
.footable.breakpoint.toggle-circle-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e002";
}
.footable.breakpoint.toggle-square > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e007";
}
.footable.breakpoint.toggle-square > tbody > tr > td > span.footable-toggle:before {
  content: "\e006";
}
.footable.breakpoint.toggle-square-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e009";
}
.footable.breakpoint.toggle-square-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e008";
}
.footable.breakpoint.toggle-arrow > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e00f";
}
.footable.breakpoint.toggle-arrow > tbody > tr > td > span.footable-toggle:before {
  content: "\e011";
}
.footable.breakpoint.toggle-arrow-small > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e013";
}
.footable.breakpoint.toggle-arrow-small > tbody > tr > td > span.footable-toggle:before {
  content: "\e015";
}
.footable.breakpoint.toggle-arrow-circle > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e01b";
}
.footable.breakpoint.toggle-arrow-circle > tbody > tr > td > span.footable-toggle:before {
  content: "\e01d";
}
.footable.breakpoint.toggle-arrow-circle-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e00b";
}
.footable.breakpoint.toggle-arrow-circle-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e00d";
}
.footable.breakpoint.toggle-arrow-tiny > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e01f";
}
.footable.breakpoint.toggle-arrow-tiny > tbody > tr > td > span.footable-toggle:before {
  content: "\e021";
}
.footable.breakpoint.toggle-arrow-alt > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e017";
}
.footable.breakpoint.toggle-arrow-alt > tbody > tr > td > span.footable-toggle:before {
  content: "\e019";
}
.footable.breakpoint.toggle-medium > tbody > tr > td > span.footable-toggle {
  font-size: 18px;
}
.footable.breakpoint.toggle-large > tbody > tr > td > span.footable-toggle {
  font-size: 24px;
}
.footable > thead > tr > th {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
}
.footable > thead > tr > th.footable-sortable:hover {
  cursor: pointer;
}
.footable > thead > tr > th.footable-sorted > span.footable-sort-indicator:before {
  content: "\e013";
}
.footable > thead > tr > th.footable-sorted-desc > span.footable-sort-indicator:before {
  content: "\e012";
}
.footable > thead > tr > th > span.footable-sort-indicator {
  display: inline-block;
  font-family: 'footable';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  padding-left: 5px;
}
.footable > thead > tr > th > span.footable-sort-indicator:before {
  content: "\e022";
}
.footable > tfoot .pagination {
  margin: 0;
}
.footable.no-paging .hide-if-no-paging {
  display: none;
}
.footable-row-detail-inner {
  display: table;
}
.footable-row-detail-row {
  display: table-row;
  line-height: 1.5em;
}
.footable-row-detail-group {
  display: block;
  line-height: 2em;
  font-size: 1.2em;
  font-weight: bold;
}
.footable-row-detail-name {
  display: table-cell;
  font-weight: bold;
  padding-right: 0.5em;
}
.footable-row-detail-value {
  display: table-cell;
}
.footable-odd {
  background-color: #f7f7f7;
}
/* iCheck plugin Square skin, red
----------------------------------- */

.icheckbox_square-red,
.iradio_square-red {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(red.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_square-red {
    background-position: 0 0;
}
.icheckbox_square-red.hover {
    background-position: -24px 0;
}
.icheckbox_square-red.checked {
    background-position: -48px 0;
}
.icheckbox_square-red.disabled {
    background-position: -72px 0;
    cursor: default;
}
.icheckbox_square-red.checked.disabled {
    background-position: -96px 0;
}

.iradio_square-red {
    background-position: -120px 0;
    margin: 5px;
}
.iradio_square-red.hover {
    background-position: -144px 0;
}
.iradio_square-red-green.checked {
    background-position: -168px 0;
}
.iradio_square-red.disabled {
    background-position: -192px 0;
    cursor: default;
}
.iradio_square-red.checked.disabled {
    background-position: -216px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_square-red,
    .iradio_square-red {
        background-image: url(red@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}





/* iCheck plugin Square skin, green
----------------------------------- */
.icheckbox_square-green,
.iradio_square-green {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(green.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_square-green {
    background-position: 0 0;
    background-color: #eee !important;
}
.icheckbox_square-green.hover {
    background-position: -24px 0;
}
.icheckbox_square-green.checked {
    background-position: -48px 0;
}
.icheckbox_square-green.disabled {
    background-position: -72px 0;
    cursor: default;
}
.icheckbox_square-green.checked.disabled {
    background-position: -96px 0;
}

.iradio_square-green {
    background-position: -120px 0;
    margin: 5px;
}
.iradio_square-green.hover {
    background-position: -144px 0;
}
.iradio_square-green.checked {
    background-position: -168px 0;
}
.iradio_square-green.disabled {
    background-position: -192px 0;
    cursor: default;
}
.iradio_square-green.checked.disabled {
    background-position: -216px 0;
}

/* HiDPI support
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_square-green,
    .iradio_square-green {
        background-image: url(green@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}
*/


/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */

.datepicker {
    padding: 4px;
    border-radius: 4px;
    direction: ltr;
    /*.dow {
          border-top: 1px solid #ddd !important;
      }*/
}
.datepicker-inline {
    width: 220px;
}
.datepicker.datepicker-rtl {
    direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
    float: right;
}
.datepicker-dropdown {
    top: 0;
    left: 0;
}
.datepicker-dropdown:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    position: absolute;
}
.datepicker-dropdown:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-top: 0;
    position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
    left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
    left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
    right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
    right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
    top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
    top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #fff;
}
.datepicker > div {
    display: none;
}
.datepicker.days div.datepicker-days {
    display: block;
}
.datepicker.months div.datepicker-months {
    display: block;
}
.datepicker.years div.datepicker-years {
    display: block;
}
.datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
    background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
    background: #eeeeee;
    cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
    color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    background: none;
    color: #999999;
    cursor: default;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
    color: #000000;
    background-color: #ffdb99;
    border-color: #ffb733;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    color: #000000;
    background-color: #ffcd70;
    border-color: #f59e00;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    background-image: none;
}
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled:hover.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today:hover[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today:hover.disabled:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled:hover.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today:hover[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today:hover.disabled:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled:hover.disabled:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today:hover[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today:hover.disabled.active,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled:hover.disabled.active,
.datepicker table tr td.today[disabled].active,
.datepicker table tr td.today:hover[disabled].active,
.datepicker table tr td.today.disabled[disabled].active,
.datepicker table tr td.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today:hover.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover.active {
    background-color: #ffdb99;
    border-color: #ffb733;
}
.datepicker table tr td.today:hover:hover {
    color: #000;
}
.datepicker table tr td.today.active:hover {
    color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
    background: #eeeeee;
    border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
    color: #000000;
    background-color: #f7ca77;
    border-color: #f1a417;
    border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
    color: #000000;
    background-color: #f4bb51;
    border-color: #bf800c;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
    background-image: none;
}
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today:hover.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled:hover.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today:hover[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today:hover.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled:hover.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today:hover[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today:hover.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled:hover.disabled:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today:hover[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today:hover.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled:hover.disabled.active,
.datepicker table tr td.range.today[disabled].active,
.datepicker table tr td.range.today:hover[disabled].active,
.datepicker table tr td.range.today.disabled[disabled].active,
.datepicker table tr td.range.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today:hover.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {
    background-color: #f7ca77;
    border-color: #f1a417;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
    color: #ffffff;
    background-color: #999999;
    border-color: #555555;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
    color: #ffffff;
    background-color: #858585;
    border-color: #373737;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
    background-image: none;
}
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled:hover.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected:hover[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected:hover.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled:hover.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected:hover[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected:hover.disabled:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled:hover.disabled:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected:hover[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected:hover.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled:hover.disabled.active,
.datepicker table tr td.selected[disabled].active,
.datepicker table tr td.selected:hover[disabled].active,
.datepicker table tr td.selected.disabled[disabled].active,
.datepicker table tr td.selected.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected:hover.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {
    background-color: #999999;
    border-color: #555555;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    background-image: none;
}
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
    background-color: #428bca;
    border-color: #357ebd;
}
.datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    border-radius: 4px;
}
.datepicker table tr td span:hover {
    background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
    background: none;
    color: #999999;
    cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    background-image: none;
}
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active:hover.disabled:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled:hover.disabled:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active:hover[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active:hover.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled:hover.disabled.active,
.datepicker table tr td span.active[disabled].active,
.datepicker table tr td span.active:hover[disabled].active,
.datepicker table tr td span.active.disabled[disabled].active,
.datepicker table tr td span.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active:hover.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {
    background-color: #428bca;
    border-color: #357ebd;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
    color: #999999;
}
.datepicker th.datepicker-switch {
    width: 145px;
}
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
    cursor: pointer;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
    background: #eeeeee;
}
.datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle;
}
.datepicker thead tr:first-child th.cw {
    cursor: default;
    background-color: transparent;
}
.input-group.date .input-group-addon i {
    cursor: pointer;
    width: 16px;
    height: 16px;
}
.input-daterange input {
    text-align: center;
}
.input-daterange input:first-child {
    border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
    border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
    width: auto;
    min-width: 16px;
    padding: 4px 5px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eeeeee;
    border-width: 1px 0;
    margin-left: -5px;
    margin-right: -5px;
}
.datepicker.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    color: #333333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.428571429;
}
.datepicker.dropdown-menu th,
.datepicker.dropdown-menu td {
    padding: 4px 5px;
}
/*!
 * ClockPicker v{package.version} for Bootstrap (http://weareoutman.github.io/clockpicker/)
 * Copyright 2014 Wang Shenwei.
 * Licensed under MIT (https://github.com/weareoutman/clockpicker/blob/gh-pages/LICENSE)
 */


.clockpicker .input-group-addon {
	cursor: pointer;
}
.clockpicker-moving {
	cursor: move;
}
.clockpicker-align-left.popover > .arrow {
	left: 25px;
}
.clockpicker-align-top.popover > .arrow {
	top: 17px;
}
.clockpicker-align-right.popover > .arrow {
	left: auto;
	right: 25px;
}
.clockpicker-align-bottom.popover > .arrow {
	top: auto;
	bottom: 6px;
}
.clockpicker-popover .popover-title {
	background-color: #fff;
	color: #999;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
}
.clockpicker-popover .popover-title span {
	cursor: pointer;
}
.clockpicker-popover .popover-content {
	background-color: #f8f8f8;
	padding: 12px;
}
.popover-content:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.clockpicker-plate {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	width: 200px;
	height: 200px;
	overflow: visible;
	position: relative;
	/* Disable text selection highlighting. Thanks to Hermanya */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.clockpicker-canvas,
.clockpicker-dial {
	width: 200px;
	height: 200px;
	position: absolute;
	left: -1px;
	top: -1px;
}
.clockpicker-minutes {
	visibility: hidden;
}
.clockpicker-tick {
	border-radius: 50%;
	color: #666;
	line-height: 26px;
	text-align: center;
	width: 26px;
	height: 26px;
	position: absolute;
	cursor: pointer;
}
.clockpicker-tick.active,
.clockpicker-tick:hover {
	background-color: rgb(192, 229, 247);
	background-color: rgba(0, 149, 221, .25);
}
.clockpicker-button {
	background-image: none;
	background-color: #fff;
	border-width: 1px 0 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	margin: 0;
	padding: 10px 0;
}
.clockpicker-button:hover {
	background-image: none;
	background-color: #ebebeb;
}
.clockpicker-button:focus {
	outline: none!important;
}
.clockpicker-dial {
	-webkit-transition: -webkit-transform 350ms, opacity 350ms;
	-moz-transition: -moz-transform 350ms, opacity 350ms;
	-ms-transition: -ms-transform 350ms, opacity 350ms;
	-o-transition: -o-transform 350ms, opacity 350ms;
	transition: transform 350ms, opacity 350ms;
}
.clockpicker-dial-out {
	opacity: 0;
}
.clockpicker-hours.clockpicker-dial-out {
	-webkit-transform: scale(1.2, 1.2);
	-moz-transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
	-o-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}
.clockpicker-minutes.clockpicker-dial-out {
	-webkit-transform: scale(.8, .8);
	-moz-transform: scale(.8, .8);
	-ms-transform: scale(.8, .8);
	-o-transform: scale(.8, .8);
	transform: scale(.8, .8);
}
.clockpicker-canvas {
	-webkit-transition: opacity 175ms;
	-moz-transition: opacity 175ms;
	-ms-transition: opacity 175ms;
	-o-transition: opacity 175ms;
	transition: opacity 175ms;
}
.clockpicker-canvas-out {
	opacity: 0.25;
}
.clockpicker-canvas-bearing,
.clockpicker-canvas-fg {
	stroke: none;
	fill: rgb(0, 149, 221);
}
.clockpicker-canvas-bg {
	stroke: none;
	fill: rgb(192, 229, 247);
}
.clockpicker-canvas-bg-trans {
	fill: rgba(0, 149, 221, .25);
}
.clockpicker-canvas line {
	stroke: rgb(0, 149, 221);
	stroke-width: 1;
	stroke-linecap: round;
	/*shape-rendering: crispEdges;*/
}
.clockpicker-button.am-button {
	margin: 1px;
	padding: 5px;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 4px;
	
}
.clockpicker-button.pm-button {
	margin: 1px 1px 1px 136px;
	padding: 5px;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 4px;
}
/*!
 * Bootstrap Colorpicker
 * http://mjolnic.github.io/bootstrap-colorpicker/
 *
 * Originally written by (c) 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0.txt
 *
 */


.colorpicker-saturation {
  float: left;
  width: 100px;
  height: 100px;
  cursor: crosshair;
  background-image: url("images/bootstrap-colorpicker/saturation.png");
}

.colorpicker-saturation i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: -4px 0 0 -4px;
  border: 1px solid #000;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

.colorpicker-saturation i b {
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

.colorpicker-hue,
.colorpicker-alpha {
  float: left;
  width: 15px;
  height: 100px;
  margin-bottom: 4px;
  margin-left: 4px;
  cursor: row-resize;
}

.colorpicker-hue i,
.colorpicker-alpha i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -1px;
  background: #000;
  border-top: 1px solid #fff;
}

.colorpicker-hue {
  background-image: url("images/bootstrap-colorpicker/hue.png");
}

.colorpicker-alpha {
  display: none;
  background-image: url("images/bootstrap-colorpicker/alpha.png");
}

.colorpicker {
  top: 0;
  left: 0;
  z-index: 2500;
  min-width: 130px;
  padding: 4px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  *zoom: 1;
}

.colorpicker:before,
.colorpicker:after {
  display: table;
  line-height: 0;
  content: "";
}

.colorpicker:after {
  clear: both;
}

.colorpicker:before {
  position: absolute;
  top: -7px;
  left: 6px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.colorpicker:after {
  position: absolute;
  top: -6px;
  left: 7px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: '';
}

.colorpicker div {
  position: relative;
}

.colorpicker.colorpicker-with-alpha {
  min-width: 140px;
}

.colorpicker.colorpicker-with-alpha .colorpicker-alpha {
  display: block;
}

.colorpicker-color {
  height: 10px;
  margin-top: 5px;
  clear: both;
  background-image: url("images/bootstrap-colorpicker/alpha.png");
  background-position: 0 100%;
}

.colorpicker-color div {
  height: 10px;
}

.colorpicker-element .input-group-addon i,
.colorpicker-element .add-on i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  cursor: pointer;
}

.colorpicker.colorpicker-inline {
  position: relative;
  z-index: auto;
  display: inline-block;
  float: none;
}

.colorpicker.colorpicker-horizontal {
  width: 110px;
  height: auto;
  min-width: 110px;
}

.colorpicker.colorpicker-horizontal .colorpicker-saturation {
  margin-bottom: 4px;
}

.colorpicker.colorpicker-horizontal .colorpicker-color {
  width: 100px;
}

.colorpicker.colorpicker-horizontal .colorpicker-hue,
.colorpicker.colorpicker-horizontal .colorpicker-alpha {
  float: left;
  width: 100px;
  height: 15px;
  margin-bottom: 4px;
  margin-left: 0;
  cursor: col-resize;
}

.colorpicker.colorpicker-horizontal .colorpicker-hue i,
.colorpicker.colorpicker-horizontal .colorpicker-alpha i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 15px;
  margin-top: 0;
  background: #ffffff;
  border: none;
}

.colorpicker.colorpicker-horizontal .colorpicker-hue {
  background-image: url("images/bootstrap-colorpicker/hue-horizontal.png");
}

.colorpicker.colorpicker-horizontal .colorpicker-alpha {
  background-image: url("images/bootstrap-colorpicker/alpha-horizontal.png");
}

.colorpicker.colorpicker-hidden {
  display: none;
}

.colorpicker.colorpicker-visible {
  display: block;
}

.colorpicker-inline.colorpicker-visible {
  display: inline-block;
}
.chosen-select {
    width: 100%; }

.chosen-select-deselect {
    width: 100%; }

.chosen-container {
    display: inline-block;
    font-size: 13px;
    position: relative;
    vertical-align: middle; }
.chosen-container .chosen-drop {
    background: #fff;
    border: 1px solid #e5e6e7;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-top: -1px;
    position: absolute;
    top: 100%;
    left: -9000px;
    z-index: 1060; }
.chosen-container.chosen-with-drop .chosen-drop {
    left: 0;
    right: 0; }
.chosen-container .chosen-results {
    color: #555555;
    margin: 0 4px 4px 0;
    max-height: 240px;
    padding: 0 0 0 4px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
.chosen-container .chosen-results li {
    display: none;
    line-height: 1.42857;
    list-style: none;
    margin: 0;
    padding: 5px 6px; }
.chosen-container .chosen-results li em {
    background: #feffde;
    font-style: normal; }
.chosen-container .chosen-results li.group-result {
    display: list-item;
    cursor: default;
    color: #999;
    font-weight: bold; }
.chosen-container .chosen-results li.group-option {
    padding-left: 15px; }
.chosen-container .chosen-results li.active-result {
    cursor: pointer;
    display: list-item; }
.chosen-container .chosen-results li.highlighted {
    background-color: #1ab394;
    background-image: none;
    color: white; }
.chosen-container .chosen-results li.highlighted em {
    background: transparent; }
.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #777777; }
.chosen-container .chosen-results .no-results {
    background: #eeeeee;
    display: list-item; }
.chosen-container .chosen-results-scroll {
    background: white;
    margin: 0 4px;
    position: absolute;
    text-align: center;
    width: 321px;
    z-index: 1; }
.chosen-container .chosen-results-scroll span {
    display: inline-block;
    height: 1.42857;
    text-indent: -5000px;
    width: 9px; }
.chosen-container .chosen-results-scroll-down {
    bottom: 0; }
.chosen-container .chosen-results-scroll-down span {
    background: url("chosen-sprite.png") no-repeat -4px -3px; }
.chosen-container .chosen-results-scroll-up span {
    background: url("chosen-sprite.png") no-repeat -22px -3px; }

.chosen-container-single .chosen-single {
    background-color: #fff;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    border: 1px solid #e5e6e7;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #555555;
    display: block;
    height: 34px;
    overflow: hidden;
    line-height: 24px;
    padding: 0 0 0 8px;
    position: relative;
    text-decoration: none;
    white-space: nowrap; }
.chosen-container-single .chosen-single span {
    display: block;
    margin-right: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
.chosen-container-single .chosen-single abbr {
    background: url("chosen-sprite.png") right top no-repeat;
    display: block;
    font-size: 1px;
    height: 10px;
    position: absolute;
    right: 26px;
    top: 12px;
    width: 12px; }
.chosen-container-single .chosen-single abbr:hover {
    background-position: right -11px; }
.chosen-container-single .chosen-single.chosen-disabled .chosen-single abbr:hover {
    background-position: right 2px; }
.chosen-container-single .chosen-single div {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 18px; }
.chosen-container-single .chosen-single div b {
    background: url("chosen-sprite.png") no-repeat 0 7px;
    display: block;
    height: 100%;
    width: 100%; }
.chosen-container-single .chosen-default {
    color: #777777; }
.chosen-container-single .chosen-search {
    margin: 0;
    padding: 3px 4px;
    position: relative;
    white-space: nowrap;
    z-index: 1000; }
.chosen-container-single .chosen-search input[type="text"] {
    background: url("chosen-sprite.png") no-repeat 100% -20px, #fff;
    border: 1px solid #e5e6e7;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    margin: 1px 0;
    padding: 4px 20px 4px 4px;
    width: 100%; }
.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box; }

.chosen-container-single-nosearch .chosen-search input[type="text"] {
    position: absolute;
    left: -9000px; }

.chosen-container-multi .chosen-choices {
    background-color: #fff;
    border: 1px solid #e5e6e7;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    cursor: text;
    height: auto !important;
    height: 1%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative; }
.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none; }
.chosen-container-multi .chosen-choices .search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap; }
.chosen-container-multi .chosen-choices .search-field input[type="text"] {
    background: transparent !important;
    border: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #555555;
    height: 32px;
    margin: 0;
    padding: 4px;
    outline: 0; }
.chosen-container-multi .chosen-choices .search-field .default {
    color: #999; }
.chosen-container-multi .chosen-choices .search-choice {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background-color: #eeeeee;
    border: 1px solid #e5e6e7;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, white 0%, #eeeeee 100%);
    background-image: linear-gradient(to bottom, white 0%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
    -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);
    color: #333333;
    cursor: default;
    line-height: 13px;
    margin: 6px 0 3px 5px;
    padding: 3px 20px 3px 5px;
    position: relative; }
.chosen-container-multi .chosen-choices .search-choice .search-choice-close {
    background: url("chosen-sprite.png") right top no-repeat;
    display: block;
    font-size: 1px;
    height: 10px;
    position: absolute;
    right: 4px;
    top: 5px;
    width: 12px;
    cursor: pointer; }
.chosen-container-multi .chosen-choices .search-choice .search-choice-close:hover {
    background-position: right -11px; }
.chosen-container-multi .chosen-choices .search-choice-focus {
    background: #d4d4d4; }
.chosen-container-multi .chosen-choices .search-choice-focus .search-choice-close {
    background-position: right -11px; }
.chosen-container-multi .chosen-results {
    margin: 0 0 0 0;
    padding: 0; }
.chosen-container-multi .chosen-drop .result-selected {
    display: none; }

.chosen-container-active .chosen-single {
    border: 1px solid #e5e6e7;
    -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; }
.chosen-container-active.chosen-with-drop .chosen-single {
    background-color: #fff;
    border: 1px solid #1ab394;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    -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; }
.chosen-container-active.chosen-with-drop .chosen-single div {
    background: transparent;
    border-left: none; }
.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 7px; }
.chosen-container-active .chosen-choices {
    border: 1px solid #1ab394;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    -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; }
.chosen-container-active .chosen-choices .search-field input[type="text"] {
    color: #111 !important; }
.chosen-container-active.chosen-with-drop .chosen-choices {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

.chosen-disabled {
    cursor: default;
    opacity: 0.5 !important; }
.chosen-disabled .chosen-single {
    cursor: default; }
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default; }

.chosen-rtl {
    text-align: right; }
.chosen-rtl .chosen-single {
    padding: 0 8px 0 0;
    overflow: visible; }
.chosen-rtl .chosen-single span {
    margin-left: 26px;
    margin-right: 0;
    direction: rtl; }
.chosen-rtl .chosen-single div {
    left: 7px;
    right: auto; }
.chosen-rtl .chosen-single abbr {
    left: 26px;
    right: auto; }
.chosen-rtl .chosen-choices .search-field input[type="text"] {
    direction: rtl; }
.chosen-rtl .chosen-choices li {
    float: right; }
.chosen-rtl .chosen-choices .search-choice {
    margin: 6px 5px 3px 0;
    padding: 3px 5px 3px 19px; }
.chosen-rtl .chosen-choices .search-choice .search-choice-close {
    background-position: right top;
    left: 4px;
    right: auto; }
.chosen-rtl.chosen-container-single .chosen-results {
    margin: 0 0 4px 4px;
    padding: 0 4px 0 0; }
.chosen-rtl .chosen-results .group-option {
    padding-left: 0;
    padding-right: 15px; }
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
    border-right: none; }
.chosen-rtl .chosen-search input[type="text"] {
    background: url("chosen-sprite.png") no-repeat -28px -20px, #fff;
    direction: rtl;
    padding: 4px 5px 4px 20px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
    .chosen-rtl .chosen-search input[type="text"],
    .chosen-container-single .chosen-single abbr,
    .chosen-container-single .chosen-single div b,
    .chosen-container-single .chosen-search input[type="text"],
    .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
    .chosen-container .chosen-results-scroll-down span,
    .chosen-container .chosen-results-scroll-up span {
        background-image: url("chosen-sprite@2x.png") !important;
        background-size: 52px 37px !important;
        background-repeat: no-repeat !important; } }

@font-face {
    font-family: "summernote";
    font-style: normal;
    font-weight: normal;
    src: url("/assets/summernote.eot?dc97c88102d55aed645e5f227c58ba5b");
    /*
    src: url("/assets/summernote.eot?#iefix") format("embedded-opentype"), url("/assets/summernote.woff?dc97c88102d55aed645e5f227c58ba5b") format("woff"), url("/assets/summernote.ttf?dc97c88102d55aed645e5f227c58ba5b") format("truetype")
     */
}

[class^="note-icon-"]:before,
[class*=" note-icon-"]:before {
    display: inline-block;
    font: normal normal normal 14px summernote;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    text-decoration: inherit;
    text-rendering: auto;
    text-transform: none;
    vertical-align: middle;
    speak: none;
    -moz-osx-font-smoothing: grayscale
}

.note-icon-align-center:before {
    content: "\f101"
}

.note-icon-align-indent:before {
    content: "\f102"
}

.note-icon-align-justify:before {
    content: "\f103"
}

.note-icon-align-left:before {
    content: "\f104"
}

.note-icon-align-outdent:before {
    content: "\f105"
}

.note-icon-align-right:before {
    content: "\f106"
}

.note-icon-align:before {
    content: "\f107"
}

.note-icon-arrows-alt:before {
    content: "\f108"
}

.note-icon-bold:before {
    content: "\f109"
}

.note-icon-caret:before {
    content: "\f10a"
}

.note-icon-chain-broken:before {
    content: "\f10b"
}

.note-icon-circle:before {
    content: "\f10c"
}

.note-icon-close:before {
    content: "\f10d"
}

.note-icon-code:before {
    content: "\f10e"
}

.note-icon-eraser:before {
    content: "\f10f"
}

.note-icon-font:before {
    content: "\f110"
}

.note-icon-frame:before {
    content: "\f111"
}

.note-icon-italic:before {
    content: "\f112"
}

.note-icon-link:before {
    content: "\f113"
}

.note-icon-magic:before {
    content: "\f114"
}

.note-icon-menu-check:before {
    content: "\f115"
}

.note-icon-minus:before {
    content: "\f116"
}

.note-icon-orderedlist:before {
    content: "\f117"
}

.note-icon-pencil:before {
    content: "\f118"
}

.note-icon-picture:before {
    content: "\f119"
}

.note-icon-question:before {
    content: "\f11a"
}

.note-icon-redo:before {
    content: "\f11b"
}

.note-icon-special-character:before {
    content: "\f11c"
}

.note-icon-square:before {
    content: "\f11d"
}

.note-icon-strikethrough:before {
    content: "\f11e"
}

.note-icon-subscript:before {
    content: "\f11f"
}

.note-icon-summernote:before {
    content: "\f120"
}

.note-icon-superscript:before {
    content: "\f121"
}

.note-icon-table:before {
    content: "\f122"
}

.note-icon-text-height:before {
    content: "\f123"
}

.note-icon-trash:before {
    content: "\f124"
}

.note-icon-underline:before {
    content: "\f125"
}

.note-icon-undo:before {
    content: "\f126"
}

.note-icon-unorderedlist:before {
    content: "\f127"
}

.note-icon-video:before {
    content: "\f128"
}

.note-editor {
    position: relative
}

.note-editor .note-dropzone {
    position: absolute;
    z-index: 100;
    display: none;
    color: #87cefa;
    background-color: white;
    opacity: .95
}

.note-editor .note-dropzone .note-dropzone-message {
    display: table-cell;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle
}

.note-editor .note-dropzone.hover {
    color: #098ddf
}

.note-editor.dragover .note-dropzone {
    display: table
}

.note-editor .note-editing-area {
    position: relative
}

.note-editor .note-editing-area .note-editable {
    outline: 0
}

.note-editor .note-editing-area .note-editable sup {
    vertical-align: super
}

.note-editor .note-editing-area .note-editable sub {
    vertical-align: sub
}

.note-editor.note-frame {
    border: 1px solid #a9a9a9
}

.note-editor.note-frame.codeview .note-editing-area .note-editable {
    display: none
}

.note-editor.note-frame.codeview .note-editing-area .note-codable {
    display: block
}

.note-editor.note-frame .note-editing-area {
    overflow: hidden
}

.note-editor.note-frame .note-editing-area .note-editable {
    padding: 10px;
    overflow: auto;
    color: #000;
    background-color: #fff
}

.note-editor.note-frame .note-editing-area .note-editable[contenteditable="false"] {
    background-color: #e5e5e5
}

.note-editor.note-frame .note-editing-area .note-codable {
    display: none;
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    font-family: Menlo, Monaco, monospace, sans-serif;
    font-size: 14px;
    color: #ccc;
    background-color: #222;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    resize: none
}

.note-editor.note-frame.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%!important
}

.note-editor.note-frame.fullscreen .note-editable {
    background-color: white
}

.note-editor.note-frame.fullscreen .note-resizebar {
    display: none
}

.note-editor.note-frame .note-statusbar {
    background-color: #f5f5f5;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.note-editor.note-frame .note-statusbar .note-resizebar {
    width: 100%;
    height: 8px;
    padding-top: 1px;
    cursor: ns-resize
}

.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar {
    width: 20px;
    margin: 1px auto;
    border-top: 1px solid #a9a9a9
}

.note-editor.note-frame .note-placeholder {
    padding: 10px
}

.note-popover.popover {
    max-width: none
}

.note-popover.popover .popover-content a {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle
}

.note-popover.popover .arrow {
    left: 20px!important
}

.note-popover .popover-content,
.panel-heading.note-toolbar {
    padding: 0 0 5px 5px;
    margin: 0
}

.note-popover .popover-content>.btn-group,
.panel-heading.note-toolbar>.btn-group {
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 0
}

.note-popover .popover-content .btn-group .note-table,
.panel-heading.note-toolbar .btn-group .note-table {
    min-width: 0;
    padding: 5px
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker {
    font-size: 18px
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {
    position: absolute!important;
    z-index: 3;
    width: 10em;
    height: 10em;
    cursor: pointer
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {
    position: relative!important;
    z-index: 1;
    width: 5em;
    height: 5em;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {
    position: absolute!important;
    z-index: 2;
    width: 1em;
    height: 1em;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat
}

.note-popover .popover-content .note-style h1,
.panel-heading.note-toolbar .note-style h1,
.note-popover .popover-content .note-style h2,
.panel-heading.note-toolbar .note-style h2,
.note-popover .popover-content .note-style h3,
.panel-heading.note-toolbar .note-style h3,
.note-popover .popover-content .note-style h4,
.panel-heading.note-toolbar .note-style h4,
.note-popover .popover-content .note-style h5,
.panel-heading.note-toolbar .note-style h5,
.note-popover .popover-content .note-style h6,
.panel-heading.note-toolbar .note-style h6,
.note-popover .popover-content .note-style blockquote,
.panel-heading.note-toolbar .note-style blockquote {
    margin: 0
}

.note-popover .popover-content .note-color .dropdown-toggle,
.panel-heading.note-toolbar .note-color .dropdown-toggle {
    width: 20px;
    padding-left: 5px
}

.note-popover .popover-content .note-color .dropdown-menu,
.panel-heading.note-toolbar .note-color .dropdown-menu {
    min-width: 340px
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group {
    margin: 0
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group:first-child,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group:first-child {
    margin: 0 5px
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-palette-title,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-palette-title {
    margin: 2px 7px;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #eee
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset {
    width: 100%;
    padding: 0 3px;
    margin: 3px;
    font-size: 11px;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-row,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-row {
    height: 20px
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset:hover,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset:hover {
    background: #eee
}

.note-popover .popover-content .note-para .dropdown-menu,
.panel-heading.note-toolbar .note-para .dropdown-menu {
    min-width: 216px;
    padding: 5px
}

.note-popover .popover-content .note-para .dropdown-menu>div:first-child,
.panel-heading.note-toolbar .note-para .dropdown-menu>div:first-child {
    margin-right: 5px
}

.note-popover .popover-content .dropdown-menu,
.panel-heading.note-toolbar .dropdown-menu {
    min-width: 90px
}

.note-popover .popover-content .dropdown-menu.right,
.panel-heading.note-toolbar .dropdown-menu.right {
    right: 0;
    left: auto
}

.note-popover .popover-content .dropdown-menu.right::before,
.panel-heading.note-toolbar .dropdown-menu.right::before {
    right: 9px;
    left: auto!important
}

.note-popover .popover-content .dropdown-menu.right::after,
.panel-heading.note-toolbar .dropdown-menu.right::after {
    right: 10px;
    left: auto!important
}

.note-popover .popover-content .dropdown-menu.note-check li a i,
.panel-heading.note-toolbar .dropdown-menu.note-check li a i {
    color: deepskyblue;
    visibility: hidden
}

.note-popover .popover-content .dropdown-menu.note-check li a.checked i,
.panel-heading.note-toolbar .dropdown-menu.note-check li a.checked i {
    visibility: visible
}

.note-popover .popover-content .note-fontsize-10,
.panel-heading.note-toolbar .note-fontsize-10 {
    font-size: 10px
}

.note-popover .popover-content .note-color-palette,
.panel-heading.note-toolbar .note-color-palette {
    line-height: 1
}

.note-popover .popover-content .note-color-palette div .note-color-btn,
.panel-heading.note-toolbar .note-color-palette div .note-color-btn {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    border: 1px solid #fff
}

.note-popover .popover-content .note-color-palette div .note-color-btn:hover,
.panel-heading.note-toolbar .note-color-palette div .note-color-btn:hover {
    border: 1px solid #000
}

.note-dialog>div {
    display: none
}

.note-dialog .form-group {
    margin-right: 0;
    margin-left: 0
}

.note-dialog .note-modal-form {
    margin: 0
}

.note-dialog .note-image-dialog .note-dropzone {
    min-height: 100px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 4;
    color: lightgray;
    text-align: center;
    border: 4px dashed lightgray
}

@-moz-document url-prefix() {
    .note-image-input {
        height: auto
    }
}

.note-placeholder {
    position: absolute;
    display: none;
    color: gray
}

.note-handle .note-control-selection {
    position: absolute;
    display: none;
    border: 1px solid black
}

.note-handle .note-control-selection>div {
    position: absolute
}

.note-handle .note-control-selection .note-control-selection-bg {
    width: 100%;
    height: 100%;
    background-color: black;
    -webkit-opacity: .3;
    -khtml-opacity: .3;
    -moz-opacity: .3;
    opacity: .3;
    -ms-filter: alpha(opacity=30);
    filter: alpha(opacity=30)
}

.note-handle .note-control-selection .note-control-handle {
    width: 7px;
    height: 7px;
    border: 1px solid black
}

.note-handle .note-control-selection .note-control-holder {
    width: 7px;
    height: 7px;
    border: 1px solid black
}

.note-handle .note-control-selection .note-control-sizing {
    width: 7px;
    height: 7px;
    background-color: white;
    border: 1px solid black
}

.note-handle .note-control-selection .note-control-nw {
    top: -5px;
    left: -5px;
    border-right: 0;
    border-bottom: 0
}

.note-handle .note-control-selection .note-control-ne {
    top: -5px;
    right: -5px;
    border-bottom: 0;
    border-left: none
}

.note-handle .note-control-selection .note-control-sw {
    bottom: -5px;
    left: -5px;
    border-top: 0;
    border-right: 0
}

.note-handle .note-control-selection .note-control-se {
    right: -5px;
    bottom: -5px;
    cursor: se-resize
}

.note-handle .note-control-selection .note-control-se.note-control-holder {
    cursor: default;
    border-top: 0;
    border-left: none
}

.note-handle .note-control-selection .note-control-selection-info {
    right: 0;
    bottom: 0;
    padding: 5px;
    margin: 5px;
    font-size: 12px;
    color: white;
    background-color: black;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-opacity: .7;
    -khtml-opacity: .7;
    -moz-opacity: .7;
    opacity: .7;
    -ms-filter: alpha(opacity=70);
    filter: alpha(opacity=70)
}

.note-hint-popover {
    min-width: 100px;
    padding: 2px
}

.note-hint-popover .popover-content {
    max-height: 150px;
    padding: 3px;
    overflow: auto
}

.note-hint-popover .popover-content .note-hint-group .note-hint-item {
    display: block!important;
    padding: 3px
}

.note-hint-popover .popover-content .note-hint-group .note-hint-item.active,
.note-hint-popover .popover-content .note-hint-group .note-hint-item:hover {
    display: block;
    clear: both;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background-color: #428bca;
    outline: 0
}
/*!
 * Jasny Bootstrap v3.1.2 (http://jasny.github.io/bootstrap)
 * Copyright 2012-2014 Arnold Daniels
 * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE)
 */


.container-smooth{max-width:1170px}@media (min-width:1px){.container-smooth{width:auto}}.btn-labeled{padding-top:0;padding-bottom:0}.btn-label{position:relative;background:0 0;background:rgba(0,0,0,.15);display:inline-block;padding:6px 12px;left:-12px;border-radius:3px 0 0 3px}.btn-label.btn-label-right{left:auto;right:-12px;border-radius:0 3px 3px 0}.btn-lg .btn-label{padding:10px 16px;left:-16px;border-radius:5px 0 0 5px}.btn-lg .btn-label.btn-label-right{left:auto;right:-16px;border-radius:0 5px 5px 0}.btn-sm .btn-label{padding:5px 10px;left:-10px;border-radius:2px 0 0 2px}.btn-sm .btn-label.btn-label-right{left:auto;right:-10px;border-radius:0 2px 2px 0}.btn-xs .btn-label{padding:1px 5px;left:-5px;border-radius:2px 0 0 2px}.btn-xs .btn-label.btn-label-right{left:auto;right:-5px;border-radius:0 2px 2px 0}.nav-tabs-bottom{border-bottom:0;border-top:1px solid #ddd}.nav-tabs-bottom>li{margin-bottom:0;margin-top:-1px}.nav-tabs-bottom>li>a{border-radius:0 0 4px 4px}.nav-tabs-bottom>li>a:hover,.nav-tabs-bottom>li>a:focus,.nav-tabs-bottom>li.active>a,.nav-tabs-bottom>li.active>a:hover,.nav-tabs-bottom>li.active>a:focus{border:1px solid #ddd;border-top-color:transparent}.nav-tabs-left{border-bottom:0;border-right:1px solid #ddd}.nav-tabs-left>li{margin-bottom:0;margin-right:-1px;float:none}.nav-tabs-left>li>a{border-radius:4px 0 0 4px;margin-right:0;margin-bottom:2px}.nav-tabs-left>li>a:hover,.nav-tabs-left>li>a:focus,.nav-tabs-left>li.active>a,.nav-tabs-left>li.active>a:hover,.nav-tabs-left>li.active>a:focus{border:1px solid #ddd;border-right-color:transparent}.row>.nav-tabs-left{padding-right:0;padding-left:15px;margin-right:-1px;position:relative;z-index:1}.row>.nav-tabs-left+.tab-content{border-left:1px solid #ddd}.nav-tabs-right{border-bottom:0;border-left:1px solid #ddd}.nav-tabs-right>li{margin-bottom:0;margin-left:-1px;float:none}.nav-tabs-right>li>a{border-radius:0 4px 4px 0;margin-left:0;margin-bottom:2px}.nav-tabs-right>li>a:hover,.nav-tabs-right>li>a:focus,.nav-tabs-right>li.active>a,.nav-tabs-right>li.active>a:hover,.nav-tabs-right>li.active>a:focus{border:1px solid #ddd;border-left-color:transparent}.row>.nav-tabs-right{padding-left:0;padding-right:15px}.navmenu,.navbar-offcanvas{width:300px;height:100%;border-width:1px;border-style:solid;border-radius:4px}.navmenu-fixed-left,.navmenu-fixed-right,.navbar-offcanvas{position:fixed;z-index:1030;top:0;border-radius:0}.navmenu-fixed-left,.navbar-offcanvas.navmenu-fixed-left{left:0;right:auto;border-width:0 1px 0 0;bottom:0;overflow-y:auto}.navmenu-fixed-right,.navbar-offcanvas{left:auto;right:0;border-width:0 0 0 1px}.navmenu-nav{margin-bottom:10px}.navmenu-nav.dropdown-menu{position:static;margin:0;padding-top:0;float:none;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0}.navbar-offcanvas .navbar-nav{margin:0}@media (min-width:768px){.navbar-offcanvas{width:auto;border-top:0;box-shadow:none}.navbar-offcanvas.offcanvas{position:static;display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-offcanvas .navbar-nav.navbar-left:first-child{margin-left:-15px}.navbar-offcanvas .navbar-nav.navbar-right:last-child{margin-right:-15px}.navbar-offcanvas .navmenu-brand{display:none}}.navmenu-brand{display:block;font-size:18px;line-height:20px;padding:10px 15px;margin:10px 0}.navmenu-brand:hover,.navmenu-brand:focus{text-decoration:none}.navmenu-default,.navbar-default .navbar-offcanvas{background-color:#f8f8f8;border-color:#e7e7e7}.navmenu-default .navmenu-brand,.navbar-default .navbar-offcanvas .navmenu-brand{color:#777}.navmenu-default .navmenu-brand:hover,.navbar-default .navbar-offcanvas .navmenu-brand:hover,.navmenu-default .navmenu-brand:focus,.navbar-default .navbar-offcanvas .navmenu-brand:focus{color:#5e5e5e;background-color:transparent}.navmenu-default .navmenu-text,.navbar-default .navbar-offcanvas .navmenu-text{color:#777}.navmenu-default .navmenu-nav>.dropdown>a:hover .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a:hover .caret,.navmenu-default .navmenu-nav>.dropdown>a:focus .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navmenu-default .navmenu-nav>.open>a,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a,.navmenu-default .navmenu-nav>.open>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:hover,.navmenu-default .navmenu-nav>.open>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:focus{background-color:#e7e7e7;color:#555}.navmenu-default .navmenu-nav>.open>a .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a .caret,.navmenu-default .navmenu-nav>.open>a:hover .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:hover .caret,.navmenu-default .navmenu-nav>.open>a:focus .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:focus .caret{border-top-color:#555;border-bottom-color:#555}.navmenu-default .navmenu-nav>.dropdown>a .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a .caret{border-top-color:#777;border-bottom-color:#777}.navmenu-default .navmenu-nav.dropdown-menu,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu{background-color:#e7e7e7}.navmenu-default .navmenu-nav.dropdown-menu>.divider,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.divider{background-color:#f8f8f8}.navmenu-default .navmenu-nav.dropdown-menu>.active>a,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a,.navmenu-default .navmenu-nav.dropdown-menu>.active>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:hover,.navmenu-default .navmenu-nav.dropdown-menu>.active>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:focus{background-color:#d7d7d7}.navmenu-default .navmenu-nav>li>a,.navbar-default .navbar-offcanvas .navmenu-nav>li>a{color:#777}.navmenu-default .navmenu-nav>li>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>li>a:hover,.navmenu-default .navmenu-nav>li>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>li>a:focus{color:#333;background-color:transparent}.navmenu-default .navmenu-nav>.active>a,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a,.navmenu-default .navmenu-nav>.active>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a:hover,.navmenu-default .navmenu-nav>.active>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navmenu-default .navmenu-nav>.disabled>a,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a,.navmenu-default .navmenu-nav>.disabled>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a:hover,.navmenu-default .navmenu-nav>.disabled>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navmenu-inverse,.navbar-inverse .navbar-offcanvas{background-color:#222;border-color:#080808}.navmenu-inverse .navmenu-brand,.navbar-inverse .navbar-offcanvas .navmenu-brand{color:#999}.navmenu-inverse .navmenu-brand:hover,.navbar-inverse .navbar-offcanvas .navmenu-brand:hover,.navmenu-inverse .navmenu-brand:focus,.navbar-inverse .navbar-offcanvas .navmenu-brand:focus{color:#fff;background-color:transparent}.navmenu-inverse .navmenu-text,.navbar-inverse .navbar-offcanvas .navmenu-text{color:#999}.navmenu-inverse .navmenu-nav>.dropdown>a:hover .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a:hover .caret,.navmenu-inverse .navmenu-nav>.dropdown>a:focus .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navmenu-inverse .navmenu-nav>.open>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a,.navmenu-inverse .navmenu-nav>.open>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:hover,.navmenu-inverse .navmenu-nav>.open>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:focus{background-color:#080808;color:#fff}.navmenu-inverse .navmenu-nav>.open>a .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a .caret,.navmenu-inverse .navmenu-nav>.open>a:hover .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:hover .caret,.navmenu-inverse .navmenu-nav>.open>a:focus .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navmenu-inverse .navmenu-nav>.dropdown>a .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a .caret{border-top-color:#999;border-bottom-color:#999}.navmenu-inverse .navmenu-nav.dropdown-menu,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu{background-color:#080808}.navmenu-inverse .navmenu-nav.dropdown-menu>.divider,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.divider{background-color:#222}.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a,.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:hover,.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:focus{background-color:#000}.navmenu-inverse .navmenu-nav>li>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a{color:#999}.navmenu-inverse .navmenu-nav>li>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a:hover,.navmenu-inverse .navmenu-nav>li>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a:focus{color:#fff;background-color:transparent}.navmenu-inverse .navmenu-nav>.active>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a,.navmenu-inverse .navmenu-nav>.active>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a:hover,.navmenu-inverse .navmenu-nav>.active>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a:focus{color:#fff;background-color:#080808}.navmenu-inverse .navmenu-nav>.disabled>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a,.navmenu-inverse .navmenu-nav>.disabled>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a:hover,.navmenu-inverse .navmenu-nav>.disabled>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a:focus{color:#444;background-color:transparent}.alert-fixed-top,.alert-fixed-bottom{position:fixed;width:100%;z-index:1035;border-radius:0;margin:0;left:0}@media (min-width:992px){.alert-fixed-top,.alert-fixed-bottom{width:992px;left:50%;margin-left:-496px}}.alert-fixed-top{top:0;border-width:0 0 1px}@media (min-width:992px){.alert-fixed-top{border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-width:0 1px 1px}}.alert-fixed-bottom{bottom:0;border-width:1px 0 0}@media (min-width:992px){.alert-fixed-bottom{border-top-right-radius:4px;border-top-left-radius:4px;border-width:1px 1px 0}}.offcanvas{display:none}.offcanvas.in{display:block}@media (max-width:767px){.offcanvas-xs{display:none}.offcanvas-xs.in{display:block}}@media (max-width:991px){.offcanvas-sm{display:none}.offcanvas-sm.in{display:block}}@media (max-width:1199px){.offcanvas-md{display:none}.offcanvas-md.in{display:block}}.offcanvas-lg{display:none}.offcanvas-lg.in{display:block}.canvas-sliding{-webkit-transition:top .35s,left .35s,bottom .35s,right .35s;transition:top .35s,left .35s,bottom .35s,right .35s}.offcanvas-clone{height:0!important;width:0!important;overflow:hidden!important;border:none!important;margin:0!important;padding:0!important;position:absolute!important;top:auto!important;left:auto!important;bottom:0!important;right:0!important;opacity:0!important}.table.rowlink td:not(.rowlink-skip),.table .rowlink td:not(.rowlink-skip){cursor:pointer}.table.rowlink td:not(.rowlink-skip) a,.table .rowlink td:not(.rowlink-skip) a{color:inherit;font:inherit;text-decoration:inherit}.table-hover.rowlink tr:hover td,.table-hover .rowlink tr:hover td{background-color:#cfcfcf}.btn-file{overflow:hidden;position:relative;vertical-align:middle}.btn-file>input{position:absolute;top:0;right:0;margin:0;opacity:0;filter:alpha(opacity=0);font-size:23px;height:100%;width:100%;direction:ltr;cursor:pointer}.fileinput{margin-bottom:9px;display:inline-block}.fileinput .form-control{padding-top:7px;padding-bottom:5px;display:inline-block;margin-bottom:0;vertical-align:middle;cursor:text}.fileinput .thumbnail{overflow:hidden;display:inline-block;margin-bottom:5px;vertical-align:middle;text-align:center}.fileinput .thumbnail>img{max-height:100%}.fileinput .btn{vertical-align:middle}.fileinput-exists .fileinput-new,.fileinput-new .fileinput-exists{display:none}.fileinput-inline .fileinput-controls{display:inline}.fileinput-filename{vertical-align:middle;display:inline-block;overflow:hidden}.form-control .fileinput-filename{vertical-align:bottom}.fileinput.input-group{display:table}.fileinput.input-group>*{position:relative;z-index:2}.fileinput.input-group>.btn-file{z-index:1}.fileinput-new.input-group .btn-file,.fileinput-new .input-group .btn-file{border-radius:0 4px 4px 0}.fileinput-new.input-group .btn-file.btn-xs,.fileinput-new .input-group .btn-file.btn-xs,.fileinput-new.input-group .btn-file.btn-sm,.fileinput-new .input-group .btn-file.btn-sm{border-radius:0 3px 3px 0}.fileinput-new.input-group .btn-file.btn-lg,.fileinput-new .input-group .btn-file.btn-lg{border-radius:0 6px 6px 0}.form-group.has-warning .fileinput .fileinput-preview{color:#8a6d3b}.form-group.has-warning .fileinput .thumbnail{border-color:#faebcc}.form-group.has-error .fileinput .fileinput-preview{color:#a94442}.form-group.has-error .fileinput .thumbnail{border-color:#ebccd1}.form-group.has-success .fileinput .fileinput-preview{color:#3c763d}.form-group.has-success .fileinput .thumbnail{border-color:#d6e9c6}.input-group-addon:not(:first-child){border-left:0}
/*!
 * <%= meta.title %> v<%= meta.version %> Stylesheet
 * Docs & License: <%= meta.homepage %>
 * (c) <%= meta.copyright %>
 */



.fc {
	direction: ltr;
	text-align: left;
}

.fc-rtl {
	text-align: right;
}

body .fc { /* extra precedence to overcome jqui */
	font-size: 1em;
}


/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content, /* for gutter border */
.fc-unthemed .fc-popover {
	border-color: #ddd;
}

.fc-unthemed .fc-popover {
	background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header {
	background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	color: #000000;
}

.fc-unthemed .fc-today {
	background: #fcf8e3;
}

.fc-highlight { /* when user is selecting cells */
	background: #bce8f1;
	opacity: .3;
	filter: alpha(opacity=30); /* for IE */
}

.fc-bgevent { /* default look for background events */
	background: rgb(143, 223, 130);
	opacity: .3;
	filter: alpha(opacity=30); /* for IE */
}

.fc-nonbusiness { /* default look for non-business-hours areas */
	/* will inherit .fc-bgevent's styles */
	background: #d7d7d7;
}


/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
	display: inline-block;
	height: 1em;
	line-height: 1em;
	font-size: 1em;
	text-align: center;
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;

	/* don't allow browser text-selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	}

/*
Acceptable font-family overrides for individual icons:
	"Arial", sans-serif
	"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

.fc-icon:after {
	position: relative;
}

.fc-icon-left-single-arrow:after {
	content: "\02039";
	font-weight: bold;
	font-size: 200%;
	top: -7%;
}

.fc-icon-right-single-arrow:after {
	content: "\0203A";
	font-weight: bold;
	font-size: 200%;
	top: -7%;
}

.fc-icon-left-double-arrow:after {
	content: "\000AB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-right-double-arrow:after {
	content: "\000BB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-left-triangle:after {
	content: "\25C4";
	font-size: 125%;
	top: 3%;
}

.fc-icon-right-triangle:after {
	content: "\25BA";
	font-size: 125%;
	top: 3%;
}

.fc-icon-down-triangle:after {
	content: "\25BC";
	font-size: 125%;
	top: 2%;
}

.fc-icon-x:after {
	content: "\000D7";
	font-size: 200%;
	top: 6%;
}


/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
	/* force height to include the border and padding */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	/* dimensions */
	margin: 0;
	height: 2.1em;
	padding: 0 .6em;

	/* text & cursor */
	font-size: 1em; /* normalize */
	white-space: nowrap;
	cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner { margin: 0; padding: 0; }
	
.fc-state-default { /* non-theme */
	border: 1px solid;
}

.fc-state-default.fc-corner-left { /* non-theme */
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right { /* non-theme */
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

/* icons in buttons */

.fc button .fc-icon { /* non-theme */
	position: relative;
	top: -0.05em; /* seems to be a good adjustment across browsers */
	margin: 0 .2em;
	vertical-align: middle;
}
	
/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-default {
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	color: #333;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
	color: #333333;
	background-color: #e6e6e6;
}

.fc-state-hover {
	color: #333333;
	text-decoration: none;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	   -moz-transition: background-position 0.1s linear;
	     -o-transition: background-position 0.1s linear;
	        transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
	background-color: #cccccc;
	background-image: none;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
	cursor: default;
	background-image: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	box-shadow: none;
}


/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
	display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to zero */
	float: left;
	margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child { /* same */
	margin-left: 0;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
	position: absolute;
	box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.fc-popover .fc-header { /* TODO: be more consistent with fc-head/fc-body */
	padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
	margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
	cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
	float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
	float: right;
}

/* unthemed */

.fc-unthemed .fc-popover {
	border-width: 1px;
	border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	font-size: .9em;
	margin-top: 2px;
}

/* jqui themed */

.fc-popover > .ui-widget-header + .ui-widget-content {
	border-top: 0; /* where they meet, let the header have the border */
}


/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/

.fc-divider {
	border-style: solid;
	border-width: 1px;
}

hr.fc-divider {
	height: 0;
	margin: 0;
	padding: 0 0 2px; /* height is unreliable across browsers, so use padding */
	border-width: 1px 0;
}

.fc-clear {
	clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
	/* these element should always cling to top-left/right corners */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.fc-bg {
	bottom: 0; /* strech bg to bottom edge */
}

.fc-bg table {
	height: 100%; /* strech bg to bottom edge */
}


/* Tables
--------------------------------------------------------------------------------------------------*/

.fc table {
	width: 100%;
	box-sizing: border-box; /* fix scrollbar issue in firefox */
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em; /* normalize cross-browser */
}

.fc th {
	text-align: center;
}

.fc th,
.fc td {
	border-style: solid;
	border-width: 1px;
	padding: 0;
	vertical-align: top;
}

.fc td.fc-today {
	border-style: double; /* overcome neighboring borders */
}


/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/

.fc .fc-row { /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
	/* no visible border by default. but make available if need be (scrollbar width compensation) */
	border-style: solid;
	border-width: 0;
}

.fc-row table {
	/* don't put left/right border on anything within a fake row.
	   the outer tbody will worry about this */
	border-left: 0 hidden transparent;
	border-right: 0 hidden transparent;

	/* no bottom borders on rows */
	border-bottom: 0 hidden transparent; 
}

.fc-row:first-child table {
	border-top: 0 hidden transparent; /* no top border on first row */
}


/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/

.fc-row {
	position: relative;
}

.fc-row .fc-bg {
	z-index: 1;
}

/* highlighting cells & background event skeleton */

.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
	bottom: 0; /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
	height: 100%; /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
	border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
	z-index: 2;

}

.fc-row .fc-highlight-skeleton {
	z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/

.fc-row .fc-content-skeleton {
	position: relative;
	z-index: 4;
	padding-bottom: 2px; /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
	z-index: 5;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
	/* see-through to the background below */
	background: none; /* in case <td>s are globally styled */
	border-color: transparent;

	/* don't put a border between events and/or the day number */
	border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */
.fc-row .fc-helper-skeleton tbody td {
	/* don't put a border between event cells */
	border-top: 0;
}


/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller {
	-webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
	position: relative; /* re-scope all positions */
	width: 100%; /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}


/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.fc-event {
	position: relative; /* for resize handle and other inner positioning */
	display: block; /* make the <a> tag block */
	font-size: .85em;
	line-height: 1.3;
	border-radius: 3px;
	border: 1px solid #3a87ad; /* default BORDER color */
	background-color: #3a87ad; /* default BACKGROUND color */
	font-weight: normal; /* undo jqui's ui-widget-header bold */
}

/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
	color: #fff; /* default TEXT color */
	text-decoration: none; /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
	cursor: pointer; /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed, /* causes a "warning" cursor. applied on body */
.fc-not-allowed .fc-event { /* to override an event's custom cursor */
	cursor: not-allowed;
}

.fc-event .fc-bg { /* the generic .fc-bg already does position */
	z-index: 1;
	background: #fff;
	opacity: .25;
	filter: alpha(opacity=25); /* for IE */
}

.fc-event .fc-content {
	position: relative;
	z-index: 2;
}

/* resizer (cursor AND touch devices) */

.fc-event .fc-resizer {
	position: absolute;
	z-index: 4;
}

/* resizer (touch devices) */

.fc-event .fc-resizer {
	display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
	/* only show when hovering or selected (with touch) */
	display: block;
}

/* hit area */

.fc-event.fc-selected .fc-resizer:before {
	/* 40x40 touch area */
	content: "";
	position: absolute;
	z-index: 9999; /* user of this util can scope within a lower z-index */
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	margin-top: -20px;
}


/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/

.fc-event.fc-selected {
	z-index: 9999 !important; /* overcomes inline z-index */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}


/* Horizontal Events
--------------------------------------------------------------------------------------------------*/

/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
	content: "";
	position: absolute;
	z-index: 3; /* below resizers */
	top: -10px;
	bottom: -10px;
	left: 0;
	right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
	margin-left: 0;
	border-left-width: 0;
	padding-left: 1px; /* replace the border with padding */
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
	margin-right: 0;
	border-right-width: 0;
	padding-right: 1px; /* replace the border with padding */
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */

/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
	cursor: w-resize;
	left: -1px; /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
	cursor: e-resize;
	right: -1px; /* overcome border */
}

/* resizer (mouse devices) */

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
	width: 7px;
	top: -1px; /* overcome top border */
	bottom: -1px; /* overcome bottom border */
}

/* resizer (touch devices) */

.fc-h-event.fc-selected .fc-resizer {
	/* 8x8 little dot */
	border-radius: 4px;
	border-width: 1px;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-color: inherit;
	background: #fff;
	/* vertically center */
	top: 50%;
	margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
	margin-left: -4px; /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
	margin-right: -4px; /* centers the 8x8 dot on the right edge */
}


/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-day-grid-event {
	margin: 1px 2px 0; /* spacing between events and edges */
	padding: 0 1px;
}

.fc-day-grid-event.fc-selected:after {
	content: "";
	position: absolute;
	z-index: 1; /* same z-index as fc-bg, behind text */
	/* overcome the borders */
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	/* darkening effect */
	background: #000;
	opacity: .25;
	filter: alpha(opacity=25); /* for IE */
}

.fc-day-grid-event .fc-content { /* force events to be one-line tall */
	white-space: nowrap;
	overflow: hidden;
}

.fc-day-grid-event .fc-time {
	font-weight: bold;
}

/* resizer (cursor devices) */

/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
	margin-left: -2px; /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
	margin-right: -2px; /* to the day cell's edge */
}


/* Event Limiting
--------------------------------------------------------------------------------------------------*/

/* "more" link that represents hidden events */

a.fc-more {
	margin: 1px 3px;
	font-size: .85em;
	cursor: pointer;
	text-decoration: none;
}

a.fc-more:hover {
	text-decoration: underline;
}

.fc-limited { /* rows and cells that are hidden because of a "more" link */
	display: none;
}

/* popover that appears when "more" link is clicked */

.fc-day-grid .fc-row {
	z-index: 1; /* make the "more" popover one higher than this */
}

.fc-more-popover {
	z-index: 2;
	width: 220px;
}

.fc-more-popover .fc-event-container {
	padding: 10px;
}


/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-now-indicator {
	position: absolute;
	border: 0 solid red;
}


/* Utilities
--------------------------------------------------------------------------------------------------*/

.fc-unselectable {
	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
	text-align: center;
	margin-bottom: 1em;
}

.fc-toolbar .fc-left {
	float: left;
}

.fc-toolbar .fc-right {
	float: right;
}

.fc-toolbar .fc-center {
	display: inline-block;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * { /* extra precedence to override button border margins */
	float: left;
	margin-left: .75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child { /* extra precedence to override button border margins */
	margin-left: 0;
}
	
/* title text */

.fc-toolbar h2 {
	margin: 0;
}

/* button layering (for border precedence) */

.fc-toolbar button {
	position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
	z-index: 2;
}
	
.fc-toolbar .fc-state-down {
	z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
	z-index: 4;
}

.fc-toolbar button:focus {
	z-index: 5;
}


/* View Structure
--------------------------------------------------------------------------------------------------*/

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
	        box-sizing: content-box;
}

.fc-view, /* scope positioning and z-index's for everything within the view */
.fc-view > table { /* so dragged elements can be above the view's main element */
	position: relative;
	z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/

/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
	/* we are sure there are no day numbers in these views, so... */
	padding-top: 1px; /* add a pixel to make sure there are 2px padding above events */
	padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
	min-height: 4em; /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
	overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

/* week and day number styling */

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
	padding: 0 2px;
}

.fc-basic-view td.fc-week-number span,
.fc-basic-view td.fc-day-number {
	padding-top: 2px;
	padding-bottom: 2px;
}

.fc-basic-view .fc-week-number {
	text-align: center;
}

.fc-basic-view .fc-week-number span {
	/* work around the way we do column resizing and ensure a minimum width */
	display: inline-block;
	min-width: 1.25em;
}

.fc-ltr .fc-basic-view .fc-day-number {
	text-align: right;
}

.fc-rtl .fc-basic-view .fc-day-number {
	text-align: left;
}

.fc-day-number.fc-other-month {
	opacity: 0.3;
	filter: alpha(opacity=30); /* for IE */
	/* opacity with small font can sometimes look too faded
	   might want to set the 'color' property instead
	   making day-numbers bold also fixes the problem */
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-day-grid {
	position: relative;
	z-index: 2; /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
	min-height: 3em; /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
	padding-top: 1px; /* add a pixel to make sure there are 2px padding above events */
	padding-bottom: 1em; /* give space underneath events for clicking/selecting days */
}


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis { /* .fc to overcome default cell styles */
	vertical-align: middle;
	padding: 0 4px;
	white-space: nowrap;
}

.fc-ltr .fc-axis {
	text-align: right;
}

.fc-rtl .fc-axis {
	text-align: left;
}

.ui-widget td.fc-axis {
	font-weight: normal; /* overcome jqui theme making it bold */
}


/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-time-grid-container, /* so scroll container's z-index is below all-day */
.fc-time-grid { /* so slats/bg/content/etc positions get scoped within here */
	position: relative;
	z-index: 1;
}

.fc-time-grid {
	min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table { /* don't put outer borders on slats/bg/content/etc */
	border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
	z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr { /* the <hr> AgendaView injects when grid is shorter than scroller */
	position: relative;
	z-index: 2;
}

.fc-time-grid .fc-content-col {
	position: relative; /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	right: 0;
}

/* divs within a cell within the fc-content-skeleton */

.fc-time-grid .fc-business-container {
	position: relative;
	z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
	position: relative;
	z-index: 2;
}

.fc-time-grid .fc-highlight-container {
	position: relative;
	z-index: 3;
}

.fc-time-grid .fc-event-container {
	position: relative;
	z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
	z-index: 5;
}

.fc-time-grid .fc-helper-container { /* also is fc-event-container */
	position: relative;
	z-index: 6;
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats td {
	height: 1.5em;
	border-bottom: 0; /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
	border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content { /* for jqui theme */
	background: none; /* see through to fc-bg */
}


/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-highlight-container { /* a div within a cell within the fc-highlight-skeleton */
	position: relative; /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
	position: absolute;
	left: 0;
	right: 0;
	/* top and bottom will be in by JS */
}


/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-ltr .fc-time-grid .fc-event-container { /* space on the sides of events for LTR (default) */
	margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container { /* space on the sides of events for RTL */
	margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
	position: absolute;
	z-index: 1; /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
	/* background events always span full width */
	left: 0;
	right: 0;
}


/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start { /* events that are continuing from another day */
	/* replace space made by the top border with padding */
	border-top-width: 0;
	padding-top: 1px;

	/* remove top rounded corners */
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
	/* replace space made by the top border with padding */
	border-bottom-width: 0;
	padding-bottom: 1px;

	/* remove bottom rounded corners */
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}


/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-time-grid-event {
	overflow: hidden; /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
	/* need to allow touch resizers to extend outside event's bounding box */
	/* common fc-selected styles hide the fc-bg, so don't need this anyway */
	overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
	display: none; /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
	overflow: hidden; /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
	padding: 0 1px;
}

.fc-time-grid-event .fc-time {
	font-size: .85em;
	white-space: nowrap;
}

/* short mode, where time and title are on the same line */

.fc-time-grid-event.fc-short .fc-content {
	/* don't wrap to second line (now that contents will be inline) */
	white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
	/* put the time and title on the same line */
	display: inline-block;
	vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
	display: none; /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
	content: attr(data-start); /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
	content: "\000A0-\000A0"; /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
	font-size: .85em; /* make the title text the same size as the time */
	padding: 0; /* undo padding from above */
}

/* resizer (cursor device) */

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
	left: 0;
	right: 0;
	bottom: 0;
	height: 8px;
	overflow: hidden;
	line-height: 8px;
	font-size: 11px;
	font-family: monospace;
	text-align: center;
	cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
	content: "=";
}

/* resizer (touch device) */

.fc-time-grid-event.fc-selected .fc-resizer {
	/* 10x10 dot */
	border-radius: 5px;
	border-width: 1px;
	width: 8px;
	height: 8px;
	border-style: solid;
	border-color: inherit;
	background: #fff;
	/* horizontally center */
	left: 50%;
	margin-left: -5px;
	/* center on the bottom edge */
	bottom: -5px;
}


/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-now-indicator-line {
	border-top-width: 1px;
	left: 0;
	right: 0;
}

/* arrow on axis */

.fc-time-grid .fc-now-indicator-arrow {
	margin-top: -5px; /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
	left: 0;
	/* triangle pointing right... */
	border-width: 5px 0 5px 6px;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
	right: 0;
	/* triangle pointing left... */
	border-width: 5px 6px 5px 0;
	border-top-color: transparent;
	border-bottom-color: transparent;
}
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */

.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  position: relative; }
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  width: 120px;
  margin: 0.5em; }
.dropzone .dz-preview .dz-progress {
  display: block;
  height: 15px;
  border: 1px solid #aaa; }
.dropzone .dz-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  width: 0;
  background: green; }
.dropzone .dz-preview .dz-error-message {
  color: red;
  display: none; }
.dropzone .dz-preview.dz-error .dz-error-message, .dropzone .dz-preview.dz-error .dz-error-mark {
  display: block; }
.dropzone .dz-preview.dz-success .dz-success-mark {
  display: block; }
.dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark {
  position: absolute;
  display: none;
  left: 30px;
  top: 30px;
  width: 54px;
  height: 58px;
  left: 50%;
  margin-left: -27px; }
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */

@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
.dropzone.dz-clickable {
  cursor: pointer; }
.dropzone.dz-clickable * {
  cursor: default; }
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer; }
.dropzone.dz-started .dz-message {
  display: none; }
.dropzone.dz-drag-hover {
  border-style: solid;  }
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5; }
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0; }
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px; }
.dropzone .dz-preview:hover {
  z-index: 1000; }
.dropzone .dz-preview:hover .dz-details {
  opacity: 1; }
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd); }
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1; }
.dropzone .dz-preview.dz-image-preview {
  background: white; }
.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none; }
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline; }
.dropzone .dz-preview:hover .dz-details {
  opacity: 1; }
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%; }
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px; }
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap; }
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8); }
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis; }
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent; }
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px; }
.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px); }
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10; }
.dropzone .dz-preview .dz-image img {
  display: block; }
.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px; }
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px; }
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in; }
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite; }
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden; }
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out; }
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block; }
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto; }
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white; }
.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626; }
@charset "UTF-8";
/*
 *
 *   INSPINIA - Responsive Admin Theme
 *   version 2.7.1
 *
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&lang=en");
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,700");
/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 110, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 118, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 127, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 136, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 145, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 154, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 162, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 170, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 174, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 185, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 204, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 212, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
hr {
  box-sizing: content-box;
  height: 0;
}

/* line 221, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 229, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 252, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 266, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 277, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 290, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 302, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 311, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 322, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 334, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 346, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 356, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/* line 367, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 376, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 387, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 396, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 405, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 416, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 421, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  a,
  a:visited {
    text-decoration: underline;
  }

  /* line 23, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  /* line 38, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 44, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 48, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  img {
    max-width: 100% !important;
  }

  /* line 57, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 72, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .navbar {
    display: none;
  }

  /* line 77, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  /* line 81, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .label {
    border: 1px solid #000;
  }

  /* line 85, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 88, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .table td,
  .table th {
    background-color: #fff !important;
  }

  /* line 94, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_print.scss */
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot");
  src: url("/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot?#iefix") format("embedded-opentype"), url("/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2") format("woff2"), url("/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff") format("woff"), url("/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf") format("truetype"), url("/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg#glyphicons_halflingsregular") format("svg");
}
/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\002a";
}

/* line 38, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\002b";
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

/* line 41, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 42, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 43, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 44, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 46, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 47, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 48, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 49, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 51, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 52, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 54, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 56, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 57, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 58, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 59, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 61, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 62, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 63, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 65, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 66, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 67, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 68, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 69, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 70, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 71, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 72, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 73, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 74, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 75, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 76, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 77, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 78, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 79, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 80, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 81, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 82, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 83, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 84, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 85, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 86, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 87, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 88, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 89, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 90, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 91, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 92, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 93, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 94, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 95, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 96, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 97, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 98, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 99, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 100, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 101, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 102, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 103, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 104, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 105, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 106, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 107, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 108, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 109, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 110, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 111, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 112, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 113, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 114, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 115, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 116, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 117, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 118, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 119, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 120, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 121, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 122, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 123, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 124, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 125, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 126, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 127, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 128, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 129, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 130, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 131, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 132, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 133, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 134, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 135, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 136, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 137, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 138, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 139, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 140, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 141, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 142, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 143, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 144, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 145, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 146, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 147, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 148, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 149, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 150, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 151, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 152, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 153, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 154, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 155, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 156, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 157, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 158, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 159, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 160, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 161, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 162, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 163, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 164, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 165, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 166, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 167, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 168, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 169, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 170, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 171, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 172, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 173, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 174, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 175, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 176, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 177, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 178, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 179, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 180, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 181, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 182, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 183, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 184, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 185, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 186, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 187, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 188, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 189, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 190, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 191, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 192, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 194, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 195, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 196, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 197, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 198, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 199, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 200, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 201, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 202, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 203, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 204, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 205, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 206, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 207, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 208, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 209, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 210, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 211, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 212, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 213, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 214, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 215, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 216, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 217, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 218, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 219, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 220, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 221, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 222, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 223, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 224, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 225, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 226, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 227, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 228, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 229, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 230, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 231, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 232, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 233, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 234, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 235, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 236, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 237, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 238, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cd:before {
  content: "\e201";
}

/* line 239, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save-file:before {
  content: "\e202";
}

/* line 240, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open-file:before {
  content: "\e203";
}

/* line 241, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-level-up:before {
  content: "\e204";
}

/* line 242, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copy:before {
  content: "\e205";
}

/* line 243, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paste:before {
  content: "\e206";
}

/* line 252, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-alert:before {
  content: "\e209";
}

/* line 253, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-equalizer:before {
  content: "\e210";
}

/* line 254, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-king:before {
  content: "\e211";
}

/* line 255, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-queen:before {
  content: "\e212";
}

/* line 256, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pawn:before {
  content: "\e213";
}

/* line 257, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bishop:before {
  content: "\e214";
}

/* line 258, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-knight:before {
  content: "\e215";
}

/* line 259, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 260, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tent:before {
  content: "\26fa";
}

/* line 261, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-blackboard:before {
  content: "\e218";
}

/* line 262, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bed:before {
  content: "\e219";
}

/* line 263, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-apple:before {
  content: "\f8ff";
}

/* line 264, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-erase:before {
  content: "\e221";
}

/* line 265, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hourglass:before {
  content: "\231b";
}

/* line 266, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lamp:before {
  content: "\e223";
}

/* line 267, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-duplicate:before {
  content: "\e224";
}

/* line 268, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 269, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-scissors:before {
  content: "\e226";
}

/* line 270, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 271, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-btc:before {
  content: "\e227";
}

/* line 272, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-xbt:before {
  content: "\e227";
}

/* line 273, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-yen:before {
  content: "\00a5";
}

/* line 274, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-jpy:before {
  content: "\00a5";
}

/* line 275, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ruble:before {
  content: "\20bd";
}

/* line 276, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-rub:before {
  content: "\20bd";
}

/* line 277, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-scale:before {
  content: "\e230";
}

/* line 278, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 279, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 280, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-education:before {
  content: "\e233";
}

/* line 281, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 282, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 283, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 284, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-modal-window:before {
  content: "\e237";
}

/* line 285, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-oil:before {
  content: "\e238";
}

/* line 286, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-grain:before {
  content: "\e239";
}

/* line 287, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 288, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-size:before {
  content: "\e241";
}

/* line 289, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-color:before {
  content: "\e242";
}

/* line 290, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-background:before {
  content: "\e243";
}

/* line 291, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 292, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 293, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 294, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 295, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 296, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 297, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 298, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 299, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 300, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 301, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-console:before {
  content: "\e254";
}

/* line 302, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-superscript:before {
  content: "\e255";
}

/* line 303, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subscript:before {
  content: "\e256";
}

/* line 304, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-left:before {
  content: "\e257";
}

/* line 305, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-right:before {
  content: "\e258";
}

/* line 306, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-down:before {
  content: "\e259";
}

/* line 307, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-up:before {
  content: "\e260";
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #fff;
}

/* line 36, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
a {
  color: #337ab7;
  text-decoration: none;
}
/* line 52, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}
/* line 58, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 86, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 106, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

/* line 125, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
/* line 16, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}

/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 30, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 41, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 48, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 49, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 51, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 52, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 58, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  /* line 62, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 83, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 90, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.text-muted {
  color: #777777;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #337ab7;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 119, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #337ab7;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 138, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

/* line 149, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 153, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
/* line 177, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 185, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.428571429;
}

/* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 196, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 211, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 229, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

/* line 235, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
/* line 250, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 257, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}
/* line 265, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 274, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
/* line 286, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
/* line 287, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 294, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
/* line 32, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

/* line 41, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 66, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }

  /* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
/* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
/* line 41, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 57, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 62, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table .table {
  background-color: #fff;
}

/* line 75, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 88, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ddd;
}
/* line 94, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
/* line 101, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 114, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 125, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

/* line 135, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

/* line 143, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: #d9edf7;
}

/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: #c4e3f3;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

/* line 171, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  /* line 171, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 183, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 32, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 47, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 52, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 59, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 70, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 76, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 83, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

/* line 114, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -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);
  -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 57, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-control: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 103, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
/* line 107, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control:-ms-input-placeholder {
  color: #999;
}
/* line 108, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-webkit-input-placeholder {
  color: #999;
}
/* line 136, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
/* line 146, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
/* line 153, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

/* line 162, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 174, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  /* line 197, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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-group-sm input[type="date"],
  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-group-sm input[type="time"],
  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-group-sm input[type="datetime-local"],
  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,
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  /* line 202, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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-group-lg input[type="date"], 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-group-lg input[type="time"], 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-group-lg input[type="datetime-local"], 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, .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
/* line 215, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 224, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 231, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 239, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

/* line 248, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 254, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

/* line 264, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 276, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 285, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 295, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 307, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
/* line 315, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 79, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 {
  height: 30px;
  line-height: 30px;
}

/* line 84, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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,
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 {
  height: auto;
}

/* line 333, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 340, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
/* line 344, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
/* line 348, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 71, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 79, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 {
  height: 46px;
  line-height: 46px;
}

/* line 84, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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,
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 {
  height: auto;
}

/* line 359, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 366, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
/* line 370, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
/* line 374, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 388, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}
/* line 393, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 398, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

/* line 410, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 417, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: #3c763d;
}
/* line 21, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control {
  border-color: #3c763d;
  -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, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
/* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: #8a6d3b;
}
/* line 21, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control {
  border-color: #8a6d3b;
  -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, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
/* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: #a94442;
}
/* line 21, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control {
  border-color: #a94442;
  -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, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
/* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 439, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
/* line 442, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 453, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 478, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 485, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 492, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 496, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 500, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 508, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 512, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 519, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 526, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 530, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 537, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 559, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: 7px;
}
/* line 569, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
/* line 575, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 582, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
/* line 593, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  /* line 603, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  /* line 611, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 26, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 32, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}
/* line 39, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 46, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 58, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 68, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
/* line 17, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
/* line 29, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}
/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 71, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
/* line 17, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
/* line 29, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}
/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 75, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
/* line 17, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
/* line 29, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 79, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
/* line 17, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
/* line 29, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 83, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
/* line 17, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
/* line 29, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 87, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
/* line 17, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
/* line 29, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
/* line 37, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 96, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
/* line 101, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 109, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
/* line 115, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
/* line 123, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

/* line 135, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 139, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 143, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 151, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 157, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 165, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_buttons.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}
/* line 21, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 26, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 28, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 30, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup,
.dropdown {
  position: relative;
}

/* line 26, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
/* line 54, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 65, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

/* line 78, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

/* line 88, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

/* line 103, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
/* line 110, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

/* line 123, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}
/* line 128, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 137, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  left: auto;
  right: 0;
}

/* line 147, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  left: 0;
  right: auto;
}

/* line 153, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

/* line 163, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 173, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 186, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
  content: "";
}
/* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 207, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 212, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 26, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:after {
  clear: both;
}
/* line 39, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
/* line 44, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 51, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 56, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}
/* line 58, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 63, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 69, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 72, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 76, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 81, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 86, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 105, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 109, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

/* line 116, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 120, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 127, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 131, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 136, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 145, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}
/* line 157, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
/* line 162, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 172, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 175, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 179, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 184, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 188, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 201, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
/* line 206, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
/* line 212, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
/* line 216, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 237, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 13, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
/* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:focus {
  z-index: 3;
}

/* line 58, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
/* line 63, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 68, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 77, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* line 89, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
/* line 94, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: 18px;
  border-radius: 6px;
}
/* line 101, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 108, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 117, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 120, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 129, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 135, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
/* line 144, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}
/* line 146, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
/* line 150, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
/* line 159, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
/* line 165, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:before, .nav:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:after {
  clear: both;
}
/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
/* line 23, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #777777;
}
/* line 34, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
/* line 46, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
/* line 59, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 66, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
/* line 78, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
/* line 84, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
/* line 89, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
/* line 96, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 118, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}
/* line 122, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}
/* line 125, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}
/* line 131, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 144, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}
/* line 146, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
/* line 163, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
/* line 165, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
/* line 171, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  /* line 177, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
/* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
/* line 199, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  /* line 206, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 224, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}
/* line 227, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}
/* line 59, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  /* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 92, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

/* line 108, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  /* line 108, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 128, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  /* line 128, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 138, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  /* line 138, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 150, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 154, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 163, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
/* line 170, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
/* line 175, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  /* line 180, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 206, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}
/* line 211, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
/* line 217, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  /* line 193, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 232, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 7.5px -15px;
}
/* line 235, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  /* line 243, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 251, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 255, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 257, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 232, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 270, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 272, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* line 286, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  /* line 478, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 485, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 492, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 496, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 500, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 508, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 512, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 519, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 526, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 530, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 537, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  /* line 298, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 302, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  /* line 286, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/* line 327, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 332, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 343, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
/* line 346, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 349, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 359, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  /* line 359, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  /* line 379, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }

  /* line 382, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 386, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
/* line 397, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
/* line 401, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #777;
}
/* line 403, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
/* line 410, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}
/* line 415, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #777;
}
/* line 418, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
/* line 425, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
/* line 433, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
/* line 442, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
/* line 444, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
/* line 448, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
/* line 453, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
/* line 462, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 767px) {
  /* line 473, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 475, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 482, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 490, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
/* line 506, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #777;
}
/* line 508, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}
/* line 513, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #777;
}
/* line 515, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}
/* line 521, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 531, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}
/* line 535, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
/* line 537, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
/* line 544, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
/* line 549, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
/* line 552, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
/* line 559, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}
/* line 567, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
/* line 577, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
/* line 579, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
/* line 583, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
/* line 588, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
/* line 596, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff;
}
@media (max-width: 767px) {
  /* line 607, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 610, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 613, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 615, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 622, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 630, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
/* line 641, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
/* line 643, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
/* line 648, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
/* line 650, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}
/* line 656, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
/* line 13, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}
/* line 16, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}
/* line 25, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 4, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
/* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}
/* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.428571429;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
/* line 25, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
/* line 32, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
/* line 41, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
/* line 52, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: 3;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}
/* line 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
/* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
/* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:before, .pager:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:after {
  clear: both;
}
/* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
/* line 23, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}
/* line 38, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}
/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label:empty {
  display: none;
}
/* line 25, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-default {
  background-color: #777777;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 48, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-primary {
  background-color: #337ab7;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

/* line 52, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 56, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 60, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}
/* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}
/* line 32, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
/* line 41, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
/* line 47, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge {
  float: right;
}
/* line 51, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
/* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 62, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
/* line 13, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
/* line 28, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 35, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* line 49, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
/* line 17, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
/* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/* line 34, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

/* line 9, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 16, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 23, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}
/* line 28, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
/* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
/* line 47, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 63, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 67, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 71, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
/* line 8, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
/* line 26, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 36, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-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-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

/* line 54, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 73, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 77, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 81, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 85, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 1, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}
/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

/* line 16, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}
/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 21, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
/* line 31, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
/* line 34, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 46, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}
/* line 50, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
/* line 55, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

/* line 63, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 70, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
/* line 78, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
/* line 81, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
/* line 87, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
/* line 96, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
/* line 101, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

/* line 4, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 4, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 4, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 4, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
/* line 24, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 123, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 127, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:after {
  clear: both;
}

/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
/* line 39, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
/* line 67, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
/* line 74, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 82, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 89, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 96, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
/* line 115, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
/* line 121, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
/* line 127, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/* line 131, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
/* line 135, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
/* line 143, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 149, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
/* line 153, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
/* line 157, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
/* line 164, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
/* line 170, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
/* line 174, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
/* line 181, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
/* line 185, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
/* line 194, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
/* line 203, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
/* line 210, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

/* line 222, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 20px;
}
/* line 226, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
/* line 230, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}
/* line 235, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}
/* line 238, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
/* line 244, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}
/* line 246, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 254, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-default {
  border-color: #ddd;
}
/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 257, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-primary {
  border-color: #337ab7;
}
/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 260, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}
/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 263, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}
/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 266, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}
/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 269, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}
/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
/* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/* line 28, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_wells.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 30, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
/* line 32, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -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 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
/* line 73, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 74, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 79, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 85, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}
/* line 110, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 115, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 119, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  /* line 140, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/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 145, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 149, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}
/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
/* line 20, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
/* line 21, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 26, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 36, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 52, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 59, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 66, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
/* line 73, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
/* line 80, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 87, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 94, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
/* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}
/* line 28, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}
/* line 29, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}
/* line 30, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 42, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 51, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 61, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 70, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
/* line 77, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
/* line 85, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
/* line 92, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
/* line 100, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
/* line 107, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
/* line 116, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
/* line 123, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

/* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* line 16, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
/* line 22, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 16, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 34, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
/* line 59, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}
/* line 63, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 70, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}
/* line 73, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}
/* line 76, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
/* line 81, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}
/* line 84, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 93, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}
/* line 109, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
/* line 112, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
/* line 119, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 128, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
/* line 138, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
/* line 143, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
/* line 148, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
/* line 158, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: '\2039';
}
/* line 163, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: '\203a';
}

/* line 174, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
/* line 185, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
/* line 207, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

/* line 218, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
/* line 229, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 240, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 249, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 253, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }

  /* line 260, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  /* line 267, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}
/* line 14, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 19, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }

  /* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 54, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 59, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 64, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }

  /* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }

  /* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }

  /* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }

  /* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  /* line 111, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 121, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}
/* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }

  /* line 10, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }

  /* line 11, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 12, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
/* line 155, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}
@media print {
  /* line 155, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}
@media print {
  /* line 162, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 169, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 18, /root/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}
/* line 1, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: 100;
}

/* line 5, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/typography.scss */
h1 {
  font-size: 30px;
}

/* line 9, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/typography.scss */
h2 {
  font-size: 24px;
}

/* line 13, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/typography.scss */
h3 {
  font-size: 16px;
}

/* line 17, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/typography.scss */
h4 {
  font-size: 14px;
}

/* line 21, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/typography.scss */
h5 {
  font-size: 12px;
}

/* line 25, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/typography.scss */
h6 {
  font-size: 10px;
}

/* line 29, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/typography.scss */
h3, h4, h5 {
  margin-top: 5px;
  font-weight: 600;
}

/* line 1, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav > li > a {
  color: #a7b1c2;
  font-weight: 600;
  padding: 14px 20px 14px 25px;
}

/* line 7, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav.navbar-right > li > a {
  color: #999c9e;
}

/* line 11, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav > li.active > a {
  color: #ffffff;
}

/* line 15, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-default .nav > li > a:hover, .navbar-default .nav > li > a:focus {
  background-color: black;
  color: white;
}

/* line 20, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background: #fff;
}

/* line 24, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav.navbar-top-links > li > a:hover, .nav.navbar-top-links > li > a:focus {
  background-color: transparent;
}

/* line 28, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav > li > a i {
  margin-right: 6px;
}

/* line 32, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar {
  border: 0;
}

/* line 36, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-default {
  background-color: transparent;
  border-color: #000000;
}

/* line 41, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links li {
  display: inline-block;
}

/* line 45, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links li:last-child {
  margin-right: 40px;
}

/* line 49, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.body-small .navbar-top-links li:last-child {
  margin-right: 0;
}

/* line 53, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links li a {
  padding: 20px 10px;
  min-height: 50px;
}

/* line 58, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.dropdown-menu {
  border: medium none;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);
  display: none;
  float: left;
  font-size: 12px;
  left: 0;
  list-style: none outside none;
  padding: 0;
  position: absolute;
  text-shadow: none;
  top: 100%;
  z-index: 1000;
}

/* line 74, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.ibox-tools .dropdown-menu {
  right: 0 !important;
  margin-top: 32px;
  margin-left: 40%;
  min-width: 250px;
}

/* line 81, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.dropdown-menu > li > a {
  border-radius: 3px;
  color: inherit;
  line-height: 25px;
  margin: 4px;
  text-align: left;
  font-weight: normal;
}

/* line 90, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #aaaaaa;
  outline: 0;
}

/* line 99, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.dropdown-menu > li > a.font-bold {
  font-weight: 600;
}

/* line 103, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-menu li {
  display: block;
}

/* line 107, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-menu li:last-child {
  margin-right: 0;
}

/* line 111, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-menu li a {
  padding: 3px 20px;
  min-height: 0;
}

/* line 116, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-menu li a div {
  white-space: normal;
}

/* line 120, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
  width: 310px;
  min-width: 0;
}

/* line 127, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-messages {
  margin-left: 5px;
}

/* line 131, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-tasks {
  margin-left: -59px;
}

/* line 135, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-alerts {
  margin-left: -123px;
}

/* line 139, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-top-links .dropdown-user {
  right: 0;
  left: auto;
}

/* line 144, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.dropdown-messages, .dropdown-alerts {
  padding: 10px 10px 10px 10px;
}

/* line 148, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.dropdown-messages li a, .dropdown-alerts li a {
  font-size: 12px;
}

/* line 152, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.dropdown-messages li em, .dropdown-alerts li em {
  font-size: 10px;
}

/* line 156, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav.navbar-top-links .dropdown-alerts a {
  font-size: 12px;
}

/* line 160, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav-header {
  padding: 45px 25px;
}

/* line 167, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.pace-done .nav-header {
  transition: all 0.4s;
}

/* line 171, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
ul.nav-second-level {
  background: black;
}

/* line 175, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav > li.active {
  border-left: 4px solid #a5a5a5;
  background: black;
}

/* line 180, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav.nav-second-level > li.active {
  border: none;
}

/* line 184, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav.nav-second-level.collapse[style] {
  height: auto !important;
}

/* line 188, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav-header a {
  color: #DFE4ED;
}

/* line 192, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav-header .text-muted {
  color: #8095a8;
}

/* line 196, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.minimalize-styl-2 {
  padding: 4px 12px;
  margin: 14px 5px 5px 20px;
  font-size: 14px;
  float: left;
}

/* line 203, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-form-custom {
  float: left;
  height: 50px;
  padding: 0;
  width: 300px;
  display: block;
}

/* line 211, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-form-custom .form-group {
  margin-bottom: 0;
}

/* line 215, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav.navbar-top-links a {
  font-size: 14px;
}

/* line 219, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-form-custom .form-control {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: medium none;
  font-size: 14px;
  height: 60px;
  margin: 0;
  z-index: 2000;
}

/* line 228, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.count-overflow {
  width: 0;
  height: 0;
  overflow: visible;
}

/* line 234, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.count-info .badge {
  line-height: 14px;
  padding: 2px 5px;
  position: relative;
  right: -10px;
  top: -10px;
}

/* line 242, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.count-info .label {
  line-height: 12px;
  padding: 2px 5px;
  position: relative;
  right: 7px;
  top: 7px;
}

/* line 250, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.arrow {
  float: right;
}

/* line 254, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fa.arrow:before {
  content: "\f104";
}

/* line 258, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.active > a > .fa.arrow:before {
  content: "\f107";
}

/* line 262, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav-second-level li,
.nav-third-level li {
  border-bottom: none !important;
}

/* line 267, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav-second-level li a {
  padding: 7px 10px 7px 10px;
  padding-left: 52px;
}

/* line 272, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav-third-level li a {
  padding-left: 62px;
}

/* line 276, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav-second-level li:last-child {
  margin-bottom: 10px;
}

/* line 280, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body:not(.fixed-sidebar):not(.canvas-menu).mini-navbar .nav li:hover > .nav-second-level,
.mini-navbar .nav li:focus > .nav-second-level {
  display: block;
  border-radius: 0 2px 2px 0;
  min-width: 140px;
  height: auto;
}

/* line 288, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.mini-navbar .navbar-default .nav > li > .nav-second-level li a {
  font-size: 12px;
  border-radius: 3px;
}

/* line 293, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fixed-nav .slimScrollDiv #side-menu {
  padding-bottom: 60px;
}

/* line 297, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.mini-navbar .nav-second-level li a {
  padding: 10px 10px 10px 15px;
}

/* line 301, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.mini-navbar .nav .nav-second-level {
  position: absolute;
  left: 70px;
  top: 0;
  background-color: #000000;
  padding: 10px 10px 10px 10px;
  font-size: 12px;
}

/* line 310, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.canvas-menu.mini-navbar .nav-second-level {
  background: black;
}

/* line 314, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.mini-navbar li.active .nav-second-level {
  left: 65px;
}

/* line 318, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-default .special_link a {
  background: #aaaaaa;
  color: white;
}

/* line 323, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-default .special_link a:hover {
  background: #17987e !important;
  color: white;
}

/* line 328, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-default .special_link a span.label {
  background: #fff;
  color: #aaaaaa;
}

/* line 333, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-default .landing_link a {
  background: #b2b2b2;
  color: white;
}

/* line 338, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-default .landing_link a:hover {
  background: #aaaaaa !important;
  color: white;
}

/* line 343, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-default .landing_link a span.label {
  background: #fff;
  color: #b2b2b2;
}

/* line 348, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.logo-element {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: white;
  display: none;
  padding: 18px 0;
}

/* line 357, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.pace-done .navbar-static-side, .pace-done .nav-header, .pace-done li.active, .pace-done #page-wrapper, .pace-done .footer {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

/* line 364, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-fixed-top {
  background: #fff;
  transition-duration: 0.4s;
  border-bottom: 1px solid #e7eaec !important;
  z-index: 2030;
}

/* line 371, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.navbar-fixed-top, .navbar-static-top {
  background: #f3f3f4;
}

/* line 375, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fixed-nav #wrapper {
  margin-top: 0;
}

/* line 379, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none;
  border-color: #DDDDDD #DDDDDD rgba(0, 0, 0, 0);
  border-bottom: #f3f3f4;
  border-image: none;
  border-style: solid;
  border-width: 1px;
  color: #555555;
  cursor: default;
}

/* line 394, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.nav.nav-tabs li {
  background: none;
  border: none;
}

/* line 399, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-nav #wrapper .navbar-static-side,
body.fixed-nav #wrapper #page-wrapper {
  margin-top: 60px;
}

/* line 404, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.top-navigation.fixed-nav #wrapper #page-wrapper {
  margin-top: 0;
}

/* line 408, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-nav.fixed-nav-basic .navbar-fixed-top {
  left: 220px;
}

/* line 412, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-nav.fixed-nav-basic.mini-navbar .navbar-fixed-top {
  left: 75px;
}

/* line 416, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-nav.fixed-nav-basic.fixed-sidebar.mini-navbar .navbar-fixed-top {
  left: 0;
}

/* line 420, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-nav.fixed-nav-basic #wrapper .navbar-static-side {
  margin-top: 0;
}

/* line 424, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-nav.fixed-nav-basic.body-small .navbar-fixed-top {
  left: 0;
}

/* line 428, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-nav.fixed-nav-basic.fixed-sidebar.mini-navbar.body-small .navbar-fixed-top {
  left: 220px;
}

/* line 432, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fixed-nav .minimalize-styl-2 {
  margin: 14px 5px 5px 15px;
}

/* line 436, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.body-small .navbar-fixed-top {
  margin-left: 0;
}

/* line 440, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.mini-navbar .navbar-static-side {
  width: 75px;
}

/* line 444, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.mini-navbar .profile-element, body.mini-navbar .nav-label, body.mini-navbar .navbar-default .nav li a span {
  display: none;
}

/* line 448, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.canvas-menu .profile-element {
  display: block;
}

/* line 452, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body:not(.fixed-sidebar):not(.canvas-menu).mini-navbar .nav-second-level {
  display: none;
}

/* line 456, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.mini-navbar .navbar-default .nav > li > a {
  font-size: 16px;
}

/* line 460, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.mini-navbar .logo-element {
  display: block;
}

/* line 464, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.canvas-menu .logo-element {
  display: none;
}

/* line 468, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.mini-navbar .nav-header {
  padding: 0;
  background-color: #aaaaaa;
}

/* line 473, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.canvas-menu .nav-header {
  padding: 33px 25px;
}

/* line 477, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.mini-navbar #page-wrapper {
  margin: 0 0 0 75px;
}

/* line 481, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-sidebar.mini-navbar .footer,
body.canvas-menu.mini-navbar .footer {
  margin: 0 0 0 0 !important;
}

/* line 486, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.canvas-menu.mini-navbar #page-wrapper,
body.canvas-menu.mini-navbar .footer {
  margin: 0 0 0 0;
}

/* line 491, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-sidebar .navbar-static-side,
body.canvas-menu .navbar-static-side {
  position: fixed;
  width: 220px;
  z-index: 2001;
  height: 100%;
}

/* line 499, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-sidebar.mini-navbar .navbar-static-side {
  width: 0;
}

/* line 503, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-sidebar.mini-navbar #page-wrapper {
  margin: 0 0 0 0;
}

/* line 507, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.body-small.fixed-sidebar.mini-navbar #page-wrapper {
  margin: 0 0 0 220px;
}

/* line 511, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.body-small.fixed-sidebar.mini-navbar .navbar-static-side {
  width: 220px;
}

/* line 515, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fixed-sidebar.mini-navbar .nav li:focus > .nav-second-level,
.canvas-menu.mini-navbar .nav li:focus > .nav-second-level {
  display: block;
  height: auto;
}

/* line 521, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-sidebar.mini-navbar .navbar-default .nav > li > .nav-second-level li a {
  font-size: 12px;
  border-radius: 3px;
}

/* line 526, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.canvas-menu.mini-navbar .navbar-default .nav > li > .nav-second-level li a {
  font-size: 13px;
  border-radius: 3px;
}

/* line 531, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fixed-sidebar.mini-navbar .nav-second-level li a,
.canvas-menu.mini-navbar .nav-second-level li a {
  padding: 10px 10px 10px 15px;
}

/* line 536, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fixed-sidebar.mini-navbar .nav-second-level,
.canvas-menu.mini-navbar .nav-second-level {
  position: relative;
  padding: 0;
  font-size: 13px;
}

/* line 543, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fixed-sidebar.mini-navbar li.active .nav-second-level,
.canvas-menu.mini-navbar li.active .nav-second-level {
  left: 0;
}

/* line 548, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-sidebar.mini-navbar .navbar-default .nav > li > a,
body.canvas-menu.mini-navbar .navbar-default .nav > li > a {
  font-size: 13px;
}

/* line 553, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.fixed-sidebar.mini-navbar .nav-label,
body.fixed-sidebar.mini-navbar .navbar-default .nav li a span,
body.canvas-menu.mini-navbar .nav-label,
body.canvas-menu.mini-navbar .navbar-default .nav li a span {
  display: inline;
}

/* line 560, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.canvas-menu.mini-navbar .navbar-default .nav li .profile-element a span {
  display: block;
}

/* line 564, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.canvas-menu.mini-navbar .nav-second-level li a,
.fixed-sidebar.mini-navbar .nav-second-level li a {
  padding: 7px 10px 7px 52px;
}

/* line 569, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
.fixed-sidebar.mini-navbar .nav-second-level,
.canvas-menu.mini-navbar .nav-second-level {
  left: 0;
}

/* line 574, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.canvas-menu nav.navbar-static-side {
  z-index: 2001;
  background: #2f4050;
  height: 100%;
  position: fixed;
  display: none;
}

/* line 582, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/navigation.scss */
body.canvas-menu.mini-navbar nav.navbar-static-side {
  display: block;
  width: 220px;
}

/* line 1, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation #page-wrapper {
  margin-left: 0;
}

/* line 5, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .navbar-nav .dropdown-menu > .active > a {
  background: white;
  color: #aaaaaa;
  font-weight: bold;
}

/* line 11, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.white-bg .navbar-fixed-top, .white-bg .navbar-static-top {
  background: #fff;
}

/* line 15, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .navbar {
  margin-bottom: 0;
}

/* line 19, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .nav > li > a {
  padding: 15px 20px;
  color: #676a6c;
}

/* line 24, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .nav > li a:hover, .top-navigation .nav > li a:focus {
  background: #fff;
  color: #aaaaaa;
}

/* line 29, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .navbar .nav > li.active {
  background: #fff;
  border: none;
}

/* line 34, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .nav > li.active > a {
  color: #aaaaaa;
}

/* line 38, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .navbar-right {
  margin-right: 10px;
}

/* line 42, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .navbar-nav .dropdown-menu {
  box-shadow: none;
  border: 1px solid #e7eaec;
}

/* line 47, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .dropdown-menu > li > a {
  margin: 0;
  padding: 7px 20px;
}

/* line 52, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.navbar .dropdown-menu {
  margin-top: 0;
}

/* line 56, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .navbar-brand {
  background: #aaaaaa;
  color: #fff;
  padding: 15px 25px;
}

/* line 62, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .navbar-top-links li:last-child {
  margin-right: 0;
}

/* line 66, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation.mini-navbar #page-wrapper,
.top-navigation.body-small.fixed-sidebar.mini-navbar #page-wrapper,
.mini-navbar .top-navigation #page-wrapper,
.body-small.fixed-sidebar.mini-navbar .top-navigation #page-wrapper,
.canvas-menu #page-wrapper {
  margin: 0;
}

/* line 74, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation.fixed-nav #wrapper, .fixed-nav #wrapper.top-navigation {
  margin-top: 50px;
}

/* line 78, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .footer.fixed {
  margin-left: 0 !important;
}

/* line 82, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .wrapper.wrapper-content {
  padding: 40px;
}

/* line 86, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation.body-small .wrapper.wrapper-content, .body-small .top-navigation .wrapper.wrapper-content {
  padding: 40px 0 40px 0;
}

/* line 90, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.navbar-toggle {
  background-color: #aaaaaa;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
}

/* line 97, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.top-navigation .navbar-nav .open .dropdown-menu > li > a, .top-navigation .navbar-nav .open .dropdown-menu .dropdown-header {
  padding: 10px 15px 10px 20px;
}

@media (max-width: 768px) {
  /* line 102, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
  .top-navigation .navbar-header {
    display: block;
    float: none;
  }
}
/* line 108, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
.menu-visible-lg, .menu-visible-md {
  display: none !important;
}

@media (min-width: 1200px) {
  /* line 113, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
  .menu-visible-lg {
    display: block !important;
  }
}
@media (min-width: 992px) {
  /* line 119, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
  .menu-visible-md {
    display: block !important;
  }
}
@media (max-width: 767px) {
  /* line 125, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
  .menu-visible-md {
    display: block !important;
  }

  /* line 129, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/top_navigation.scss */
  .menu-visible-lg {
    display: block !important;
  }
}
/* line 2, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn {
  border-radius: 3px;
}

/* line 6, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.float-e-margins .btn {
  margin-bottom: 5px;
}

/* line 10, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-w-m {
  min-width: 120px;
}

/* line 14, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-primary.btn-outline {
  color: #aaaaaa;
}

/* line 18, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-success.btn-outline {
  color: #1c84c6;
}

/* line 22, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-info.btn-outline {
  color: #1872ab;
}

/* line 26, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-warning.btn-outline {
  color: #f8ac59;
}

/* line 30, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-danger.btn-outline {
  color: #DD2315;
}

/* line 34, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
  color: #fff;
}

/* line 42, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-primary {
  background-color: #aaaaaa;
  border-color: #aaaaaa;
  color: #FFFFFF;
}

/* line 48, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary.active:hover, .btn-primary.active:focus {
  background-color: #a2a2a2;
  border-color: #a2a2a2;
  color: #FFFFFF;
}

/* line 54, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
  background-image: none;
}

/* line 58, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #b4b4b4;
  border-color: #b4b4b4;
}

/* line 63, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-success {
  background-color: #00b600;
  border-color: #00b600;
  color: #FFFFFF;
}

/* line 69, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success, .btn-success:active:focus, .btn-success:active:hover, .btn-success.active:hover, .btn-success.active:focus {
  background-color: #1a7bb9;
  border-color: #1a7bb9;
  color: #FFFFFF;
}

/* line 75, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
  background-image: none;
}

/* line 79, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success.active[disabled], fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #1f90d8;
  border-color: #1f90d8;
}

/* line 84, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-info {
  background-color: #1872ab;
  border-color: #1872ab;
  color: #FFFFFF;
}

/* line 90, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info, .btn-info:active:focus, .btn-info:active:hover, .btn-info.active:hover, .btn-info.active:focus {
  background-color: #16699e;
  border-color: #16699e;
  color: #FFFFFF;
}

/* line 96, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
  background-image: none;
}

/* line 100, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info.active[disabled], fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #1b7ebd;
  border-color: #1b7ebd;
}

/* line 105, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-default {
  color: inherit;
  background: white;
  border: 1px solid #e7eaec;
}

/* line 111, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default, .btn-default:active:focus, .btn-default:active:hover, .btn-default.active:hover, .btn-default.active:focus {
  color: inherit;
  border: 1px solid #d2d2d2;
}

/* line 116, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
}

/* line 120, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default.active[disabled], fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  color: #cacaca;
}

/* line 124, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-warning {
  background-color: #f8ac59;
  border-color: #f8ac59;
  color: #FFFFFF;
}

/* line 130, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning, .btn-warning:active:focus, .btn-warning:active:hover, .btn-warning.active:hover, .btn-warning.active:focus {
  background-color: #f7a54a;
  border-color: #f7a54a;
  color: #FFFFFF;
}

/* line 136, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
  background-image: none;
}

/* line 140, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning.active[disabled], fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f9b66d;
  border-color: #f9b66d;
}

/* line 145, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-danger {
  background-color: #DD2315;
  border-color: #DD2315;
  color: #FFFFFF;
}

/* line 151, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger, .btn-danger:active:focus, .btn-danger:active:hover, .btn-danger.active:hover, .btn-danger.active:focus {
  background-color: #cf2114;
  border-color: #cf2114;
  color: #FFFFFF;
}

/* line 157, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
  background-image: none;
}

/* line 161, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger.active[disabled], fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #ea2b1d;
  border-color: #ea2b1d;
}

/* line 166, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-link {
  color: inherit;
}

/* line 170, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .open .dropdown-toggle.btn-link {
  color: #aaaaaa;
  text-decoration: none;
}

/* line 175, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-link:active, .btn-link.active, .open .dropdown-toggle.btn-link {
  background-image: none;
}

/* line 179, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-link.disabled, .btn-link.disabled:hover, .btn-link.disabled:focus, .btn-link.disabled:active, .btn-link.disabled.active, .btn-link[disabled], .btn-link[disabled]:hover, .btn-link[disabled]:focus, .btn-link[disabled]:active, .btn-link.active[disabled], fieldset[disabled] .btn-link, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:active, fieldset[disabled] .btn-link.active {
  color: #cacaca;
}

/* line 183, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-white {
  color: inherit;
  background: white;
  border: 1px solid #e7eaec;
}

/* line 189, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white, .btn-white:active:focus, .btn-white:active:hover, .btn-white.active:hover, .btn-white.active:focus {
  color: inherit;
  border: 1px solid #d2d2d2;
}

/* line 194, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-white:active, .btn-white.active {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
}

/* line 198, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white {
  background-image: none;
}

/* line 202, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-white.disabled, .btn-white.disabled:hover, .btn-white.disabled:focus, .btn-white.disabled:active, .btn-white.disabled.active, .btn-white[disabled], .btn-white[disabled]:hover, .btn-white[disabled]:focus, .btn-white[disabled]:active, .btn-white.active[disabled], fieldset[disabled] .btn-white, fieldset[disabled] .btn-white:hover, fieldset[disabled] .btn-white:focus, fieldset[disabled] .btn-white:active, fieldset[disabled] .btn-white.active {
  color: #cacaca;
}

/* line 206, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.form-control, .form-control:focus, .has-error .form-control:focus, .has-success .form-control:focus, .has-warning .form-control:focus, .navbar-collapse, .navbar-form, .navbar-form-custom .form-control:focus, .navbar-form-custom .form-control:hover, .open .btn.dropdown-toggle, .panel, .popover, .progress, .progress-bar {
  box-shadow: none;
}

/* line 210, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-outline {
  color: inherit;
  background-color: transparent;
  transition: all .5s;
}

/* line 216, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-rounded {
  border-radius: 50px;
}

/* line 220, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn-large-dim {
  width: 90px;
  height: 90px;
  font-size: 42px;
}

/* line 226, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.dim {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding-top: 6px;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 20px !important;
}

/* line 240, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.dim:active {
  top: 3px;
}

/* line 244, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-primary.dim {
  box-shadow: inset 0 0 0 #9b9b9b, 0 5px 0 0 #9b9b9b, 0 10px 5px #999;
}

/* line 248, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-primary.dim:active {
  box-shadow: inset 0 0 0 #9b9b9b, 0 2px 0 0 #9b9b9b, 0 5px 3px #999;
}

/* line 252, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-default.dim {
  box-shadow: inset 0 0 0 #222222, 0 5px 0 0 #222222, 0 10px 5px #999;
}

/* line 256, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-default.dim:active {
  box-shadow: inset 0 0 0 #222222, 0 2px 0 0 #222222, 0 5px 3px #999;
}

/* line 260, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-warning.dim {
  box-shadow: inset 0 0 0 #f79d3c, 0 5px 0 0 #f79d3c, 0 10px 5px #999;
}

/* line 264, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-warning.dim:active {
  box-shadow: inset 0 0 0 #f79d3c, 0 2px 0 0 #f79d3c, 0 5px 3px #999;
}

/* line 268, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-info.dim {
  box-shadow: inset 0 0 0 #146090, 0 5px 0 0 #146090, 0 10px 5px #999;
}

/* line 272, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-info.dim:active {
  box-shadow: inset 0 0 0 #146090, 0 2px 0 0 #146090, 0 5px 3px #999;
}

/* line 276, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-success.dim {
  box-shadow: inset 0 0 0 #1872ab, 0 5px 0 0 #1872ab, 0 10px 5px #999;
}

/* line 280, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-success.dim:active {
  box-shadow: inset 0 0 0 #1872ab, 0 2px 0 0 #1872ab, 0 5px 3px #999;
}

/* line 284, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-danger.dim {
  box-shadow: inset 0 0 0 #c11f12, 0 5px 0 0 #c11f12, 0 10px 5px #999;
}

/* line 288, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.btn-danger.dim:active {
  box-shadow: inset 0 0 0 #c11f12, 0 2px 0 0 #c11f12, 0 5px 3px #999;
}

/* line 292, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.dim:before {
  font-size: 50px;
  line-height: 1em;
  font-weight: normal;
  color: #fff;
  display: block;
  padding-top: 10px;
}

/* line 302, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
button.dim:active:before {
  top: 7px;
  font-size: 50px;
}

/* line 307, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/buttons.scss */
.btn:focus {
  outline: none !important;
}

/* line 2, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label {
  background-color: #D1DADE;
  color: #5E5E5E;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  padding: 3px 8px;
  text-shadow: none;
}

/* line 11, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.nav .label, .ibox .label {
  font-size: 10px;
}

/* line 15, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.badge {
  background-color: #D1DADE;
  color: #5E5E5E;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding-bottom: 4px;
  padding-left: 6px;
  padding-right: 6px;
  text-shadow: none;
}

/* line 27, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-primary, .badge-primary {
  background-color: #aaaaaa;
  color: #FFFFFF;
}

/* line 32, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-success, .badge-success {
  background-color: #00b600;
  color: #FFFFFF;
}

/* line 37, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-warning, .badge-warning {
  background-color: #f8ac59;
  color: #FFFFFF;
}

/* line 42, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-warning-light, .badge-warning-light {
  background-color: #f8ac59;
  color: #ffffff;
}

/* line 47, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-danger, .badge-danger {
  background-color: #DD2315;
  color: #FFFFFF;
}

/* line 52, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-info, .badge-info {
  background-color: #1872ab;
  color: #FFFFFF;
}

/* line 57, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-inverse, .badge-inverse {
  background-color: #262626;
  color: #FFFFFF;
}

/* line 62, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-white, .badge-white {
  background-color: #FFFFFF;
  color: #5E5E5E;
}

/* line 67, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/badges_labels.scss */
.label-white, .badge-disable {
  background-color: #2A2E36;
  color: #8B91A0;
}

/* TOOGLE SWICH */
/* line 3, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch {
  position: relative;
  width: 64px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 11, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-checkbox {
  display: none;
}

/* line 15, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #aaaaaa;
  border-radius: 2px;
}

/* line 23, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-inner {
  width: 200%;
  margin-left: -100%;
  -moz-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

/* line 32, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-inner:before, .onoffswitch-inner:after {
  float: left;
  width: 50%;
  height: 20px;
  padding: 0;
  line-height: 20px;
  font-size: 12px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 47, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #aaaaaa;
  color: #FFFFFF;
}

/* line 54, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #FFFFFF;
  color: #999999;
  text-align: right;
}

/* line 62, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-switch {
  width: 20px;
  margin: 0;
  background: #FFFFFF;
  border: 2px solid #aaaaaa;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 44px;
  -moz-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

/* line 78, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

/* line 82, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0;
}

/* line 86, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-checkbox:disabled + .onoffswitch-label .onoffswitch-inner:before {
  background-color: #919191;
}

/* line 90, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-checkbox:disabled + .onoffswitch-label,
.onoffswitch-checkbox:disabled + .onoffswitch-label .onoffswitch-switch {
  border-color: #919191;
}

/* CHOSEN PLUGIN */
/* line 96, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chosen-container-single .chosen-single {
  background: #ffffff;
  box-shadow: none;
  -moz-box-sizing: border-box;
  border-radius: 2px;
  cursor: text;
  height: auto !important;
  margin: 0;
  min-height: 30px;
  overflow: hidden;
  padding: 4px 12px;
  position: relative;
  width: 100%;
}

/* line 111, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chosen-container-multi .chosen-choices li.search-choice {
  background: #f1f1f1;
  border: 1px solid #e5e6e7;
  border-radius: 2px;
  box-shadow: none;
  color: #333333;
  cursor: default;
  line-height: 13px;
  margin: 3px 0 3px 5px;
  padding: 3px 20px 3px 5px;
  position: relative;
}

/* Tags Input Plugin */
/* line 126, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.bootstrap-tagsinput {
  border: 1px solid #e5e6e7;
  box-shadow: none;
}

/* PAGINATIN */
/* line 134, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: #f4f4f4;
  border-color: #DDDDDD;
  color: inherit;
  cursor: default;
  z-index: 2;
}

/* line 142, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.pagination > li > a, .pagination > li > span {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  color: inherit;
  float: left;
  line-height: 1.42857;
  margin-left: -1px;
  padding: 4px 10px;
  position: relative;
  text-decoration: none;
}

/* TOOLTIPS */
/* line 156, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tooltip-inner {
  background-color: #2F4050;
}

/* line 160, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tooltip.top .tooltip-arrow {
  border-top-color: #2F4050;
}

/* line 164, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tooltip.right .tooltip-arrow {
  border-right-color: #2F4050;
}

/* line 168, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #2F4050;
}

/* line 172, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tooltip.left .tooltip-arrow {
  border-left-color: #2F4050;
}

/* EASY PIE CHART*/
/* line 178, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.easypiechart {
  position: relative;
  text-align: center;
}

/* line 183, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.easypiechart .h2 {
  margin-left: 10px;
  margin-top: 10px;
  display: inline-block;
}

/* line 189, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.easypiechart canvas {
  top: 0;
  left: 0;
}

/* line 194, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.easypiechart .easypie-text {
  line-height: 1;
  position: absolute;
  top: 33px;
  width: 100%;
  z-index: 1;
}

/* line 202, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.easypiechart img {
  margin-top: -4px;
}

/* line 206, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jqstooltip {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* FULLCALENDAR */
/* line 214, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-state-default {
  background-color: #ffffff;
  background-image: none;
  background-repeat: repeat-x;
  box-shadow: none;
  color: #333333;
  text-shadow: none;
}

/* line 223, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-state-default {
  border: 1px solid;
}

/* line 227, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-button {
  color: inherit;
  border: 1px solid #e7eaec;
  cursor: pointer;
  display: inline-block;
  height: 1.9em;
  line-height: 1.9em;
  overflow: hidden;
  padding: 0 0.6em;
  position: relative;
  white-space: nowrap;
}

/* line 240, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-state-active {
  background-color: #aaaaaa;
  border-color: #aaaaaa;
  color: #ffffff;
}

/* line 246, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-header-title h2 {
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}

/* line 252, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-content .fc-widget-header, .fc-content .fc-widget-content {
  border-color: #e7eaec;
  font-weight: normal;
}

/* line 257, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-border-separate tbody {
  background-color: #F8F8F8;
}

/* line 261, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-state-highlight {
  background: none repeat scroll 0 0 #FCF8E3;
}

/* line 265, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.external-event {
  padding: 5px 10px;
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 5px;
}

/* line 272, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-ltr .fc-event-hori.fc-event-end, .fc-rtl .fc-event-hori.fc-event-start {
  border-radius: 2px;
}

/* line 276, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-event,
.fc-agenda .fc-event-time,
.fc-event a {
  padding: 4px 6px;
  background-color: #aaaaaa;
  /* background color */
  border-color: #aaaaaa;
  /* border color */
}

/* line 284, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fc-event-time, .fc-event-title {
  color: #717171;
  padding: 0 1px;
}

/* line 289, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-calendar .fc-event-time, .ui-calendar .fc-event-title {
  color: #fff;
}

/* Chat */
/* line 294, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-activity-list .chat-element {
  border-bottom: 1px solid #e7eaec;
}

/* line 298, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element:first-child {
  margin-top: 0;
}

/* line 302, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element {
  padding-bottom: 15px;
}

/* line 306, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element, .chat-element .media {
  margin-top: 15px;
}

/* line 310, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element, .media-body {
  overflow: hidden;
}

/* line 314, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element .media-body {
  display: block;
  width: auto;
}

/* line 319, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element > .pull-left {
  margin-right: 10px;
}

/* line 323, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element img.img-circle, .dropdown-messages-box img.img-circle {
  width: 38px;
  height: 38px;
}

/* line 328, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element .well {
  border: 1px solid #e7eaec;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 10px 20px;
  font-size: 11px;
  line-height: 16px;
}

/* line 338, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element .actions {
  margin-top: 10px;
}

/* line 342, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-element .photos {
  margin: 10px 0;
}

/* line 347, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.right.chat-element > .pull-right {
  margin-left: 10px;
}

/* line 351, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-photo {
  max-height: 180px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* line 359, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 365, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #B3A9A9;
}

/* line 371, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat li.left .chat-body {
  margin-left: 60px;
}

/* line 375, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat li.right .chat-body {
  margin-right: 60px;
}

/* line 379, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat li .chat-body p {
  margin: 0;
  color: #777777;
}

/* line 384, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.panel .slidedown .glyphicon,
.chat .glyphicon {
  margin-right: 5px;
}

/* line 389, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.chat-panel .panel-body {
  height: 350px;
  overflow-y: scroll;
}

/* LIST GROUP */
/* line 396, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
  background-color: #aaaaaa;
  border-color: #aaaaaa;
  color: #FFFFFF;
  z-index: 2;
}

/* line 403, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.list-group-item-heading {
  margin-top: 10px;
}

/* line 407, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.list-group-item-text {
  margin: 0 0 10px;
  color: inherit;
  font-size: 12px;
  line-height: inherit;
}

/* line 414, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.no-padding .list-group-item {
  border-left: none;
  border-right: none;
  border-bottom: none;
}

/* line 420, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.no-padding .list-group-item:first-child {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: none;
}

/* line 427, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.no-padding .list-group {
  margin-bottom: 0;
}

/* line 431, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.list-group-item {
  background-color: inherit;
  border: 1px solid #e7eaec;
  display: block;
  margin-bottom: -1px;
  padding: 10px 15px;
  position: relative;
}

/* line 440, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.elements-list .list-group-item {
  border-left: none;
  border-right: none;
  padding: 15px 25px;
}

/* line 447, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.elements-list .list-group-item:first-child {
  border-left: none;
  border-right: none;
  border-top: none !important;
}

/* line 453, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.elements-list .list-group {
  margin-bottom: 0;
}

/* line 457, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.elements-list a {
  color: inherit;
}

/* line 461, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.elements-list .list-group-item.active,
.elements-list .list-group-item:hover {
  background: #f3f3f4;
  color: inherit;
  border-color: #e7eaec;
  border-radius: 0;
}

/* line 469, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.elements-list li.active {
  transition: none;
}

/* line 473, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.element-detail-box {
  padding: 25px;
}

/* FLOT CHART  */
/* line 479, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.flot-chart {
  display: block;
  height: 200px;
}

/* line 484, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.widget .flot-chart.dashboard-chart {
  display: block;
  height: 120px;
  margin-top: 40px;
}

/* line 490, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.flot-chart.dashboard-chart {
  display: block;
  height: 180px;
  margin-top: 40px;
}

/* line 496, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.flot-chart-content {
  width: 100%;
  height: 100%;
}

/* line 501, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.flot-chart-pie-content {
  width: 200px;
  height: 200px;
  margin: auto;
}

/* line 507, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jqstooltip {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  visibility: hidden;
  background: #2b303a;
  background-color: rgba(43, 48, 58, 0.8);
  color: white;
  text-align: left;
  white-space: nowrap;
  z-index: 10000;
  padding: 5px 5px 5px 5px;
  min-height: 22px;
  border-radius: 3px;
}

/* line 524, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jqsfield {
  color: white;
  text-align: left;
}

/* line 529, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fh-150 {
  height: 150px;
}

/* line 533, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.fh-200 {
  height: 200px;
}

/* line 538, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.h-150 {
  min-height: 150px;
}

/* line 542, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.h-200 {
  min-height: 200px;
}

/* line 546, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.h-300 {
  min-height: 300px;
}

/* line 550, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.w-150 {
  min-width: 150px;
}

/* line 554, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.w-200 {
  min-width: 200px;
}

/* line 558, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.w-300 {
  min-width: 300px;
}

/* line 562, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.legendLabel {
  padding-left: 5px;
}

/* line 566, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stat-list li:first-child {
  margin-top: 0;
}

/* line 570, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 576, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stat-percent {
  float: right;
}

/* line 580, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stat-list li {
  margin-top: 15px;
  position: relative;
}

/* DATATABLES */
/* line 587, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  background: transparent;
}

/* line 595, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dataTables_wrapper {
  padding-bottom: 30px;
}

/* line 599, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dataTables_length {
  float: left;
}

/* line 603, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dataTables_filter label {
  margin-right: 5px;
}

/* line 607, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.html5buttons {
  float: right;
}

/* line 611, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.html5buttons a {
  border: 1px solid #e7eaec;
  background: #fff;
  color: #676a6c;
  box-shadow: none;
  padding: 6px 8px;
  font-size: 12px;
}
/* line 619, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.html5buttons a:hover, .html5buttons a:focus:active {
  background-color: #eee;
  color: inherit;
  border-color: #d2d2d2;
}

/* line 626, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
div.dt-button-info {
  z-index: 100;
}

@media (max-width: 768px) {
  /* line 631, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .html5buttons {
    float: none;
    margin-top: 10px;
  }

  /* line 636, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .dataTables_length {
    float: none;
  }
}
/* CIRCLE */
/* line 643, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.img-circle {
  border-radius: 50%;
}

/* line 647, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.428571429;
}

/* line 657, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.btn-circle.btn-lg, .btn-group-lg > .btn-circle.btn {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 18px;
  line-height: 1.33;
}

/* line 666, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  border-radius: 35px;
  font-size: 24px;
  line-height: 1.33;
}

/* line 675, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.show-grid [class^="col-"] {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #ddd;
  background-color: #eee !important;
}

/* line 682, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.show-grid {
  margin: 15px 0;
}

/* ANIMATION */
/* line 688, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.css-animation-box h1 {
  font-size: 44px;
}

/* line 692, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.animation-efect-links a {
  padding: 4px 6px;
  font-size: 12px;
}

/* line 697, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#animation_box {
  background-color: #f9f8f8;
  border-radius: 16px;
  width: 80%;
  margin: 0 auto;
  padding-top: 80px;
}

/* line 705, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.animation-text-box {
  position: absolute;
  margin-top: 40px;
  left: 50%;
  margin-left: -100px;
  width: 200px;
}

/* line 713, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.animation-text-info {
  position: absolute;
  margin-top: -60px;
  left: 50%;
  margin-left: -100px;
  width: 200px;
  font-size: 10px;
}

/* line 722, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.animation-text-box h2 {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* line 728, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.animation-text-box p {
  font-size: 12px;
  text-transform: uppercase;
}

/* PEACE */
/* line 735, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 744, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.pace-inactive {
  display: none;
}

/* line 748, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.pace .pace-progress {
  background: #aaaaaa;
  position: fixed;
  z-index: 2040;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

/* line 758, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.pace-inactive {
  display: none;
}

/* WIDGETS */
/* line 764, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.widget {
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* line 771, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.widget.style1 h2 {
  font-size: 25px;
}

/* line 775, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.widget h2, .widget h3 {
  margin-top: 5px;
  margin-bottom: 0;
}

/* line 780, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.widget-text-box {
  padding: 20px;
  border: 1px solid #e7eaec;
  background: #ffffff;
}

/* line 786, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.widget-head-color-box {
  border-radius: 5px 5px 0 0;
  margin-top: 10px;
}

/* line 792, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.widget .flot-chart {
  height: 100px;
}

/* line 796, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-align div {
  display: inline-block;
  vertical-align: middle;
}

/* line 801, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-align h2, .vertical-align h3 {
  margin: 0;
}

/* line 805, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.todo-list {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

/* line 812, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.todo-list.small-list {
  font-size: 12px;
}

/* line 816, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.todo-list.small-list > li {
  background: #f3f3f4;
  border-left: none;
  border-right: none;
  border-radius: 4px;
  color: inherit;
  margin-bottom: 2px;
  padding: 6px 6px 6px 12px;
}

/* line 826, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.todo-list.small-list .btn-xs, .todo-list.small-list .btn-group-xs > .btn, .todo-list.small-list .btn-group-xs > .btn {
  border-radius: 5px;
  font-size: 10px;
  line-height: 1.5;
  padding: 1px 2px 1px 5px;
}

/* line 833, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.todo-list > li {
  background: #f3f3f4;
  border-left: 6px solid #e7eaec;
  border-right: 6px solid #e7eaec;
  border-radius: 4px;
  color: inherit;
  margin-bottom: 2px;
  padding: 10px;
}

/* line 843, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.todo-list .handle {
  cursor: move;
  display: inline-block;
  font-size: 16px;
  margin: 0 5px;
}

/* line 850, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.todo-list > li .label {
  font-size: 9px;
  margin-left: 10px;
}

/* line 855, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.check-link {
  font-size: 16px;
}

/* line 859, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.todo-completed {
  text-decoration: line-through;
}

/* line 863, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.geo-statistic h1 {
  font-size: 36px;
  margin-bottom: 0;
}

/* line 868, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.glyphicon.fa {
  font-family: "Font Awesome 5 Free";
}

/* INPUTS */
/* line 873, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.inline {
  display: inline-block !important;
}

/* line 877, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.input-s-sm {
  width: 120px;
}

/* line 881, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.input-s {
  width: 200px;
}

/* line 885, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.input-s-lg {
  width: 250px;
}

/* line 889, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.i-checks {
  padding-left: 0;
}

/* line 893, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.form-control, .single-line {
  background-color: #FFFFFF;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  display: block;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
}

/* line 905, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.form-control:focus, .single-line:focus {
  border-color: #1872ab;
}

/* line 909, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.has-success .form-control, .has-success .form-control:focus {
  border-color: #aaaaaa;
}

/* line 913, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.has-warning .form-control, .has-warning .form-control:focus {
  border-color: #f8ac59;
}

/* line 917, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.has-error .form-control, .has-error .form-control:focus {
  border-color: #DD2315;
}

/* line 921, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.has-success .control-label {
  color: #aaaaaa;
}

/* line 925, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.has-warning .control-label {
  color: #f8ac59;
}

/* line 929, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.has-error .control-label {
  color: #DD2315;
}

/* line 933, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.input-group-addon {
  background-color: #fff;
  border: 1px solid #E5E6E7;
  border-radius: 1px;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 6px 12px;
  text-align: center;
}

/* line 945, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.spinner-buttons.input-group-btn .btn-xs, .spinner-buttons.input-group-btn .btn-group-xs > .btn {
  line-height: 1.13;
}

/* line 949, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.spinner-buttons.input-group-btn {
  width: 20%;
}

/* line 953, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.noUi-connect {
  background: none repeat scroll 0 0 #aaaaaa;
  box-shadow: none;
}

/* line 958, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.slider_red .noUi-connect {
  background: none repeat scroll 0 0 #DD2315;
  box-shadow: none;
}

/* UI Sortable */
/* line 965, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-sortable .ibox-title {
  cursor: move;
}

/* line 969, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-sortable-placeholder {
  border: 1px dashed #cecece !important;
  visibility: visible !important;
  background: #e7eaec;
}

/* line 975, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ibox.ui-sortable-placeholder {
  margin: 0 0 23px !important;
}

/* SWITCHES */
/* line 980, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch {
  position: relative;
  width: 54px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 988, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-checkbox {
  display: none;
}

/* line 992, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #1AB394;
  border-radius: 3px;
}

/* line 1000, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -moz-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

/* line 1010, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 16px;
  padding: 0;
  line-height: 16px;
  font-size: 10px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1026, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-inner:before {
  content: "ON";
  padding-left: 7px;
  background-color: #1AB394;
  color: #FFFFFF;
}

/* line 1033, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 7px;
  background-color: #FFFFFF;
  color: #919191;
  text-align: right;
}

/* line 1041, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 0;
  background: #FFFFFF;
  border: 2px solid #1AB394;
  border-radius: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  -moz-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

/* line 1058, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

/* line 1062, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0;
}

/* jqGrid */
/* line 1068, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid {
  -moz-box-sizing: content-box;
}

/* line 1072, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid-btable {
  border-collapse: separate;
}

/* line 1076, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid-htable {
  border-collapse: separate;
}

/* line 1080, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid-titlebar {
  height: 40px;
  line-height: 15px;
  color: #676a6c;
  background-color: #F9F9F9;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* line 1088, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-jqgrid-title {
  float: left;
  margin: 1.1em 1em 0.2em;
}

/* line 1093, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-jqgrid-titlebar {
  position: relative;
  border-left: 0 solid;
  border-right: 0 solid;
  border-top: 0 solid;
}

/* line 1100, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-widget-header {
  background: none;
  background-image: none;
  background-color: #f5f5f6;
  text-transform: uppercase;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 1109, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid tr.ui-row-ltr td {
  border-right-color: inherit;
  border-right-style: solid;
  border-right-width: 1px;
  text-align: left;
  border-color: #DDDDDD;
  background-color: inherit;
}

/* line 1118, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-search-toolbar input[type="text"] {
  font-size: 12px;
  height: 15px;
  border: 1px solid #CCCCCC;
  border-radius: 0;
}

/* line 1125, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background: #F9F9F9;
  border: 1px solid #DDDDDD;
  line-height: 15px;
  font-weight: bold;
  color: #676a6c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* line 1134, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-widget-content {
  box-sizing: content-box;
}

/* line 1138, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-icon-triangle-1-n {
  background-position: 1px -16px;
}

/* line 1142, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid tr.ui-search-toolbar th {
  border-top-width: 0 !important;
  border-top-color: inherit !important;
  border-top-style: ridge !important;
}

/* line 1148, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
  background: #f5f5f5;
  border-collapse: separate;
}

/* line 1153, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  background: #f2fbff;
}

/* line 1157, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border: 1px solid #dddddd;
  background: #ffffff;
  font-weight: normal;
  color: #212121;
}

/* line 1164, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-pg-input {
  font-size: inherit;
  width: 50px;
  border: 1px solid #CCCCCC;
  height: 15px;
}

/* line 1171, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-pg-selbox {
  display: block;
  font-size: 1em;
  height: 25px;
  line-height: 18px;
  margin: 0;
  width: auto;
}

/* line 1180, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-pager-control {
  position: relative;
}

/* line 1184, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-jqgrid-pager {
  height: 32px;
  position: relative;
}

/* line 1189, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-pg-table .navtable .ui-corner-all {
  border-radius: 0;
}

/* line 1193, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-pg-button:hover {
  padding: 1px;
  border: 0;
}

/* line 1198, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .loading {
  position: absolute;
  top: 45%;
  left: 45%;
  width: auto;
  height: auto;
  z-index: 101;
  padding: 6px;
  margin: 5px;
  text-align: center;
  font-weight: bold;
  display: none;
  border-width: 2px !important;
  font-size: 11px;
}

/* line 1214, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .form-control {
  height: 10px;
  width: auto;
  display: inline;
  padding: 10px 12px;
}

/* line 1221, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid-pager {
  height: 32px;
}

/* line 1225, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 0;
}

/* line 1229, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 0;
}

/* line 1233, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 0;
}

/* line 1237, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 0;
}

/* line 1241, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-widget-content {
  border: 1px solid #ddd;
}

/* line 1245, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-jqgrid-titlebar {
  padding: 0;
}

/* line 1249, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid .ui-jqgrid-titlebar {
  border-bottom: 1px solid #ddd;
}

/* line 1253, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqgrid tr.jqgrow td {
  padding: 6px;
}

/* line 1257, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqdialog .ui-jqdialog-titlebar {
  padding: 10px 10px;
}

/* line 1262, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqdialog .ui-jqdialog-title {
  float: none !important;
}

/* line 1266, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-jqdialog > .ui-resizable-se {
  position: absolute;
}

/* Nestable list */
/* line 1272, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 20px;
}

/* line 1282, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 1290, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-list .dd-list {
  padding-left: 30px;
}

/* line 1294, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-collapsed .dd-list {
  display: none;
}

/* line 1298, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-item,
.dd-empty,
.dd-placeholder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 20px;
}

/* line 1310, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-handle {
  display: block;
  margin: 5px 0;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
  border: 1px solid #e7eaec;
  background: #f5f5f5;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 1324, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-handle span {
  font-weight: bold;
}

/* line 1328, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-handle:hover {
  background: #f0f0f0;
  cursor: pointer;
  font-weight: bold;
}

/* line 1334, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-item > button {
  display: block;
  position: relative;
  cursor: pointer;
  float: left;
  width: 25px;
  height: 20px;
  margin: 5px 0;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}

/* line 1354, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-item > button:before {
  content: '+';
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  text-indent: 0;
}

/* line 1363, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-item > button[data-action="collapse"]:before {
  content: '-';
}

/* line 1367, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#nestable2 .dd-item > button {
  font-family: "Font Awesome 5 Free";
  height: 34px;
  width: 33px;
  color: #c1c1c1;
}

/* line 1375, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#nestable2 .dd-item > button:before {
  content: "\f067";
}

/* line 1379, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#nestable2 .dd-item > button[data-action="collapse"]:before {
  content: "\f068";
}

/* line 1383, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-placeholder,
.dd-empty {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 1394, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-empty {
  border: 1px dashed #bbb;
  min-height: 100px;
  background-color: #e5e5e5;
  background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

/* line 1405, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-dragel {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
}

/* line 1411, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-dragel > .dd-item .dd-handle {
  margin-top: 0;
}

/* line 1415, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dd-dragel .dd-handle {
  -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}

/**
* Nestable Extras
*/
/* line 1423, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.nestable-lists {
  display: block;
  clear: both;
  padding: 30px 0;
  width: 100%;
  border: 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

/* line 1433, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#nestable-menu {
  padding: 0;
  margin: 10px 0 20px 0;
}

/* line 1438, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#nestable-output,
#nestable2-output {
  width: 100%;
  font-size: 0.75em;
  line-height: 1.333333em;
  font-family: lucida grande, lucida sans unicode, helvetica, arial, sans-serif;
  padding: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 1449, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#nestable2 .dd-handle {
  color: inherit;
  border: 1px dashed #e7eaec;
  background: #f3f3f4;
  padding: 10px;
}

/* line 1457, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#nestable2 span.label {
  margin-right: 10px;
}

/* line 1461, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#nestable-output,
#nestable2-output {
  font-size: 12px;
  padding: 25px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* CodeMirror */
/* line 1470, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.CodeMirror {
  border: 1px solid #eee;
  height: auto;
}

/* line 1475, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.CodeMirror-scroll {
  overflow-y: hidden;
  overflow-x: auto;
}

/* Google Maps */
/* line 1481, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.google-map {
  height: 300px;
}

/* Validation */
/* line 1486, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
label.error {
  color: #cc5965;
  display: inline-block;
  margin-left: 5px;
}

/* line 1492, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.form-control.error {
  border: 1px dotted #cc5965;
}

/* ngGrid */
/* line 1497, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.gridStyle {
  border: 1px solid #d4d4d4;
  width: 100%;
  height: 400px;
}

/* line 1503, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.gridStyle2 {
  border: 1px solid #d4d4d4;
  width: 500px;
  height: 300px;
}

/* line 1509, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ngH eaderCell {
  border-right: none;
  border-bottom: 1px solid #e7eaec;
}

/* line 1514, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ngCell {
  border-right: none;
}

/* line 1518, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ngTopPanel {
  background: #F5F5F6;
}

/* line 1522, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ngRow.even {
  background: #f9f9f9;
}

/* line 1526, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ngRow.selected {
  background: #EBF2F1;
}

/* line 1530, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ngRow {
  border-bottom: 1px solid #e7eaec;
}

/* line 1534, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ngCell {
  background-color: transparent;
}

/* line 1538, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ngHeaderCell {
  border-right: none;
}

/* Toastr custom style */
/*
#toast-container > .toast {
  background-image: none !important;
}
*/
/* line 1550, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#toast-container > .toast:before {
  position: fixed;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  line-height: 24px;
  float: left;
  color: #FFF;
  padding-right: 0.5em;
  margin: auto 0.5em auto -1.5em;
}

/*
#toast-container > .toast-warning:before {
  content: "\f0e7";
}

#toast-container > .toast-error:before {
  content: "\f071";
}

#toast-container > .toast-info:before {
  content: "\f005";
}

#toast-container > .toast-success:before {
  content: "\f00C";
}
*/
/* line 1579, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#toast-container > div {
  -moz-box-shadow: 0 0 3px #999;
  -webkit-box-shadow: 0 0 3px #999;
  box-shadow: 0 0 3px #999;
  opacity: .9;
  -ms-filter: alpha(Opacity=90);
  filter: alpha(opacity=90);
}

/* line 1588, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#toast-container > :hover {
  -moz-box-shadow: 0 0 4px #999;
  -webkit-box-shadow: 0 0 4px #999;
  box-shadow: 0 0 4px #999;
  opacity: 1;
  -ms-filter: alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

/* line 1598, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.toast {
  background-color: #aaaaaa;
}

/* line 1602, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.toast-success {
  background-color: #00b600;
}

/* line 1606, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.toast-error {
  background-color: #DD2315;
}

/* line 1610, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.toast-info {
  background-color: #1872ab;
}

/* line 1614, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.toast-warning {
  background-color: #f8ac59;
}

/* line 1618, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.toast-top-full-width {
  margin-top: 20px;
}

/* line 1622, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.toast-bottom-full-width {
  margin-bottom: 20px;
}

/* Notifie */
/* line 1627, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.cg-notify-message.inspinia-notify {
  background: #fff;
  padding: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
  border: none;
  margin-top: 30px;
  color: inherit;
}

/* line 1638, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.inspinia-notify.alert-warning {
  border-left: 6px solid #f8ac59;
}

/* line 1642, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.inspinia-notify.alert-success {
  border-left: 6px solid #1c84c6;
}

/* line 1646, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.inspinia-notify.alert-danger {
  border-left: 6px solid #DD2315;
}

/* line 1650, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.inspinia-notify.alert-info {
  border-left: 6px solid #aaaaaa;
}

/* Image cropper style */
/* line 1655, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.img-container, .img-preview {
  overflow: hidden;
  text-align: center;
  width: 100%;
}

/* line 1661, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.img-preview-sm {
  height: 130px;
  width: 200px;
}

/* Forum styles  */
/* line 1667, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-post-container .media {
  margin: 10px 10px 10px 10px;
  padding: 20px 10px 20px 10px;
  border-bottom: 1px solid #f1f1f1;
}

/* line 1673, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-avatar {
  float: left;
  margin-right: 20px;
  text-align: center;
  width: 110px;
}

/* line 1680, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-avatar .img-circle {
  height: 48px;
  width: 48px;
}

/* line 1685, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.author-info {
  color: #676a6c;
  font-size: 11px;
  margin-top: 5px;
  text-align: center;
}

/* line 1692, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-post-info {
  padding: 9px 12px 6px 12px;
  background: #f9f9f9;
  border: 1px solid #f1f1f1;
}

/* line 1698, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.media-body > .media {
  background: #f9f9f9;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
}

/* line 1704, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-post-container .media-body .photos {
  margin: 10px 0;
}

/* line 1708, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-photo {
  max-width: 140px;
  border-radius: 3px;
}

/* line 1714, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.media-body > .media .forum-avatar {
  width: 70px;
  margin-right: 10px;
}

/* line 1719, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.media-body > .media .forum-avatar .img-circle {
  height: 38px;
  width: 38px;
}

/* line 1724, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.mid-icon {
  font-size: 66px;
}

/* line 1728, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-item {
  margin: 10px 0;
  padding: 10px 0 20px;
  border-bottom: 1px solid #f1f1f1;
}

/* line 1734, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.views-number {
  font-size: 24px;
  line-height: 18px;
  font-weight: 400;
}

/* line 1740, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-container, .forum-post-container {
  padding: 30px !important;
}

/* line 1744, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-item small {
  color: #999;
}

/* line 1748, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-item .forum-sub-title {
  color: #999;
  margin-left: 50px;
}

/* line 1753, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-title {
  margin: 15px 0 15px 0;
}

/* line 1757, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-info {
  text-align: center;
}

/* line 1761, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-desc {
  color: #999;
}

/* line 1765, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-icon {
  float: left;
  width: 30px;
  margin-right: 20px;
  text-align: center;
}

/* line 1772, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
a.forum-item-title {
  color: inherit;
  display: block;
  font-size: 18px;
  font-weight: 600;
}

/* line 1779, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
a.forum-item-title:hover {
  color: inherit;
}

/* line 1783, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-icon .fa {
  font-size: 30px;
  margin-top: 8px;
  color: #9b9b9b;
}

/* line 1790, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-item.active .fa {
  color: #aaaaaa;
}

/* line 1794, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.forum-item.active a.forum-item-title {
  color: #aaaaaa;
}

@media (max-width: 992px) {
  /* line 1800, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .forum-info {
    margin: 15px 0 10px 0;
    /* Comment this is you want to show forum info in small devices */
    display: none;
  }

  /* line 1807, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .forum-desc {
    float: none !important;
  }
}
/* New Timeline style */
/* line 1815, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}

/* line 1822, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* line 1829, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#vertical-timeline {
  position: relative;
  padding: 0;
  margin-top: 2em;
  margin-bottom: 2em;
}

/* line 1836, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#vertical-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #f1f1f1;
}

/* line 1846, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-content .btn {
  float: right;
}

/* line 1850, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
#vertical-timeline.light-timeline:before {
  background: #e7eaec;
}

/* line 1854, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dark-timeline .vertical-timeline-content:before {
  border-color: transparent #f5f5f5 transparent transparent;
}

/* line 1858, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dark-timeline.center-orientation .vertical-timeline-content:before {
  border-color: transparent transparent transparent #f5f5f5;
}

/* line 1862, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dark-timeline .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before,
.dark-timeline.center-orientation .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before {
  border-color: transparent #f5f5f5 transparent transparent;
}

/* line 1867, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dark-timeline .vertical-timeline-content,
.dark-timeline.center-orientation .vertical-timeline-content {
  background: #f5f5f5;
}

@media only screen and (min-width: 1170px) {
  /* line 1873, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  #vertical-timeline.center-orientation {
    margin-top: 3em;
    margin-bottom: 3em;
  }

  /* line 1878, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  #vertical-timeline.center-orientation:before {
    left: 50%;
    margin-left: -2px;
  }
}
@media only screen and (max-width: 1170px) {
  /* line 1885, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation.dark-timeline .vertical-timeline-content:before {
    border-color: transparent #f5f5f5 transparent transparent;
  }
}
/* line 1890, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-block {
  position: relative;
  margin: 2em 0;
}

/* line 1895, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}

/* line 1901, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-block:first-child {
  margin-top: 0;
}

/* line 1905, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-block:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 1170px) {
  /* line 1910, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-block {
    margin: 4em 0;
  }

  /* line 1914, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-block:first-child {
    margin-top: 0;
  }

  /* line 1918, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-block:last-child {
    margin-bottom: 0;
  }
}
/* line 1923, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  border: 3px solid #f1f1f1;
  text-align: center;
}

/* line 1935, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-icon i {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -9px;
}

@media only screen and (min-width: 1170px) {
  /* line 1947, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-icon {
    width: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    font-size: 19px;
  }

  /* line 1957, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-icon i {
    margin-left: -12px;
    margin-top: -10px;
  }

  /* line 1962, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .cssanimations .vertical-timeline-icon.is-hidden {
    visibility: hidden;
  }
}
/* line 1967, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 0.25em;
  padding: 1em;
}

/* line 1975, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}

/* line 1981, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-content h2 {
  font-weight: 400;
  margin-top: 4px;
}

/* line 1986, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}

/* line 1991, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-content .vertical-date {
  float: left;
  font-weight: 500;
}

/* line 1996, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-date small {
  color: #aaaaaa;
  font-weight: 400;
}

/* line 2001, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.vertical-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid white;
}

@media only screen and (min-width: 768px) {
  /* line 2013, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .vertical-timeline-content h2 {
    font-size: 18px;
  }

  /* line 2017, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .vertical-timeline-content p {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1170px) {
  /* line 2024, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-content {
    margin-left: 0;
    padding: 1.6em;
    width: 45%;
  }

  /* line 2030, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: white;
  }

  /* line 2037, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-content .btn {
    float: left;
  }

  /* line 2041, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-content .vertical-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 2px;
    font-size: 14px;
  }

  /* line 2049, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content {
    float: right;
  }

  /* line 2053, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }

  /* line 2061, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .btn {
    float: right;
  }

  /* line 2065, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .vertical-date {
    left: auto;
    right: 122%;
    text-align: right;
  }

  /* line 2071, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .center-orientation .cssanimations .vertical-timeline-content.is-hidden {
    visibility: hidden;
  }
}
/* Tabs */
/* line 2078, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container {
 /*
  .tabs-left > .nav-tabs, .tabs-right > .nav-tabs {
    width: 20%;
  }
*/
  /*
  .tabs-right .panel-body {
    width: 80%;
    margin-right: 20%;
  }
*/
  /*
  .tabs-right > .nav-tabs {
    float: right;
    margin-left: 19px;
  }

  */
}
/* line 2080, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .panel-body {
  background: #fff;
  border: 1px solid #e7eaec;
  border-radius: 2px;
  padding: 20px;
  position: relative;
}
/* line 2088, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .nav-tabs > li.active > a,
.tabs-container .nav-tabs > li.active > a:hover,
.tabs-container .nav-tabs > li.active > a:focus {
  border: 1px solid #e7eaec;
  border-bottom-color: transparent;
  background-color: #fff;
}
/* line 2096, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
/* line 2101, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tab-pane .panel-body {
  border-top: none;
}
/* line 2105, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .nav-tabs > li.active > a, .tabs-container .nav-tabs > li.active > a:hover, .tabs-container .nav-tabs > li.active > a:focus {
  border: 1px solid #e7eaec;
  border-bottom-color: transparent;
}
/* line 2110, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .nav-tabs {
  border-bottom: 1px solid #e7eaec;
}
/* line 2114, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tab-pane .panel-body {
  border-top: none;
}
/* line 2118, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-left .tab-pane .panel-body, .tabs-container .tabs-right .tab-pane .panel-body {
  border-top: 1px solid #e7eaec;
}
/* line 2122, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .nav-tabs > li a:hover {
  background: transparent;
  border-color: transparent;
}
/* line 2127, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-below > .nav-tabs,
.tabs-container .tabs-right > .nav-tabs,
.tabs-container .tabs-left > .nav-tabs {
  border-bottom: 0;
}
/* line 2133, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-left .panel-body {
  position: static;
}
/* line 2142, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-left .panel-body {
  width: 80%;
  margin-left: 20%;
}
/* line 2153, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tab-content > .tab-pane,
.tabs-container .pill-content > .pill-pane {
  display: none;
}
/* line 2158, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tab-content > .active,
.tabs-container .pill-content > .active {
  display: block;
}
/* line 2163, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-below > .nav-tabs {
  border-top: 1px solid #e7eaec;
}
/* line 2167, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}
/* line 2172, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-below > .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
/* line 2178, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-below > .nav-tabs > li > a:hover,
.tabs-container .tabs-below > .nav-tabs > li > a:focus {
  border-top-color: #e7eaec;
  border-bottom-color: transparent;
}
/* line 2184, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-left > .nav-tabs > li,
.tabs-container .tabs-right > .nav-tabs > li {
  float: none;
}
/* line 2189, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-left > .nav-tabs > li > a,
.tabs-container .tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}
/* line 2196, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
}
/* line 2201, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
/* line 2208, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-left > .nav-tabs .active > a,
.tabs-container .tabs-left > .nav-tabs .active > a:hover,
.tabs-container .tabs-left > .nav-tabs .active > a:focus {
  border-color: #e7eaec transparent #e7eaec #e7eaec;
}
/* line 2222, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
/* line 2229, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tabs-container .tabs-right > .nav-tabs .active > a,
.tabs-container .tabs-right > .nav-tabs .active > a:hover,
.tabs-container .tabs-right > .nav-tabs .active > a:focus {
  border-color: #e7eaec #e7eaec #e7eaec transparent;
  z-index: 1;
}

@media (max-width: 767px) {
  /* line 2239, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .tabs-container .nav-tabs > li {
    float: none !important;
  }

  /* line 2243, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
  .tabs-container .nav-tabs > li.active > a {
    border-bottom: 1px solid #e7eaec !important;
    margin: 0;
  }
}
/* jsvectormap */
/* line 2250, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* line 2257, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-tip {
  position: absolute;
  display: none;
  border: solid 1px #CDCDCD;
  border-radius: 3px;
  background: #292929;
  color: white;
  font-family: sans-serif, Verdana;
  font-size: smaller;
  padding: 5px;
}

/* line 2269, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
  position: absolute;
  left: 10px;
  border-radius: 3px;
  background: #aaaaaa;
  padding: 3px;
  color: white;
  cursor: pointer;
  line-height: 10px;
  text-align: center;
  box-sizing: content-box;
}

/* line 2282, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-zoomin, .jvectormap-zoomout {
  width: 10px;
  height: 10px;
}

/* line 2287, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-zoomin {
  top: 10px;
}

/* line 2291, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-zoomout {
  top: 30px;
}

/* line 2295, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-goback {
  bottom: 10px;
  z-index: 1000;
  padding: 6px;
}

/* line 2301, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-spinner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==);
}

/* line 2310, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-title {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

/* line 2316, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt {
  position: absolute;
}

/* line 2320, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-h {
  bottom: 0;
  right: 0;
}

/* line 2325, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-v {
  top: 0;
  right: 0;
}

/* line 2330, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend {
  background: black;
  color: white;
  border-radius: 3px;
}

/* line 2336, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-h .jvectormap-legend {
  float: left;
  margin: 0 10px 10px 0;
  padding: 3px 3px 1px 3px;
}

/* line 2342, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
  float: left;
}

/* line 2346, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-v .jvectormap-legend {
  margin: 10px 10px 0 0;
  padding: 3px;
}

/* line 2351, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-h .jvectormap-legend-tick {
  width: 40px;
}

/* line 2355, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
  height: 15px;
}

/* line 2359, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
}

/* line 2366, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-tick-text {
  font-size: 12px;
}

/* line 2370, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
  text-align: center;
}

/* line 2374, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  padding-left: 3px;
}

/*Slick Carousel */
/* line 2383, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.slick-prev:before,
.slick-next:before {
  color: #aaaaaa !important;
}

/* Payments */
/* line 2390, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.payment-card {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #e7eaec;
}

/* line 2397, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.payment-icon-big {
  font-size: 60px;
  color: #D1DADE;
}

/* line 2402, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.payments-method.panel-group .panel + .panel {
  margin-top: -1px;
}

/* line 2406, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.payments-method .panel-heading {
  padding: 15px;
}

/* line 2410, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.payments-method .panel {
  border-radius: 0;
}

/* line 2414, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.payments-method .panel-heading h5 {
  margin-bottom: 5px;
}

/* line 2418, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.payments-method .panel-heading i {
  font-size: 26px;
}

/* Select2 custom styles */
/* line 2424, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border-color: #e7eaec;
}

/* line 2429, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #aaaaaa;
}

/* line 2434, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #aaaaaa;
}

/* line 2438, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #e7eaec;
}

/* line 2442, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.select2-dropdown {
  border-color: #e7eaec;
}
/* line 2445, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.select2-dropdown input:focus {
  outline: none;
}

/* line 2450, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.select2-selection {
  outline: none;
}

/* line 2455, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-select-container.ui-select-bootstrap .ui-select-choices-row.active > a {
  background-color: #aaaaaa;
}

/* Tour */
/* line 2461, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tour-tour .btn.btn-default {
  background-color: #ffffff;
  border: 1px solid #d2d2d2;
  color: inherit;
}

/* line 2467, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tour-step-backdrop {
  z-index: 2101;
}

/* line 2471, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.tour-backdrop {
  z-index: 2100;
  opacity: .7;
}

/* line 2476, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.popover[class*=tour-] {
  z-index: 2100;
}

/* line 2480, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
body.tour-open .animated {
  animation-fill-mode: initial;
}

/* Resizable */
/* line 2487, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.resizable-panels .ibox {
  clear: none;
  margin: 10px;
  float: left;
  overflow: hidden;
}

/* line 2494, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.resizable-panels .ibox .ibox-content {
  height: calc(100% - 49px);
}

/* line 2497, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.ui-resizable-helper {
  background: rgba(211, 211, 211, 0.4);
}

/* Wizard step fix */
/* line 2503, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.wizard > .content > .body {
  position: relative;
}

/* PDF js style */
/* line 2510, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.pdf-toolbar {
  max-width: 600px;
  margin: 0 auto;
}

/* Dropzone */
/* line 2517, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dropzone {
  min-height: 140px;
  border: 2px dashed #D1DADE !important;
  background: white;
  padding: 20px 20px;
  color: #D1DADE;
}
/* line 2523, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dropzone .dz-message {
  font-size: 12px;
}

/* line 2529, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dropzone .dz-message {
  text-align: center;
  margin: 3em 0;
}

/* line 2534, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.dropzone.dz-drag-hover {
  border: 2px solid #f3f3f4 !important;
  background-color: #D1DADE;
}

/* Activity stream */
/* line 2541, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream {
  position: relative;
  padding: 10px 0;
}
/* line 2546, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream:first-child .stream-badge:before {
  top: 10px;
}
/* line 2550, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream:last-child .stream-badge:before {
  height: 30px;
}
/* line 2555, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge {
  width: 50px;
}
/* line 2558, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge i {
  border: 1px solid #e7eaec;
  border-radius: 50%;
  padding: 6px;
  color: #808486;
  position: absolute;
  background-color: #ffffff;
  left: 8px;
}
/* line 2567, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge i.fa-circle {
  color: #ced0d1;
}
/* line 2572, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge i.bg-success {
  color: #ffffff;
  background-color: #1c84c6;
  border-color: #1c84c6;
}
/* line 2578, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge i.bg-primary {
  color: #ffffff;
  background-color: #aaaaaa;
  border-color: #aaaaaa;
}
/* line 2584, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge i.bg-warning {
  color: #ffffff;
  background-color: #f8ac59;
  border-color: #f8ac59;
}
/* line 2590, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge i.bg-info {
  color: #ffffff;
  background-color: #1872ab;
  border-color: #1872ab;
}
/* line 2596, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge i.bg-danger {
  color: #ffffff;
  background-color: #DD2315;
  border-color: #DD2315;
}
/* line 2604, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-badge:before {
  content: '';
  width: 1px;
  background-color: #e7eaec;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
}
/* line 2617, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-info {
  font-size: 12px;
  margin-bottom: 5px;
}
/* line 2621, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-info img {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin-right: 2px;
  margin-top: -4px;
}
/* line 2629, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-info .date {
  color: #9a9d9f;
  font-size: 80%;
}
/* line 2636, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream .stream-panel {
  margin-left: 55px;
}

/* line 2643, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream-small {
  margin: 10px 0;
}
/* line 2646, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/elements.scss */
.stream-small .label {
  padding: 2px 6px;
  margin-right: 2px;
}

/* line 1, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-panel {
  width: 220px;
  background: #ebebed;
  padding: 10px 20px;
  position: absolute;
  right: 0;
}

/* line 9, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-panel .feed-element img.img-circle {
  width: 32px;
  height: 32px;
}

/* line 14, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-panel .feed-element, .media-body, .sidebar-panel p {
  font-size: 12px;
}

/* line 18, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-panel .feed-element {
  margin-top: 20px;
  padding-bottom: 0;
}

/* line 23, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-panel .list-group {
  margin-bottom: 10px;
}

/* line 27, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-panel .list-group .list-group-item {
  padding: 5px 0;
  font-size: 12px;
  border: 0;
}

/* line 33, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-content .wrapper, .wrapper.sidebar-content {
  padding-right: 230px !important;
}

/* line 37, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.body-small .sidebar-content .wrapper, .body-small .wrapper.sidebar-content {
  padding-right: 20px !important;
}

/* line 43, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
#right-sidebar {
  background-color: #fff;
  border-left: 1px solid #e7eaec;
  border-top: 1px solid #e7eaec;
  overflow: hidden;
  position: fixed;
  top: 60px;
  width: 260px !important;
  z-index: 1009;
  bottom: 0;
  right: -260px;
}

/* line 56, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
#right-sidebar.sidebar-open {
  right: 0;
}

/* line 60, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
#right-sidebar.sidebar-open.sidebar-top {
  top: 0;
  border-top: none;
}

/* line 67, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.nav-tabs {
  border: none;
}
/* line 71, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.nav-tabs.navs-4 li {
  width: 25%;
}
/* line 74, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.nav-tabs.navs-3 li {
  width: 33.3333%;
}
/* line 77, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.nav-tabs.navs-2 li {
  width: 50%;
}
/* line 81, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.nav-tabs li {
  border: none;
}
/* line 85, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.nav-tabs li a {
  border: none;
  padding: 12px 10px;
  margin: 0;
  border-radius: 0;
  background: #000000;
  color: #fff;
  text-align: center;
  border-right: 1px solid #050505;
}
/* line 97, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.nav-tabs li.active a {
  border: none;
  background: #f9f9f9;
  color: #676a6c;
  font-weight: bold;
}
/* line 105, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .nav-tabs > li.active > a:hover,
.sidebar-container .nav-tabs > li.active > a:focus {
  border: none;
}
/* line 112, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.sidebar-list {
  margin: 0;
  padding: 0;
}
/* line 117, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.sidebar-list li {
  border-bottom: 1px solid #e7eaec;
  padding: 15px 20px;
  list-style: none;
  font-size: 12px;
}
/* line 129, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-message:nth-child(2n+2) {
  background: #f9f9f9;
}
/* line 133, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container ul.sidebar-list li a {
  text-decoration: none;
  color: inherit;
}
/* line 138, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-content {
  padding: 15px 20px;
  font-size: 12px;
}
/* line 147, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-title {
  background: #f9f9f9;
  padding: 20px;
  border-bottom: 1px solid #e7eaec;
}
/* line 152, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-title h3 {
  margin-bottom: 3px;
  padding-left: 2px;
}
/* line 160, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .tab-content h4 {
  margin-bottom: 5px;
}
/* line 166, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-message > a > .pull-left {
  margin-right: 10px;
}
/* line 170, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-message > a {
  text-decoration: none;
  color: inherit;
}
/* line 175, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-message {
  padding: 15px 20px;
}
/* line 179, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-message .media-body {
  display: block;
  width: auto;
}
/* line 184, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .sidebar-message .message-avatar {
  height: 38px;
  width: 38px;
  border-radius: 50%;
}
/* line 190, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/sidebar.scss */
.sidebar-container .setings-item {
  padding: 15px 20px;
  border-bottom: 1px solid #e7eaec;
}

/* line 1, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #ffffff !important;
  font-size: 13px;
  color: #676a6c;
  overflow-x: hidden;
}

/* line 10, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
html, body {
  height: 100%;
}

/* line 15, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.full-height-layout #wrapper,
body.full-height-layout #page-wrapper {
  height: 100%;
}

/* line 20, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
#page-wrapper {
  min-height: auto;
}

/* line 24, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.boxed-layout {
  background: url(/assets/patterns/shattered-241155c2a3436bfc0a542fc31fe2908ff2bdfc90e1ac7e26c6ba715b01030dcf.png);
}

/* line 28, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.boxed-layout #wrapper {
  background-color: #2f4050;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
}

/* line 37, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.top-navigation.boxed-layout #wrapper,
.boxed-layout #wrapper.top-navigation {
  max-width: 1300px !important;
}

/* line 42, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.block {
  display: block;
}

/* line 46, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.clear {
  display: block;
  overflow: hidden;
}

/* line 51, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
a {
  cursor: pointer;
}

/* line 55, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
a:hover, a:focus {
  text-decoration: none;
}

/* line 59, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-bottom {
  border-bottom: 1px solid #e7eaec !important;
}

/* line 63, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.font-bold {
  font-weight: 600;
}

/* line 67, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.font-normal {
  font-weight: 400;
}

/* line 71, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 75, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.font-italic {
  font-style: italic;
}

/* line 79, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.b-r {
  border-right: 1px solid #e7eaec;
}

/* line 83, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.hr-line-dashed {
  border-top: 1px dashed #e7eaec;
  color: #ffffff;
  background-color: #ffffff;
  height: 1px;
  margin: 15px 0;
}

/* line 91, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.hr-line-solid {
  border-bottom: 1px solid #e7eaec;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid !important;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* line 99, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
video {
  width: 100% !important;
  height: auto !important;
}

/* GALLERY */
/* line 105, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.gallery > .row > div {
  margin-bottom: 15px;
}

/* line 109, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.fancybox img {
  margin-bottom: 5px;
  /* Only for demo */
  width: 24%;
}

/* Summernote text editor  */
/* line 116, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.note-editor {
  height: auto !important;
}

/* line 120, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.note-editor.fullscreen {
  z-index: 2050;
}

/* line 123, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.note-editor.note-frame.fullscreen {
  z-index: 2020;
}

/* line 125, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.note-editor.note-frame .note-editing-area .note-editable {
  color: #676a6c;
  padding: 15px;
}

/* line 130, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.note-editor.note-frame {
  border: none;
}

/* line 134, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.note-editor.panel {
  margin-bottom: 0;
}

/* MODAL */
/* line 139, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.modal-content {
  background-clip: padding-box;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  outline: 0 none;
  position: relative;
}

/* line 149, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.modal-dialog {
  z-index: 2200;
}

@media (min-width: 768px) {
  /* line 154, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
  .modal-dialog {
    width: 700px;
  }
}
/* line 159, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.modal-body {
  padding: 20px 30px 30px 30px;
}

/* line 163, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.inmodal .modal-body {
  background: #f8fafb;
}

/* line 167, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.inmodal .modal-header {
  padding: 30px 15px;
  text-align: center;
}

/* line 172, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.animated.modal.fade .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

/* line 179, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.inmodal .modal-title {
  font-size: 26px;
}

/* line 183, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.inmodal .modal-icon {
  font-size: 84px;
  color: #e2e3e3;
}

/* line 188, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.modal-footer {
  margin-top: 0;
}

/* WRAPPERS */
/* line 194, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
#wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* line 199, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.wrapper {
  padding: 0 20px;
}

/* line 203, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.wrapper-content {
  padding: 20px 10px 40px;
}

/* line 207, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
#page-wrapper {
  padding: 0 15px;
  min-height: 568px;
  position: relative !important;
}

@media (min-width: 768px) {
  /* line 214, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
  #page-wrapper {
    position: inherit;
    margin: 0 0 0 240px;
    min-height: 2002px;
  }
}
/* line 221, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.title-action {
  text-align: right;
  padding-top: 30px;
}

/* line 226, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-content h1, .ibox-content h2, .ibox-content h3, .ibox-content h4, .ibox-content h5,
.ibox-title h1, .ibox-title h2, .ibox-title h3, .ibox-title h4, .ibox-title h5 {
  margin-top: 5px;
}

/* line 231, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
ul.unstyled, ol.unstyled {
  list-style: none outside none;
  margin-left: 0;
}

/* line 236, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.big-icon {
  font-size: 160px !important;
  color: #e5e6e7;
}

/* FOOTER */
/* line 243, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.footer {
  background: none repeat scroll 0 0 white;
  border-top: 1px solid #e7eaec;
  bottom: 0;
  left: 0;
  padding: 10px 20px;
  position: absolute;
  right: 0;
}

/* line 254, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.footer.fixed_full {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 20px;
  background: white;
  border-top: 1px solid #e7eaec;
}

/* line 265, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.footer.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 20px;
  background: white;
  border-top: 1px solid #e7eaec;
  margin-left: 220px;
}

/* line 277, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.mini-navbar .footer.fixed,
body.body-small.mini-navbar .footer.fixed {
  margin: 0 0 0 70px;
}

/* line 282, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.mini-navbar.canvas-menu .footer.fixed,
body.canvas-menu .footer.fixed {
  margin: 0 !important;
}

/* line 287, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.fixed-sidebar.body-small.mini-navbar .footer.fixed {
  margin: 0 0 0 220px;
}

/* line 291, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.body-small .footer.fixed {
  margin-left: 0;
}

/* PANELS */
/* line 297, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.page-heading {
  border-top: 0;
  padding: 0 10px 20px 10px;
}

/* line 302, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-heading h1, .panel-heading h2 {
  margin-bottom: 5px;
}

/* TABLES */
/* line 308, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.table-bordered {
  border: 1px solid #EBEBEB;
}

/* line 312, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
  background-color: #F5F5F6;
  border-bottom-width: 1px;
}

/* line 317, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
  border: 1px solid #e7e7e7;
}

/* line 321, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.table > thead > tr > th {
  border-bottom: 1px solid #DDDDDD;
  vertical-align: bottom;
}

/* line 326, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  border-top: 1px solid #e7eaec;
  line-height: 1.42857;
  padding: 8px;
  vertical-align: top;
}

/* PANELS */
/* line 335, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel.blank-panel {
  background: none;
  margin: 0;
}

/* line 340, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.blank-panel .panel-heading {
  padding-bottom: 0;
}

/* line 346, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.nav-tabs > li > a {
  color: #A7B1C2;
  font-weight: 600;
  padding: 10px 20px 10px 25px;
}

/* line 352, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
  background-color: #e6e6e6;
  color: #676a6c;
}

/* line 357, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ui-tab .tab-content {
  padding: 20px 0;
}

/* GLOBAL  */
/* line 363, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.no-padding {
  padding: 0 !important;
}

/* line 367, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.no-borders {
  border: none !important;
}

/* line 371, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.no-margins {
  margin: 0 !important;
}

/* line 375, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.no-top-border {
  border-top: 0 !important;
}

/* line 379, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-content.text-box {
  padding-bottom: 0;
  padding-top: 15px;
}

/* line 384, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-left-right {
  border-left: 1px solid #e7eaec;
  border-right: 1px solid #e7eaec;
}

/* line 389, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-top-bottom {
  border-top: 1px solid #e7eaec;
  border-bottom: 1px solid #e7eaec;
}

/* line 394, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-left {
  border-left: 1px solid #e7eaec;
}

/* line 398, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-right {
  border-right: 1px solid #e7eaec;
}

/* line 402, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-top {
  border-top: 1px solid #e7eaec;
}

/* line 406, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-bottom {
  border-bottom: 1px solid #e7eaec;
}

/* line 410, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-size-sm {
  border-width: 3px;
}

/* line 414, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-size-md {
  border-width: 6px;
}

/* line 418, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-size-lg {
  border-width: 9px;
}

/* line 422, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.border-size-xl {
  border-width: 12px;
}

/* line 426, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.full-width {
  width: 100% !important;
}

/* line 430, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.link-block {
  font-size: 12px;
  padding: 10px;
}

/* line 435, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.nav.navbar-top-links .link-block a {
  font-size: 12px;
}

/* line 439, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.link-block a {
  font-size: 10px;
  color: inherit;
}

/* line 445, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.mini-navbar .branding {
  display: none;
}

/* line 449, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
img.circle-border {
  border: 6px solid #FFFFFF;
  border-radius: 50%;
}

/* line 454, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.branding {
  float: left;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 17px 20px;
  text-align: center;
  background-color: #aaaaaa;
}

/* line 464, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.login-panel {
  margin-top: 25%;
}

/* line 468, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.icons-box h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 473, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.icons-box .infont a i {
  font-size: 25px;
  display: block;
  color: #676a6c;
}

/* line 479, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.icons-box .infont a {
  color: #a6a8a9;
}

/* line 483, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.icons-box .infont a {
  padding: 10px;
  margin: 1px;
  display: block;
}

/* line 490, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ui-draggable .ibox-title {
  cursor: move;
}

/* line 494, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

/* line 500, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.breadcrumb > li a {
  color: inherit;
}

/* line 504, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.breadcrumb > .active {
  color: inherit;
}

/* line 508, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
code {
  background-color: #F9F2F4;
  border-radius: 4px;
  color: #ca4440;
  font-size: 90%;
  padding: 2px 4px;
  white-space: nowrap;
}

/* line 517, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox {
  clear: both;
  margin-bottom: 25px;
  margin-top: 0;
  padding: 0;
}

/* line 524, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox.collapsed .ibox-content {
  display: none;
}

/* line 528, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox.collapsed .fa.fa-chevron-up:before {
  content: "\f078";
}

/* line 532, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox.collapsed .fa.fa-chevron-down:before {
  content: "\f077";
}

/* line 536, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox:after, .ibox:before {
  display: table;
}

/* line 540, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-title {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background-color: #ffffff;
  border-color: #e7eaec;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 0 0;
  color: inherit;
  margin-bottom: 0;
  padding: 12px 15px 7px;
  min-height: 39px;
}

/* line 556, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-content {
  background-color: #ffffff;
  color: inherit;
  padding: 15px 20px 20px 20px;
  border-color: #e7eaec;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 0;
}

/* line 567, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-footer {
  color: inherit;
  border-top: 1px solid #e7eaec;
  font-size: 90%;
  background: #ffffff;
  padding: 10px 15px;
}

/* line 575, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
table.table-mail tr td {
  padding: 12px;
}

/* line 579, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.table-mail .check-mail {
  padding-left: 20px;
}

/* line 583, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.table-mail .mail-date {
  padding-right: 20px;
}

/* line 587, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.star-mail, .check-mail {
  width: 40px;
}

/* line 591, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.unread td a, .unread td {
  font-weight: 600;
  color: inherit;
}

/* line 596, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.read td a, .read td {
  font-weight: normal;
  color: inherit;
}

/* line 601, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.unread td {
  background-color: #f9f8f8;
}

/* line 605, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-content {
  clear: both;
}

/* line 609, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-heading {
  background-color: #f3f6fb;
  border-bottom: none;
}

/* line 614, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-heading h3 {
  font-weight: 200;
  font-size: 24px;
}

/* line 619, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-title h5 {
  display: inline-block;
  font-size: 14px;
  margin: 0 0 7px;
  padding: 0;
  text-overflow: ellipsis;
  float: left;
}

/* line 628, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-title .label {
  float: left;
  margin-left: 4px;
}

/* line 633, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-tools {
  display: block;
  float: none;
  margin-top: 0;
  position: relative;
  padding: 0;
  text-align: right;
}

/* line 642, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-tools a {
  cursor: pointer;
  margin-left: 5px;
  color: #c4c4c4;
}

/* line 648, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-tools a.btn-primary {
  color: #fff;
}

/* line 652, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox-tools .dropdown-menu > li > a {
  padding: 4px 10px;
  font-size: 12px;
}

/* line 657, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox .ibox-tools.open > .dropdown-menu {
  left: auto;
  right: 0;
}

/* BACKGROUNDS */
/* line 665, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.gray-bg, .bg-muted {
  background-color: #f3f3f4;
  background: -webkit-gradient(radial, center center, 0, center center, 460, from(#fff), to(#d9d9d9));
  background: -webkit-radial-gradient(circle, #f3f3f4, #d9d9d9);
  background: -moz-radial-gradient(circle, #f3f3f4, #d9d9d9);
  background: -ms-radial-gradient(circle, #f3f3f4, #d9d9d9);
}

/* line 673, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.white-bg {
  background-color: #ffffff;
}

/* line 677, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.blue-bg, .bg-success {
  background-color: #1c84c6;
  color: #ffffff;
}

/* line 682, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.navy-bg, .bg-primary {
  background-color: #aaaaaa;
  color: #ffffff;
}

/* line 687, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.lazur-bg, .bg-info {
  background-color: #1872ab;
  color: #ffffff;
}

/* line 692, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.yellow-bg, .bg-warning {
  background-color: #f8ac59;
  color: #ffffff;
}

/* line 697, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.green-bg {
  background-color: #00b600;
  color: #ffffff;
}

/* line 702, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.red-bg, .bg-danger {
  background-color: #DD2315;
  color: #ffffff;
}

/* line 707, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.black-bg {
  background-color: #262626;
}

/* line 711, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-primary {
  border-color: #aaaaaa;
}

/* line 715, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-primary > .panel-heading {
  background-color: #aaaaaa;
  border-color: #aaaaaa;
}

/* line 720, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-success {
  border-color: #1c84c6;
}

/* line 724, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-success > .panel-heading {
  background-color: #1c84c6;
  border-color: #1c84c6;
  color: #ffffff;
}

/* line 730, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-info {
  border-color: #1872ab;
}

/* line 734, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-info > .panel-heading {
  background-color: #1872ab;
  border-color: #1872ab;
  color: #ffffff;
}

/* line 740, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-warning {
  border-color: #f8ac59;
}

/* line 744, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-warning > .panel-heading {
  background-color: #f8ac59;
  border-color: #f8ac59;
  color: #ffffff;
}

/* line 750, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-danger {
  border-color: #DD2315;
}

/* line 754, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-danger > .panel-heading {
  background-color: #DD2315;
  border-color: #DD2315;
  color: #ffffff;
}

/* line 760, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-bar {
  background-color: #aaaaaa;
}

/* line 764, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-small, .progress-small .progress-bar {
  height: 10px;
}

/* line 768, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-small, .progress-mini {
  margin-top: 0px;
}

/* line 772, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-mini, .progress-mini .progress-bar {
  height: 5px;
  margin-bottom: 0;
}

/* line 777, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-bar-navy-light {
  background-color: #3dc7ab;
}

/* line 781, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-bar-success {
  background-color: #1c84c6;
}

/* line 785, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-bar-info {
  background-color: #1872ab;
}

/* line 789, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-bar-warning {
  background-color: #f8ac59;
}

/* line 793, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.progress-bar-danger {
  background-color: #DD2315;
}

/* line 797, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.panel-title {
  font-size: inherit;
}

/* line 801, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.jumbotron {
  border-radius: 6px;
  padding: 40px;
}

/* line 806, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.jumbotron h1 {
  margin-top: 0;
}

/* COLORS */
/* line 812, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-navy {
  color: #aaaaaa;
}

/* line 816, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-primary {
  color: inherit;
}

/* line 820, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-success {
  color: #1c84c6;
}

/* line 824, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-info {
  color: #1872ab;
}

/* line 828, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-warning {
  color: #f8ac59;
}

/* line 832, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-danger {
  color: #DD2315;
}

/* line 836, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-muted {
  color: #888888;
}

/* line 840, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.text-white {
  color: #ffffff;
}

/* line 844, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.simple_tag {
  background-color: #f3f3f4;
  border: 1px solid #e7eaec;
  border-radius: 2px;
  color: inherit;
  font-size: 10px;
  margin-right: 5px;
  margin-top: 5px;
  padding: 5px 12px;
  display: inline-block;
}

/* line 856, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.img-shadow {
  -webkit-box-shadow: 0 0 3px 0 #919191;
  -moz-box-shadow: 0 0 3px 0 #919191;
  box-shadow: 0 0 3px 0 #919191;
}

/* For handle diferent bg color in AngularJS version */
/* line 863, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.dashboards\.dashboard_2 nav.navbar,
.dashboards\.dashboard_3 nav.navbar,
.mailbox\.inbox nav.navbar,
.mailbox\.email_view nav.navbar,
.mailbox\.email_compose nav.navbar,
.dashboards\.dashboard_4_1 nav.navbar,
.metrics nav.navbar, .metrics\.index nav.navbar,
.dashboards\.dashboard_5 nav.navbar {
  background: #fff;
}

/* For handle diferent bg color in MVC version */
/* line 875, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.Dashboard_2 .navbar.navbar-static-top,
.Dashboard_3 .navbar.navbar-static-top,
.Dashboard_4_1 .navbar.navbar-static-top,
.ComposeEmail .navbar.navbar-static-top,
.EmailView .navbar.navbar-static-top,
.Inbox .navbar.navbar-static-top,
.Metrics .navbar.navbar-static-top,
.Dashboard_5 .navbar.navbar-static-top {
  background: #fff;
}

/* line 886, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
a.close-canvas-menu {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1011;
  color: #a7b1c2;
}

/* line 894, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
a.close-canvas-menu:hover {
  color: #fff;
}

/* line 898, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.close-canvas-menu {
  display: none;
}

/* line 902, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.canvas-menu .close-canvas-menu {
  display: block;
}

/* line 906, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.light-navbar .navbar.navbar-static-top {
  background-color: #fff;
}

/* FULL HEIGHT */
/* line 912, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.full-height {
  height: 100%;
}

/* line 916, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.fh-breadcrumb {
  height: calc(100% - 196px);
  margin: 0 -15px;
  position: relative;
}

/* line 922, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.fh-no-breadcrumb {
  height: calc(100% - 99px);
  margin: 0 -15px;
  position: relative;
}

/* line 928, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.fh-column {
  background: #fff;
  height: 100%;
  width: 240px;
  float: left;
}

/* line 935, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.modal-backdrop {
  z-index: 2040 !important;
}

/* line 939, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.modal {
  z-index: 2050 !important;
}

/* line 943, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.spiner-example {
  height: 200px;
  padding-top: 70px;
}

/* MARGINS & PADDINGS */
/* line 950, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-xxs {
  padding: 5px;
}

/* line 954, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-xs {
  padding: 10px;
}

/* line 958, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-sm {
  padding: 15px;
}

/* line 962, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-m {
  padding: 20px;
}

/* line 966, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-md {
  padding: 25px;
}

/* line 970, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-lg {
  padding: 30px;
}

/* line 974, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-xl {
  padding: 40px;
}

/* line 978, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-w-xs {
  padding: 0 10px;
}

/* line 982, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-w-sm {
  padding: 0 15px;
}

/* line 987, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-w-m {
  padding: 0 20px;
}

/* line 992, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-w-md {
  padding: 0 25px;
}

/* line 997, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-w-lg {
  padding: 0 30px;
}

/* line 1002, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-w-xl {
  padding: 0 40px;
}

/* line 1006, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-h-xs {
  padding: 10px 0;
}

/* line 1010, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-h-sm {
  padding: 15px 0;
}

/* line 1015, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-h-m {
  padding: 20px 0;
}

/* line 1020, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-h-md {
  padding: 25px 0;
}

/* line 1025, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-h-lg {
  padding: 30px 0;
}

/* line 1030, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.p-h-xl {
  padding: 40px 0;
}

/* line 1036, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-xxs {
  margin: 2px 4px;
}

/* line 1040, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m {
  margin: 15px;
}

/* line 1044, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-xs {
  margin: 5px;
}

/* line 1048, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-sm {
  margin: 10px;
}

/* line 1052, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m {
  margin: 15px;
}

/* line 1056, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-md {
  margin: 20px;
}

/* line 1060, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-lg {
  margin: 30px;
}

/* line 1064, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-xl {
  margin: 50px;
}

/* line 1068, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-n {
  margin: 0 !important;
}

/* line 1072, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-none {
  margin-left: 0;
}

/* line 1076, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-xs {
  margin-left: 5px;
}

/* line 1080, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-sm {
  margin-left: 10px;
}

/* line 1084, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l {
  margin-left: 15px;
}

/* line 1088, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-md {
  margin-left: 20px;
}

/* line 1092, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-lg {
  margin-left: 30px;
}

/* line 1096, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-xl {
  margin-left: 40px;
}

/* line 1100, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-n-xxs {
  margin-left: -1px;
}

/* line 1104, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-n-xs {
  margin-left: -5px;
}

/* line 1108, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-n-sm {
  margin-left: -10px;
}

/* line 1112, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-n {
  margin-left: -15px;
}

/* line 1116, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-n-md {
  margin-left: -20px;
}

/* line 1120, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-n-lg {
  margin-left: -30px;
}

/* line 1124, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-l-n-xl {
  margin-left: -40px;
}

/* line 1128, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-none {
  margin-top: 0;
}

/* line 1132, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-xxs {
  margin-top: 1px;
}

/* line 1136, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-xs {
  margin-top: 5px;
}

/* line 1140, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-sm {
  margin-top: 10px;
}

/* line 1144, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t {
  margin-top: 15px;
}

/* line 1148, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-md {
  margin-top: 20px;
}

/* line 1152, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-lg {
  margin-top: 30px;
}

/* line 1156, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-xl {
  margin-top: 40px;
}

/* line 1160, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-n-xxs {
  margin-top: -1px;
}

/* line 1164, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-n-xs {
  margin-top: -5px;
}

/* line 1168, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-n-sm {
  margin-top: -10px;
}

/* line 1172, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-n {
  margin-top: -15px;
}

/* line 1176, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-n-md {
  margin-top: -20px;
}

/* line 1180, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-n-lg {
  margin-top: -30px;
}

/* line 1184, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-t-n-xl {
  margin-top: -40px;
}

/* line 1188, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-none {
  margin-right: 0;
}

/* line 1192, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-xxs {
  margin-right: 1px;
}

/* line 1196, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-xs {
  margin-right: 5px;
}

/* line 1200, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-sm {
  margin-right: 10px;
}

/* line 1204, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r {
  margin-right: 15px;
}

/* line 1208, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-md {
  margin-right: 20px;
}

/* line 1212, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-lg {
  margin-right: 30px;
}

/* line 1216, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-xl {
  margin-right: 40px;
}

/* line 1220, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-n-xxs {
  margin-right: -1px;
}

/* line 1224, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-n-xs {
  margin-right: -5px;
}

/* line 1228, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-n-sm {
  margin-right: -10px;
}

/* line 1232, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-n {
  margin-right: -15px;
}

/* line 1236, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-n-md {
  margin-right: -20px;
}

/* line 1240, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-n-lg {
  margin-right: -30px;
}

/* line 1244, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-r-n-xl {
  margin-right: -40px;
}

/* line 1248, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-none {
  margin-bottom: 0;
}

/* line 1252, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-xxs {
  margin-bottom: 1px;
}

/* line 1256, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-xs {
  margin-bottom: 5px;
}

/* line 1260, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-sm {
  margin-bottom: 10px;
}

/* line 1264, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b {
  margin-bottom: 15px;
}

/* line 1268, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-md {
  margin-bottom: 20px;
}

/* line 1272, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-lg {
  margin-bottom: 30px;
}

/* line 1276, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-xl {
  margin-bottom: 40px;
}

/* line 1280, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-n-xxs {
  margin-bottom: -1px;
}

/* line 1284, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-n-xs {
  margin-bottom: -5px;
}

/* line 1288, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-n-sm {
  margin-bottom: -10px;
}

/* line 1292, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-n {
  margin-bottom: -15px;
}

/* line 1296, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-n-md {
  margin-bottom: -20px;
}

/* line 1300, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-n-lg {
  margin-bottom: -30px;
}

/* line 1304, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.m-b-n-xl {
  margin-bottom: -40px;
}

/* line 1308, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.space-15 {
  margin: 15px 0;
}

/* line 1312, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.space-20 {
  margin: 20px 0;
}

/* line 1316, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.space-25 {
  margin: 25px 0;
}

/* line 1320, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.space-30 {
  margin: 30px 0;
}

/* line 1327, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.img-sm {
  width: 32px;
  height: 32px;
}

/* line 1332, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.img-md {
  width: 64px;
  height: 64px;
}

/* line 1337, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.img-lg {
  width: 96px;
  height: 96px;
}

/* line 1344, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.b-r-xs {
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

/* line 1350, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.b-r-sm {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/* line 1356, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.b-r-md {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

/* line 1362, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.b-r-lg {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

/* line 1368, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.b-r-xl {
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}

/* line 1376, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.fullscreen-ibox-mode .animated {
  animation: none;
}

/* line 1380, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.fullscreen-ibox-mode {
  overflow-y: hidden;
}

/* line 1384, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox.fullscreen {
  z-index: 2030;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  margin-bottom: 0;
}

/* line 1395, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox.fullscreen .collapse-link {
  display: none;
}

/* line 1399, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.ibox.fullscreen .ibox-content {
  min-height: calc(100% - 48px);
}

/* line 1405, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.modal-open {
  padding-right: inherit !important;
}

/* line 1411, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.modal-open .wrapper-content.animated {
  -webkit-animation: none;
  -ms-animation-nam: none;
  animation: none;
}

/* line 1418, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.modal-open .animated {
  animation-fill-mode: initial;
  z-index: inherit;
}

/* Show profile dropdown on fixed sidebar */
/* line 1424, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.mini-navbar.fixed-sidebar .profile-element, .block {
  display: block !important;
}

/* line 1428, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.mini-navbar.fixed-sidebar .nav-header {
  padding: 35px 25px;
}

/* line 1432, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
body.mini-navbar.fixed-sidebar .logo-element {
  display: none;
}

/* line 1438, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/base.scss */
.fullscreen-video .animated {
  animation: none;
}

/* SEARCH PAGE */
/* line 3, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.search-form {
  margin-top: 10px;
}

/* line 7, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.search-result h3 {
  margin-bottom: 0;
  color: #1E0FBE;
}

/* line 12, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.search-result .search-link {
  color: #006621;
}

/* line 16, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.search-result p {
  font-size: 12px;
  margin-top: 5px;
}

/* CONTACTS */
/* line 23, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.contact-box {
  background-color: #ffffff;
  border: 1px solid #e7eaec;
  padding: 20px;
  margin-bottom: 20px;
}

/* line 30, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.contact-box > a {
  color: inherit;
}

/* line 34, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.contact-box.center-version {
  border: 1px solid #e7eaec;
  padding: 0;
}

/* line 40, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.contact-box.center-version > a {
  display: block;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
}

/* line 47, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.contact-box.center-version > a img {
  width: 80px;
  height: 80px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 54, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.contact-box.center-version address {
  margin-bottom: 0;
}

/* line 58, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.contact-box .contact-box-footer {
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid #e7eaec;
  padding: 15px 20px;
}

/* INVOICE */
/* line 67, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.invoice-table tbody > tr > td:last-child, .invoice-table tbody > tr > td:nth-child(4), .invoice-table tbody > tr > td:nth-child(3), .invoice-table tbody > tr > td:nth-child(2) {
  text-align: right;
}

/* line 71, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.invoice-table thead > tr > th:last-child, .invoice-table thead > tr > th:nth-child(4), .invoice-table thead > tr > th:nth-child(3), .invoice-table thead > tr > th:nth-child(2) {
  text-align: right;
}

/* line 75, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.invoice-total > tbody > tr > td:first-child {
  text-align: right;
}

/* line 79, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.invoice-total > tbody > tr > td {
  border: 0 none;
}

/* line 83, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.invoice-total > tbody > tr > td:last-child {
  border-bottom: 1px solid #DDDDDD;
  text-align: right;
  width: 15%;
}

/* ERROR & LOGIN & LOCKSCREEN*/
/* line 91, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.middle-box {
  max-width: 400px;
  z-index: 100;
  margin: 0 auto;
  padding-top: 40px;
}

/* line 98, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.instruction-box {
  width: 650px;
  padding: 24px;
  z-index: 100;
  margin: 0 auto;
}

/* line 106, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.lockscreen.middle-box {
  width: 200px;
  padding-top: 110px;
}

/* line 111, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.loginscreen.middle-box {
  width: 300px;
}

/* line 115, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.loginColumns {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 20px 20px;
}

/* line 121, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.passwordBox {
  max-width: 460px;
  margin: 0 auto;
  padding: 100px 20px 20px 20px;
}

/* line 127, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.logo-name {
  color: #e6e6e6;
  font-size: 180px;
  font-weight: 800;
  letter-spacing: -10px;
  margin-bottom: 0;
}

/* line 135, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.middle-box h1 {
  font-size: 170px;
}

/* line 139, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.wrapper .middle-box {
  margin-top: 140px;
}

/* line 143, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.lock-word {
  z-index: 10;
  position: absolute;
  top: 110px;
  left: 50%;
  margin-left: -470px;
}

/* line 151, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.lock-word span {
  font-size: 100px;
  font-weight: 600;
  color: #e9e9e9;
  display: inline-block;
}

/* line 158, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.lock-word .first-word {
  margin-right: 160px;
}

/* DASBOARD */
/* line 164, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.dashboard-header {
  border-top: 0;
  padding: 20px 20px 20px 20px;
}

/* line 169, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.dashboard-header h2 {
  margin-top: 10px;
  font-size: 26px;
}

/* line 174, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.first-item {
  border-top: none !important;
}

/* line 178, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.statistic-box {
  margin-top: 40px;
}

/* line 183, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.dashboard-header .list-group-item span.label {
  margin-right: 10px;
}

/* line 187, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.list-group.clear-list .list-group-item {
  border-top: 1px solid #e7eaec;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  padding: 10px 0;
}

/* line 195, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.clear-list:first-child {
  border-top: none !important;
}

/* Intimeline */
/* line 201, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .date i {
  position: absolute;
  top: 17px;
  right: -15px;
  font-size: 15px;
  padding: 6px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-top: 1px solid #e7eaec;
  border-bottom: 1px solid #e7eaec;
  border-left: 1px solid #e7eaec;
  background: #f8f8f8;
  z-index: 3;
  border-radius: 50%;
}

/* line 218, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .date img.img-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  border-top: 1px solid #e7eaec;
  border-bottom: 1px solid #e7eaec;
  border-left: 1px solid #e7eaec;
  background: #f8f8f8;
  z-index: 3;
  border-radius: 50%;
}

/* line 233, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .spacer i {
  position: absolute;
  top: 22px;
  right: -6px;
  padding: 5px;
  width: 5px;
  height: 5px;
  text-align: center;
  border-top: 1px solid #e7eaec;
  border-bottom: 1px solid #e7eaec;
  border-left: 1px solid #e7eaec;
  background: #e7eaec;
  z-index: 2;
  border-radius: 50%;
}

/* line 249, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .date {
  text-align: right;
  position: relative;
  padding-top: 15px;
  padding-right: 25px;
}

/* line 256, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .content {
  border-left: 2px solid #e7eaec;
  border-top: 1px solid #e7eaec;
  padding-top: 10px;
}

/* line 263, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .btn-edit {
  display: none;
}

/* line 267, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item:hover .btn-edit {
  display: initial;
}

/* line 272, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .avatar {
  margin-right: 15px;
  margin-left: 10px;
}

/* line 277, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .text {
  margin-top: 5px;
  margin-left: 60px;
}

/* line 282, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .spacer {
  border-left: 2px dashed #e7eaec;
}

/* line 286, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .spacer-now {
  border-left: 2px solid #e7eaec;
  min-height: 35px;
}

/* line 292, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.timeline-item .content:hover {
  background: #f6f6f6;
}

/* PIN BOARD */
/* line 297, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li, ul.tag-list li {
  list-style: none;
}

/* line 301, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li h4 {
  margin-top: 20px;
  font-size: 16px;
}

/* line 306, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li div {
  text-decoration: none;
  color: #000;
  background: #ffc;
  display: block;
  height: 140px;
  width: 140px;
  padding: 1em;
  position: relative;
}

/* line 317, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li div small {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 10px;
}

/* line 324, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li div a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: inherit;
}

/* line 331, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li {
  margin: 10px 40px 50px 0;
  float: left;
}

/* line 336, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li div p {
  font-size: 12px;
}

/* line 340, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li div {
  text-decoration: none;
  color: #000;
  background: #ffc;
  display: block;
  height: 140px;
  width: 140px;
  padding: 1em;
  /* Firefox */
  -moz-box-shadow: 5px 5px 2px #212121;
  /* Safari+Chrome */
  -webkit-box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);
  /* Opera */
  box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);
}

/* line 356, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li div {
  -webkit-transform: rotate(-6deg);
  -o-transform: rotate(-6deg);
  -moz-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
}

/* line 363, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li:nth-child(even) div {
  -o-transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  position: relative;
  top: 5px;
}

/* line 372, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li:nth-child(3n) div {
  -o-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  position: relative;
  top: -5px;
}

/* line 381, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li:nth-child(5n) div {
  -o-transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  position: relative;
  top: -10px;
}

/* line 390, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li div:hover, ul.notes li div:focus {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  position: relative;
  z-index: 5;
}

/* line 400, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ul.notes li div {
  text-decoration: none;
  color: #000;
  background: #ffc;
  display: block;
  height: 210px;
  width: 210px;
  padding: 1em;
  -moz-box-shadow: 5px 5px 7px #212121;
  -webkit-box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);
  box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);
  -moz-transition: -moz-transform .15s linear;
  -o-transition: -o-transform .15s linear;
  -webkit-transition: -webkit-transform .15s linear;
}

/* FILE MANAGER */
/* line 418, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-box {
  float: left;
  width: 220px;
}

/* line 423, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-manager h5 {
  text-transform: uppercase;
}

/* line 427, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-manager {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

/* line 433, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.folder-list li a {
  color: #666666;
  display: block;
  padding: 5px 0;
}

/* line 439, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.folder-list li {
  border-bottom: 1px solid #e7eaec;
  display: block;
}

/* line 444, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.folder-list li i {
  margin-right: 8px;
  color: #3d4d5d;
}

/* line 449, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.category-list li a {
  color: #666666;
  display: block;
  padding: 5px 0;
}

/* line 455, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.category-list li {
  display: block;
}

/* line 459, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.category-list li i {
  margin-right: 8px;
  color: #3d4d5d;
}

/* line 464, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.category-list li a .text-navy {
  color: #aaaaaa;
}

/* line 468, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.category-list li a .text-primary {
  color: #1c84c6;
}

/* line 472, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.category-list li a .text-info {
  color: #1872ab;
}

/* line 476, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.category-list li a .text-danger {
  color: #EF5352;
}

/* line 480, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.category-list li a .text-warning {
  color: #F8AC59;
}

/* line 484, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-manager h5.tag-title {
  margin-top: 20px;
}

/* line 488, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.tag-list li {
  float: left;
}

/* line 492, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.tag-list li a {
  font-size: 10px;
  background-color: #f3f3f4;
  padding: 5px 12px;
  color: inherit;
  border-radius: 2px;
  border: 1px solid #e7eaec;
  margin-right: 5px;
  margin-top: 5px;
  display: block;
}

/* line 504, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file {
  background-color: #ffffff;
  position: relative;
}

/* line 513, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-manager .hr-line-dashed {
  margin: 15px 0;
}

/* line 517, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file .icon, .file .image {
  height: 100px;
  overflow: hidden;
}

/* line 522, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file .icon {
  padding: 15px 10px;
  text-align: center;
}

/* line 527, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-control {
  color: inherit;
  font-size: 11px;
  margin-right: 10px;
}

/* line 533, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-control.active {
  text-decoration: underline;
}

/* line 537, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file .icon i {
  font-size: 70px;
  color: #dadada;
}

/* line 542, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file .file-name {
  padding: 10px;
  background-color: #f8f8f8;
  border-top: 1px solid #e7eaec;
}

/* line 548, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-name small {
  color: #676a6c;
}

/* line 552, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.corner {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  line-height: 0;
  border: 0.6em solid transparent;
  border-right: 0.6em solid #f1f1f1;
  border-bottom: 0.6em solid #f1f1f1;
  right: 0em;
  bottom: 0em;
}

/* line 565, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
a.compose-mail {
  padding: 8px 10px;
}

/* line 569, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-search {
  max-width: 300px;
}

/* PROFILE */
/* line 575, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.profile-content {
  border-top: none !important;
}

/* line 579, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.profile-stats {
  margin-right: 10px;
}

/* line 583, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.profile-image {
  width: 120px;
  float: left;
}

/* line 588, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.profile-image img {
  width: 96px;
  height: 96px;
}

/* line 593, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.avatar-image {
  margin-top: 20px;
  float: left;
  margin-right: 5px;
}

/* line 599, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.avatar-image .small-left {
  position: absolute;
  left: 46px;
  top: 44px;
  background: white;
}

/* line 606, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.task-badge {
  margin-right: 5px;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 616, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.task-badge .avatar {
  width: 0px;
  height: 0px;
  position: relative;
  bottom: 34px;
  right: 20px;
}

/* line 624, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.profile-info {
  margin-left: 120px;
}

/* line 628, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-activity-list .feed-element {
  border-bottom: 1px solid #e7eaec;
}

/* line 632, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element:first-child {
  margin-top: 0;
}

/* line 636, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element {
  padding-bottom: 15px;
}

/* line 640, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element, .feed-element .media {
  margin-top: 15px;
}

/* line 644, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element, .media-body {
  overflow: hidden;
}

/* line 648, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element > .pull-left {
  margin-right: 10px;
}

/* line 652, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element img.img-circle, .dropdown-messages-box img.img-circle {
  width: 38px;
  height: 38px;
}

/* line 657, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element .well {
  border: 1px solid #e7eaec;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 10px 20px;
  font-size: 11px;
  line-height: 16px;
}

/* line 667, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element .actions {
  margin-top: 10px;
}

/* line 671, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-element .photos {
  margin: 10px 0;
}

/* line 676, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.feed-photo {
  max-height: 180px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* line 684, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-list li {
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 2px;
  border: 1px solid #e7eaec;
  margin-bottom: 5px;
}

/* line 693, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-list li a {
  color: inherit;
}

/* line 697, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.file-list li a:hover {
  color: #aaaaaa;
}

/* line 701, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.user-friends img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
  margin-right: 5px;
}

/* MAILBOX */
/* line 711, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-box {
  background-color: #ffffff;
  border: 1px solid #e7eaec;
  border-top: 0;
  padding: 0;
  margin-bottom: 20px;
}

/* line 719, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-box-header {
  background-color: #ffffff;
  border: 1px solid #e7eaec;
  border-bottom: 0;
  padding: 30px 20px 20px 20px;
}

/* line 726, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-box-header h2 {
  margin-top: 0;
}

/* line 730, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mailbox-content .tag-list li a {
  background: #ffffff;
}

/* line 734, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-body {
  border-top: 1px solid #e7eaec;
  padding: 20px;
}

/* line 739, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-text {
  border-top: 1px solid #e7eaec;
}

/* line 743, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-text .note-toolbar {
  padding: 10px 15px;
}

/* line 747, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-body .form-group {
  margin-bottom: 5px;
}

/* line 751, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-text .note-editor .note-toolbar {
  background-color: #F9F8F8;
}

/* line 755, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-attachment {
  border-top: 1px solid #e7eaec;
  padding: 20px;
  font-size: 12px;
}

/* line 761, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mailbox-content {
  background: none;
  border: none;
  padding: 10px;
}

/* line 767, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.mail-ontact {
  width: 23%;
}

/* PROJECTS */
/* line 772, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.project-people, .project-actions {
  text-align: right;
  vertical-align: middle;
}

/* line 777, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
dd.project-people {
  text-align: left;
  margin-top: 5px;
}

/* line 782, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.project-people img {
  width: 32px;
  height: 32px;
}

/* line 787, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.project-title a {
  font-size: 14px;
  color: #676a6c;
  font-weight: 600;
}

/* line 793, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.project-list table tr td {
  border-top: none;
  border-bottom: 1px solid #e7eaec;
  padding: 15px 10px;
  vertical-align: middle;
}

/* line 800, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.project-manager .tag-list li a {
  font-size: 10px;
  background-color: white;
  padding: 5px 12px;
  color: inherit;
  border-radius: 2px;
  border: 1px solid #e7eaec;
  margin-right: 5px;
  margin-top: 5px;
  display: block;
}

/* line 812, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.project-files li a {
  font-size: 11px;
  color: #676a6c;
  margin-left: 10px;
  line-height: 22px;
}

/* FAQ */
/* line 821, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.faq-item {
  padding: 20px;
  margin-bottom: 2px;
  background: #fff;
}

/* line 827, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #aaaaaa;
  display: block;
}

/* line 834, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.faq-question:hover {
  color: #9d9d9d;
}

/* line 838, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.faq-answer {
  margin-top: 10px;
  background: #f3f3f4;
  border: 1px solid #e7eaec;
  border-radius: 3px;
  padding: 15px;
}

/* line 846, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.faq-item .tag-item {
  background: #f3f3f4;
  padding: 2px 6px;
  font-size: 10px;
  text-transform: uppercase;
}

/* Chat view */
/* line 854, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.message-input {
  height: 90px !important;
}

/* line 858, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-avatar {
  width: 36px;
  height: 36px;
  float: left;
  margin-right: 10px;
}

/* line 865, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-user-name {
  padding: 10px;
}

/* line 869, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-user {
  padding: 8px 10px;
  border-bottom: 1px solid #e7eaec;
}

/* line 874, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-user a {
  color: inherit;
}

/* line 878, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-view {
  z-index: 20012;
}

/* line 882, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-users, .chat-statistic {
  margin-left: -30px;
}

@media (max-width: 992px) {
  /* line 887, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
  .chat-users, .chat-statistic {
    margin-left: 0;
  }
}
/* line 892, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-view .ibox-content {
  padding: 0;
}

/* line 896, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-message {
  padding: 10px 20px;
}

/* line 900, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.message-avatar {
  height: 48px;
  width: 48px;
  border: 1px solid #e7eaec;
  border-radius: 4px;
  margin-top: 1px;
}

/* line 908, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-discussion .chat-message.left .message-avatar {
  float: left;
  margin-right: 10px;
}

/* line 913, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-discussion .chat-message.right .message-avatar {
  float: right;
  margin-left: 10px;
}

/* line 918, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.message {
  background-color: #fff;
  border: 1px solid #e7eaec;
  text-align: left;
  display: block;
  padding: 10px 20px;
  position: relative;
  border-radius: 4px;
}

/* line 928, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-discussion .chat-message.left .message-date {
  float: right;
}

/* line 932, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-discussion .chat-message.right .message-date {
  float: left;
}

/* line 936, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-discussion .chat-message.left .message {
  text-align: left;
  margin-left: 55px;
}

/* line 941, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-discussion .chat-message.right .message {
  text-align: right;
  margin-right: 55px;
}

/* line 946, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.message-date {
  font-size: 10px;
  color: #888888;
}

/* line 951, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.message-content {
  display: block;
}

/* line 955, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-discussion {
  background: #eee;
  padding: 15px;
  height: 400px;
  overflow-y: auto;
}

/* line 962, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-users {
  overflow-y: auto;
  height: 400px;
}

/* line 967, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.chat-message-form .form-group {
  margin-bottom: 0;
}

/* jsTree */
/* line 972, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.jstree-open > .jstree-anchor > .fa-folder:before {
  content: "\f07c";
}

/* line 976, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.jstree-default .jstree-icon.none {
  width: 0;
}

/* CLIENTS */
/* line 982, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.clients-list {
  margin-top: 20px;
}

/* line 986, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.clients-list .tab-pane {
  position: relative;
  height: 600px;
}

/* line 991, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.client-detail {
  position: relative;
  height: 620px;
}

/* line 996, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.clients-list table tr td {
  height: 46px;
  vertical-align: middle;
  border: none;
}

/* line 1002, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.client-link {
  font-weight: 600;
  color: inherit;
}

/* line 1007, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.client-link:hover {
  color: inherit;
}

/* line 1011, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.client-avatar {
  width: 42px;
}

/* line 1015, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.client-avatar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* line 1021, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.contact-type {
  width: 20px;
  color: #c1c3c4;
}

/* line 1026, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.client-status {
  text-align: left;
}

/* line 1030, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.client-detail .vertical-timeline-content p {
  margin: 0;
}

/* line 1034, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.client-detail .vertical-timeline-icon.gray-bg {
  color: #a7aaab;
}

/* line 1039, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.clients-list .nav-tabs > li.active > a, .clients-list .nav-tabs > li.active > a:hover, .clients-list .nav-tabs > li.active > a:focus {
  border-bottom: 1px solid #fff;
}

/* BLOG ARTICLE */
/* line 1045, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.blog h2 {
  font-weight: 700;
}

/* line 1049, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.blog h5 {
  margin: 0 0 5px 0;
}

/* line 1053, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.blog .btn {
  margin: 0 0 5px 0;
}

/* line 1057, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.article h1 {
  font-size: 48px;
  font-weight: 700;
  color: #2F4050;
}

/* line 1063, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.article p {
  font-size: 15px;
  line-height: 26px;
}

/* line 1068, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.article-title {
  text-align: center;
  margin: 40px 0 40px 0;
}

/* line 1073, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.article .ibox-content {
  padding: 40px;
}

/* ISSUE TRACKER */
/* line 1079, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.issue-tracker .btn-link {
  color: #aaaaaa;
}

/* line 1083, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
table.issue-tracker tbody tr td {
  vertical-align: middle;
  height: 50px;
}

/* line 1088, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.issue-info {
  width: 50%;
}

/* line 1092, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.issue-info a {
  font-weight: 600;
  color: #676a6c;
}

/* line 1097, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.issue-info small {
  display: block;
}

/* TEAMS */
/* line 1102, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.team-members {
  margin: 10px 0;
}

/* line 1106, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.team-members img.img-circle {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}

/* AGILE BOARD */
/* line 1114, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.sortable-list {
  padding: 10px 0;
}

/* line 1118, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.agile-list {
  list-style: none;
  margin: 0;
}

/* line 1123, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.agile-list li {
  background: #FAFAFB;
  border: 1px solid #e7eaec;
  margin: 0 0 10px 0;
  padding: 10px;
  border-radius: 2px;
}

/* line 1132, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.agile-list li:hover {
  cursor: pointer;
  background: #fff;
}

/* line 1137, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.agile-list li.warning-element {
  border-left: 3px solid #f8ac59;
}

/* line 1141, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.agile-list li.danger-element {
  border-left: 3px solid #DD2315;
}

/* line 1145, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.agile-list li.info-element {
  border-left: 3px solid #1c84c6;
}

/* line 1149, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.agile-list li.success-element {
  border-left: 3px solid #aaaaaa;
}

/* line 1153, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.agile-detail {
  margin-top: 5px;
  font-size: 12px;
}

/* DIFF */
/* line 1159, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
ins {
  background-color: #c6ffc6;
  text-decoration: none;
}

/* line 1164, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
del {
  background-color: #ffc6c6;
}

/* E-commerce */
/* line 1169, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-box {
  padding: 0;
  border: 1px solid #e7eaec;
}

/* line 1175, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-box:hover,
.product-box.active {
  border: 1px solid transparent;
  -webkit-box-shadow: 0 3px 7px 0 #a8a8a8;
  -moz-box-shadow: 0 3px 7px 0 #a8a8a8;
  box-shadow: 0 3px 7px 0 #a8a8a8;
}

/* line 1183, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-imitation {
  text-align: center;
  padding: 90px 0;
  background-color: #f8f8f9;
  color: #bebec3;
  font-weight: 600;
}

/* line 1191, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.cart-product-imitation {
  text-align: center;
  padding-top: 30px;
  height: 80px;
  width: 80px;
  background-color: #f8f8f9;
}

/* line 1199, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-imitation.xl {
  padding: 120px 0;
}

/* line 1203, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-desc {
  padding: 20px;
  position: relative;
}

/* line 1208, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.ecommerce .tag-list {
  padding: 0;
}

/* line 1212, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.ecommerce .fa-star {
  color: #D1DADE;
}

/* line 1216, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.ecommerce .fa-star.active {
  color: #f8ac59;
}

/* line 1220, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.ecommerce .note-editor {
  border: 1px solid #e7eaec;
}

/* line 1224, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
table.shoping-cart-table {
  margin-bottom: 0;
}
/* line 1227, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
table.shoping-cart-table tr td {
  border: none;
  text-align: right;
}
/* line 1232, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
table.shoping-cart-table tr td.desc, table.shoping-cart-table tr td:first-child {
  text-align: left;
}
/* line 1236, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
table.shoping-cart-table tr td:last-child {
  width: 80px;
}

/* line 1242, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #676a6c;
  display: block;
  margin: 2px 0 5px 0;
}

/* line 1250, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-name:hover,
.product-name:focus {
  color: #aaaaaa;
}

/* line 1255, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-price {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #aaaaaa;
  padding: 6px 12px;
  position: absolute;
  top: -32px;
  right: 0;
}

/* line 1267, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-detail .ibox-content {
  padding: 30px 30px 50px 30px;
}

/* line 1271, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.image-imitation {
  background-color: #f8f8f9;
  text-align: center;
  padding: 200px 0;
}

/* line 1278, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-main-price small {
  font-size: 10px;
}

/* line 1283, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.product-images {
  margin: 0 20px;
}

/* Social feed */
/* line 1288, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-feed-separated .social-feed-box {
  margin-left: 62px;
}

/* line 1292, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-feed-separated .social-avatar {
  float: left;
  padding: 0;
}

/* line 1297, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-feed-separated .social-avatar img {
  width: 52px;
  height: 52px;
  border: 1px solid #e7eaec;
}

/* line 1303, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-feed-separated .social-feed-box .social-avatar {
  padding: 15px 15px 0 15px;
  float: none;
}

/* line 1308, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-feed-box {
  /*padding: 15px;*/
  border: 1px solid #e7eaec;
  background: #fff;
  margin-bottom: 15px;
}

/* line 1315, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.article .social-feed-box {
  margin-bottom: 0;
  border-bottom: none;
}

/* line 1320, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.article .social-feed-box:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #e7eaec;
}

/* line 1325, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.article .social-feed-box p {
  font-size: 13px;
  line-height: 18px;
}

/* line 1330, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-action {
  margin: 15px;
}

/* line 1334, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-avatar {
  padding: 15px 15px 0 15px;
}

/* line 1338, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-comment .social-comment {
  margin-left: 45px;
}

/* line 1342, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-avatar img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

/* line 1348, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-avatar .media-body a {
  font-size: 14px;
  display: block;
}

/* line 1353, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-body {
  padding: 15px;
}

/* line 1357, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-body img {
  margin-bottom: 10px;
}

/* line 1361, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-footer {
  border-top: 1px solid #e7eaec;
  padding: 10px 15px;
  background: #f9f9f9;
}

/* line 1367, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-footer .social-comment img {
  width: 32px;
  margin-right: 10px;
}

/* line 1372, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-comment:first-child {
  margin-top: 0;
}

/* line 1376, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-comment {
  margin-top: 15px;
}

/* line 1380, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.social-comment textarea {
  font-size: 12px;
}

/* Vote list */
/* line 1386, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-item {
  padding: 20px 25px;
  background: #ffffff;
  border-top: 1px solid #e7eaec;
}

/* line 1392, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-item:last-child {
  border-bottom: 1px solid #e7eaec;
}

/* line 1396, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-item:hover {
  background: #fbfbfb;
}

/* line 1400, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-actions {
  float: left;
  width: 30px;
  margin-right: 15px;
  text-align: center;
}

/* line 1408, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-actions a {
  color: #aaaaaa;
  font-weight: 600;
}

/* line 1413, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-actions {
  font-weight: 600;
}

/* line 1417, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-title {
  display: block;
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 2px;
}

/* line 1426, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-title:hover, .vote-title:focus {
  color: inherit;
}

/* line 1430, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-info, .vote-title {
  margin-left: 45px;
}

/* line 1434, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-info, .vote-info a {
  color: #b4b6b8;
  font-size: 12px;
}

/* line 1439, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-info a {
  margin-right: 10px;
}

/* line 1443, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-info a:hover {
  color: #aaaaaa;
}

/* line 1447, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-icon {
  text-align: right;
  font-size: 38px;
  display: block;
  color: #e8e9ea;
}

/* line 1454, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.vote-icon.active {
  color: #aaaaaa;
}

/* line 1458, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
body.body-small .vote-icon {
  display: none;
}

/* line 1466, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/pages.scss */
.lightBoxGallery img {
  margin: 10px;
}

/* line 1, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
#small-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

/* line 8, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
#small-chat .badge {
  position: absolute;
  top: -3px;
  right: -4px;
}

/* line 14, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.open-small-chat {
  height: 38px;
  width: 38px;
  display: block;
  background: #1ab394;
  padding: 9px 8px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
}

/* line 25, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.open-small-chat:hover {
  color: white;
  background: #1ab394;
}

/* line 30, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 75px;
  background: #fff;
  border: 1px solid #e7eaec;
  width: 230px;
  height: 320px;
  border-radius: 4px;
}

/* line 42, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box.ng-small-chat {
  display: block;
}

/* line 47, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.body-small .small-chat-box {
  bottom: 70px;
  right: 20px;
}

/* line 53, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box.active {
  display: block;
}

/* line 59, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .heading {
  background: #000000;
  padding: 8px 15px;
  font-weight: bold;
  color: #fff;
}
/* line 66, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .chat-date {
  opacity: 0.6;
  font-size: 10px;
  font-weight: normal;
}
/* line 72, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content {
  padding: 15px 15px;
}
/* line 75, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content .author-name {
  font-weight: bold;
  margin-bottom: 3px;
  font-size: 11px;
}
/* line 81, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content > div {
  padding-bottom: 20px;
}
/* line 85, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content .chat-message {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 14px;
  max-width: 80%;
  background: #f3f3f4;
  margin-bottom: 10px;
}
/* line 95, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content .chat-message.active {
  background: #1ab394;
  color: #fff;
}
/* line 100, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content .left {
  text-align: left;
  clear: both;
}
/* line 104, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content .left .chat-message {
  float: left;
}
/* line 109, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content .right {
  text-align: right;
  clear: both;
}
/* line 113, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .content .right .chat-message {
  float: right;
}
/* line 121, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/chat.scss */
.small-chat-box .form-chat {
  padding: 10px 10px;
}

/*
 * metismenu - v2.0.2
 * A jQuery menu plugin
 * https://github.com/onokumus/metisMenu
 *
 * Made by Osman Nuri Okumus
 * Under MIT License
 */
/* line 10, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .plus-minus, .metismenu .plus-times {
  float: right;
}

/* line 14, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .arrow {
  float: right;
  line-height: 1.42857;
}

/* line 19, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .glyphicon.arrow:before {
  content: "";
}

/* line 23, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .active > a > .glyphicon.arrow:before {
  content: "";
}

/* line 27, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .fa.arrow:before {
  content: "";
}

/* line 31, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .active > a > .fa.arrow:before {
  content: "";
}

/* line 35, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .ion.arrow:before {
  content: "";
}

/* line 39, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .active > a > .ion.arrow:before {
  content: "";
}

/* line 43, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .fa.plus-minus:before, .metismenu .fa.plus-times:before {
  content: "";
}

/* line 47, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .active > a > .fa.plus-times {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 53, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .active > a > .fa.plus-minus:before {
  content: "";
}

/* line 57, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .collapse {
  display: none;
}

/* line 61, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .collapse.in {
  display: block;
}

/* line 65, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.metismenu .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
}

/* line 78, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.mini-navbar .metismenu .collapse {
  opacity: 0;
}
/* line 79, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.mini-navbar .metismenu .collapse.in {
  opacity: 1;
}
/* line 80, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.mini-navbar .metismenu .collapse a {
  display: none;
}
/* line 81, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/metismenu.scss */
.mini-navbar .metismenu .collapse.in a {
  display: block;
}

/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-rotating-plane"></div>
 *
 */
/* line 8, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-rotating-plane.sk-spinner {
  width: 30px;
  height: 30px;
  background-color: #aaaaaa;
  margin: 0 auto;
  -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
  animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-double-bounce">
 *      <div class="sk-double-bounce1"></div>
 *      <div class="sk-double-bounce2"></div>
 *    </div>
 *
 */
/* line 60, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-double-bounce.sk-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto;
}

/* line 67, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-double-bounce .sk-double-bounce1, .sk-spinner-double-bounce .sk-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #aaaaaa;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
  animation: sk-doubleBounce 2s infinite ease-in-out;
}

/* line 80, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-double-bounce .sk-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-doubleBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-doubleBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-wave">
 *      <div class="sk-rect1"></div>
 *      <div class="sk-rect2"></div>
 *      <div class="sk-rect3"></div>
 *      <div class="sk-rect4"></div>
 *      <div class="sk-rect5"></div>
 *    </div>
 *
 */
/* line 121, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wave.sk-spinner {
  margin: 0 auto;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 10px;
}

/* line 129, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wave div {
  background-color: #aaaaaa;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
  animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

/* line 138, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wave .sk-rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

/* line 143, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wave .sk-rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

/* line 148, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wave .sk-rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

/* line 153, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wave .sk-rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-wandering-cubes">
 *      <div class="sk-cube1"></div>
 *      <div class="sk-cube2"></div>
 *    </div>
 *
 */
/* line 191, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wandering-cubes.sk-spinner {
  margin: 0 auto;
  width: 32px;
  height: 32px;
  position: relative;
}

/* line 198, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wandering-cubes .sk-cube1, .sk-spinner-wandering-cubes .sk-cube2 {
  background-color: #aaaaaa;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-wanderingCubeMove 1.8s infinite ease-in-out;
  animation: sk-wanderingCubeMove 1.8s infinite ease-in-out;
}

/* line 209, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wandering-cubes .sk-cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-wanderingCubeMove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    /* Hack to make FF rotate in the right direction */
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes sk-wanderingCubeMove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    /* Hack to make FF rotate in the right direction */
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-pulse"></div>
 *
 */
/* line 276, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-pulse.sk-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-color: #aaaaaa;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
  animation: sk-pulseScaleOut 1s infinite ease-in-out;
}

@-webkit-keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-chasing-dots">
 *      <div class="sk-dot1"></div>
 *      <div class="sk-dot2"></div>
 *    </div>
 *
 */
/* line 321, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-chasing-dots.sk-spinner {
  margin: 0 auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-chasingDotsRotate 2s infinite linear;
  animation: sk-chasingDotsRotate 2s infinite linear;
}

/* line 331, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-chasing-dots .sk-dot1, .sk-spinner-chasing-dots .sk-dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #aaaaaa;
  border-radius: 100%;
  -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
  animation: sk-chasingDotsBounce 2s infinite ease-in-out;
}

/* line 343, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-chasing-dots .sk-dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes sk-chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-chasingDotsBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-chasingDotsBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-three-bounce">
 *      <div class="sk-bounce1"></div>
 *      <div class="sk-bounce2"></div>
 *      <div class="sk-bounce3"></div>
 *    </div>
 *
 */
/* line 398, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-three-bounce.sk-spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}

/* line 404, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-three-bounce div {
  width: 18px;
  height: 18px;
  background-color: #aaaaaa;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
  animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 417, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

/* line 422, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-threeBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-threeBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-circle">
 *      <div class="sk-circle1 sk-circle"></div>
 *      <div class="sk-circle2 sk-circle"></div>
 *      <div class="sk-circle3 sk-circle"></div>
 *      <div class="sk-circle4 sk-circle"></div>
 *      <div class="sk-circle5 sk-circle"></div>
 *      <div class="sk-circle6 sk-circle"></div>
 *      <div class="sk-circle7 sk-circle"></div>
 *      <div class="sk-circle8 sk-circle"></div>
 *      <div class="sk-circle9 sk-circle"></div>
 *      <div class="sk-circle10 sk-circle"></div>
 *      <div class="sk-circle11 sk-circle"></div>
 *      <div class="sk-circle12 sk-circle"></div>
 *    </div>
 *
 */
/* line 470, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle.sk-spinner {
  margin: 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}

/* line 477, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 485, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 20%;
  height: 20%;
  background-color: #aaaaaa;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 500, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

/* line 506, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

/* line 512, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 518, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

/* line 524, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

/* line 530, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 536, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

/* line 542, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

/* line 548, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 554, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

/* line 560, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

/* line 566, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

/* line 571, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

/* line 576, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

/* line 581, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

/* line 586, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

/* line 591, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

/* line 596, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

/* line 601, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

/* line 606, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

/* line 611, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

/* line 616, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-cube-grid">
 *      <div class="sk-cube"></div>
 *      <div class="sk-cube"></div>
 *      <div class="sk-cube"></div>
 *      <div class="sk-cube"></div>
 *      <div class="sk-cube"></div>
 *      <div class="sk-cube"></div>
 *      <div class="sk-cube"></div>
 *      <div class="sk-cube"></div>
 *      <div class="sk-cube"></div>
 *    </div>
 *
 */
/* line 661, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid {
  /*
   * Spinner positions
   * 1 2 3
   * 4 5 6
   * 7 8 9
   */
}

/* line 670, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid.sk-spinner {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

/* line 676, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #aaaaaa;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

/* line 685, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

/* line 690, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* line 695, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

/* line 700, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(4) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

/* line 705, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(5) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

/* line 710, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* line 715, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(7) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

/* line 720, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(8) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

/* line 725, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-cube-grid .sk-cube:nth-child(9) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-wordpress">
 *      <span class="sk-inner-circle"></span>
 *    </div>
 *
 */
/* line 762, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wordpress.sk-spinner {
  background-color: #aaaaaa;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  position: relative;
  margin: 0 auto;
  -webkit-animation: sk-innerCircle 1s linear infinite;
  animation: sk-innerCircle 1s linear infinite;
}

/* line 773, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-wordpress .sk-inner-circle {
  display: block;
  background-color: #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 8px;
  top: 5px;
  left: 5px;
}

@-webkit-keyframes sk-innerCircle {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes sk-innerCircle {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-fading-circle">
 *      <div class="sk-circle1 sk-circle"></div>
 *      <div class="sk-circle2 sk-circle"></div>
 *      <div class="sk-circle3 sk-circle"></div>
 *      <div class="sk-circle4 sk-circle"></div>
 *      <div class="sk-circle5 sk-circle"></div>
 *      <div class="sk-circle6 sk-circle"></div>
 *      <div class="sk-circle7 sk-circle"></div>
 *      <div class="sk-circle8 sk-circle"></div>
 *      <div class="sk-circle9 sk-circle"></div>
 *      <div class="sk-circle10 sk-circle"></div>
 *      <div class="sk-circle11 sk-circle"></div>
 *      <div class="sk-circle12 sk-circle"></div>
 *    </div>
 *
 */
/* line 827, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle.sk-spinner {
  margin: 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}

/* line 834, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 842, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 18%;
  height: 18%;
  background-color: #aaaaaa;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 857, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

/* line 863, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

/* line 869, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 875, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

/* line 881, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

/* line 887, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 893, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

/* line 899, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

/* line 905, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 911, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

/* line 917, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

/* line 923, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

/* line 928, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

/* line 933, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

/* line 938, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

/* line 943, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

/* line 948, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

/* line 953, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

/* line 958, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

/* line 963, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

/* line 968, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

/* line 973, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.sk-spinner-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
/* line 998, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.ibox-content > .sk-spinner {
  display: none;
}

/* line 999, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.ibox-content.sk-loading {
  position: relative;
}

/* line 1000, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.ibox-content.sk-loading:after {
  content: '';
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* line 1010, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/spinners.scss */
.ibox-content.sk-loading > .sk-spinner {
  display: block;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  z-index: 2000;
}

/*
 *
 *   INSPINIA Landing Page - Responsive Admin Theme
 *   Copyright 2014 Webapplayers.com
 *
*/
/* GLOBAL STYLES
-------------------------------------------------- */
/* PACE PLUGIN
-------------------------------------------------- */
/* line 12, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page.pace .pace-progress {
  background: #fff;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 2px;
  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}

/* line 26, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.pace-inactive {
  display: none;
}

/* line 30, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
body.landing-page {
  color: #676a6c;
  font-family: 'Open Sans', helvetica, arial, sans-serif;
  background-color: #fff;
}

/* line 36, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page {
  /* CUSTOMIZE THE NAVBAR
  -------------------------------------------------- */
  /* Flip around the padding for proper display in narrow viewports */
  /* BACKGROUNDS SLIDER
  -------------------------------------------------- */
  /* CUSTOMIZE THE CAROUSEL
  -------------------------------------------------- */
  /* Carousel base class */
  /* Since positioning the image, we need to help out the caption */
  /* Declare heights because of positioning of img element */
  /* Sections
  ------------------------- */
  /* Buttons - only primary custom button
  ------------------------- */
  /* RESPONSIVE CSS
  -------------------------------------------------- */
}
/* line 38, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .container {
  overflow: hidden;
}
/* line 40, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page span.navy {
  color: #aaaaaa;
}
/* line 43, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page p.text-color {
  color: #676a6c;
}
/* line 46, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page a.navy-link {
  color: #aaaaaa;
  text-decoration: none;
}
/* line 50, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page a.navy-link:hover {
  color: #9d9d9d;
}
/* line 53, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page section p {
  color: #aeaeae;
  font-size: 13px;
}
/* line 57, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page address {
  font-size: 13px;
}
/* line 60, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page h1 {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 200;
}
/* line 65, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navy-line {
  width: 60px;
  height: 1px;
  margin: 60px auto 0;
  border-bottom: 2px solid #aaaaaa;
}
/* line 73, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
}
/* line 81, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-wrapper > .container {
  padding-right: 0;
  padding-left: 0;
}
/* line 85, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-wrapper .navbar {
  padding-right: 15px;
  padding-left: 15px;
}
/* line 89, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default.navbar-scroll {
  background-color: #fff;
  border-color: #fff;
  padding: 15px 0;
}
/* line 94, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default {
  background-color: transparent;
  border-color: transparent;
  transition: all 0.3s ease-in-out 0s;
}
/* line 99, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default .nav li a {
  color: #fff;
  font-family: 'Open Sans', helvetica, arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}
/* line 107, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-nav > li > a {
  padding-top: 25px;
  border-top: 6px solid transparent;
}
/* line 111, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default .navbar-nav > .active > a,
.landing-page .navbar-default .navbar-nav > .active > a:hover {
  background: transparent;
  color: #fff;
  border-top: 6px solid #aaaaaa;
}
/* line 117, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default .navbar-nav > li > a:hover,
.landing-page .navbar-default .navbar-nav > li > a:focus {
  color: #aaaaaa;
  background: inherit;
}
/* line 122, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default .navbar-nav > .active > a:focus {
  background: transparent;
  color: #fff;
}
/* line 127, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default .navbar-nav > .active > a:focus {
  background: transparent;
  color: #ffffff;
}
/* line 132, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default.navbar-scroll .navbar-nav > .active > a:focus {
  background: transparent;
  color: inherit;
}
/* line 136, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default .navbar-brand:hover,
.landing-page .navbar-default .navbar-brand:focus {
  background: #9d9d9d;
  color: #fff;
}
/* line 141, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default .navbar-brand {
  color: #fff;
  height: auto;
  display: block;
  font-size: 14px;
  background: #aaaaaa;
  padding: 15px 20px 15px 20px;
  border-radius: 0 0 5px 5px;
  font-weight: 700;
  transition: all 0.3s ease-in-out 0s;
}
/* line 152, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-scroll.navbar-default .nav li a {
  color: #676a6c;
}
/* line 155, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-scroll.navbar-default .nav li a:hover {
  color: #aaaaaa;
}
/* line 158, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-wrapper .navbar.navbar-scroll {
  padding-top: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #e7eaec;
  border-radius: 0;
}
/* line 165, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .nav > li.active {
  border: none;
  background: inherit;
}
/* line 170, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .nav > li > a {
  padding: 25px 10px 15px 10px;
}
/* line 173, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-scroll .navbar-nav > li > a {
  padding: 20px 10px;
}
/* line 177, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-default .navbar-nav > .active > a,
.landing-page .navbar-default .navbar-nav > .active > a:hover {
  border-top: 6px solid #aaaaaa;
}
/* line 182, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-fixed-top {
  border: none !important;
}
/* line 186, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar-fixed-top.navbar-scroll {
  border-bottom: 1px solid #e7eaec !important;
}
/* line 190, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navbar.navbar-scroll .navbar-brand {
  margin-top: 15px;
  border-radius: 5px;
  font-size: 12px;
  padding: 10px;
  height: auto;
}
/* line 199, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .header-back {
  height: 470px;
  width: 100%;
}
/* line 203, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .header-back.one {
  background: url(/images/landing/header_one.jpg) 50% 0 no-repeat;
}
/* line 206, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .header-back.two {
  background: url(/images/landing/header_two.jpg) 50% 0 no-repeat;
}
/* line 212, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel {
  height: 470px;
}
/* line 216, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-caption {
  z-index: 10;
}
/* line 220, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel .item {
  height: 470px;
  background-color: #777;
}
/* line 224, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 470px;
}
/* line 231, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
/* line 236, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-fade .carousel-inner .active {
  opacity: 1;
}
/* line 239, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-fade .carousel-inner .active.left,
.landing-page .carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
/* line 245, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-fade .carousel-inner .next.left,
.landing-page .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
/* line 249, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-fade .carousel-control {
  z-index: 2;
}
/* line 252, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-control.left,
.landing-page .carousel-control.right {
  background: none;
}
/* line 256, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-control {
  width: 6%;
}
/* line 259, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-inner .container {
  position: relative;
  overflow: visible;
}
/* line 263, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-inner {
  overflow: visible;
}
/* line 266, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-caption {
  position: absolute;
  top: 100px;
  left: 0;
  bottom: auto;
  right: auto;
  text-align: left;
}
/* line 274, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-caption {
  position: absolute;
  top: 100px;
  left: 0;
  bottom: auto;
  right: auto;
  text-align: left;
}
/* line 282, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-caption.blank {
  top: 140px;
}
/* line 285, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-image {
  position: absolute;
  right: 10px;
  top: 150px;
}
/* line 290, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-indicators {
  padding-right: 60px;
}
/* line 293, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-caption h1 {
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
  text-shadow: none;
  letter-spacing: -1.5px;
}
/* line 300, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .carousel-caption p {
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: none;
}
/* line 305, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .caption-link {
  color: #fff;
  margin-left: 10px;
  text-transform: capitalize;
  font-weight: 400;
}
/* line 311, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .caption-link:hover {
  text-decoration: none;
  color: inherit;
}
/* line 317, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .services {
  padding-top: 60px;
}
/* line 320, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .services h2 {
  font-size: 20px;
  letter-spacing: -1px;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 326, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .features-block {
  margin-top: 40px;
}
/* line 329, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .features-text {
  margin-top: 40px;
}
/* line 332, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .features small {
  color: #aaaaaa;
}
/* line 335, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .features h2 {
  font-size: 18px;
  margin-top: 5px;
}
/* line 339, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .features-text-alone {
  margin: 40px 0;
}
/* line 342, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .features-text-alone h1 {
  font-weight: 200;
}
/* line 345, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .features-icon {
  color: #aaaaaa;
  font-size: 40px;
}
/* line 349, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .navy-section {
  margin-top: 60px;
  background: #aaaaaa;
  color: #fff;
  padding: 20px 0;
}
/* line 355, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .gray-section {
  background: #f4f4f4;
  margin-top: 60px;
}
/* line 359, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .team-member {
  text-align: center;
}
/* line 362, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .team-member img {
  margin: auto;
}
/* line 365, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .social-icon a {
  background: #aaaaaa;
  color: #fff;
  padding: 4px 8px;
  height: 28px;
  width: 28px;
  display: block;
  border-radius: 50px;
}
/* line 374, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .social-icon a:hover {
  background: #9d9d9d;
}
/* line 377, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .img-small {
  height: 88px;
  width: 88px;
}
/* line 381, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .pricing-plan {
  margin: 20px 30px 0 30px;
  border-radius: 4px;
}
/* line 385, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .pricing-plan.selected {
  transform: scale(1.1);
  background: #f4f4f4;
}
/* line 389, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .pricing-plan li {
  padding: 10px 16px;
  border-top: 1px solid #e7eaec;
  text-align: center;
  color: #aeaeae;
}
/* line 395, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .pricing-plan .pricing-price span {
  font-weight: 700;
  color: #aaaaaa;
}
/* line 399, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page li.pricing-desc {
  font-size: 13px;
  border-top: none;
  padding: 20px 16px;
}
/* line 404, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page li.pricing-title {
  background: #aaaaaa;
  color: #fff;
  padding: 10px;
  border-radius: 4px 4px 0 0;
  font-size: 22px;
  font-weight: 600;
}
/* line 412, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .testimonials {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: #aaaaaa;
  background-image: url(/images/landing/avatar_all.png);
}
/* line 418, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .big-icon {
  font-size: 56px !important;
}
/* line 421, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .features .big-icon {
  color: #aaaaaa !important;
}
/* line 424, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .contact {
  background-image: url(/images/landing/word_map.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-top: 60px;
}
/* line 431, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page section.timeline {
  padding-bottom: 30px;
}
/* line 434, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page section.comments {
  padding-bottom: 80px;
}
/* line 438, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .comments-avatar {
  margin-top: 25px;
  margin-left: 22px;
  margin-bottom: 25px;
}
/* line 444, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .comments-avatar .commens-name {
  font-weight: 600;
  font-size: 14px;
}
/* line 449, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .comments-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 10px;
}
/* line 456, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .bubble {
  position: relative;
  height: 120px;
  padding: 20px;
  background: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-style: italic;
  font-size: 14px;
}
/* line 468, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .bubble:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 15px 14px 0;
  border-color: #FFFFFF transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -15px;
  left: 30px;
}
/* line 483, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .btn-primary.btn-outline:hover,
.landing-page .btn-success.btn-outline:hover,
.landing-page .btn-info.btn-outline:hover,
.landing-page .btn-warning.btn-outline:hover,
.landing-page .btn-danger.btn-outline:hover {
  color: #fff;
}
/* line 490, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .btn-primary {
  background-color: #aaaaaa;
  border-color: #aaaaaa;
  color: #FFFFFF;
  font-size: 14px;
  padding: 10px 20px;
  font-weight: 600;
}
/* line 498, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .btn-primary:hover,
.landing-page .btn-primary:focus,
.landing-page .btn-primary:active,
.landing-page .btn-primary.active,
.landing-page .open .dropdown-toggle.btn-primary {
  background-color: #9d9d9d;
  border-color: #9d9d9d;
  color: #FFFFFF;
}
/* line 507, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .btn-primary:active,
.landing-page .btn-primary.active,
.landing-page .open .dropdown-toggle.btn-primary {
  background-image: none;
}
/* line 512, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
.landing-page .btn-primary.disabled,
.landing-page .btn-primary.disabled:hover,
.landing-page .btn-primary.disabled:focus,
.landing-page .btn-primary.disabled:active,
.landing-page .btn-primary.disabled.active,
.landing-page .btn-primary[disabled],
.landing-page .btn-primary[disabled]:hover,
.landing-page .btn-primary[disabled]:focus,
.landing-page .btn-primary[disabled]:active,
.landing-page .btn-primary.active[disabled],
.landing-page fieldset[disabled] .btn-primary,
.landing-page fieldset[disabled] .btn-primary:hover,
.landing-page fieldset[disabled] .btn-primary:focus,
.landing-page fieldset[disabled] .btn-primary:active,
.landing-page fieldset[disabled] .btn-primary.active {
  background-color: #1dc5a3;
  border-color: #1dc5a3;
}
@media (min-width: 768px) {
  /* line 36, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page {
    /* Navbar positioning foo */
    /* The navbar becomes detached from the top, so we round the corners */
    /* Bump up size of carousel content */
  }
  /* line 534, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-wrapper {
    margin-top: 20px;
  }
  /* line 538, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  /* line 543, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left: 0;
  }
  /* line 549, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-wrapper .navbar {
    border-radius: 4px;
  }
  /* line 554, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .carousel-caption p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
  }
  /* line 560, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .featurette-heading {
    font-size: 50px;
  }
}
@media (max-width: 992px) {
  /* line 565, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .carousel-image {
    display: none;
  }
}
@media (max-width: 768px) {
  /* line 570, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .carousel-caption,
  .landing-page .carousel-caption.blank {
    left: 5%;
    top: 80px;
  }
  /* line 576, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .carousel-caption h1 {
    font-size: 28px;
  }
  /* line 580, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar.navbar-scroll .navbar-brand {
    margin-top: 6px;
  }
  /* line 584, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-default {
    background-color: #fff;
    border-color: #fff;
    padding: 15px 0;
  }
  /* line 590, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-default .navbar-nav > .active > a:focus {
    background: transparent;
    color: inherit;
  }
  /* line 595, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-default .nav li a {
    color: #676a6c;
  }
  /* line 599, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-default .nav li a:hover {
    color: #aaaaaa;
  }
  /* line 603, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-wrapper .navbar {
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e7eaec;
    border-radius: 0;
  }
  /* line 610, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .nav > li > a {
    padding: 25px 10px 15px 10px;
  }
  /* line 614, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-nav > li > a {
    padding: 20px 10px;
  }
  /* line 618, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar .navbar-brand {
    margin-top: 6px;
    border-radius: 5px;
    font-size: 12px;
    padding: 10px;
    height: auto;
  }
  /* line 626, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-wrapper .navbar {
    padding-left: 15px;
    padding-right: 5px;
  }
  /* line 631, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar-default .navbar-nav > .active > a,
  .landing-page .navbar-default .navbar-nav > .active > a:hover {
    color: inherit;
  }
  /* line 636, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .carousel-control {
    display: none;
  }
}
@media (min-width: 992px) {
  /* line 641, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .featurette-heading {
    margin-top: 120px;
  }
}
@media (max-width: 768px) {
  /* line 647, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar .navbar-header {
    display: block;
    float: none;
  }
  /* line 652, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/landing.scss */
  .landing-page .navbar .navbar-header .navbar-toggle {
    background-color: #ffffff;
    padding: 9px 10px;
    border: none;
  }
}

/* line 2, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls {
  /* Theme config */
}
/* line 4, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls #page-wrapper {
  margin: 0 220px 0 0;
}
/* line 8, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .nav-second-level li a {
  padding: 7px 35px 7px 10px;
}
/* line 12, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .ibox-title h5 {
  float: right;
}
/* line 16, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .pull-right {
  float: left !important;
}
/* line 20, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .pull-left {
  float: right !important;
}
/* line 24, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .ibox-tools {
  float: left;
}
/* line 28, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .stat-percent {
  float: left;
}
/* line 32, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .navbar-right {
  float: left !important;
}
/* line 36, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .navbar-top-links li:last-child {
  margin-left: 40px;
  margin-right: 0;
}
/* line 41, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .minimalize-styl-2 {
  float: right;
  margin: 14px 20px 5px 5px;
}
/* line 46, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .feed-element > .pull-left {
  margin-left: 10px;
  margin-right: 0;
}
/* line 51, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .timeline-item .date {
  text-align: left;
}
/* line 55, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .timeline-item .date i {
  left: 0;
  right: auto;
}
/* line 60, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .timeline-item .content {
  border-right: 1px solid #e7eaec;
  border-left: none;
}
/* line 65, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .theme-config {
  left: 0;
  right: auto;
}
/* line 70, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .spin-icon {
  border-radius: 0 20px 20px 0;
}
/* line 74, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .toast-close-button {
  float: left;
}
/* line 78, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls #toast-container > .toast:before {
  margin: auto -1.5em auto 0.5em;
}
/* line 82, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls #toast-container > div {
  padding: 15px 50px 15px 15px;
}
/* line 86, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .center-orientation .vertical-timeline-icon i {
  margin-left: 0;
  margin-right: -12px;
}
/* line 91, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .vertical-timeline-icon i {
  right: 50%;
  left: auto;
  margin-left: auto;
  margin-right: -12px;
}
/* line 98, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .file-box {
  float: right;
}
/* line 102, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls ul.notes li {
  float: right;
}
/* line 106, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .chat-users, body.rtls .chat-statistic {
  margin-right: -30px;
  margin-left: auto;
}
/* line 111, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .dropdown-menu > li > a {
  text-align: right;
}
/* line 115, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .b-r {
  border-left: 1px solid #e7eaec;
  border-right: none;
}
/* line 120, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .dd-list .dd-list {
  padding-right: 30px;
  padding-left: 0;
}
/* line 125, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .dd-item > button {
  float: right;
}
/* line 130, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .theme-config-box {
  margin-left: -220px;
  margin-right: 0;
}
/* line 135, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .theme-config-box.show {
  margin-left: 0;
  margin-right: 0;
}
/* line 140, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .spin-icon {
  right: 0;
  left: auto;
}
/* line 145, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .skin-settings {
  margin-right: 40px;
  margin-left: 0;
}
/* line 150, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .skin-settings {
  direction: ltr;
}
/* line 154, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .footer.fixed {
  margin-right: 220px;
  margin-left: 0;
}

@media (max-width: 992px) {
  /* line 163, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
  body.rtls .chat-users, body.rtls .chat-statistic {
    margin-right: 0;
  }
}
/* line 169, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls.mini-navbar .footer.fixed, body.body-small.mini-navbar .footer.fixed {
  margin: 0 70px 0 0;
}

/* line 173, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls.mini-navbar.fixed-sidebar .footer.fixed, body.body-small.mini-navbar .footer.fixed {
  margin: 0 0 0 0;
}

/* line 177, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls.top-navigation .navbar-toggle {
  float: right;
  margin-left: 15px;
  margin-right: 15px;
}

/* line 183, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
.body-small.rtls.top-navigation .navbar-header {
  float: none;
}

/* line 187, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls.top-navigation #page-wrapper {
  margin: 0;
}

/* line 191, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls.mini-navbar #page-wrapper {
  margin: 0 70px 0 0;
}

/* line 195, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls.mini-navbar.fixed-sidebar #page-wrapper {
  margin: 0 0 0 0;
}

/* line 199, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls.body-small.fixed-sidebar.mini-navbar #page-wrapper {
  margin: 0 220px 0 0;
}

/* line 203, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls.body-small.fixed-sidebar.mini-navbar .navbar-static-side {
  width: 220px;
}

/* line 207, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
.body-small.rtls .navbar-fixed-top {
  margin-right: 0;
}

/* line 211, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
.body-small.rtls .navbar-header {
  float: right;
}

/* line 215, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .navbar-top-links li:last-child {
  margin-left: 20px;
}

/* line 219, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .top-navigation #page-wrapper, body.rtls.mini-navbar .top-navigation #page-wrapper, body.rtls.mini-navbar.top-navigation #page-wrapper {
  margin: 0;
}

/* line 223, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
body.rtls .top-navigation .footer.fixed, body.rtls.top-navigation .footer.fixed {
  margin: 0;
}

@media (max-width: 768px) {
  /* line 229, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
  body.rtls .navbar-top-links li:last-child {
    margin-left: 20px;
  }

  /* line 233, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
  .body-small.rtls #page-wrapper {
    position: inherit;
    margin: 0 0 0 0;
    min-height: 1000px;
  }

  /* line 239, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
  .body-small.rtls .navbar-static-side {
    display: none;
    z-index: 2001;
    position: absolute;
    width: 70px;
  }

  /* line 246, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
  .body-small.rtls.mini-navbar .navbar-static-side {
    display: block;
  }

  /* line 250, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
  .rtls.fixed-sidebar.body-small .navbar-static-side {
    display: none;
    z-index: 2001;
    position: fixed;
    width: 220px;
  }

  /* line 257, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
  .rtls.fixed-sidebar.body-small.mini-navbar .navbar-static-side {
    display: block;
  }
}
/* line 264, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
.rtls .ltr-support {
  direction: ltr;
}

/* line 268, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
.rtls.mini-navbar .nav-second-level, .rtls.mini-navbar li.active .nav-second-level {
  left: auto;
  right: 70px;
}

/* line 273, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
.rtls #right-sidebar {
  left: -260px;
  right: auto;
}

/* line 278, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/rtl.scss */
.rtls #right-sidebar.sidebar-open {
  left: 0;
}

/*
 *
 *   This is style for skin config
 *   Use only in demo theme
 *
*/
/* line 8, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.theme-config {
  position: absolute;
  top: 90px;
  right: 0;
  overflow: hidden;
}

/* line 15, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.theme-config-box {
  margin-right: -220px;
  position: relative;
  z-index: 2000;
  transition-duration: 0.8s;
}

/* line 22, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.theme-config-box.show {
  margin-right: 0;
}

/* line 26, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.spin-icon {
  background: #aaaaaa;
  position: absolute;
  padding: 7px 10px 7px 13px;
  border-radius: 20px 0 0 20px;
  font-size: 16px;
  top: 0;
  left: 0;
  width: 40px;
  color: #fff;
  cursor: pointer;
}

/* line 39, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.skin-settings {
  width: 220px;
  margin-left: 40px;
  background: #f3f3f4;
}

/* line 45, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.skin-settings .title {
  background: #efefef;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  padding: 10px 15px;
  font-size: 12px;
}

/* line 55, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.setings-item {
  padding: 10px 30px;
}

/* line 59, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.setings-item.skin {
  text-align: center;
}

/* line 63, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.setings-item .switch {
  float: right;
}

/* line 67, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.skin-name a {
  text-transform: uppercase;
}

/* line 71, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.setings-item a {
  color: #fff;
}

/* line 75, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.default-skin, .blue-skin, .ultra-skin, .yellow-skin {
  text-align: center;
}

/* line 79, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.default-skin {
  font-weight: 600;
  background: #283A49;
}

/* line 84, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.default-skin:hover {
  background: #1e2e3d;
}

/* line 88, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.blue-skin {
  font-weight: 600;
  background: url("patterns/header-profile-skin-1.png") repeat scroll 0 0;
}

/* line 93, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.blue-skin:hover {
  background: #0d8ddb;
}

/* line 97, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.yellow-skin {
  font-weight: 600;
  background: url("patterns/header-profile-skin-3.png") repeat scroll 0 100%;
}

/* line 102, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.yellow-skin:hover {
  background: #ce8735;
}

/* line 106, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.ultra-skin {
  padding: 20px 10px;
  font-weight: 600;
  background: url("patterns/3.png") repeat scroll 0 0;
}

/* line 112, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/theme-config.scss */
.ultra-skin:hover {
  background: url("patterns/4.png") repeat scroll 0 0;
}

/*
 *
 *   SKIN 1 - INSPINIA - Responsive Admin Theme
 *   NAME - Blue light
 *
*/
/* line 15, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .minimalize-styl-2 {
  margin: 14px 5px 5px 30px;
}

/* line 19, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .navbar-top-links li:last-child {
  margin-right: 30px;
}

/* line 23, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1.fixed-nav .minimalize-styl-2 {
  margin: 14px 5px 5px 15px;
}

/* line 27, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .spin-icon {
  background: #0e9aef !important;
}

/* line 31, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav-header {
  background-color: #0e9aef;
  background-image: url("patterns/header-profile-skin-1.png");
}

/* line 36, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1.mini-navbar .nav-second-level {
  background: #3e495f;
}

/* line 40, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .breadcrumb {
  background: transparent;
}

/* line 44, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .page-heading {
  border: none;
}

/* line 48, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav > li.active {
  background: #3a4459;
}

/* line 52, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav > li > a {
  color: #9ea6b9;
}

/* line 56, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 ul.nav-second-level {
  background-color: inherit;
}

/* line 60, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav > li.active > a {
  color: #fff;
}

/* line 64, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .navbar-minimalize {
  background: #0e9aef;
  border-color: #0e9aef;
}

/* line 69, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
body.skin-1 {
  background: #3e495f;
}

/* line 73, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .navbar-static-top {
  background: #ffffff;
}

/* line 77, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .dashboard-header {
  background: transparent;
  border-bottom: none !important;
  border-top: none;
  padding: 20px 30px 10px 30px;
}

/* line 84, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.fixed-nav.skin-1 .navbar-fixed-top {
  background: #fff;
}

/* line 88, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .wrapper-content {
  padding: 30px 15px;
}

/* line 92, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 #page-wrapper {
  background: #f4f6fa;
}

/* line 96, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .ibox-title, .skin-1 .ibox-content {
  border-width: 1px;
}

/* line 100, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .ibox-content:last-child {
  border-style: solid solid solid solid;
}

/* line 104, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav > li.active {
  border: none;
}

/* line 108, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav-header {
  padding: 35px 25px 25px 25px;
}

/* line 112, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav-header a.dropdown-toggle {
  color: #fff;
  margin-top: 10px;
}

/* line 117, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav-header a.dropdown-toggle .text-muted {
  color: #fff;
  opacity: 0.8;
}

/* line 122, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .profile-element {
  text-align: center;
}

/* line 126, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .img-circle {
  border-radius: 5px;
}

/* line 130, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .navbar-default .nav > li > a:hover, .skin-1 .navbar-default .nav > li > a:focus {
  background: #3a4459;
  color: #fff;
}

/* line 135, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav.nav-tabs > li.active > a {
  color: #555;
}

/* line 139, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-1 .nav.nav-tabs > li.active {
  background: transparent;
}

/*
 *
 *   SKIN 2 - INSPINIA - Responsive Admin Theme
 *   NAME - Inspinia Ultra
 *
*/
/* line 157, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
body.skin-2 {
  color: #565758 !important;
}

/* line 161, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .minimalize-styl-2 {
  margin: 14px 5px 5px 25px;
}

/* line 165, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .navbar-top-links li:last-child {
  margin-right: 25px;
}

/* line 169, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .spin-icon {
  background: #23c6c8 !important;
}

/* line 173, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav-header {
  background-color: #23c6c8;
  background-image: url("patterns/header-profile-skin-2.png");
}

/* line 178, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2.mini-navbar .nav-second-level {
  background: #ededed;
}

/* line 182, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .breadcrumb {
  background: transparent;
}

/* line 186, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2.fixed-nav .minimalize-styl-2 {
  margin: 14px 5px 5px 15px;
}

/* line 190, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .page-heading {
  border: none;
  background: rgba(255, 255, 255, 0.7);
}

/* line 195, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 ul.nav-second-level {
  background-color: inherit;
}

/* line 199, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav > li.active {
  background: #e0e0e0;
}

/* line 203, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .logo-element {
  padding: 17px 0;
}

/* line 207, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav > li > a, .skin-2 .welcome-message {
  color: #edf6ff;
}

/* line 211, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 #top-search::-moz-placeholder {
  color: #edf6ff;
  opacity: 0.5;
}

/* line 216, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 #side-menu > li > a, .skin-2 .nav.nav-second-level > li > a {
  color: #586b7d;
}

/* line 220, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav > li.active > a {
  color: #213a53;
}

/* line 224, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2.mini-navbar .nav-header {
  background: #213a53;
}

/* line 228, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .navbar-minimalize {
  background: #23c6c8;
  border-color: #23c6c8;
}

/* line 233, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .border-bottom {
  border-bottom: none !important;
}

/* line 237, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 #top-search {
  color: #fff;
}

/* line 241, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
body.skin-2 #wrapper {
  background-color: #ededed;
}

/* line 245, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .navbar-static-top {
  background: #213a53;
}

/* line 249, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.fixed-nav.skin-2 .navbar-fixed-top {
  background: #213a53;
  border-bottom: none !important;
}

/* line 254, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav-header {
  padding: 30px 25px 30px 25px;
}

/* line 258, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .dashboard-header {
  background: rgba(255, 255, 255, 0.4);
  border-bottom: none !important;
  border-top: none;
  padding: 20px 30px 20px 30px;
}

/* line 265, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .wrapper-content {
  padding: 30px 15px;
}

/* line 269, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .dashoard-1 .wrapper-content {
  padding: 0 30px 25px 30px;
}

/* line 273, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .ibox-title {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  margin-bottom: 1px;
}

/* line 279, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .ibox-content {
  background: rgba(255, 255, 255, 0.4);
  border: none !important;
}

/* line 284, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 #page-wrapper {
  background: #f6f6f6;
  background: -webkit-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);
  background: -o-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);
  background: -ms-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);
  background: radial-gradient(ellipse at center, #f6f6f6 20%, #d5d5d5 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#f6f6f6, endColorstr=#d5d5d5)";
}

/* line 293, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .ibox-title, .skin-2 .ibox-content {
  border-width: 1px;
}

/* line 297, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .ibox-content:last-child {
  border-style: solid solid solid solid;
}

/* line 301, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav > li.active {
  border: none;
}

/* line 305, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav-header a.dropdown-toggle {
  color: #edf6ff;
  margin-top: 10px;
}

/* line 310, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav-header a.dropdown-toggle .text-muted {
  color: #edf6ff;
  opacity: 0.8;
}

/* line 315, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .img-circle {
  border-radius: 10px;
}

/* line 319, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav.navbar-top-links > li > a:hover, .skin-2 .nav.navbar-top-links > li > a:focus {
  background: #1a2d41;
}

/* line 323, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .navbar-default .nav > li > a:hover, .skin-2 .navbar-default .nav > li > a:focus {
  background: #e0e0e0;
  color: #213a53;
}

/* line 328, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav.nav-tabs > li.active > a {
  color: #555;
}

/* line 332, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-2 .nav.nav-tabs > li.active {
  background: transparent;
}

/*
 *
 *   SKIN 3 - INSPINIA - Responsive Admin Theme
 *   NAME - Yellow/purple
 *
*/
/* line 350, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .minimalize-styl-2 {
  margin: 14px 5px 5px 30px;
}

/* line 354, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .navbar-top-links li:last-child {
  margin-right: 30px;
}

/* line 358, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3.fixed-nav .minimalize-styl-2 {
  margin: 14px 5px 5px 15px;
}

/* line 362, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .spin-icon {
  background: #ecba52 !important;
}

/* line 366, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
body.boxed-layout.skin-3 #wrapper {
  background: #3e2c42;
}

/* line 370, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav-header {
  background-color: #ecba52;
  background-image: url("patterns/header-profile-skin-3.png");
}

/* line 375, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3.mini-navbar .nav-second-level {
  background: #3e2c42;
}

/* line 379, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .breadcrumb {
  background: transparent;
}

/* line 383, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .page-heading {
  border: none;
}

/* line 387, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 ul.nav-second-level {
  background-color: inherit;
}

/* line 391, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav > li.active {
  background: #38283c;
}

/* line 395, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.fixed-nav.skin-3 .navbar-fixed-top {
  background: #fff;
}

/* line 399, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav > li > a {
  color: #948b96;
}

/* line 403, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav > li.active > a {
  color: #fff;
}

/* line 407, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .navbar-minimalize {
  background: #ecba52;
  border-color: #ecba52;
}

/* line 412, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
body.skin-3 {
  background: #3e2c42;
}

/* line 416, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .navbar-static-top {
  background: #ffffff;
}

/* line 420, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .dashboard-header {
  background: transparent;
  border-bottom: none !important;
  border-top: none;
  padding: 20px 30px 10px 30px;
}

/* line 427, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .wrapper-content {
  padding: 30px 15px;
}

/* line 431, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 #page-wrapper {
  background: #f4f6fa;
}

/* line 435, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .ibox-title, .skin-3 .ibox-content {
  border-width: 1px;
}

/* line 439, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .ibox-content:last-child {
  border-style: solid solid solid solid;
}

/* line 443, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav > li.active {
  border: none;
}

/* line 447, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav-header {
  padding: 35px 25px 25px 25px;
}

/* line 451, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav-header a.dropdown-toggle {
  color: #fff;
  margin-top: 10px;
}

/* line 456, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav-header a.dropdown-toggle .text-muted {
  color: #fff;
  opacity: 0.8;
}

/* line 461, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .profile-element {
  text-align: center;
}

/* line 465, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .img-circle {
  border-radius: 5px;
}

/* line 469, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .navbar-default .nav > li > a:hover, .skin-3 .navbar-default .nav > li > a:focus {
  background: #38283c;
  color: #fff;
}

/* line 474, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav.nav-tabs > li.active > a {
  color: #555;
}

/* line 478, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/skins.scss */
.skin-3 .nav.nav-tabs > li.active {
  background: transparent;
}

/* line 6, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
body.md-skin {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #ffffff;
}

/* line 13, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav-header {
  background: url("patterns/4.png") no-repeat;
}
/* line 18, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .label, .md-skin .badge {
  font-family: 'Roboto';
}
/* line 22, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin ul.nav-second-level {
  background-color: inherit;
}
/* line 26, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .font-bold {
  font-weight: 500;
}
/* line 30, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .wrapper-content {
  padding: 30px 20px 40px;
}
@media (max-width: 768px) {
  /* line 35, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
  .md-skin .wrapper-content {
    padding: 30px 0 40px;
  }
}
/* line 40, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .page-heading {
  border-bottom: none !important;
  border-top: 0;
  padding: 0 10px 20px 10px;
  box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.34), 0 0 6px 0 rgba(0, 0, 0, 0.14);
}
/* line 47, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .full-height-layout .page-heading {
  border-bottom: 1px solid #e7eaec !important;
}
/* line 51, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .ibox {
  clear: both;
  margin-bottom: 25px;
  margin-top: 0;
  padding: 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
/* line 59, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .ibox.border-bottom {
  border-bottom: none !important;
}
/* line 63, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .ibox-title, .md-skin .ibox-content {
  border-style: none;
}
/* line 67, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .ibox-title h5 {
  font-size: 16px;
  font-weight: 400;
}
/* line 72, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin a.close-canvas-menu {
  color: #ffffff;
}
/* line 76, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .welcome-message {
  color: #ffffff;
  font-weight: 300;
}
/* line 81, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin #top-search::-moz-placeholder {
  color: #ffffff;
}
/* line 85, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin #top-search::-webkit-input-placeholder {
  color: #ffffff;
}
/* line 89, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin #nestable-output,
.md-skin #nestable2-output {
  font-family: 'Roboto', lucida grande, lucida sans unicode, helvetica, arial, sans-serif;
}
/* line 94, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .landing-page {
  font-family: 'Roboto', helvetica, arial, sans-serif;
}
/* line 98, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .landing-page.navbar-default.navbar-scroll {
  background-color: #fff !important;
}
/* line 101, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .landing-page.navbar-default {
  background-color: transparent !important;
  box-shadow: none;
}
/* line 105, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .landing-page.navbar-default .nav li a {
  font-family: 'Roboto', helvetica, arial, sans-serif;
}
/* line 109, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav > li > a {
  color: #676a6c;
  padding: 14px 20px 14px 25px;
}
/* line 114, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav.navbar-right > li > a {
  color: #ffffff;
}
/* line 118, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav > li.active > a {
  color: #5b5d5f;
  font-weight: 700;
}
/* line 123, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-default .nav > li > a:hover, .md-skin .navbar-default .nav > li > a:focus {
  font-weight: 700;
  color: #5b5d5f;
}
/* line 128, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav .open > a, .md-skin .nav .open > a:hover, .md-skin .nav .open > a:focus {
  background: #aaaaaa;
}
/* line 132, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-top-links li {
  display: inline-table;
}
/* line 136, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-top-links .dropdown-menu li {
  display: block;
}
/* line 140, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .pace-done .nav-header {
  transition: all 0.4s;
}
/* line 144, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav > li.active {
  background: #f8f8f9;
}
/* line 148, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav-second-level li a {
  padding: 7px 10px 7px 52px;
}
/* line 152, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav-third-level li a {
  padding-left: 62px;
}
/* line 156, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-top-links li a {
  padding: 20px 10px;
  min-height: 50px;
}
/* line 161, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav > li > a {
  font-weight: 400;
}
/* line 165, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-static-side .nav > li > a:focus, .md-skin .navbar-static-side .nav > li > a:hover {
  background-color: inherit;
}
/* line 169, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-top-links .dropdown-menu li a {
  padding: 3px 20px;
  min-height: inherit;
}
/* line 174, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav-header .navbar-fixed-top a {
  color: #ffffff;
}
/* line 178, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .nav-header .text-muted {
  color: #ffffff;
}
/* line 182, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-form-custom .form-control {
  font-weight: 300;
}
/* line 186, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .mini-navbar .nav-second-level {
  background-color: inherit;
}
/* line 190, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .mini-navbar li.active .nav-second-level {
  left: 65px;
}
/* line 194, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .canvas-menu.mini-navbar .nav-second-level {
  background: inherit;
}
/* line 198, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .pace-done .navbar-static-side, .md-skin .pace-done .nav-header, .md-skin .pace-done li.active, .md-skin .pace-done #page-wrapper, .md-skin .pace-done .footer {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* line 205, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-fixed-top {
  background: #fff;
  transition-duration: 0.4s;
  z-index: 2030;
  border-bottom: none !important;
}
/* line 212, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-fixed-top, .md-skin .navbar-static-top {
  background-color: #1AB394 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
/* line 217, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .navbar-static-side {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
/* line 223, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin #right-sidebar {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border: none;
  z-index: 900;
}
/* line 229, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .white-bg .navbar-fixed-top, .md-skin .white-bg .navbar-static-top {
  background: #fff !important;
}
/* line 233, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .contact-box {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border: none;
}
/* line 238, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .dashboard-header {
  border-bottom: none !important;
  border-top: 0;
  padding: 20px 20px 20px 20px;
  margin: 30px 20px 0 20px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  /* line 247, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
  .md-skin .dashboard-header {
    margin: 20px 0 0 0;
  }
}
/* line 252, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin ul.notes li div {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
/* line 257, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .file {
  border: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
/* line 262, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .mail-box {
  background-color: #ffffff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  padding: 0;
  margin-bottom: 20px;
  border: none;
}
/* line 270, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .mail-box-header {
  border: none;
  background-color: #ffffff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  padding: 30px 20px 20px 20px;
}
/* line 277, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .mailbox-content {
  border: none;
  padding: 20px;
  background: #ffffff;
}
/* line 283, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .social-feed-box {
  border: none;
  background: #fff;
  margin-bottom: 15px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
/* line 290, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.landing-page .navbar-default {
  background-color: transparent !important;
  border-color: transparent;
  transition: all 0.3s ease-in-out 0s;
  box-shadow: none;
}
/* line 297, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.landing-page .navbar-default.navbar-scroll, .md-skin.landing-page.body-small .navbar-default {
  background-color: #ffffff !important;
}
/* line 303, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.landing-page .nav > li.active {
  background: inherit;
}
/* line 307, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.landing-page .navbar-scroll .navbar-nav > li > a {
  padding: 20px 10px;
}
/* line 311, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.landing-page .navbar-default .nav li a {
  font-family: 'Roboto', helvetica, arial, sans-serif;
}
/* line 315, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.landing-page .nav > li > a {
  padding: 25px 10px 15px 10px;
}
/* line 319, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.landing-page .navbar-default .navbar-nav > li > a:hover, .md-skin.landing-page .navbar-default .navbar-nav > li > a:focus {
  background: inherit;
  color: #aaaaaa;
}
/* line 325, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.landing-page.body-small .nav.navbar-right > li > a {
  color: #676a6c;
}
/* line 329, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin .landing_link a, .md-skin .special_link a {
  color: #ffffff !important;
}
/* line 333, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.canvas-menu.mini-navbar .nav-second-level {
  background: #f8f8f9;
}
/* line 337, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.mini-navbar .nav-second-level {
  background-color: #ffffff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
/* line 342, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.mini-navbar .nav-second-level li a {
  padding-left: 0;
}
/* line 346, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.top-navigation .nav.navbar-right > li > a {
  padding: 15px 20px;
  color: #676a6c;
}
/* line 351, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.top-navigation .nav > li a:hover, .md-skin .top-navigation .nav > li a:focus, .md-skin.top-navigation .nav .open > a, .md-skin.top-navigation .nav .open > a:hover, .md-skin.top-navigation .nav .open > a:focus {
  color: #aaaaaa;
  background: #ffffff;
}
/* line 359, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.top-navigation .nav > li.active a {
  color: #aaaaaa;
  background: #ffffff;
}
/* line 364, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.fixed-nav #side-menu {
  background-color: #fff;
}
/* line 368, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.fixed-nav #wrapper.top-navigation #page-wrapper {
  margin-top: 0;
}
/* line 372, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.fixed-sidebar.mini-navbar .navbar-static-side {
  width: 0;
}
/* line 376, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.fixed-sidebar.mini-navbar #page-wrapper {
  margin: 0 0 0 0;
}
/* line 380, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.body-small.fixed-sidebar.mini-navbar #page-wrapper {
  margin: 0 0 0 0;
}
/* line 384, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.body-small.fixed-sidebar.mini-navbar .navbar-static-side {
  width: 220px;
  background-color: #ffffff;
}
/* line 389, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.boxed-layout #wrapper {
  background-color: #ffffff;
}
/* line 393, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/md-skin.scss */
.md-skin.canvas-menu nav.navbar-static-side {
  z-index: 2001;
  background: #ffffff;
  height: 100%;
  position: fixed;
  display: none;
}

@media (min-width: 768px) {
  /* line 2, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  #page-wrapper {
    position: inherit;
    margin: 0 0 0 220px;
    min-height: 100vh;
  }

  /* line 8, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .navbar-static-side {
    z-index: 2001;
    position: absolute;
    width: 220px;
  }

  /* line 14, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .navbar-top-links .dropdown-messages,
  .navbar-top-links .dropdown-tasks,
  .navbar-top-links .dropdown-alerts {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  /* line 23, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  #page-wrapper {
    position: inherit;
    margin: 0 0 0 0;
    min-height: 100vh;
  }

  /* line 29, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .body-small .navbar-static-side {
    display: none;
    z-index: 2001;
    position: absolute;
    width: 70px;
  }

  /* line 36, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .body-small.mini-navbar .navbar-static-side {
    display: block;
  }

  /* line 40, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .lock-word {
    display: none;
  }

  /* line 44, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .navbar-form-custom {
    display: none;
  }

  /* line 48, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .navbar-header {
    display: inline;
    float: left;
  }

  /* line 53, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .sidebar-panel {
    z-index: 2;
    position: relative;
    width: auto;
    min-height: 100% !important;
  }

  /* line 60, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .sidebar-content .wrapper {
    padding-right: 0;
    z-index: 1;
  }

  /* line 65, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .fixed-sidebar.body-small .navbar-static-side {
    display: none;
    z-index: 2001;
    position: fixed;
    width: 220px;
  }

  /* line 72, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .fixed-sidebar.body-small.mini-navbar .navbar-static-side {
    display: block;
  }

  /* line 76, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .ibox-tools {
    float: none;
    text-align: right;
    display: block;
  }

  /* line 82, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .navbar-static-side {
    display: none;
  }

  /* line 84, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  body:not(.mini-navbar) {
    -webkit-transition: background-color 500ms linear;
    -moz-transition: background-color 500ms linear;
    -o-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
    background-color: #ffffff;
  }
}
@media (max-width: 350px) {
  /* line 97, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .timeline-item .date {
    text-align: left;
    width: 110px;
    position: relative;
    padding-top: 30px;
  }

  /* line 104, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .timeline-item .date i {
    position: absolute;
    top: 0;
    left: 15px;
    padding: 5px;
    width: 30px;
    text-align: center;
    border: 1px solid #e7eaec;
    background: #f8f8f8;
  }

  /* line 115, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .timeline-item .content {
    border-left: none;
    border-top: 1px solid #e7eaec;
    padding-top: 10px;
    min-height: 100px;
  }

  /* line 122, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .nav.navbar-top-links li.dropdown {
    display: none;
  }

  /* line 126, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/media.scss */
  .ibox-tools {
    float: none;
    text-align: left;
    display: inline-block;
  }
}
/* line 1, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-10 {
  width: 10%;
  white-space: nowrap;
}

/* line 2, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-20 {
  width: 20%;
  white-space: nowrap;
}

/* line 3, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-30 {
  width: 30%;
  white-space: nowrap;
}

/* line 4, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-40 {
  width: 40%;
  white-space: nowrap;
}

/* line 5, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-50 {
  width: 50%;
  white-space: nowrap;
}

/* line 6, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-60 {
  width: 60%;
  white-space: nowrap;
}

/* line 7, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-70 {
  width: 70%;
  white-space: nowrap;
}

/* line 8, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-80 {
  width: 80%;
  white-space: nowrap;
}

/* line 9, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/datatable.scss */
.width-90 {
  width: 90%;
  white-space: nowrap;
}

/* Only demo */
@media (max-width: 1000px) {
  /* line 3, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/base/custom.scss */
  .welcome-message {
    display: none;
  }
}
@media print {
  /* line 59, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
  nav.navbar-static-side {
    display: none;
  }

  /* line 63, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
  body {
    overflow: visible !important;
  }

  /* line 65, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
  #page-wrapper {
    margin: 0;
  }
}
@font-face {
  font-family: 'NissanBrand-Regular';
  src: url("../assets/NissanBrand-Regular.eot");
  src: url("../assets/NissanBrand-Regular.eot?#iefix") format("embedded-opentype"), url("../assets/NissanBrand-Regular.svg#NissanBrand-Regular") format("svg"), url("../assets/NissanBrand-Regular.ttf") format("truetype"), url("../assets/NissanBrand-Regular.woff") format("woff"), url("../assets/NissanBrand-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
/* line 86, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.gmarker_label {
  position: relative;
  top: -4px;
}

/* line 91, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
img[src$="#visit_marker"] {
  border: 1px solid #900 !important;
  border-radius: 50%;
}

/* line 96, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.badge_off {
  filter: grayscale(1) brightness(1.2) blur(3px);
}

/* line 100, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.supplier {
  position: relative;
  left: -5px;
  top: 6px;
}

/* line 106, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.skill {
  background: #1e2344;
  margin: 0px;
  color: white;
}

/* line 112, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.spiritual_text {
  font-size: 15px;
}

/* line 116, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.ribbon {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  z-index: 9999;
}

/* line 123, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.ribbon {
  --f: .5em;
  /* control the folded part */
  position: absolute;
  top: 0;
  left: -10px;
  line-height: 1.8;
  padding-inline: 1lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(#0008 0 0) 51%/var(--f);
  clip-path: polygon(100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)), var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)), 999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px));
  transform: translate(calc((cos(45deg) - 1)*100%), -100%) rotate(-45deg);
  transform-origin: 100% 100%;
  background-color: #000000;
  /* the main color  */
}

/* line 140, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.spiritual {
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  text-align: left;
  width: 10.29%;
  vertical-align: top !important;
  border: 1px solid white;
}

/* line 149, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.myspinner {
  position: fixed;
  width: 100%;
  z-index: 99999;
  background: #00000096;
  height: 100%;
  display: none;
  padding-top: calc(25%);
}

/* line 159, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.fireworks {
  position: fixed;
  width: 100%;
  z-index: 99999;
  background: #000000DD;
  height: 100%;
  display: none;
}

/* line 168, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.show_message {
  position: fixed;
  width: 100%;
  z-index: 99999;
  height: 100%;
  display: none;
}

/* line 177, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.maxfactory label {
  color: white;
}

/* line 181, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.timeline-icon {
  display: block;
  position: relative;
  float: right;
  left: 38px;
  background: #e8eaec;
  padding: 4px;
  padding-left: 7px;
  padding-right: 6px;
  border-radius: 20px;
  z-index: 9;
}

/* line 194, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.inventory {
  width: 30%;
  max-width: 200px;
  display: inline;
  height: 50px;
  font-size: 20px;
}

/* line 202, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.inventory_presence {
  background: white;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: inherit;
  /* display: block; */
  /* padding: 6px 12px; */
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  padding-top: 3px;
  padding-right: 33px;
  padding-bottom: 16px;
  padding-left: 0px;
  width: 24%;
  display: block;
  float: right;
  margin-left: 3px;
}

/* line 221, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.inventory_item {
  position: fixed;
  /* display: inline; */
  font-size: 9px;
  margin-left: 2px;
  margin-top: 1px;
  color: silver;
}

/* line 231, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
mark {
  background: #ff0 !important;
  color: #000;
  font-weight: bold;
}

/* line 237, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.psychologist-widget {
  min-height: 16vw;
}

/* line 241, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.silver-border {
  border: 1px solid silver;
}

/* line 245, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.preferred {
  position: relative;
  right: -27px;
  top: -17px;
  text-shadow: 0px 0px 3px #676a6c;
  width: 0;
  height: 0;
  display: block;
  overflow: visible;
}

/* line 256, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.avatar-overlap {
  width: 25px;
  display: block;
  float: right;
}

/* line 263, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.sale {
  background: #fcfcfc;
  background: linear-gradient(90deg, #fcfcfc 40%, #948989 100%);
}

/* line 268, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.after_sale {
  background: #fcfcfc;
  background: linear-gradient(90deg, #fcfcfc 40%, #f8ac59 100%);
}

/* line 273, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.footer_label {
  font-size: 0.3em;
  color: white;
}

/* line 278, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.tutorial-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
}

/* line 285, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
#map {
  width: 100%;
  height: 70vh;
}

/* line 290, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.swal2-modal .styled {
  background-color: #313131;
}

/* line 294, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.turbolinks-progress-bar {
  height: 5px;
  background-color: #aaaaaa;
}

/* line 299, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.search-box {
  padding-top: 27px;
  line-height: 0px;
}

/* line 304, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.swal2-container {
  z-index: 9000;
}

/* line 308, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
td {
  vertical-align: middle !important;
}

/* line 312, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
td a {
  color: #000000;
}

/* line 316, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
td:empty::after {
  content: '-';
}

/* line 320, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
a.btn-action-icon {
  opacity: 0.2;
}

/* line 324, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
a.btn-action-icon:hover {
  color: #000000;
  opacity: 1;
  transition: visibility 0s, opacity 0.1s linear;
}

/* line 330, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.fax-05x {
  font-size: 0.8em;
}

/* line 334, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.fax-15x {
  font-size: 1.5em;
}

/* line 338, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.fa-4x {
  font-size: 4em;
}

/* line 342, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.fa-card {
  width: 15px;
  text-align: center;
}

/* line 347, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.task-icon {
  color: #959c9f;
  margin-right: 0.5em;
}

/* line 352, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.task-icon i {
  font-size: 1.2em;
}

/* line 356, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.task-duration {
  float: right;
  font-size: 1.1em;
}

/* line 361, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
td.disabled {
  color: #D1DADE;
}

/* line 365, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
td.disabled a {
  text-decoration: line-through;
  color: #D1DADE;
}

/* line 370, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
td.unloaded, td.unloaded a {
  font-weight: normal;
  font-style: italic;
  color: red;
}

/* line 377, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.disabled_with_strike {
  text-decoration: line-through;
  color: #a6a6a6 !important;
}

/* line 382, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.disabled {
  #text-decoration: line-through;
  color: #777;
}

/* line 387, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.strong {
  font-weight: 600;
  color: #000;
}

/* line 393, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.disabled img {
  filter: grayscale(100%);
  opacity: 0.3;
}

/* line 399, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
td div.disabled a.btn-edit {
  display: none;
}

/* line 403, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
td div.disabled a.btn-delete {
  display: none;
}

/* line 407, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.btn-hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}

/* line 413, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
table tr:hover td.text-right div.btn-group {
  visibility: visible;
  opacity: 1;
}

/* line 418, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.page_widget_title {
  max-height: 2em;
  min-height: 2em;
  overflow: hidden;
}

/* line 424, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.margin-right {
  margin-right: 10px !important;
}

/* line 428, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.margin-bottom {
  margin-bottom: 10px;
}

/* line 432, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.download {
  width: 0%;
  margin-top: 4px;
  margin-left: 2%;
  margin-right: 34px;
}

/* line 440, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.review-summary {
  font-family: Arial, sans-serif;
}

/* line 444, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.review-summary h2 {
  color: #333;
}

/* line 448, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.stars {
  color: #FFA500;
  /* Colore delle stelle */
}

/* line 452, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.ratings {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 10px;
}

/* line 459, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.ratings li {
  margin: 5px 0;
}

/* line 463, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.rating-bar {
  height: 8px;
  background-color: #ddd;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

/* line 471, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.rating-bar span {
  display: block;
  height: 100%;
  border-radius: 5px;
  background-color: #FFA500;
  width: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 483, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.percentage {
  padding-left: 5px;
  font-size: 10px;
  float: right;
}

/* line 489, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.shift a {
  margin-bottom: 2px;
}

/* line 493, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.shift:hover a.shift-item {
  display: block !important;
}

/* line 497, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.shift:hover span.label:hover {
  color: white !important;
  background-color: black !important;
}

/* line 502, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.btn-action-icon {
  color: #000000;
  margin-left: 10px;
}

/* line 508, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.btn-action-icon:hover {
  opacity: 1;
}

/* line 512, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.mail-search {
  max-width: 100%;
}

/* line 516, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.empty-message {
  padding: 5px;
  color: red;
}

/* line 521, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.note-editor.panel {
  border: 1px solid;
  border-color: #e5e6e7;
  font-size: 14px;
  line-height: 21px;
}

/* line 528, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.token {
  font-size: 64px;
  color: black;
  /* border: 0px; */
  height: 80px;
  /* padding: 43px; */
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 600;
  width: 100%;
}

/* line 540, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.chosen-container-single {
  min-width: 80px;
}

/* line 545, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.item-action-remove {
  margin-left: 7px;
  margin-top: 7px;
}

/* line 550, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.item-action-add {
  width: 100%;
  float: left;
  text-align: right;
}

/* line 556, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.item-action-add-right {
  float: right;
  text-align: right;
}

/* line 561, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.item-action-add-brand {
  width: 100%;
  float: left;
  text-align: right;
  height: 0;
}

/* line 568, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
div#avatar_crop_preview_wrapper {
  border-radius: 50%;
  float: right;
}

@media screen and (max-width: 768px) {
  /* line 574, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
  .btn-hide {
    visibility: visible;
    opacity: 1;
  }
}
/* line 581, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.active .page-link {
  font-weight: 700;
}

/* line 585, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.page-link {
  text-align: center;
}

/* line 589, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
nav.pagination {
  margin: 0 auto;
  display: table;
}

/* line 594, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.dossier_number {
  width: 10%;
  font-size: 21px;
  color: #000000;
  font-weight: 400;
  line-height: 1;
}

/* line 602, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.yellow_background {
  background: lightyellow;
}

/* line 606, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.black {
  color: black;
}

/* line 610, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.whatsapp_badge {
  display: block;
  color: #5E5E5E;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400 !important;
  min-width: 10px;
  padding: 10px 10px;
  font-size: 13px;
  color: #fff;
  /* line-height: 1; */
  vertical-align: middle;
  /* white-space: nowrap; */
  /* text-align: center; */
  background-color: #67ca66;
  border-radius: 15px;
  max-width: 60%;
}

/* line 629, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.message_badge {
  display: block;
  color: #5E5E5E;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400 !important;
  min-width: 10px;
  padding: 10px 10px;
  font-size: 13px;
  color: #fff;
  /* line-height: 1; */
  vertical-align: middle;
  /* white-space: nowrap; */
  /* text-align: center; */
  background-color: #4088f0;
  border-radius: 15px;
  max-width: 60%;
}

/* line 648, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.message_received {
  color: white;
}

/* line 652, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.task-spinner {
  height: 15px !important;
  text-align: left !important;
  float: left;
}

/* line 658, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
label.roles {
  top: 5px;
  position: relative;
  margin-left: 10px;
}

/* line 663, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.city_id {
  border-radius: 0 !important;
}

/* line 668, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.dropzone {
  min-height: 120px;
  border: 1px dashed #DD2315;
  background: white;
  padding: 10px 10px;
}

/* line 675, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.dropzone .dz-preview {
  margin: 6px;
}

/* line 679, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.green {
  color: green;
}

/* line 683, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.white {
  color: white;
}

/* line 688, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.red {
  color: red;
}

/* line 692, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.yellow {
  color: #f8ac59;
}

/* line 696, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.blue {
  color: #1872ab;
}

/* line 700, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.gray, .grey {
  color: gray;
}

/* line 704, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.silver {
  color: #dddddd;
}

/* line 708, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.img-square {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* line 713, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: transparent;
}

/* line 718, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.icheckbox_square-green {
  background-position: 0 0;
  margin-right: 5px;
}

/* line 723, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.css1 {
  font-size: 1.0em;
}

/* line 724, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.css2 {
  font-size: 1.2em;
}

/* line 725, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.css3 {
  font-size: 1.4em;
}

/* line 726, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.css4 {
  font-size: 1.6em;
}

/* FULLCALENDAR */
/* line 730, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.fc-button-group, .fc button {
  display: block !important;
}

/* line 734, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.fc-time-grid .fc-slats td {
  height: 3.0em;
}

/* line 738, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.accessible {
  font-weight: 500;
}

/* line 742, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.form-horizontal.member-registration input, .form-horizontal.member-registration select {
  border: 1px solid;
}

/* line 746, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.form-horizontal .control-label-left {
  text-align: left !important;
  margin-bottom: 0;
  padding-top: 0px;
}

/* line 752, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.control-label-to-left {
  text-align: left !important;
}

/* line 756, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.horizontal_radio_buttons span.radio {
  width: 180px;
  padding-left: 10px;
  float: left;
}

/* line 762, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.horizontal_radio_buttons label {
  font-weight: 700;
}

/* line 766, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
label.date {
  width: 100%;
}

/* line 770, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
select.date {
  width: 30%;
  float: left;
}

/* line 775, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
textarea.form-control {
  height: 90px;
}

/* line 779, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.ra_label {
  font-weight: 600;
  font-size: 24px;
}

/* line 784, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.ra_guest_ok {
  background-color: #8dd71b !important;
}

/* line 788, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.ra_guest_warning {
  background-color: #d78c1b !important;
}

/* line 792, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.xml_highlight {
  font-weight: 600;
  color: black;
  font-size: 16px;
}

/* line 798, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.search-box-table {
  border-radius: 15px;
  border: 1px solid silver;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 10px;
  width: 210px;
  display: block;
}

/* line 808, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.hover-title {
  display: inline;
  pointer-events: auto;
  cursor: pointer;
}

/* line 814, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
body:not(.mobile) .hover-title:hover + .hover-image {
  visibility: visible !important;
  pointer-events: none;
}

/* line 819, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.hover-image {
  visibility: hidden;
  display: flex !important;
  position: absolute;
  /* top: 20%; */
  /* left: 50%; */
  /* transform: translate(-86%, -23%); */
  z-index: 9999;
  pointer-events: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* width: 90vw; */
  /* height: 90vh; */
  border: 1px solid;
  padding: 10px;
  background: #fafafa;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4);
}

/* line 840, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.document_preview img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 0;
}

/* line 848, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.score {
  color: black;
  overflow: visible;
  width: 0;
  height: 0px;
  position: relative;
  right: 53px;
  bottom: 14px;
  font-weight: 900;
}

/* line 859, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.suggested_gop {
  background: #20cb06;
  color: white !important;
  border-radius: 5px;
  padding-left: 8px !important;
  padding-right: 8px !important;
  padding-bottom: 10px !important;
}

/* line 868, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.suggested_gop span {
  color: white !important;
}

/* line 872, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.not_suggested_gop {
  background: #939393;
  color: white !important;
  border-radius: 5px;
  padding-left: 8px !important;
  padding-right: 8px !important;
  padding-bottom: 10px !important;
}

/* line 881, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
.not_suggested_gop span {
  color: white !important;
}

@media screen and (max-width: 768px) {
  /* line 890, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
  .avatar-image .small-left {
    position: absolute;
    left: 40px;
  }

  /* line 896, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
  .table-responsive {
    margin-bottom: 0px;
  }

  /* line 900, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.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: 5px;
    padding-right: 5px;
  }

  /* line 907, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
  .wrapper-content {
    padding-top: 20px;
    padding-right: 3px;
    padding-bottom: 20px;
    padding-left: 3px;
  }

  /* line 915, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/style.scss */
  .ibox {
    margin-bottom: 10px;
  }
}
/* line 6, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.twitter-typeahead {
  margin-top: 0px;
}

/* line 10, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.elasticsearch {
  margin-top: 4px;
}

/* line 14, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
span.twitter-typeahead .tt-menu,
span.twitter-typeahead .tt-dropdown-menu {
  cursor: pointer;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 13px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
}

/* line 34, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
span.twitter-typeahead .tt-suggestion {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}

/* line 44, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
span.twitter-typeahead .tt-suggestion img {
  margin-right: 5px !important;
  width: 32px;
  border-radius: 50%;
}

/* line 50, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
span.twitter-typeahead .tt-suggestion img.landing_medium_id {
  margin-right: 5px !important;
  width: 120px;
  border-radius: 5%;
}

/* line 56, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
span.twitter-typeahead .tt-suggestion small {
  color: silver;
  display: block;
  float: right;
  font-size: 8px;
  padding-top: 22px;
}

/* line 64, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
span.twitter-typeahead .tt-suggestion.tt-cursor,
span.twitter-typeahead .tt-suggestion:hover,
span.twitter-typeahead .tt-suggestion:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #000000;
}

/* line 72, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group.input-group-lg span.twitter-typeahead .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 79, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group.input-group-sm span.twitter-typeahead .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 86, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
span.twitter-typeahead {
  width: 100%;
}

/* line 89, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group span.twitter-typeahead {
  display: block !important;
  height: 34px;
}

/* line 93, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group span.twitter-typeahead .tt-menu,
.input-group span.twitter-typeahead .tt-dropdown-menu {
  top: 32px !important;
}

/* line 97, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group span.twitter-typeahead:not(:first-child):not(:last-child) .form-control {
  border-radius: 0;
}

/* line 100, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group span.twitter-typeahead:first-child .form-control {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 106, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group span.twitter-typeahead:last-child .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 112, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group.input-group-sm span.twitter-typeahead {
  height: 30px;
}

/* line 115, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group.input-group-sm span.twitter-typeahead .tt-menu,
.input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu {
  top: 30px !important;
}

/* line 119, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group.input-group-lg span.twitter-typeahead {
  height: 46px;
}

/* line 122, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/search.scss */
.input-group.input-group-lg span.twitter-typeahead .tt-menu,
.input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu {
  top: 46px !important;
}
/* line 1, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/password.scss */
.field__rules {
  padding: 5px;
  font-size: 1em;
  list-style: none;
  color: #333;
  width: 100%;
  text-align: left;
  position: relative;
  overflow: visible;
}
/* line 18, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/password.scss */
.field__rules > li {
  padding: 3px 0;
}
/* line 21, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/password.scss */
.field__rules > li::before {
  content: '\2022';
  display: inline-block;
  color: #DDD;
  font-size: 5em;
  line-height: 0;
  margin: -4px 6px 0 0;
  vertical-align: middle;
  transition: .2s;
}
/* line 32, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/password.scss */
.field__rules > li.pass::before {
  color: green;
}
/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1; }

.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -.0667em; }

.fa-xs {
    font-size: .75em; }

.fa-sm {
    font-size: .875em; }

.fa-1x {
    font-size: 1em; }

.fa-2x {
    font-size: 2em; }

.fa-3x {
    font-size: 3em; }

.fa-4x {
    font-size: 4em; }

.fa-5x {
    font-size: 5em; }

.fa-6x {
    font-size: 6em; }

.fa-7x {
    font-size: 7em; }

.fa-8x {
    font-size: 8em; }

.fa-9x {
    font-size: 9em; }

.fa-10x {
    font-size: 10em; }

.fa-fw {
    text-align: center;
    width: 1.25em; }

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0; }
.fa-ul > li {
    position: relative; }

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit; }

.fa-border {
    border: solid 0.08em #eee;
    border-radius: .1em;
    padding: .2em .25em .15em; }

.fa-pull-left {
    float: left; }

.fa-pull-right {
    float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
    margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
    margin-left: .3em; }

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear; }

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg); }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg); } }

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg); }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg); } }

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); }

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1); }

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
    -webkit-filter: none;
    filter: none; }

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%; }

.fa-stack-1x {
    line-height: inherit; }

.fa-stack-2x {
    font-size: 2em; }

.fa-inverse {
    color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
    content: "\f26e"; }

.fa-accessible-icon:before {
    content: "\f368"; }

.fa-accusoft:before {
    content: "\f369"; }

.fa-acquisitions-incorporated:before {
    content: "\f6af"; }

.fa-ad:before {
    content: "\f641"; }

.fa-address-book:before {
    content: "\f2b9"; }

.fa-address-card:before {
    content: "\f2bb"; }

.fa-adjust:before {
    content: "\f042"; }

.fa-adn:before {
    content: "\f170"; }

.fa-adversal:before {
    content: "\f36a"; }

.fa-affiliatetheme:before {
    content: "\f36b"; }

.fa-air-freshener:before {
    content: "\f5d0"; }

.fa-airbnb:before {
    content: "\f834"; }

.fa-algolia:before {
    content: "\f36c"; }

.fa-align-center:before {
    content: "\f037"; }

.fa-align-justify:before {
    content: "\f039"; }

.fa-align-left:before {
    content: "\f036"; }

.fa-align-right:before {
    content: "\f038"; }

.fa-alipay:before {
    content: "\f642"; }

.fa-allergies:before {
    content: "\f461"; }

.fa-amazon:before {
    content: "\f270"; }

.fa-amazon-pay:before {
    content: "\f42c"; }

.fa-ambulance:before {
    content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
    content: "\f2a3"; }

.fa-amilia:before {
    content: "\f36d"; }

.fa-anchor:before {
    content: "\f13d"; }

.fa-android:before {
    content: "\f17b"; }

.fa-angellist:before {
    content: "\f209"; }

.fa-angle-double-down:before {
    content: "\f103"; }

.fa-angle-double-left:before {
    content: "\f100"; }

.fa-angle-double-right:before {
    content: "\f101"; }

.fa-angle-double-up:before {
    content: "\f102"; }

.fa-angle-down:before {
    content: "\f107"; }

.fa-angle-left:before {
    content: "\f104"; }

.fa-angle-right:before {
    content: "\f105"; }

.fa-angle-up:before {
    content: "\f106"; }

.fa-angry:before {
    content: "\f556"; }

.fa-angrycreative:before {
    content: "\f36e"; }

.fa-angular:before {
    content: "\f420"; }

.fa-ankh:before {
    content: "\f644"; }

.fa-app-store:before {
    content: "\f36f"; }

.fa-app-store-ios:before {
    content: "\f370"; }

.fa-apper:before {
    content: "\f371"; }

.fa-apple:before {
    content: "\f179"; }

.fa-apple-alt:before {
    content: "\f5d1"; }

.fa-apple-pay:before {
    content: "\f415"; }

.fa-archive:before {
    content: "\f187"; }

.fa-archway:before {
    content: "\f557"; }

.fa-arrow-alt-circle-down:before {
    content: "\f358"; }

.fa-arrow-alt-circle-left:before {
    content: "\f359"; }

.fa-arrow-alt-circle-right:before {
    content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
    content: "\f35b"; }

.fa-arrow-circle-down:before {
    content: "\f0ab"; }

.fa-arrow-circle-left:before {
    content: "\f0a8"; }

.fa-arrow-circle-right:before {
    content: "\f0a9"; }

.fa-arrow-circle-up:before {
    content: "\f0aa"; }

.fa-arrow-down:before {
    content: "\f063"; }

.fa-arrow-left:before {
    content: "\f060"; }

.fa-arrow-right:before {
    content: "\f061"; }

.fa-arrow-up:before {
    content: "\f062"; }

.fa-arrows-alt:before {
    content: "\f0b2"; }

.fa-arrows-alt-h:before {
    content: "\f337"; }

.fa-arrows-alt-v:before {
    content: "\f338"; }

.fa-artstation:before {
    content: "\f77a"; }

.fa-assistive-listening-systems:before {
    content: "\f2a2"; }

.fa-asterisk:before {
    content: "\f069"; }

.fa-asymmetrik:before {
    content: "\f372"; }

.fa-at:before {
    content: "\f1fa"; }

.fa-atlas:before {
    content: "\f558"; }

.fa-atlassian:before {
    content: "\f77b"; }

.fa-atom:before {
    content: "\f5d2"; }

.fa-audible:before {
    content: "\f373"; }

.fa-audio-description:before {
    content: "\f29e"; }

.fa-autoprefixer:before {
    content: "\f41c"; }

.fa-avianex:before {
    content: "\f374"; }

.fa-aviato:before {
    content: "\f421"; }

.fa-award:before {
    content: "\f559"; }

.fa-aws:before {
    content: "\f375"; }

.fa-baby:before {
    content: "\f77c"; }

.fa-baby-carriage:before {
    content: "\f77d"; }

.fa-backspace:before {
    content: "\f55a"; }

.fa-backward:before {
    content: "\f04a"; }

.fa-bacon:before {
    content: "\f7e5"; }

.fa-bacteria:before {
    content: "\e059"; }

.fa-bacterium:before {
    content: "\e05a"; }

.fa-bahai:before {
    content: "\f666"; }

.fa-balance-scale:before {
    content: "\f24e"; }

.fa-balance-scale-left:before {
    content: "\f515"; }

.fa-balance-scale-right:before {
    content: "\f516"; }

.fa-ban:before {
    content: "\f05e"; }

.fa-band-aid:before {
    content: "\f462"; }

.fa-bandcamp:before {
    content: "\f2d5"; }

.fa-barcode:before {
    content: "\f02a"; }

.fa-bars:before {
    content: "\f0c9"; }

.fa-baseball-ball:before {
    content: "\f433"; }

.fa-basketball-ball:before {
    content: "\f434"; }

.fa-bath:before {
    content: "\f2cd"; }

.fa-battery-empty:before {
    content: "\f244"; }

.fa-battery-full:before {
    content: "\f240"; }

.fa-battery-half:before {
    content: "\f242"; }

.fa-battery-quarter:before {
    content: "\f243"; }

.fa-battery-three-quarters:before {
    content: "\f241"; }

.fa-battle-net:before {
    content: "\f835"; }

.fa-bed:before {
    content: "\f236"; }

.fa-beer:before {
    content: "\f0fc"; }

.fa-behance:before {
    content: "\f1b4"; }

.fa-behance-square:before {
    content: "\f1b5"; }

.fa-bell:before {
    content: "\f0f3"; }

.fa-bell-slash:before {
    content: "\f1f6"; }

.fa-bezier-curve:before {
    content: "\f55b"; }

.fa-bible:before {
    content: "\f647"; }

.fa-bicycle:before {
    content: "\f206"; }

.fa-biking:before {
    content: "\f84a"; }

.fa-bimobject:before {
    content: "\f378"; }

.fa-binoculars:before {
    content: "\f1e5"; }

.fa-biohazard:before {
    content: "\f780"; }

.fa-birthday-cake:before {
    content: "\f1fd"; }

.fa-bitbucket:before {
    content: "\f171"; }

.fa-bitcoin:before {
    content: "\f379"; }

.fa-bity:before {
    content: "\f37a"; }

.fa-black-tie:before {
    content: "\f27e"; }

.fa-blackberry:before {
    content: "\f37b"; }

.fa-blender:before {
    content: "\f517"; }

.fa-blender-phone:before {
    content: "\f6b6"; }

.fa-blind:before {
    content: "\f29d"; }

.fa-blog:before {
    content: "\f781"; }

.fa-blogger:before {
    content: "\f37c"; }

.fa-blogger-b:before {
    content: "\f37d"; }

.fa-bluetooth:before {
    content: "\f293"; }

.fa-bluetooth-b:before {
    content: "\f294"; }

.fa-bold:before {
    content: "\f032"; }

.fa-bolt:before {
    content: "\f0e7"; }

.fa-bomb:before {
    content: "\f1e2"; }

.fa-bone:before {
    content: "\f5d7"; }

.fa-bong:before {
    content: "\f55c"; }

.fa-book:before {
    content: "\f02d"; }

.fa-book-dead:before {
    content: "\f6b7"; }

.fa-book-medical:before {
    content: "\f7e6"; }

.fa-book-open:before {
    content: "\f518"; }

.fa-book-reader:before {
    content: "\f5da"; }

.fa-bookmark:before {
    content: "\f02e"; }

.fa-bootstrap:before {
    content: "\f836"; }

.fa-border-all:before {
    content: "\f84c"; }

.fa-border-none:before {
    content: "\f850"; }

.fa-border-style:before {
    content: "\f853"; }

.fa-bowling-ball:before {
    content: "\f436"; }

.fa-box:before {
    content: "\f466"; }

.fa-box-open:before {
    content: "\f49e"; }

.fa-box-tissue:before {
    content: "\e05b"; }

.fa-boxes:before {
    content: "\f468"; }

.fa-braille:before {
    content: "\f2a1"; }

.fa-brain:before {
    content: "\f5dc"; }

.fa-bread-slice:before {
    content: "\f7ec"; }

.fa-briefcase:before {
    content: "\f0b1"; }

.fa-briefcase-medical:before {
    content: "\f469"; }

.fa-broadcast-tower:before {
    content: "\f519"; }

.fa-broom:before {
    content: "\f51a"; }

.fa-brush:before {
    content: "\f55d"; }

.fa-btc:before {
    content: "\f15a"; }

.fa-buffer:before {
    content: "\f837"; }

.fa-bug:before {
    content: "\f188"; }

.fa-building:before {
    content: "\f1ad"; }

.fa-bullhorn:before {
    content: "\f0a1"; }

.fa-bullseye:before {
    content: "\f140"; }

.fa-burn:before {
    content: "\f46a"; }

.fa-buromobelexperte:before {
    content: "\f37f"; }

.fa-bus:before {
    content: "\f207"; }

.fa-bus-alt:before {
    content: "\f55e"; }

.fa-business-time:before {
    content: "\f64a"; }

.fa-buy-n-large:before {
    content: "\f8a6"; }

.fa-buysellads:before {
    content: "\f20d"; }

.fa-calculator:before {
    content: "\f1ec"; }

.fa-calendar:before {
    content: "\f133"; }

.fa-calendar-alt:before {
    content: "\f073"; }

.fa-calendar-check:before {
    content: "\f274"; }

.fa-calendar-day:before {
    content: "\f783"; }

.fa-calendar-minus:before {
    content: "\f272"; }

.fa-calendar-plus:before {
    content: "\f271"; }

.fa-calendar-times:before {
    content: "\f273"; }

.fa-calendar-week:before {
    content: "\f784"; }

.fa-camera:before {
    content: "\f030"; }

.fa-camera-retro:before {
    content: "\f083"; }

.fa-campground:before {
    content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
    content: "\f785"; }

.fa-candy-cane:before {
    content: "\f786"; }

.fa-cannabis:before {
    content: "\f55f"; }

.fa-capsules:before {
    content: "\f46b"; }

.fa-car:before {
    content: "\f1b9"; }

.fa-car-alt:before {
    content: "\f5de"; }

.fa-car-battery:before {
    content: "\f5df"; }

.fa-car-crash:before {
    content: "\f5e1"; }

.fa-car-side:before {
    content: "\f5e4"; }

.fa-caravan:before {
    content: "\f8ff"; }

.fa-caret-down:before {
    content: "\f0d7"; }

.fa-caret-left:before {
    content: "\f0d9"; }

.fa-caret-right:before {
    content: "\f0da"; }

.fa-caret-square-down:before {
    content: "\f150"; }

.fa-caret-square-left:before {
    content: "\f191"; }

.fa-caret-square-right:before {
    content: "\f152"; }

.fa-caret-square-up:before {
    content: "\f151"; }

.fa-caret-up:before {
    content: "\f0d8"; }

.fa-carrot:before {
    content: "\f787"; }

.fa-cart-arrow-down:before {
    content: "\f218"; }

.fa-cart-plus:before {
    content: "\f217"; }

.fa-cash-register:before {
    content: "\f788"; }

.fa-cat:before {
    content: "\f6be"; }

.fa-cc-amazon-pay:before {
    content: "\f42d"; }

.fa-cc-amex:before {
    content: "\f1f3"; }

.fa-cc-apple-pay:before {
    content: "\f416"; }

.fa-cc-diners-club:before {
    content: "\f24c"; }

.fa-cc-discover:before {
    content: "\f1f2"; }

.fa-cc-jcb:before {
    content: "\f24b"; }

.fa-cc-mastercard:before {
    content: "\f1f1"; }

.fa-cc-paypal:before {
    content: "\f1f4"; }

.fa-cc-stripe:before {
    content: "\f1f5"; }

.fa-cc-visa:before {
    content: "\f1f0"; }

.fa-centercode:before {
    content: "\f380"; }

.fa-centos:before {
    content: "\f789"; }

.fa-certificate:before {
    content: "\f0a3"; }

.fa-chair:before {
    content: "\f6c0"; }

.fa-chalkboard:before {
    content: "\f51b"; }

.fa-chalkboard-teacher:before {
    content: "\f51c"; }

.fa-charging-station:before {
    content: "\f5e7"; }

.fa-chart-area:before {
    content: "\f1fe"; }

.fa-chart-bar:before {
    content: "\f080"; }

.fa-chart-line:before {
    content: "\f201"; }

.fa-chart-pie:before {
    content: "\f200"; }

.fa-check:before {
    content: "\f00c"; }

.fa-check-circle:before {
    content: "\f058"; }

.fa-check-double:before {
    content: "\f560"; }

.fa-check-square:before {
    content: "\f14a"; }

.fa-cheese:before {
    content: "\f7ef"; }

.fa-chess:before {
    content: "\f439"; }

.fa-chess-bishop:before {
    content: "\f43a"; }

.fa-chess-board:before {
    content: "\f43c"; }

.fa-chess-king:before {
    content: "\f43f"; }

.fa-chess-knight:before {
    content: "\f441"; }

.fa-chess-pawn:before {
    content: "\f443"; }

.fa-chess-queen:before {
    content: "\f445"; }

.fa-chess-rook:before {
    content: "\f447"; }

.fa-chevron-circle-down:before {
    content: "\f13a"; }

.fa-chevron-circle-left:before {
    content: "\f137"; }

.fa-chevron-circle-right:before {
    content: "\f138"; }

.fa-chevron-circle-up:before {
    content: "\f139"; }

.fa-chevron-down:before {
    content: "\f078"; }

.fa-chevron-left:before {
    content: "\f053"; }

.fa-chevron-right:before {
    content: "\f054"; }

.fa-chevron-up:before {
    content: "\f077"; }

.fa-child:before {
    content: "\f1ae"; }

.fa-chrome:before {
    content: "\f268"; }

.fa-chromecast:before {
    content: "\f838"; }

.fa-church:before {
    content: "\f51d"; }

.fa-circle:before {
    content: "\f111"; }

.fa-circle-notch:before {
    content: "\f1ce"; }

.fa-city:before {
    content: "\f64f"; }

.fa-clinic-medical:before {
    content: "\f7f2"; }

.fa-clipboard:before {
    content: "\f328"; }

.fa-clipboard-check:before {
    content: "\f46c"; }

.fa-clipboard-list:before {
    content: "\f46d"; }

.fa-clock:before {
    content: "\f017"; }

.fa-clone:before {
    content: "\f24d"; }

.fa-closed-captioning:before {
    content: "\f20a"; }

.fa-cloud:before {
    content: "\f0c2"; }

.fa-cloud-download-alt:before {
    content: "\f381"; }

.fa-cloud-meatball:before {
    content: "\f73b"; }

.fa-cloud-moon:before {
    content: "\f6c3"; }

.fa-cloud-moon-rain:before {
    content: "\f73c"; }

.fa-cloud-rain:before {
    content: "\f73d"; }

.fa-cloud-showers-heavy:before {
    content: "\f740"; }

.fa-cloud-sun:before {
    content: "\f6c4"; }

.fa-cloud-sun-rain:before {
    content: "\f743"; }

.fa-cloud-upload-alt:before {
    content: "\f382"; }

.fa-cloudflare:before {
    content: "\e07d"; }

.fa-cloudscale:before {
    content: "\f383"; }

.fa-cloudsmith:before {
    content: "\f384"; }

.fa-cloudversify:before {
    content: "\f385"; }

.fa-cocktail:before {
    content: "\f561"; }

.fa-code:before {
    content: "\f121"; }

.fa-code-branch:before {
    content: "\f126"; }

.fa-codepen:before {
    content: "\f1cb"; }

.fa-codiepie:before {
    content: "\f284"; }

.fa-coffee:before {
    content: "\f0f4"; }

.fa-cog:before {
    content: "\f013"; }

.fa-cogs:before {
    content: "\f085"; }

.fa-coins:before {
    content: "\f51e"; }

.fa-columns:before {
    content: "\f0db"; }

.fa-comment:before {
    content: "\f075"; }

.fa-comment-alt:before {
    content: "\f27a"; }

.fa-comment-dollar:before {
    content: "\f651"; }

.fa-comment-dots:before {
    content: "\f4ad"; }

.fa-comment-medical:before {
    content: "\f7f5"; }

.fa-comment-slash:before {
    content: "\f4b3"; }

.fa-comments:before {
    content: "\f086"; }

.fa-comments-dollar:before {
    content: "\f653"; }

.fa-compact-disc:before {
    content: "\f51f"; }

.fa-compass:before {
    content: "\f14e"; }

.fa-compress:before {
    content: "\f066"; }

.fa-compress-alt:before {
    content: "\f422"; }

.fa-compress-arrows-alt:before {
    content: "\f78c"; }

.fa-concierge-bell:before {
    content: "\f562"; }

.fa-confluence:before {
    content: "\f78d"; }

.fa-connectdevelop:before {
    content: "\f20e"; }

.fa-contao:before {
    content: "\f26d"; }

.fa-cookie:before {
    content: "\f563"; }

.fa-cookie-bite:before {
    content: "\f564"; }

.fa-copy:before {
    content: "\f0c5"; }

.fa-copyright:before {
    content: "\f1f9"; }

.fa-cotton-bureau:before {
    content: "\f89e"; }

.fa-couch:before {
    content: "\f4b8"; }

.fa-cpanel:before {
    content: "\f388"; }

.fa-creative-commons:before {
    content: "\f25e"; }

.fa-creative-commons-by:before {
    content: "\f4e7"; }

.fa-creative-commons-nc:before {
    content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
    content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
    content: "\f4ea"; }

.fa-creative-commons-nd:before {
    content: "\f4eb"; }

.fa-creative-commons-pd:before {
    content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
    content: "\f4ed"; }

.fa-creative-commons-remix:before {
    content: "\f4ee"; }

.fa-creative-commons-sa:before {
    content: "\f4ef"; }

.fa-creative-commons-sampling:before {
    content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
    content: "\f4f1"; }

.fa-creative-commons-share:before {
    content: "\f4f2"; }

.fa-creative-commons-zero:before {
    content: "\f4f3"; }

.fa-credit-card:before {
    content: "\f09d"; }

.fa-critical-role:before {
    content: "\f6c9"; }

.fa-crop:before {
    content: "\f125"; }

.fa-crop-alt:before {
    content: "\f565"; }

.fa-cross:before {
    content: "\f654"; }

.fa-crosshairs:before {
    content: "\f05b"; }

.fa-crow:before {
    content: "\f520"; }

.fa-crown:before {
    content: "\f521"; }

.fa-crutch:before {
    content: "\f7f7"; }

.fa-css3:before {
    content: "\f13c"; }

.fa-css3-alt:before {
    content: "\f38b"; }

.fa-cube:before {
    content: "\f1b2"; }

.fa-cubes:before {
    content: "\f1b3"; }

.fa-cut:before {
    content: "\f0c4"; }

.fa-cuttlefish:before {
    content: "\f38c"; }

.fa-d-and-d:before {
    content: "\f38d"; }

.fa-d-and-d-beyond:before {
    content: "\f6ca"; }

.fa-dailymotion:before {
    content: "\e052"; }

.fa-dashcube:before {
    content: "\f210"; }

.fa-database:before {
    content: "\f1c0"; }

.fa-deaf:before {
    content: "\f2a4"; }

.fa-deezer:before {
    content: "\e077"; }

.fa-delicious:before {
    content: "\f1a5"; }

.fa-democrat:before {
    content: "\f747"; }

.fa-deploydog:before {
    content: "\f38e"; }

.fa-deskpro:before {
    content: "\f38f"; }

.fa-desktop:before {
    content: "\f108"; }

.fa-dev:before {
    content: "\f6cc"; }

.fa-deviantart:before {
    content: "\f1bd"; }

.fa-dharmachakra:before {
    content: "\f655"; }

.fa-dhl:before {
    content: "\f790"; }

.fa-diagnoses:before {
    content: "\f470"; }

.fa-diaspora:before {
    content: "\f791"; }

.fa-dice:before {
    content: "\f522"; }

.fa-dice-d20:before {
    content: "\f6cf"; }

.fa-dice-d6:before {
    content: "\f6d1"; }

.fa-dice-five:before {
    content: "\f523"; }

.fa-dice-four:before {
    content: "\f524"; }

.fa-dice-one:before {
    content: "\f525"; }

.fa-dice-six:before {
    content: "\f526"; }

.fa-dice-three:before {
    content: "\f527"; }

.fa-dice-two:before {
    content: "\f528"; }

.fa-digg:before {
    content: "\f1a6"; }

.fa-digital-ocean:before {
    content: "\f391"; }

.fa-digital-tachograph:before {
    content: "\f566"; }

.fa-directions:before {
    content: "\f5eb"; }

.fa-discord:before {
    content: "\f392"; }

.fa-discourse:before {
    content: "\f393"; }

.fa-disease:before {
    content: "\f7fa"; }

.fa-divide:before {
    content: "\f529"; }

.fa-dizzy:before {
    content: "\f567"; }

.fa-dna:before {
    content: "\f471"; }

.fa-dochub:before {
    content: "\f394"; }

.fa-docker:before {
    content: "\f395"; }

.fa-dog:before {
    content: "\f6d3"; }

.fa-dollar-sign:before {
    content: "\f155"; }

.fa-dolly:before {
    content: "\f472"; }

.fa-dolly-flatbed:before {
    content: "\f474"; }

.fa-donate:before {
    content: "\f4b9"; }

.fa-door-closed:before {
    content: "\f52a"; }

.fa-door-open:before {
    content: "\f52b"; }

.fa-dot-circle:before {
    content: "\f192"; }

.fa-dove:before {
    content: "\f4ba"; }

.fa-download:before {
    content: "\f019"; }

.fa-draft2digital:before {
    content: "\f396"; }

.fa-drafting-compass:before {
    content: "\f568"; }

.fa-dragon:before {
    content: "\f6d5"; }

.fa-draw-polygon:before {
    content: "\f5ee"; }

.fa-dribbble:before {
    content: "\f17d"; }

.fa-dribbble-square:before {
    content: "\f397"; }

.fa-dropbox:before {
    content: "\f16b"; }

.fa-drum:before {
    content: "\f569"; }

.fa-drum-steelpan:before {
    content: "\f56a"; }

.fa-drumstick-bite:before {
    content: "\f6d7"; }

.fa-drupal:before {
    content: "\f1a9"; }

.fa-dumbbell:before {
    content: "\f44b"; }

.fa-dumpster:before {
    content: "\f793"; }

.fa-dumpster-fire:before {
    content: "\f794"; }

.fa-dungeon:before {
    content: "\f6d9"; }

.fa-dyalog:before {
    content: "\f399"; }

.fa-earlybirds:before {
    content: "\f39a"; }

.fa-ebay:before {
    content: "\f4f4"; }

.fa-edge:before {
    content: "\f282"; }

.fa-edge-legacy:before {
    content: "\e078"; }

.fa-edit:before {
    content: "\f044"; }

.fa-egg:before {
    content: "\f7fb"; }

.fa-eject:before {
    content: "\f052"; }

.fa-elementor:before {
    content: "\f430"; }

.fa-ellipsis-h:before {
    content: "\f141"; }

.fa-ellipsis-v:before {
    content: "\f142"; }

.fa-ello:before {
    content: "\f5f1"; }

.fa-ember:before {
    content: "\f423"; }

.fa-empire:before {
    content: "\f1d1"; }

.fa-envelope:before {
    content: "\f0e0"; }

.fa-envelope-open:before {
    content: "\f2b6"; }

.fa-envelope-open-text:before {
    content: "\f658"; }

.fa-envelope-square:before {
    content: "\f199"; }

.fa-envira:before {
    content: "\f299"; }

.fa-equals:before {
    content: "\f52c"; }

.fa-eraser:before {
    content: "\f12d"; }

.fa-erlang:before {
    content: "\f39d"; }

.fa-ethereum:before {
    content: "\f42e"; }

.fa-ethernet:before {
    content: "\f796"; }

.fa-etsy:before {
    content: "\f2d7"; }

.fa-euro-sign:before {
    content: "\f153"; }

.fa-evernote:before {
    content: "\f839"; }

.fa-exchange-alt:before {
    content: "\f362"; }

.fa-exclamation:before {
    content: "\f12a"; }

.fa-exclamation-circle:before {
    content: "\f06a"; }

.fa-exclamation-triangle:before {
    content: "\f071"; }

.fa-expand:before {
    content: "\f065"; }

.fa-expand-alt:before {
    content: "\f424"; }

.fa-expand-arrows-alt:before {
    content: "\f31e"; }

.fa-expeditedssl:before {
    content: "\f23e"; }

.fa-external-link-alt:before {
    content: "\f35d"; }

.fa-external-link-square-alt:before {
    content: "\f360"; }

.fa-eye:before {
    content: "\f06e"; }

.fa-eye-dropper:before {
    content: "\f1fb"; }

.fa-eye-slash:before {
    content: "\f070"; }

.fa-facebook:before {
    content: "\f09a"; }

.fa-facebook-f:before {
    content: "\f39e"; }

.fa-facebook-messenger:before {
    content: "\f39f"; }

.fa-facebook-square:before {
    content: "\f082"; }

.fa-fan:before {
    content: "\f863"; }

.fa-fantasy-flight-games:before {
    content: "\f6dc"; }

.fa-fast-backward:before {
    content: "\f049"; }

.fa-fast-forward:before {
    content: "\f050"; }

.fa-faucet:before {
    content: "\e005"; }

.fa-fax:before {
    content: "\f1ac"; }

.fa-feather:before {
    content: "\f52d"; }

.fa-feather-alt:before {
    content: "\f56b"; }

.fa-fedex:before {
    content: "\f797"; }

.fa-fedora:before {
    content: "\f798"; }

.fa-female:before {
    content: "\f182"; }

.fa-fighter-jet:before {
    content: "\f0fb"; }

.fa-figma:before {
    content: "\f799"; }

.fa-file:before {
    content: "\f15b"; }

.fa-file-alt:before {
    content: "\f15c"; }

.fa-file-archive:before {
    content: "\f1c6"; }

.fa-file-audio:before {
    content: "\f1c7"; }

.fa-file-code:before {
    content: "\f1c9"; }

.fa-file-contract:before {
    content: "\f56c"; }

.fa-file-csv:before {
    content: "\f6dd"; }

.fa-file-download:before {
    content: "\f56d"; }

.fa-file-excel:before {
    content: "\f1c3"; }

.fa-file-export:before {
    content: "\f56e"; }

.fa-file-image:before {
    content: "\f1c5"; }

.fa-file-import:before {
    content: "\f56f"; }

.fa-file-invoice:before {
    content: "\f570"; }

.fa-file-invoice-dollar:before {
    content: "\f571"; }

.fa-file-medical:before {
    content: "\f477"; }

.fa-file-medical-alt:before {
    content: "\f478"; }

.fa-file-pdf:before {
    content: "\f1c1"; }

.fa-file-powerpoint:before {
    content: "\f1c4"; }

.fa-file-prescription:before {
    content: "\f572"; }

.fa-file-signature:before {
    content: "\f573"; }

.fa-file-upload:before {
    content: "\f574"; }

.fa-file-video:before {
    content: "\f1c8"; }

.fa-file-word:before {
    content: "\f1c2"; }

.fa-fill:before {
    content: "\f575"; }

.fa-fill-drip:before {
    content: "\f576"; }

.fa-film:before {
    content: "\f008"; }

.fa-filter:before {
    content: "\f0b0"; }

.fa-fingerprint:before {
    content: "\f577"; }

.fa-fire:before {
    content: "\f06d"; }

.fa-fire-alt:before {
    content: "\f7e4"; }

.fa-fire-extinguisher:before {
    content: "\f134"; }

.fa-firefox:before {
    content: "\f269"; }

.fa-firefox-browser:before {
    content: "\e007"; }

.fa-first-aid:before {
    content: "\f479"; }

.fa-first-order:before {
    content: "\f2b0"; }

.fa-first-order-alt:before {
    content: "\f50a"; }

.fa-firstdraft:before {
    content: "\f3a1"; }

.fa-fish:before {
    content: "\f578"; }

.fa-fist-raised:before {
    content: "\f6de"; }

.fa-flag:before {
    content: "\f024"; }

.fa-flag-checkered:before {
    content: "\f11e"; }

.fa-flag-usa:before {
    content: "\f74d"; }

.fa-flask:before {
    content: "\f0c3"; }

.fa-flickr:before {
    content: "\f16e"; }

.fa-flipboard:before {
    content: "\f44d"; }

.fa-flushed:before {
    content: "\f579"; }

.fa-fly:before {
    content: "\f417"; }

.fa-folder:before {
    content: "\f07b"; }

.fa-folder-minus:before {
    content: "\f65d"; }

.fa-folder-open:before {
    content: "\f07c"; }

.fa-folder-plus:before {
    content: "\f65e"; }

.fa-font:before {
    content: "\f031"; }

.fa-font-awesome:before {
    content: "\f2b4"; }

.fa-font-awesome-alt:before {
    content: "\f35c"; }

.fa-font-awesome-flag:before {
    content: "\f425"; }

.fa-font-awesome-logo-full:before {
    content: "\f4e6"; }

.fa-fonticons:before {
    content: "\f280"; }

.fa-fonticons-fi:before {
    content: "\f3a2"; }

.fa-football-ball:before {
    content: "\f44e"; }

.fa-fort-awesome:before {
    content: "\f286"; }

.fa-fort-awesome-alt:before {
    content: "\f3a3"; }

.fa-forumbee:before {
    content: "\f211"; }

.fa-forward:before {
    content: "\f04e"; }

.fa-foursquare:before {
    content: "\f180"; }

.fa-free-code-camp:before {
    content: "\f2c5"; }

.fa-freebsd:before {
    content: "\f3a4"; }

.fa-frog:before {
    content: "\f52e"; }

.fa-frown:before {
    content: "\f119"; }

.fa-frown-open:before {
    content: "\f57a"; }

.fa-fulcrum:before {
    content: "\f50b"; }

.fa-funnel-dollar:before {
    content: "\f662"; }

.fa-futbol:before {
    content: "\f1e3"; }

.fa-galactic-republic:before {
    content: "\f50c"; }

.fa-galactic-senate:before {
    content: "\f50d"; }

.fa-gamepad:before {
    content: "\f11b"; }

.fa-gas-pump:before {
    content: "\f52f"; }

.fa-gavel:before {
    content: "\f0e3"; }

.fa-gem:before {
    content: "\f3a5"; }

.fa-genderless:before {
    content: "\f22d"; }

.fa-get-pocket:before {
    content: "\f265"; }

.fa-gg:before {
    content: "\f260"; }

.fa-gg-circle:before {
    content: "\f261"; }

.fa-ghost:before {
    content: "\f6e2"; }

.fa-gift:before {
    content: "\f06b"; }

.fa-gifts:before {
    content: "\f79c"; }

.fa-git:before {
    content: "\f1d3"; }

.fa-git-alt:before {
    content: "\f841"; }

.fa-git-square:before {
    content: "\f1d2"; }

.fa-github:before {
    content: "\f09b"; }

.fa-github-alt:before {
    content: "\f113"; }

.fa-github-square:before {
    content: "\f092"; }

.fa-gitkraken:before {
    content: "\f3a6"; }

.fa-gitlab:before {
    content: "\f296"; }

.fa-gitter:before {
    content: "\f426"; }

.fa-glass-cheers:before {
    content: "\f79f"; }

.fa-glass-martini:before {
    content: "\f000"; }

.fa-glass-martini-alt:before {
    content: "\f57b"; }

.fa-glass-whiskey:before {
    content: "\f7a0"; }

.fa-glasses:before {
    content: "\f530"; }

.fa-glide:before {
    content: "\f2a5"; }

.fa-glide-g:before {
    content: "\f2a6"; }

.fa-globe:before {
    content: "\f0ac"; }

.fa-globe-africa:before {
    content: "\f57c"; }

.fa-globe-americas:before {
    content: "\f57d"; }

.fa-globe-asia:before {
    content: "\f57e"; }

.fa-globe-europe:before {
    content: "\f7a2"; }

.fa-gofore:before {
    content: "\f3a7"; }

.fa-golf-ball:before {
    content: "\f450"; }

.fa-goodreads:before {
    content: "\f3a8"; }

.fa-goodreads-g:before {
    content: "\f3a9"; }

.fa-google:before {
    content: "\f1a0"; }

.fa-google-drive:before {
    content: "\f3aa"; }

.fa-google-pay:before {
    content: "\e079"; }

.fa-google-play:before {
    content: "\f3ab"; }

.fa-google-plus:before {
    content: "\f2b3"; }

.fa-google-plus-g:before {
    content: "\f0d5"; }

.fa-google-plus-square:before {
    content: "\f0d4"; }

.fa-google-wallet:before {
    content: "\f1ee"; }

.fa-gopuram:before {
    content: "\f664"; }

.fa-graduation-cap:before {
    content: "\f19d"; }

.fa-gratipay:before {
    content: "\f184"; }

.fa-grav:before {
    content: "\f2d6"; }

.fa-greater-than:before {
    content: "\f531"; }

.fa-greater-than-equal:before {
    content: "\f532"; }

.fa-grimace:before {
    content: "\f57f"; }

.fa-grin:before {
    content: "\f580"; }

.fa-grin-alt:before {
    content: "\f581"; }

.fa-grin-beam:before {
    content: "\f582"; }

.fa-grin-beam-sweat:before {
    content: "\f583"; }

.fa-grin-hearts:before {
    content: "\f584"; }

.fa-grin-squint:before {
    content: "\f585"; }

.fa-grin-squint-tears:before {
    content: "\f586"; }

.fa-grin-stars:before {
    content: "\f587"; }

.fa-grin-tears:before {
    content: "\f588"; }

.fa-grin-tongue:before {
    content: "\f589"; }

.fa-grin-tongue-squint:before {
    content: "\f58a"; }

.fa-grin-tongue-wink:before {
    content: "\f58b"; }

.fa-grin-wink:before {
    content: "\f58c"; }

.fa-grip-horizontal:before {
    content: "\f58d"; }

.fa-grip-lines:before {
    content: "\f7a4"; }

.fa-grip-lines-vertical:before {
    content: "\f7a5"; }

.fa-grip-vertical:before {
    content: "\f58e"; }

.fa-gripfire:before {
    content: "\f3ac"; }

.fa-grunt:before {
    content: "\f3ad"; }

.fa-guilded:before {
    content: "\e07e"; }

.fa-guitar:before {
    content: "\f7a6"; }

.fa-gulp:before {
    content: "\f3ae"; }

.fa-h-square:before {
    content: "\f0fd"; }

.fa-hacker-news:before {
    content: "\f1d4"; }

.fa-hacker-news-square:before {
    content: "\f3af"; }

.fa-hackerrank:before {
    content: "\f5f7"; }

.fa-hamburger:before {
    content: "\f805"; }

.fa-hammer:before {
    content: "\f6e3"; }

.fa-hamsa:before {
    content: "\f665"; }

.fa-hand-holding:before {
    content: "\f4bd"; }

.fa-hand-holding-heart:before {
    content: "\f4be"; }

.fa-hand-holding-medical:before {
    content: "\e05c"; }

.fa-hand-holding-usd:before {
    content: "\f4c0"; }

.fa-hand-holding-water:before {
    content: "\f4c1"; }

.fa-hand-lizard:before {
    content: "\f258"; }

.fa-hand-middle-finger:before {
    content: "\f806"; }

.fa-hand-paper:before {
    content: "\f256"; }

.fa-hand-peace:before {
    content: "\f25b"; }

.fa-hand-point-down:before {
    content: "\f0a7"; }

.fa-hand-point-left:before {
    content: "\f0a5"; }

.fa-hand-point-right:before {
    content: "\f0a4"; }

.fa-hand-point-up:before {
    content: "\f0a6"; }

.fa-hand-pointer:before {
    content: "\f25a"; }

.fa-hand-rock:before {
    content: "\f255"; }

.fa-hand-scissors:before {
    content: "\f257"; }

.fa-hand-sparkles:before {
    content: "\e05d"; }

.fa-hand-spock:before {
    content: "\f259"; }

.fa-hands:before {
    content: "\f4c2"; }

.fa-hands-helping:before {
    content: "\f4c4"; }

.fa-hands-wash:before {
    content: "\e05e"; }

.fa-handshake:before {
    content: "\f2b5"; }

.fa-handshake-alt-slash:before {
    content: "\e05f"; }

.fa-handshake-slash:before {
    content: "\e060"; }

.fa-hanukiah:before {
    content: "\f6e6"; }

.fa-hard-hat:before {
    content: "\f807"; }

.fa-hashtag:before {
    content: "\f292"; }

.fa-hat-cowboy:before {
    content: "\f8c0"; }

.fa-hat-cowboy-side:before {
    content: "\f8c1"; }

.fa-hat-wizard:before {
    content: "\f6e8"; }

.fa-hdd:before {
    content: "\f0a0"; }

.fa-head-side-cough:before {
    content: "\e061"; }

.fa-head-side-cough-slash:before {
    content: "\e062"; }

.fa-head-side-mask:before {
    content: "\e063"; }

.fa-head-side-virus:before {
    content: "\e064"; }

.fa-heading:before {
    content: "\f1dc"; }

.fa-headphones:before {
    content: "\f025"; }

.fa-headphones-alt:before {
    content: "\f58f"; }

.fa-headset:before {
    content: "\f590"; }

.fa-heart:before {
    content: "\f004"; }

.fa-heart-broken:before {
    content: "\f7a9"; }

.fa-heartbeat:before {
    content: "\f21e"; }

.fa-helicopter:before {
    content: "\f533"; }

.fa-highlighter:before {
    content: "\f591"; }

.fa-hiking:before {
    content: "\f6ec"; }

.fa-hippo:before {
    content: "\f6ed"; }

.fa-hips:before {
    content: "\f452"; }

.fa-hire-a-helper:before {
    content: "\f3b0"; }

.fa-history:before {
    content: "\f1da"; }

.fa-hive:before {
    content: "\e07f"; }

.fa-hockey-puck:before {
    content: "\f453"; }

.fa-holly-berry:before {
    content: "\f7aa"; }

.fa-home:before {
    content: "\f015"; }

.fa-hooli:before {
    content: "\f427"; }

.fa-hornbill:before {
    content: "\f592"; }

.fa-horse:before {
    content: "\f6f0"; }

.fa-horse-head:before {
    content: "\f7ab"; }

.fa-hospital:before {
    content: "\f0f8"; }

.fa-hospital-alt:before {
    content: "\f47d"; }

.fa-hospital-symbol:before {
    content: "\f47e"; }

.fa-hospital-user:before {
    content: "\f80d"; }

.fa-hot-tub:before {
    content: "\f593"; }

.fa-hotdog:before {
    content: "\f80f"; }

.fa-hotel:before {
    content: "\f594"; }

.fa-hotjar:before {
    content: "\f3b1"; }

.fa-hourglass:before {
    content: "\f254"; }

.fa-hourglass-end:before {
    content: "\f253"; }

.fa-hourglass-half:before {
    content: "\f252"; }

.fa-hourglass-start:before {
    content: "\f251"; }

.fa-house-damage:before {
    content: "\f6f1"; }

.fa-house-user:before {
    content: "\e065"; }

.fa-houzz:before {
    content: "\f27c"; }

.fa-hryvnia:before {
    content: "\f6f2"; }

.fa-html5:before {
    content: "\f13b"; }

.fa-hubspot:before {
    content: "\f3b2"; }

.fa-i-cursor:before {
    content: "\f246"; }

.fa-ice-cream:before {
    content: "\f810"; }

.fa-icicles:before {
    content: "\f7ad"; }

.fa-icons:before {
    content: "\f86d"; }

.fa-id-badge:before {
    content: "\f2c1"; }

.fa-id-card:before {
    content: "\f2c2"; }

.fa-id-card-alt:before {
    content: "\f47f"; }

.fa-ideal:before {
    content: "\e013"; }

.fa-igloo:before {
    content: "\f7ae"; }

.fa-image:before {
    content: "\f03e"; }

.fa-images:before {
    content: "\f302"; }

.fa-imdb:before {
    content: "\f2d8"; }

.fa-inbox:before {
    content: "\f01c"; }

.fa-indent:before {
    content: "\f03c"; }

.fa-industry:before {
    content: "\f275"; }

.fa-infinity:before {
    content: "\f534"; }

.fa-info:before {
    content: "\f129"; }

.fa-info-circle:before {
    content: "\f05a"; }

.fa-innosoft:before {
    content: "\e080"; }

.fa-instagram:before {
    content: "\f16d"; }

.fa-instagram-square:before {
    content: "\e055"; }

.fa-instalod:before {
    content: "\e081"; }

.fa-intercom:before {
    content: "\f7af"; }

.fa-internet-explorer:before {
    content: "\f26b"; }

.fa-invision:before {
    content: "\f7b0"; }

.fa-ioxhost:before {
    content: "\f208"; }

.fa-italic:before {
    content: "\f033"; }

.fa-itch-io:before {
    content: "\f83a"; }

.fa-itunes:before {
    content: "\f3b4"; }

.fa-itunes-note:before {
    content: "\f3b5"; }

.fa-java:before {
    content: "\f4e4"; }

.fa-jedi:before {
    content: "\f669"; }

.fa-jedi-order:before {
    content: "\f50e"; }

.fa-jenkins:before {
    content: "\f3b6"; }

.fa-jira:before {
    content: "\f7b1"; }

.fa-joget:before {
    content: "\f3b7"; }

.fa-joint:before {
    content: "\f595"; }

.fa-joomla:before {
    content: "\f1aa"; }

.fa-journal-whills:before {
    content: "\f66a"; }

.fa-js:before {
    content: "\f3b8"; }

.fa-js-square:before {
    content: "\f3b9"; }

.fa-jsfiddle:before {
    content: "\f1cc"; }

.fa-kaaba:before {
    content: "\f66b"; }

.fa-kaggle:before {
    content: "\f5fa"; }

.fa-key:before {
    content: "\f084"; }

.fa-keybase:before {
    content: "\f4f5"; }

.fa-keyboard:before {
    content: "\f11c"; }

.fa-keycdn:before {
    content: "\f3ba"; }

.fa-khanda:before {
    content: "\f66d"; }

.fa-kickstarter:before {
    content: "\f3bb"; }

.fa-kickstarter-k:before {
    content: "\f3bc"; }

.fa-kiss:before {
    content: "\f596"; }

.fa-kiss-beam:before {
    content: "\f597"; }

.fa-kiss-wink-heart:before {
    content: "\f598"; }

.fa-kiwi-bird:before {
    content: "\f535"; }

.fa-korvue:before {
    content: "\f42f"; }

.fa-landmark:before {
    content: "\f66f"; }

.fa-language:before {
    content: "\f1ab"; }

.fa-laptop:before {
    content: "\f109"; }

.fa-laptop-code:before {
    content: "\f5fc"; }

.fa-laptop-house:before {
    content: "\e066"; }

.fa-laptop-medical:before {
    content: "\f812"; }

.fa-laravel:before {
    content: "\f3bd"; }

.fa-lastfm:before {
    content: "\f202"; }

.fa-lastfm-square:before {
    content: "\f203"; }

.fa-laugh:before {
    content: "\f599"; }

.fa-laugh-beam:before {
    content: "\f59a"; }

.fa-laugh-squint:before {
    content: "\f59b"; }

.fa-laugh-wink:before {
    content: "\f59c"; }

.fa-layer-group:before {
    content: "\f5fd"; }

.fa-leaf:before {
    content: "\f06c"; }

.fa-leanpub:before {
    content: "\f212"; }

.fa-lemon:before {
    content: "\f094"; }

.fa-less:before {
    content: "\f41d"; }

.fa-less-than:before {
    content: "\f536"; }

.fa-less-than-equal:before {
    content: "\f537"; }

.fa-level-down-alt:before {
    content: "\f3be"; }

.fa-level-up-alt:before {
    content: "\f3bf"; }

.fa-life-ring:before {
    content: "\f1cd"; }

.fa-lightbulb:before {
    content: "\f0eb"; }

.fa-line:before {
    content: "\f3c0"; }

.fa-link:before {
    content: "\f0c1"; }

.fa-linkedin:before {
    content: "\f08c"; }

.fa-linkedin-in:before {
    content: "\f0e1"; }

.fa-linode:before {
    content: "\f2b8"; }

.fa-linux:before {
    content: "\f17c"; }

.fa-lira-sign:before {
    content: "\f195"; }

.fa-list:before {
    content: "\f03a"; }

.fa-list-alt:before {
    content: "\f022"; }

.fa-list-ol:before {
    content: "\f0cb"; }

.fa-list-ul:before {
    content: "\f0ca"; }

.fa-location-arrow:before {
    content: "\f124"; }

.fa-lock:before {
    content: "\f023"; }

.fa-lock-open:before {
    content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
    content: "\f309"; }

.fa-long-arrow-alt-left:before {
    content: "\f30a"; }

.fa-long-arrow-alt-right:before {
    content: "\f30b"; }

.fa-long-arrow-alt-up:before {
    content: "\f30c"; }

.fa-low-vision:before {
    content: "\f2a8"; }

.fa-luggage-cart:before {
    content: "\f59d"; }

.fa-lungs:before {
    content: "\f604"; }

.fa-lungs-virus:before {
    content: "\e067"; }

.fa-lyft:before {
    content: "\f3c3"; }

.fa-magento:before {
    content: "\f3c4"; }

.fa-magic:before {
    content: "\f0d0"; }

.fa-magnet:before {
    content: "\f076"; }

.fa-mail-bulk:before {
    content: "\f674"; }

.fa-mailchimp:before {
    content: "\f59e"; }

.fa-male:before {
    content: "\f183"; }

.fa-mandalorian:before {
    content: "\f50f"; }

.fa-map:before {
    content: "\f279"; }

.fa-map-marked:before {
    content: "\f59f"; }

.fa-map-marked-alt:before {
    content: "\f5a0"; }

.fa-map-marker:before {
    content: "\f041"; }

.fa-map-marker-alt:before {
    content: "\f3c5"; }

.fa-map-pin:before {
    content: "\f276"; }

.fa-map-signs:before {
    content: "\f277"; }

.fa-markdown:before {
    content: "\f60f"; }

.fa-marker:before {
    content: "\f5a1"; }

.fa-mars:before {
    content: "\f222"; }

.fa-mars-double:before {
    content: "\f227"; }

.fa-mars-stroke:before {
    content: "\f229"; }

.fa-mars-stroke-h:before {
    content: "\f22b"; }

.fa-mars-stroke-v:before {
    content: "\f22a"; }

.fa-mask:before {
    content: "\f6fa"; }

.fa-mastodon:before {
    content: "\f4f6"; }

.fa-maxcdn:before {
    content: "\f136"; }

.fa-mdb:before {
    content: "\f8ca"; }

.fa-medal:before {
    content: "\f5a2"; }

.fa-medapps:before {
    content: "\f3c6"; }

.fa-medium:before {
    content: "\f23a"; }

.fa-medium-m:before {
    content: "\f3c7"; }

.fa-medkit:before {
    content: "\f0fa"; }

.fa-medrt:before {
    content: "\f3c8"; }

.fa-meetup:before {
    content: "\f2e0"; }

.fa-megaport:before {
    content: "\f5a3"; }

.fa-meh:before {
    content: "\f11a"; }

.fa-meh-blank:before {
    content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
    content: "\f5a5"; }

.fa-memory:before {
    content: "\f538"; }

.fa-mendeley:before {
    content: "\f7b3"; }

.fa-menorah:before {
    content: "\f676"; }

.fa-mercury:before {
    content: "\f223"; }

.fa-meteor:before {
    content: "\f753"; }

.fa-microblog:before {
    content: "\e01a"; }

.fa-microchip:before {
    content: "\f2db"; }

.fa-microphone:before {
    content: "\f130"; }

.fa-microphone-alt:before {
    content: "\f3c9"; }

.fa-microphone-alt-slash:before {
    content: "\f539"; }

.fa-microphone-slash:before {
    content: "\f131"; }

.fa-microscope:before {
    content: "\f610"; }

.fa-microsoft:before {
    content: "\f3ca"; }

.fa-minus:before {
    content: "\f068"; }

.fa-minus-circle:before {
    content: "\f056"; }

.fa-minus-square:before {
    content: "\f146"; }

.fa-mitten:before {
    content: "\f7b5"; }

.fa-mix:before {
    content: "\f3cb"; }

.fa-mixcloud:before {
    content: "\f289"; }

.fa-mixer:before {
    content: "\e056"; }

.fa-mizuni:before {
    content: "\f3cc"; }

.fa-mobile:before {
    content: "\f10b"; }

.fa-mobile-alt:before {
    content: "\f3cd"; }

.fa-modx:before {
    content: "\f285"; }

.fa-monero:before {
    content: "\f3d0"; }

.fa-money-bill:before {
    content: "\f0d6"; }

.fa-money-bill-alt:before {
    content: "\f3d1"; }

.fa-money-bill-wave:before {
    content: "\f53a"; }

.fa-money-bill-wave-alt:before {
    content: "\f53b"; }

.fa-money-check:before {
    content: "\f53c"; }

.fa-money-check-alt:before {
    content: "\f53d"; }

.fa-monument:before {
    content: "\f5a6"; }

.fa-moon:before {
    content: "\f186"; }

.fa-mortar-pestle:before {
    content: "\f5a7"; }

.fa-mosque:before {
    content: "\f678"; }

.fa-motorcycle:before {
    content: "\f21c"; }

.fa-mountain:before {
    content: "\f6fc"; }

.fa-mouse:before {
    content: "\f8cc"; }

.fa-mouse-pointer:before {
    content: "\f245"; }

.fa-mug-hot:before {
    content: "\f7b6"; }

.fa-music:before {
    content: "\f001"; }

.fa-napster:before {
    content: "\f3d2"; }

.fa-neos:before {
    content: "\f612"; }

.fa-network-wired:before {
    content: "\f6ff"; }

.fa-neuter:before {
    content: "\f22c"; }

.fa-newspaper:before {
    content: "\f1ea"; }

.fa-nimblr:before {
    content: "\f5a8"; }

.fa-node:before {
    content: "\f419"; }

.fa-node-js:before {
    content: "\f3d3"; }

.fa-not-equal:before {
    content: "\f53e"; }

.fa-notes-medical:before {
    content: "\f481"; }

.fa-npm:before {
    content: "\f3d4"; }

.fa-ns8:before {
    content: "\f3d5"; }

.fa-nutritionix:before {
    content: "\f3d6"; }

.fa-object-group:before {
    content: "\f247"; }

.fa-object-ungroup:before {
    content: "\f248"; }

.fa-octopus-deploy:before {
    content: "\e082"; }

.fa-odnoklassniki:before {
    content: "\f263"; }

.fa-odnoklassniki-square:before {
    content: "\f264"; }

.fa-oil-can:before {
    content: "\f613"; }

.fa-old-republic:before {
    content: "\f510"; }

.fa-om:before {
    content: "\f679"; }

.fa-opencart:before {
    content: "\f23d"; }

.fa-openid:before {
    content: "\f19b"; }

.fa-opera:before {
    content: "\f26a"; }

.fa-optin-monster:before {
    content: "\f23c"; }

.fa-orcid:before {
    content: "\f8d2"; }

.fa-osi:before {
    content: "\f41a"; }

.fa-otter:before {
    content: "\f700"; }

.fa-outdent:before {
    content: "\f03b"; }

.fa-page4:before {
    content: "\f3d7"; }

.fa-pagelines:before {
    content: "\f18c"; }

.fa-pager:before {
    content: "\f815"; }

.fa-paint-brush:before {
    content: "\f1fc"; }

.fa-paint-roller:before {
    content: "\f5aa"; }

.fa-palette:before {
    content: "\f53f"; }

.fa-palfed:before {
    content: "\f3d8"; }

.fa-pallet:before {
    content: "\f482"; }

.fa-paper-plane:before {
    content: "\f1d8"; }

.fa-paperclip:before {
    content: "\f0c6"; }

.fa-parachute-box:before {
    content: "\f4cd"; }

.fa-paragraph:before {
    content: "\f1dd"; }

.fa-parking:before {
    content: "\f540"; }

.fa-passport:before {
    content: "\f5ab"; }

.fa-pastafarianism:before {
    content: "\f67b"; }

.fa-paste:before {
    content: "\f0ea"; }

.fa-patreon:before {
    content: "\f3d9"; }

.fa-pause:before {
    content: "\f04c"; }

.fa-pause-circle:before {
    content: "\f28b"; }

.fa-paw:before {
    content: "\f1b0"; }

.fa-paypal:before {
    content: "\f1ed"; }

.fa-peace:before {
    content: "\f67c"; }

.fa-pen:before {
    content: "\f304"; }

.fa-pen-alt:before {
    content: "\f305"; }

.fa-pen-fancy:before {
    content: "\f5ac"; }

.fa-pen-nib:before {
    content: "\f5ad"; }

.fa-pen-square:before {
    content: "\f14b"; }

.fa-pencil-alt:before {
    content: "\f303"; }

.fa-pencil-ruler:before {
    content: "\f5ae"; }

.fa-penny-arcade:before {
    content: "\f704"; }

.fa-people-arrows:before {
    content: "\e068"; }

.fa-people-carry:before {
    content: "\f4ce"; }

.fa-pepper-hot:before {
    content: "\f816"; }

.fa-perbyte:before {
    content: "\e083"; }

.fa-percent:before {
    content: "\f295"; }

.fa-percentage:before {
    content: "\f541"; }

.fa-periscope:before {
    content: "\f3da"; }

.fa-person-booth:before {
    content: "\f756"; }

.fa-phabricator:before {
    content: "\f3db"; }

.fa-phoenix-framework:before {
    content: "\f3dc"; }

.fa-phoenix-squadron:before {
    content: "\f511"; }

.fa-phone:before {
    content: "\f095"; }

.fa-phone-alt:before {
    content: "\f879"; }

.fa-phone-slash:before {
    content: "\f3dd"; }

.fa-phone-square:before {
    content: "\f098"; }

.fa-phone-square-alt:before {
    content: "\f87b"; }

.fa-phone-volume:before {
    content: "\f2a0"; }

.fa-photo-video:before {
    content: "\f87c"; }

.fa-php:before {
    content: "\f457"; }

.fa-pied-piper:before {
    content: "\f2ae"; }

.fa-pied-piper-alt:before {
    content: "\f1a8"; }

.fa-pied-piper-hat:before {
    content: "\f4e5"; }

.fa-pied-piper-pp:before {
    content: "\f1a7"; }

.fa-pied-piper-square:before {
    content: "\e01e"; }

.fa-piggy-bank:before {
    content: "\f4d3"; }

.fa-pills:before {
    content: "\f484"; }

.fa-pinterest:before {
    content: "\f0d2"; }

.fa-pinterest-p:before {
    content: "\f231"; }

.fa-pinterest-square:before {
    content: "\f0d3"; }

.fa-pizza-slice:before {
    content: "\f818"; }

.fa-place-of-worship:before {
    content: "\f67f"; }

.fa-plane:before {
    content: "\f072"; }

.fa-plane-arrival:before {
    content: "\f5af"; }

.fa-plane-departure:before {
    content: "\f5b0"; }

.fa-plane-slash:before {
    content: "\e069"; }

.fa-play:before {
    content: "\f04b"; }

.fa-play-circle:before {
    content: "\f144"; }

.fa-playstation:before {
    content: "\f3df"; }

.fa-plug:before {
    content: "\f1e6"; }

.fa-plus:before {
    content: "\f067"; }

.fa-plus-circle:before {
    content: "\f055"; }

.fa-plus-square:before {
    content: "\f0fe"; }

.fa-podcast:before {
    content: "\f2ce"; }

.fa-poll:before {
    content: "\f681"; }

.fa-poll-h:before {
    content: "\f682"; }

.fa-poo:before {
    content: "\f2fe"; }

.fa-poo-storm:before {
    content: "\f75a"; }

.fa-poop:before {
    content: "\f619"; }

.fa-portrait:before {
    content: "\f3e0"; }

.fa-pound-sign:before {
    content: "\f154"; }

.fa-power-off:before {
    content: "\f011"; }

.fa-pray:before {
    content: "\f683"; }

.fa-praying-hands:before {
    content: "\f684"; }

.fa-prescription:before {
    content: "\f5b1"; }

.fa-prescription-bottle:before {
    content: "\f485"; }

.fa-prescription-bottle-alt:before {
    content: "\f486"; }

.fa-print:before {
    content: "\f02f"; }

.fa-procedures:before {
    content: "\f487"; }

.fa-product-hunt:before {
    content: "\f288"; }

.fa-project-diagram:before {
    content: "\f542"; }

.fa-pump-medical:before {
    content: "\e06a"; }

.fa-pump-soap:before {
    content: "\e06b"; }

.fa-pushed:before {
    content: "\f3e1"; }

.fa-puzzle-piece:before {
    content: "\f12e"; }

.fa-python:before {
    content: "\f3e2"; }

.fa-qq:before {
    content: "\f1d6"; }

.fa-qrcode:before {
    content: "\f029"; }

.fa-question:before {
    content: "\f128"; }

.fa-question-circle:before {
    content: "\f059"; }

.fa-quidditch:before {
    content: "\f458"; }

.fa-quinscape:before {
    content: "\f459"; }

.fa-quora:before {
    content: "\f2c4"; }

.fa-quote-left:before {
    content: "\f10d"; }

.fa-quote-right:before {
    content: "\f10e"; }

.fa-quran:before {
    content: "\f687"; }

.fa-r-project:before {
    content: "\f4f7"; }

.fa-radiation:before {
    content: "\f7b9"; }

.fa-radiation-alt:before {
    content: "\f7ba"; }

.fa-rainbow:before {
    content: "\f75b"; }

.fa-random:before {
    content: "\f074"; }

.fa-raspberry-pi:before {
    content: "\f7bb"; }

.fa-ravelry:before {
    content: "\f2d9"; }

.fa-react:before {
    content: "\f41b"; }

.fa-reacteurope:before {
    content: "\f75d"; }

.fa-readme:before {
    content: "\f4d5"; }

.fa-rebel:before {
    content: "\f1d0"; }

.fa-receipt:before {
    content: "\f543"; }

.fa-record-vinyl:before {
    content: "\f8d9"; }

.fa-recycle:before {
    content: "\f1b8"; }

.fa-red-river:before {
    content: "\f3e3"; }

.fa-reddit:before {
    content: "\f1a1"; }

.fa-reddit-alien:before {
    content: "\f281"; }

.fa-reddit-square:before {
    content: "\f1a2"; }

.fa-redhat:before {
    content: "\f7bc"; }

.fa-redo:before {
    content: "\f01e"; }

.fa-redo-alt:before {
    content: "\f2f9"; }

.fa-registered:before {
    content: "\f25d"; }

.fa-remove-format:before {
    content: "\f87d"; }

.fa-renren:before {
    content: "\f18b"; }

.fa-reply:before {
    content: "\f3e5"; }

.fa-reply-all:before {
    content: "\f122"; }

.fa-replyd:before {
    content: "\f3e6"; }

.fa-republican:before {
    content: "\f75e"; }

.fa-researchgate:before {
    content: "\f4f8"; }

.fa-resolving:before {
    content: "\f3e7"; }

.fa-restroom:before {
    content: "\f7bd"; }

.fa-retweet:before {
    content: "\f079"; }

.fa-rev:before {
    content: "\f5b2"; }

.fa-ribbon:before {
    content: "\f4d6"; }

.fa-ring:before {
    content: "\f70b"; }

.fa-road:before {
    content: "\f018"; }

.fa-robot:before {
    content: "\f544"; }

.fa-rocket:before {
    content: "\f135"; }

.fa-rocketchat:before {
    content: "\f3e8"; }

.fa-rockrms:before {
    content: "\f3e9"; }

.fa-route:before {
    content: "\f4d7"; }

.fa-rss:before {
    content: "\f09e"; }

.fa-rss-square:before {
    content: "\f143"; }

.fa-ruble-sign:before {
    content: "\f158"; }

.fa-ruler:before {
    content: "\f545"; }

.fa-ruler-combined:before {
    content: "\f546"; }

.fa-ruler-horizontal:before {
    content: "\f547"; }

.fa-ruler-vertical:before {
    content: "\f548"; }

.fa-running:before {
    content: "\f70c"; }

.fa-rupee-sign:before {
    content: "\f156"; }

.fa-rust:before {
    content: "\e07a"; }

.fa-sad-cry:before {
    content: "\f5b3"; }

.fa-sad-tear:before {
    content: "\f5b4"; }

.fa-safari:before {
    content: "\f267"; }

.fa-salesforce:before {
    content: "\f83b"; }

.fa-sass:before {
    content: "\f41e"; }

.fa-satellite:before {
    content: "\f7bf"; }

.fa-satellite-dish:before {
    content: "\f7c0"; }

.fa-save:before {
    content: "\f0c7"; }

.fa-schlix:before {
    content: "\f3ea"; }

.fa-school:before {
    content: "\f549"; }

.fa-screwdriver:before {
    content: "\f54a"; }

.fa-scribd:before {
    content: "\f28a"; }

.fa-scroll:before {
    content: "\f70e"; }

.fa-sd-card:before {
    content: "\f7c2"; }

.fa-search:before {
    content: "\f002"; }

.fa-search-dollar:before {
    content: "\f688"; }

.fa-search-location:before {
    content: "\f689"; }

.fa-search-minus:before {
    content: "\f010"; }

.fa-search-plus:before {
    content: "\f00e"; }

.fa-searchengin:before {
    content: "\f3eb"; }

.fa-seedling:before {
    content: "\f4d8"; }

.fa-sellcast:before {
    content: "\f2da"; }

.fa-sellsy:before {
    content: "\f213"; }

.fa-server:before {
    content: "\f233"; }

.fa-servicestack:before {
    content: "\f3ec"; }

.fa-shapes:before {
    content: "\f61f"; }

.fa-share:before {
    content: "\f064"; }

.fa-share-alt:before {
    content: "\f1e0"; }

.fa-share-alt-square:before {
    content: "\f1e1"; }

.fa-share-square:before {
    content: "\f14d"; }

.fa-shekel-sign:before {
    content: "\f20b"; }

.fa-shield-alt:before {
    content: "\f3ed"; }

.fa-shield-virus:before {
    content: "\e06c"; }

.fa-ship:before {
    content: "\f21a"; }

.fa-shipping-fast:before {
    content: "\f48b"; }

.fa-shirtsinbulk:before {
    content: "\f214"; }

.fa-shoe-prints:before {
    content: "\f54b"; }

.fa-shopify:before {
    content: "\e057"; }

.fa-shopping-bag:before {
    content: "\f290"; }

.fa-shopping-basket:before {
    content: "\f291"; }

.fa-shopping-cart:before {
    content: "\f07a"; }

.fa-shopware:before {
    content: "\f5b5"; }

.fa-shower:before {
    content: "\f2cc"; }

.fa-shuttle-van:before {
    content: "\f5b6"; }

.fa-sign:before {
    content: "\f4d9"; }

.fa-sign-in-alt:before {
    content: "\f2f6"; }

.fa-sign-language:before {
    content: "\f2a7"; }

.fa-sign-out-alt:before {
    content: "\f2f5"; }

.fa-signal:before {
    content: "\f012"; }

.fa-signature:before {
    content: "\f5b7"; }

.fa-sim-card:before {
    content: "\f7c4"; }

.fa-simplybuilt:before {
    content: "\f215"; }

.fa-sink:before {
    content: "\e06d"; }

.fa-sistrix:before {
    content: "\f3ee"; }

.fa-sitemap:before {
    content: "\f0e8"; }

.fa-sith:before {
    content: "\f512"; }

.fa-skating:before {
    content: "\f7c5"; }

.fa-sketch:before {
    content: "\f7c6"; }

.fa-skiing:before {
    content: "\f7c9"; }

.fa-skiing-nordic:before {
    content: "\f7ca"; }

.fa-skull:before {
    content: "\f54c"; }

.fa-skull-crossbones:before {
    content: "\f714"; }

.fa-skyatlas:before {
    content: "\f216"; }

.fa-skype:before {
    content: "\f17e"; }

.fa-slack:before {
    content: "\f198"; }

.fa-slack-hash:before {
    content: "\f3ef"; }

.fa-slash:before {
    content: "\f715"; }

.fa-sleigh:before {
    content: "\f7cc"; }

.fa-sliders-h:before {
    content: "\f1de"; }

.fa-slideshare:before {
    content: "\f1e7"; }

.fa-smile:before {
    content: "\f118"; }

.fa-smile-beam:before {
    content: "\f5b8"; }

.fa-smile-wink:before {
    content: "\f4da"; }

.fa-smog:before {
    content: "\f75f"; }

.fa-smoking:before {
    content: "\f48d"; }

.fa-smoking-ban:before {
    content: "\f54d"; }

.fa-sms:before {
    content: "\f7cd"; }

.fa-snapchat:before {
    content: "\f2ab"; }

.fa-snapchat-ghost:before {
    content: "\f2ac"; }

.fa-snapchat-square:before {
    content: "\f2ad"; }

.fa-snowboarding:before {
    content: "\f7ce"; }

.fa-snowflake:before {
    content: "\f2dc"; }

.fa-snowman:before {
    content: "\f7d0"; }

.fa-snowplow:before {
    content: "\f7d2"; }

.fa-soap:before {
    content: "\e06e"; }

.fa-socks:before {
    content: "\f696"; }

.fa-solar-panel:before {
    content: "\f5ba"; }

.fa-sort:before {
    content: "\f0dc"; }

.fa-sort-alpha-down:before {
    content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
    content: "\f881"; }

.fa-sort-alpha-up:before {
    content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
    content: "\f882"; }

.fa-sort-amount-down:before {
    content: "\f160"; }

.fa-sort-amount-down-alt:before {
    content: "\f884"; }

.fa-sort-amount-up:before {
    content: "\f161"; }

.fa-sort-amount-up-alt:before {
    content: "\f885"; }

.fa-sort-down:before {
    content: "\f0dd"; }

.fa-sort-numeric-down:before {
    content: "\f162"; }

.fa-sort-numeric-down-alt:before {
    content: "\f886"; }

.fa-sort-numeric-up:before {
    content: "\f163"; }

.fa-sort-numeric-up-alt:before {
    content: "\f887"; }

.fa-sort-up:before {
    content: "\f0de"; }

.fa-soundcloud:before {
    content: "\f1be"; }

.fa-sourcetree:before {
    content: "\f7d3"; }

.fa-spa:before {
    content: "\f5bb"; }

.fa-space-shuttle:before {
    content: "\f197"; }

.fa-speakap:before {
    content: "\f3f3"; }

.fa-speaker-deck:before {
    content: "\f83c"; }

.fa-spell-check:before {
    content: "\f891"; }

.fa-spider:before {
    content: "\f717"; }

.fa-spinner:before {
    content: "\f110"; }

.fa-splotch:before {
    content: "\f5bc"; }

.fa-spotify:before {
    content: "\f1bc"; }

.fa-spray-can:before {
    content: "\f5bd"; }

.fa-square:before {
    content: "\f0c8"; }

.fa-square-full:before {
    content: "\f45c"; }

.fa-square-root-alt:before {
    content: "\f698"; }

.fa-squarespace:before {
    content: "\f5be"; }

.fa-stack-exchange:before {
    content: "\f18d"; }

.fa-stack-overflow:before {
    content: "\f16c"; }

.fa-stackpath:before {
    content: "\f842"; }

.fa-stamp:before {
    content: "\f5bf"; }

.fa-star:before {
    content: "\f005"; }

.fa-star-and-crescent:before {
    content: "\f699"; }

.fa-star-half:before {
    content: "\f089"; }

.fa-star-half-alt:before {
    content: "\f5c0"; }

.fa-star-of-david:before {
    content: "\f69a"; }

.fa-star-of-life:before {
    content: "\f621"; }

.fa-staylinked:before {
    content: "\f3f5"; }

.fa-steam:before {
    content: "\f1b6"; }

.fa-steam-square:before {
    content: "\f1b7"; }

.fa-steam-symbol:before {
    content: "\f3f6"; }

.fa-step-backward:before {
    content: "\f048"; }

.fa-step-forward:before {
    content: "\f051"; }

.fa-stethoscope:before {
    content: "\f0f1"; }

.fa-sticker-mule:before {
    content: "\f3f7"; }

.fa-sticky-note:before {
    content: "\f249"; }

.fa-stop:before {
    content: "\f04d"; }

.fa-stop-circle:before {
    content: "\f28d"; }

.fa-stopwatch:before {
    content: "\f2f2"; }

.fa-stopwatch-20:before {
    content: "\e06f"; }

.fa-store:before {
    content: "\f54e"; }

.fa-store-alt:before {
    content: "\f54f"; }

.fa-store-alt-slash:before {
    content: "\e070"; }

.fa-store-slash:before {
    content: "\e071"; }

.fa-strava:before {
    content: "\f428"; }

.fa-stream:before {
    content: "\f550"; }

.fa-street-view:before {
    content: "\f21d"; }

.fa-strikethrough:before {
    content: "\f0cc"; }

.fa-stripe:before {
    content: "\f429"; }

.fa-stripe-s:before {
    content: "\f42a"; }

.fa-stroopwafel:before {
    content: "\f551"; }

.fa-studiovinari:before {
    content: "\f3f8"; }

.fa-stumbleupon:before {
    content: "\f1a4"; }

.fa-stumbleupon-circle:before {
    content: "\f1a3"; }

.fa-subscript:before {
    content: "\f12c"; }

.fa-subway:before {
    content: "\f239"; }

.fa-suitcase:before {
    content: "\f0f2"; }

.fa-suitcase-rolling:before {
    content: "\f5c1"; }

.fa-sun:before {
    content: "\f185"; }

.fa-superpowers:before {
    content: "\f2dd"; }

.fa-superscript:before {
    content: "\f12b"; }

.fa-supple:before {
    content: "\f3f9"; }

.fa-surprise:before {
    content: "\f5c2"; }

.fa-suse:before {
    content: "\f7d6"; }

.fa-swatchbook:before {
    content: "\f5c3"; }

.fa-swift:before {
    content: "\f8e1"; }

.fa-swimmer:before {
    content: "\f5c4"; }

.fa-swimming-pool:before {
    content: "\f5c5"; }

.fa-symfony:before {
    content: "\f83d"; }

.fa-synagogue:before {
    content: "\f69b"; }

.fa-sync:before {
    content: "\f021"; }

.fa-sync-alt:before {
    content: "\f2f1"; }

.fa-syringe:before {
    content: "\f48e"; }

.fa-table:before {
    content: "\f0ce"; }

.fa-table-tennis:before {
    content: "\f45d"; }

.fa-tablet:before {
    content: "\f10a"; }

.fa-tablet-alt:before {
    content: "\f3fa"; }

.fa-tablets:before {
    content: "\f490"; }

.fa-tachometer-alt:before {
    content: "\f3fd"; }

.fa-tag:before {
    content: "\f02b"; }

.fa-tags:before {
    content: "\f02c"; }

.fa-tape:before {
    content: "\f4db"; }

.fa-tasks:before {
    content: "\f0ae"; }

.fa-taxi:before {
    content: "\f1ba"; }

.fa-teamspeak:before {
    content: "\f4f9"; }

.fa-teeth:before {
    content: "\f62e"; }

.fa-teeth-open:before {
    content: "\f62f"; }

.fa-telegram:before {
    content: "\f2c6"; }

.fa-telegram-plane:before {
    content: "\f3fe"; }

.fa-temperature-high:before {
    content: "\f769"; }

.fa-temperature-low:before {
    content: "\f76b"; }

.fa-tencent-weibo:before {
    content: "\f1d5"; }

.fa-tenge:before {
    content: "\f7d7"; }

.fa-terminal:before {
    content: "\f120"; }

.fa-text-height:before {
    content: "\f034"; }

.fa-text-width:before {
    content: "\f035"; }

.fa-th:before {
    content: "\f00a"; }

.fa-th-large:before {
    content: "\f009"; }

.fa-th-list:before {
    content: "\f00b"; }

.fa-the-red-yeti:before {
    content: "\f69d"; }

.fa-theater-masks:before {
    content: "\f630"; }

.fa-themeco:before {
    content: "\f5c6"; }

.fa-themeisle:before {
    content: "\f2b2"; }

.fa-thermometer:before {
    content: "\f491"; }

.fa-thermometer-empty:before {
    content: "\f2cb"; }

.fa-thermometer-full:before {
    content: "\f2c7"; }

.fa-thermometer-half:before {
    content: "\f2c9"; }

.fa-thermometer-quarter:before {
    content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
    content: "\f2c8"; }

.fa-think-peaks:before {
    content: "\f731"; }

.fa-thumbs-down:before {
    content: "\f165"; }

.fa-thumbs-up:before {
    content: "\f164"; }

.fa-thumbtack:before {
    content: "\f08d"; }

.fa-ticket-alt:before {
    content: "\f3ff"; }

.fa-tiktok:before {
    content: "\e07b"; }

.fa-times:before {
    content: "\f00d"; }

.fa-times-circle:before {
    content: "\f057"; }

.fa-tint:before {
    content: "\f043"; }

.fa-tint-slash:before {
    content: "\f5c7"; }

.fa-tired:before {
    content: "\f5c8"; }

.fa-toggle-off:before {
    content: "\f204"; }

.fa-toggle-on:before {
    content: "\f205"; }

.fa-toilet:before {
    content: "\f7d8"; }

.fa-toilet-paper:before {
    content: "\f71e"; }

.fa-toilet-paper-slash:before {
    content: "\e072"; }

.fa-toolbox:before {
    content: "\f552"; }

.fa-tools:before {
    content: "\f7d9"; }

.fa-tooth:before {
    content: "\f5c9"; }

.fa-torah:before {
    content: "\f6a0"; }

.fa-torii-gate:before {
    content: "\f6a1"; }

.fa-tractor:before {
    content: "\f722"; }

.fa-trade-federation:before {
    content: "\f513"; }

.fa-trademark:before {
    content: "\f25c"; }

.fa-traffic-light:before {
    content: "\f637"; }

.fa-trailer:before {
    content: "\e041"; }

.fa-train:before {
    content: "\f238"; }

.fa-tram:before {
    content: "\f7da"; }

.fa-transgender:before {
    content: "\f224"; }

.fa-transgender-alt:before {
    content: "\f225"; }

.fa-trash:before {
    content: "\f1f8"; }

.fa-trash-alt:before {
    content: "\f2ed"; }

.fa-trash-restore:before {
    content: "\f829"; }

.fa-trash-restore-alt:before {
    content: "\f82a"; }

.fa-tree:before {
    content: "\f1bb"; }

.fa-trello:before {
    content: "\f181"; }

.fa-trophy:before {
    content: "\f091"; }

.fa-truck:before {
    content: "\f0d1"; }

.fa-truck-loading:before {
    content: "\f4de"; }

.fa-truck-monster:before {
    content: "\f63b"; }

.fa-truck-moving:before {
    content: "\f4df"; }

.fa-truck-pickup:before {
    content: "\f63c"; }

.fa-tshirt:before {
    content: "\f553"; }

.fa-tty:before {
    content: "\f1e4"; }

.fa-tumblr:before {
    content: "\f173"; }

.fa-tumblr-square:before {
    content: "\f174"; }

.fa-tv:before {
    content: "\f26c"; }

.fa-twitch:before {
    content: "\f1e8"; }

.fa-twitter:before {
    content: "\f099"; }

.fa-twitter-square:before {
    content: "\f081"; }

.fa-typo3:before {
    content: "\f42b"; }

.fa-uber:before {
    content: "\f402"; }

.fa-ubuntu:before {
    content: "\f7df"; }

.fa-uikit:before {
    content: "\f403"; }

.fa-umbraco:before {
    content: "\f8e8"; }

.fa-umbrella:before {
    content: "\f0e9"; }

.fa-umbrella-beach:before {
    content: "\f5ca"; }

.fa-uncharted:before {
    content: "\e084"; }

.fa-underline:before {
    content: "\f0cd"; }

.fa-undo:before {
    content: "\f0e2"; }

.fa-undo-alt:before {
    content: "\f2ea"; }

.fa-uniregistry:before {
    content: "\f404"; }

.fa-unity:before {
    content: "\e049"; }

.fa-universal-access:before {
    content: "\f29a"; }

.fa-university:before {
    content: "\f19c"; }

.fa-unlink:before {
    content: "\f127"; }

.fa-unlock:before {
    content: "\f09c"; }

.fa-unlock-alt:before {
    content: "\f13e"; }

.fa-unsplash:before {
    content: "\e07c"; }

.fa-untappd:before {
    content: "\f405"; }

.fa-upload:before {
    content: "\f093"; }

.fa-ups:before {
    content: "\f7e0"; }

.fa-usb:before {
    content: "\f287"; }

.fa-user:before {
    content: "\f007"; }

.fa-user-alt:before {
    content: "\f406"; }

.fa-user-alt-slash:before {
    content: "\f4fa"; }

.fa-user-astronaut:before {
    content: "\f4fb"; }

.fa-user-check:before {
    content: "\f4fc"; }

.fa-user-circle:before {
    content: "\f2bd"; }

.fa-user-clock:before {
    content: "\f4fd"; }

.fa-user-cog:before {
    content: "\f4fe"; }

.fa-user-edit:before {
    content: "\f4ff"; }

.fa-user-friends:before {
    content: "\f500"; }

.fa-user-graduate:before {
    content: "\f501"; }

.fa-user-injured:before {
    content: "\f728"; }

.fa-user-lock:before {
    content: "\f502"; }

.fa-user-md:before {
    content: "\f0f0"; }

.fa-user-minus:before {
    content: "\f503"; }

.fa-user-ninja:before {
    content: "\f504"; }

.fa-user-nurse:before {
    content: "\f82f"; }

.fa-user-plus:before {
    content: "\f234"; }

.fa-user-secret:before {
    content: "\f21b"; }

.fa-user-shield:before {
    content: "\f505"; }

.fa-user-slash:before {
    content: "\f506"; }

.fa-user-tag:before {
    content: "\f507"; }

.fa-user-tie:before {
    content: "\f508"; }

.fa-user-times:before {
    content: "\f235"; }

.fa-users:before {
    content: "\f0c0"; }

.fa-users-cog:before {
    content: "\f509"; }

.fa-users-slash:before {
    content: "\e073"; }

.fa-usps:before {
    content: "\f7e1"; }

.fa-ussunnah:before {
    content: "\f407"; }

.fa-utensil-spoon:before {
    content: "\f2e5"; }

.fa-utensils:before {
    content: "\f2e7"; }

.fa-vaadin:before {
    content: "\f408"; }

.fa-vector-square:before {
    content: "\f5cb"; }

.fa-venus:before {
    content: "\f221"; }

.fa-venus-double:before {
    content: "\f226"; }

.fa-venus-mars:before {
    content: "\f228"; }

.fa-vest:before {
    content: "\e085"; }

.fa-vest-patches:before {
    content: "\e086"; }

.fa-viacoin:before {
    content: "\f237"; }

.fa-viadeo:before {
    content: "\f2a9"; }

.fa-viadeo-square:before {
    content: "\f2aa"; }

.fa-vial:before {
    content: "\f492"; }

.fa-vials:before {
    content: "\f493"; }

.fa-viber:before {
    content: "\f409"; }

.fa-video:before {
    content: "\f03d"; }

.fa-video-slash:before {
    content: "\f4e2"; }

.fa-vihara:before {
    content: "\f6a7"; }

.fa-vimeo:before {
    content: "\f40a"; }

.fa-vimeo-square:before {
    content: "\f194"; }

.fa-vimeo-v:before {
    content: "\f27d"; }

.fa-vine:before {
    content: "\f1ca"; }

.fa-virus:before {
    content: "\e074"; }

.fa-virus-slash:before {
    content: "\e075"; }

.fa-viruses:before {
    content: "\e076"; }

.fa-vk:before {
    content: "\f189"; }

.fa-vnv:before {
    content: "\f40b"; }

.fa-voicemail:before {
    content: "\f897"; }

.fa-volleyball-ball:before {
    content: "\f45f"; }

.fa-volume-down:before {
    content: "\f027"; }

.fa-volume-mute:before {
    content: "\f6a9"; }

.fa-volume-off:before {
    content: "\f026"; }

.fa-volume-up:before {
    content: "\f028"; }

.fa-vote-yea:before {
    content: "\f772"; }

.fa-vr-cardboard:before {
    content: "\f729"; }

.fa-vuejs:before {
    content: "\f41f"; }

.fa-walking:before {
    content: "\f554"; }

.fa-wallet:before {
    content: "\f555"; }

.fa-warehouse:before {
    content: "\f494"; }

.fa-watchman-monitoring:before {
    content: "\e087"; }

.fa-water:before {
    content: "\f773"; }

.fa-wave-square:before {
    content: "\f83e"; }

.fa-waze:before {
    content: "\f83f"; }

.fa-weebly:before {
    content: "\f5cc"; }

.fa-weibo:before {
    content: "\f18a"; }

.fa-weight:before {
    content: "\f496"; }

.fa-weight-hanging:before {
    content: "\f5cd"; }

.fa-weixin:before {
    content: "\f1d7"; }

.fa-whatsapp:before {
    content: "\f232"; }

.fa-whatsapp-square:before {
    content: "\f40c"; }

.fa-wheelchair:before {
    content: "\f193"; }

.fa-whmcs:before {
    content: "\f40d"; }

.fa-wifi:before {
    content: "\f1eb"; }

.fa-wikipedia-w:before {
    content: "\f266"; }

.fa-wind:before {
    content: "\f72e"; }

.fa-window-close:before {
    content: "\f410"; }

.fa-window-maximize:before {
    content: "\f2d0"; }

.fa-window-minimize:before {
    content: "\f2d1"; }

.fa-window-restore:before {
    content: "\f2d2"; }

.fa-windows:before {
    content: "\f17a"; }

.fa-wine-bottle:before {
    content: "\f72f"; }

.fa-wine-glass:before {
    content: "\f4e3"; }

.fa-wine-glass-alt:before {
    content: "\f5ce"; }

.fa-wix:before {
    content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
    content: "\f730"; }

.fa-wodu:before {
    content: "\e088"; }

.fa-wolf-pack-battalion:before {
    content: "\f514"; }

.fa-won-sign:before {
    content: "\f159"; }

.fa-wordpress:before {
    content: "\f19a"; }

.fa-wordpress-simple:before {
    content: "\f411"; }

.fa-wpbeginner:before {
    content: "\f297"; }

.fa-wpexplorer:before {
    content: "\f2de"; }

.fa-wpforms:before {
    content: "\f298"; }

.fa-wpressr:before {
    content: "\f3e4"; }

.fa-wrench:before {
    content: "\f0ad"; }

.fa-x-ray:before {
    content: "\f497"; }

.fa-xbox:before {
    content: "\f412"; }

.fa-xing:before {
    content: "\f168"; }

.fa-xing-square:before {
    content: "\f169"; }

.fa-y-combinator:before {
    content: "\f23b"; }

.fa-yahoo:before {
    content: "\f19e"; }

.fa-yammer:before {
    content: "\f840"; }

.fa-yandex:before {
    content: "\f413"; }

.fa-yandex-international:before {
    content: "\f414"; }

.fa-yarn:before {
    content: "\f7e3"; }

.fa-yelp:before {
    content: "\f1e9"; }

.fa-yen-sign:before {
    content: "\f157"; }

.fa-yin-yang:before {
    content: "\f6ad"; }

.fa-yoast:before {
    content: "\f2b1"; }

.fa-youtube:before {
    content: "\f167"; }

.fa-youtube-square:before {
    content: "\f431"; }

.fa-zhihu:before {
    content: "\f63f"; }

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

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

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/webfonts/fa-brands-400.eot");
    src: url("/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/webfonts/fa-brands-400.woff2") format("woff2"), url("/webfonts/fa-brands-400.woff") format("woff"), url("/webfonts/fa-brands-400.ttf") format("truetype"), url("/webfonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400; }
@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/webfonts/fa-regular-400.eot");
    src: url("/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/webfonts/fa-regular-400.woff2") format("woff2"), url("/webfonts/fa-regular-400.woff") format("woff"), url("/webfonts/fa-regular-400.ttf") format("truetype"), url("/webfonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400; }
@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/webfonts/fa-solid-900.eot");
    src: url("/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/webfonts/fa-solid-900.woff2") format("woff2"), url("/webfonts/fa-solid-900.woff") format("woff"), url("/webfonts/fa-solid-900.ttf") format("truetype"), url("/webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900; }
/* The device with borders */

.smartphone {
    position: relative;
    width: 392px;
    height: 760px;
    margin: auto;
    border: 16px black solid;
    border-top-width: 60px;
    border-bottom-width: 60px;
    border-radius: 36px;
}

/* The horizontal line on the top of the device */
.smartphone:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
}

/* The circle on the bottom of the device */
.smartphone:after {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    bottom: -65px;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
}

/* The screen (or content) of the device */
.smartphone .app_content {
    width: 360px;
    height: 640px;
    background: white;
}

/*
 * blueimp Gallery CSS 2.11.1
 * https://github.com/blueimp/Gallery
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */


.blueimp-gallery,
.blueimp-gallery > .slides > .slide > .slide-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Prevent artifacts in Mozilla Firefox: */
    -moz-backface-visibility: hidden;
}
.blueimp-gallery > .slides > .slide > .slide-content {
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    opacity: 1;
}
.blueimp-gallery {
    position: fixed;
    z-index: 999999;
    overflow: hidden;
    background: #000;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    display: none;
    direction: ltr;
    -ms-touch-action: none;
    touch-action: none;
}
.blueimp-gallery-carousel {
    position: relative;
    z-index: auto;
    margin: 1em auto;
    /* Set the carousel width/height ratio to 16/9: */
    padding-bottom: 56.25%;
    box-shadow: 0 0 10px #000;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.blueimp-gallery-display {
    display: block;
    opacity: 1;
}
.blueimp-gallery > .slides {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.blueimp-gallery-carousel > .slides {
    position: absolute;
}
.blueimp-gallery > .slides > .slide {
    position: relative;
    float: left;
    height: 100%;
    text-align: center;
    -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -ms-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.blueimp-gallery,
.blueimp-gallery > .slides > .slide > .slide-content {
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -ms-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}
.blueimp-gallery > .slides > .slide-loading {
    background: url(../img/loading.gif) center no-repeat;
    background-size: 64px 64px;
}
.blueimp-gallery > .slides > .slide-loading > .slide-content {
    opacity: 0;
}
.blueimp-gallery > .slides > .slide-error {
    background: url(../img/error.png) center no-repeat;
}
.blueimp-gallery > .slides > .slide-error > .slide-content {
    display: none;
}
.blueimp-gallery > .prev,
.blueimp-gallery > .next {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 40px;
    height: 40px;
    margin-top: -23px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 60px;
    font-weight: 100;
    line-height: 30px;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 2px #000;
    text-align: center;
    background: #222;
    background: rgba(0, 0, 0, 0.5);
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border: 3px solid #fff;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    border-radius: 23px;
    opacity: 0.5;
    cursor: pointer;
    display: none;
}
.blueimp-gallery > .next {
    left: auto;
    right: 15px;
}
.blueimp-gallery > .close,
.blueimp-gallery > .title {
    position: absolute;
    top: 15px;
    left: 15px;
    margin: 0 40px 0 0;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    text-shadow: 0 0 2px #000;
    opacity: 0.8;
    display: none;
}
.blueimp-gallery > .close {
    padding: 15px;
    right: 15px;
    left: auto;
    margin: -15px;
    font-size: 30px;
    text-decoration: none;
    cursor: pointer;
}
.blueimp-gallery > .play-pause {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 15px;
    height: 15px;
    background: url(../img/play-pause.png) 0 0 no-repeat;
    cursor: pointer;
    opacity: 0.5;
    display: none;
}
.blueimp-gallery-playing > .play-pause {
    background-position: -15px 0;
}
.blueimp-gallery > .prev:hover,
.blueimp-gallery > .next:hover,
.blueimp-gallery > .close:hover,
.blueimp-gallery > .title:hover,
.blueimp-gallery > .play-pause:hover {
    color: #fff;
    opacity: 1;
}
.blueimp-gallery-controls > .prev,
.blueimp-gallery-controls > .next,
.blueimp-gallery-controls > .close,
.blueimp-gallery-controls > .title,
.blueimp-gallery-controls > .play-pause {
    display: block;
    /* Fix z-index issues (controls behind slide element) on Android: */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.blueimp-gallery-single > .prev,
.blueimp-gallery-left > .prev,
.blueimp-gallery-single > .next,
.blueimp-gallery-right > .next,
.blueimp-gallery-single > .play-pause {
    display: none;
}
.blueimp-gallery > .slides > .slide > .slide-content,
.blueimp-gallery > .prev,
.blueimp-gallery > .next,
.blueimp-gallery > .close,
.blueimp-gallery > .play-pause {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Replace PNGs with SVGs for capable browsers (excluding IE<9) */
body:last-child .blueimp-gallery > .slides > .slide-error {
    background-image: url(../img/error.svg);
}
body:last-child .blueimp-gallery > .play-pause {
    width: 20px;
    height: 20px;
    background-size: 40px 20px;
    background-image: url(../img/play-pause.svg);
}
body:last-child .blueimp-gallery-playing > .play-pause {
    background-position: -20px 0;
}

/* IE7 fixes */
*+html .blueimp-gallery > .slides > .slide {
    min-height: 300px;
}
*+html .blueimp-gallery > .slides > .slide > .slide-content {
    position: relative;
}
.bootstrap-tagsinput {
    background-color: #fff;
    border: 1px solid #e5e6e7;
    /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); */
    display: inline-block;
    padding: 4px 6px;
    color: #555;
    vertical-align: middle;
    border-radius: 1px;
    max-width: 100%;
    width: 100%;
    line-height: 22px;
    cursor: text;

}
.bootstrap-tagsinput input {
    border: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    padding: 0 6px;
    margin: 0;
    width: auto;
    max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
    color: #777;
    opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
    color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
    color: #777;
}
.bootstrap-tagsinput input:focus {
    border: none;
    box-shadow: none;
}
.bootstrap-tagsinput .tag {
    margin-right: 2px;
    margin-top: 2px;
    color: white;
    font-size: 14px;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
    margin-left: 8px;
    cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "x";
    padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 5, /usr/virtual/ecommerce.ronca1862.it/app/assets/stylesheets/legalmondo/vendors.scss */
.legalmondo_avatar {
  border-color: #0165ff;
  border-style: solid;
  border-width: 2px;
}
/*
    Common
*/


.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li
{
    display: block;
    padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
    position: absolute;
    left: -999em;
}



/*
    Wizard
*/

.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.wizard.vertical > .steps
{
    display: inline;
    float: left;
    width: 30%;
}

.wizard > .steps > ul > li
{
    width: 25%;
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li
{
    float: left;
}

.wizard.vertical > .steps > ul > li
{
    float: none;
    width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    width: auto;
    margin: 0 0.5em 0.5em;
    padding: 8px;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    background: #eee;
    color: #aaa;
    cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    background: #000000;
    color: #fff;
    cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #aaaaaa;
    color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ed1b2b;
    color: #fff;
}

.wizard > .content
{
    background: #eee;
    display: block;
    margin: 5px 5px 10px 5px;
    min-height: 120px;
    overflow: hidden;
    position: relative;
    width: auto;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard-big.wizard > .content {
    min-height: 320px;
    height: 80%;
}
.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.wizard > .content > .body ul
{
    list-style: disc !important;
}

.wizard > .content > .body ul > li
{
    display: list-item;
}

.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input
{
    display: block;
    border: 1px solid #ccc;
}

.wizard > .content > .body input[type="checkbox"]
{
    display: inline-block;
}

.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content > .body label
{
    display: inline-block;
    margin-bottom: 0.5em;
}

.wizard > .content > .body label.error
{
    color: #8a1f11;
    display: inline-block;
    margin-left: 1.5em;
}

.wizard > .actions
{
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}

.wizard.vertical > .actions
{
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

.wizard > .actions > ul
{
    display: inline-block;
    text-align: right;
}

.wizard > .actions > ul > li
{
    margin: 0 0.5em;
}

.wizard.vertical > .actions > ul > li
{
    margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    background: #000000;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
    background: #eee;
    color: #aaa;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}



/*
    Tabcontrol
*/

.tabcontrol > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.tabcontrol > .steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.tabcontrol > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.tabcontrol > .content > .body ul
{
    list-style: disc !important;
}

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}


@media only screen and (max-width: 600px) {
    .wizard > .steps > ul > li
    {
        width: 100%;
        display: none;
    }

    .wizard > .steps .current
    {
        display: block;
    }
}
/* ========================================================================
 * bootstrap-tour - v0.10.1
 * http://bootstraptour.com
 * ========================================================================
 * Copyright 2012-2013 Ulrich Sossou
 *
 * ========================================================================
 * 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.
 * ========================================================================
 */


.tour-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    background-color: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.tour-step-backdrop {
    position: relative;
    z-index: 1101;
    background: inherit;
}
.tour-step-backdrop > td {
    position: relative;
    z-index: 1101;
}
.tour-step-background {
    position: absolute !important;
    z-index: 1100;
    background: inherit;
    border-radius: 6px;
}
.popover[class*="tour-"] {
    z-index: 1100;
}
.popover[class*="tour-"] .popover-navigation {
    padding: 9px 14px;
}
.popover[class*="tour-"] .popover-navigation [data-role="end"] {
    float: right;
}
.popover[class*="tour-"] .popover-navigation [data-role="prev"],
.popover[class*="tour-"] .popover-navigation [data-role="next"],
.popover[class*="tour-"] .popover-navigation [data-role="end"] {
    cursor: pointer;
}
.popover[class*="tour-"] .popover-navigation [data-role="prev"].disabled,
.popover[class*="tour-"] .popover-navigation [data-role="next"].disabled,
.popover[class*="tour-"] .popover-navigation [data-role="end"].disabled {
    cursor: default;
}
.popover[class*="tour-"].orphan {
    position: fixed;
    margin-top: 0;
}
.popover[class*="tour-"].orphan .arrow {
    display: none;
}
@font-face {
    font-family: "summernote";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(/webfonts/summernote.eot);
    src: url(/webfonts/summernote.eot?#iefix) format("embedded-opentype"), url(/webfonts/summernote.woff2) format("woff2"), url(/webfonts/summernote.woff) format("woff"), url(/webfonts/summernote.ttf) format("truetype");
}
[class^="note-icon"]:before,
[class*=" note-icon"]:before {
    display: inline-block;
    font-family: summernote;
    font-style: normal;
    font-size: inherit;
    text-decoration: inherit;
    text-rendering: auto;
    text-transform: none;
    vertical-align: middle;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    speak: none;
}
.note-icon-fw {
    text-align: center;
    width: 1.25em;
}
.note-icon-border {
    border: solid 0.08em #eee;
    border-radius: 0.1em;
    padding: 0.2em 0.25em 0.15em;
}
.note-icon-pull-left {
    float: left;
}
.note-icon-pull-right {
    float: right;
}
.note-icon.note-icon-pull-left {
    margin-right: 0.3em;
}
.note-icon.note-icon-pull-right {
    margin-left: 0.3em;
}
.note-icon-align::before {
    content: "";
}
.note-icon-align-center::before {
    content: "";
}
.note-icon-align-indent::before {
    content: "";
}
.note-icon-align-justify::before {
    content: "";
}
.note-icon-align-left::before {
    content: "";
}
.note-icon-align-outdent::before {
    content: "";
}
.note-icon-align-right::before {
    content: "";
}
.note-icon-arrow-circle-down::before {
    content: "";
}
.note-icon-arrow-circle-left::before {
    content: "";
}
.note-icon-arrow-circle-right::before {
    content: "";
}
.note-icon-arrow-circle-up::before {
    content: "";
}
.note-icon-arrows-alt::before {
    content: "";
}
.note-icon-arrows-h::before {
    content: "";
}
.note-icon-arrows-v::before {
    content: "";
}
.note-icon-bold::before {
    content: "";
}
.note-icon-caret::before {
    content: "";
}
.note-icon-chain-broken::before {
    content: "";
}
.note-icon-circle::before {
    content: "";
}
.note-icon-close::before {
    content: "";
}
.note-icon-code::before {
    content: "";
}
.note-icon-col-after::before {
    content: "";
}
.note-icon-col-before::before {
    content: "";
}
.note-icon-col-remove::before {
    content: "";
}
.note-icon-eraser::before {
    content: "";
}
.note-icon-float-left::before {
    content: "";
}
.note-icon-float-none::before {
    content: "";
}
.note-icon-float-right::before {
    content: "";
}
.note-icon-font::before {
    content: "";
}
.note-icon-frame::before {
    content: "";
}
.note-icon-italic::before {
    content: "";
}
.note-icon-link::before {
    content: "";
}
.note-icon-magic::before {
    content: "";
}
.note-icon-menu-check::before {
    content: "";
}
.note-icon-minus::before {
    content: "";
}
.note-icon-orderedlist::before {
    content: "";
}
.note-icon-pencil::before {
    content: "";
}
.note-icon-picture::before {
    content: "";
}
.note-icon-question::before {
    content: "";
}
.note-icon-redo::before {
    content: "";
}
.note-icon-rollback::before {
    content: "";
}
.note-icon-row-above::before {
    content: "";
}
.note-icon-row-below::before {
    content: "";
}
.note-icon-row-remove::before {
    content: "";
}
.note-icon-special-character::before {
    content: "";
}
.note-icon-square::before {
    content: "";
}
.note-icon-strikethrough::before {
    content: "";
}
.note-icon-subscript::before {
    content: "";
}
.note-icon-summernote::before {
    content: "";
}
.note-icon-superscript::before {
    content: "";
}
.note-icon-table::before {
    content: "";
}
.note-icon-text-height::before {
    content: "";
}
.note-icon-trash::before {
    content: "";
}
.note-icon-underline::before {
    content: "";
}
.note-icon-undo::before {
    content: "";
}
.note-icon-unorderedlist::before {
    content: "";
}
.note-icon-video::before {
    content: "";
}
.note-editor {
    position: relative;
}
.note-editor .note-dropzone {
    position: absolute;
    display: none;
    z-index: 100;
    color: #87cefa;
    background-color: #fff;
    opacity: 0.95;
}
.note-editor .note-dropzone .note-dropzone-message {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}
.note-editor .note-dropzone.hover {
    color: #098ddf;
}
.note-editor.dragover .note-dropzone {
    display: table;
}
.note-editor .note-editing-area {
    position: relative;
}
.note-editor .note-editing-area .note-editable {
    outline: none;
}
.note-editor .note-editing-area .note-editable sup {
    vertical-align: super;
}
.note-editor .note-editing-area .note-editable sub {
    vertical-align: sub;
}
.note-editor .note-editing-area .note-editable img.note-float-left {
    margin-right: 10px;
}
.note-editor .note-editing-area .note-editable img.note-float-right {
    margin-left: 10px;
}
.note-editor.note-frame,
.note-editor.note-airframe {
    border: 1px solid #00000032;
}
.note-editor.note-frame.codeview .note-editing-area .note-editable,
.note-editor.note-airframe.codeview .note-editing-area .note-editable {
    display: none;
}
.note-editor.note-frame.codeview .note-editing-area .note-codable,
.note-editor.note-airframe.codeview .note-editing-area .note-codable {
    display: block;
}
.note-editor.note-frame .note-editing-area,
.note-editor.note-airframe .note-editing-area {
    overflow: hidden;
}
.note-editor.note-frame .note-editing-area .note-editable,
.note-editor.note-airframe .note-editing-area .note-editable {
    padding: 10px;
    overflow: auto;
    word-wrap: break-word;
}
.note-editor.note-frame .note-editing-area .note-editable[contenteditable="false"],
.note-editor.note-airframe .note-editing-area .note-editable[contenteditable="false"] {
    background-color: #8080801d;
}
.note-editor.note-frame .note-editing-area .note-codable,
.note-editor.note-airframe .note-editing-area .note-codable {
    display: none;
    width: 100%;
    padding: 10px;
    border: none;
    box-shadow: none;
    font-family: Menlo, Monaco, monospace, sans-serif;
    font-size: 14px;
    color: #ccc;
    background-color: #222;
    resize: none;
    outline: none;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    margin-bottom: 0;
}
.note-editor.note-frame.fullscreen,
.note-editor.note-airframe.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 1050;
}
.note-editor.note-frame.fullscreen .note-resizebar,
.note-editor.note-airframe.fullscreen .note-resizebar {
    display: none;
}
.note-editor.note-frame .note-status-output,
.note-editor.note-airframe .note-status-output {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.42857143;
    height: 20px;
    margin-bottom: 0;
    color: #000;
    border: 0;
    border-top: 1px solid #e2e2e2;
}
.note-editor.note-frame .note-status-output:empty,
.note-editor.note-airframe .note-status-output:empty {
    height: 0;
    border-top: 0 solid transparent;
}
.note-editor.note-frame .note-status-output .pull-right,
.note-editor.note-airframe .note-status-output .pull-right {
    float: right !important;
}
.note-editor.note-frame .note-status-output .text-muted,
.note-editor.note-airframe .note-status-output .text-muted {
    color: #777;
}
.note-editor.note-frame .note-status-output .text-primary,
.note-editor.note-airframe .note-status-output .text-primary {
    color: #286090;
}
.note-editor.note-frame .note-status-output .text-success,
.note-editor.note-airframe .note-status-output .text-success {
    color: #3c763d;
}
.note-editor.note-frame .note-status-output .text-info,
.note-editor.note-airframe .note-status-output .text-info {
    color: #31708f;
}
.note-editor.note-frame .note-status-output .text-warning,
.note-editor.note-airframe .note-status-output .text-warning {
    color: #8a6d3b;
}
.note-editor.note-frame .note-status-output .text-danger,
.note-editor.note-airframe .note-status-output .text-danger {
    color: #a94442;
}
.note-editor.note-frame .note-status-output .alert,
.note-editor.note-airframe .note-status-output .alert {
    margin: -7px 0 0 0;
    padding: 7px 10px 2px 10px;
    border-radius: 0;
    color: #000;
    background-color: #f5f5f5;
}
.note-editor.note-frame .note-status-output .alert .note-icon,
.note-editor.note-airframe .note-status-output .alert .note-icon {
    margin-right: 5px;
}
.note-editor.note-frame .note-status-output .alert-success,
.note-editor.note-airframe .note-status-output .alert-success {
    color: #3c763d !important;
    background-color: #dff0d8 !important;
}
.note-editor.note-frame .note-status-output .alert-info,
.note-editor.note-airframe .note-status-output .alert-info {
    color: #31708f !important;
    background-color: #d9edf7 !important;
}
.note-editor.note-frame .note-status-output .alert-warning,
.note-editor.note-airframe .note-status-output .alert-warning {
    color: #8a6d3b !important;
    background-color: #fcf8e3 !important;
}
.note-editor.note-frame .note-status-output .alert-danger,
.note-editor.note-airframe .note-status-output .alert-danger {
    color: #a94442 !important;
    background-color: #f2dede !important;
}
.note-editor.note-frame .note-statusbar,
.note-editor.note-airframe .note-statusbar {
    background-color: #8080801d;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #00000032;
}
.note-editor.note-frame .note-statusbar .note-resizebar,
.note-editor.note-airframe .note-statusbar .note-resizebar {
    padding-top: 1px;
    height: 9px;
    width: 100%;
    cursor: ns-resize;
}
.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar,
.note-editor.note-airframe .note-statusbar .note-resizebar .note-icon-bar {
    width: 20px;
    margin: 1px auto;
    border-top: 1px solid #00000032;
}
.note-editor.note-frame .note-statusbar.locked .note-resizebar,
.note-editor.note-airframe .note-statusbar.locked .note-resizebar {
    cursor: default;
}
.note-editor.note-frame .note-statusbar.locked .note-resizebar .note-icon-bar,
.note-editor.note-airframe .note-statusbar.locked .note-resizebar .note-icon-bar {
    display: none;
}
.note-editor.note-frame .note-placeholder,
.note-editor.note-airframe .note-placeholder {
    padding: 10px;
}
.note-editor.note-airframe {
    border: 0;
}
.note-editor.note-airframe .note-editing-area .note-editable {
    padding: 0;
}
.note-popover.popover {
    display: none;
    max-width: none;
}
.note-popover.popover .popover-content a {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.note-popover.popover .arrow {
    left: 20px !important;
}
.note-toolbar {
    position: relative;
}
.note-popover .popover-content,
.note-editor .note-toolbar {
    margin: 0;
    padding: 0 0 5px 5px;
}
.note-popover .popover-content > .note-btn-group,
.note-editor .note-toolbar > .note-btn-group {
    margin-top: 5px;
    margin-left: 0;
    margin-right: 5px;
}
.note-popover .popover-content .note-btn-group .note-table,
.note-editor .note-toolbar .note-btn-group .note-table {
    min-width: 0;
    padding: 5px;
}
.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker,
.note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker {
    font-size: 18px;
}
.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher,
.note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {
    position: absolute !important;
    z-index: 3;
    width: 10em;
    height: 10em;
    cursor: pointer;
}
.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted,
.note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {
    position: relative !important;
    z-index: 1;
    width: 5em;
    height: 5em;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC")
    repeat;
}
.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted,
.note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {
    position: absolute !important;
    z-index: 2;
    width: 1em;
    height: 1em;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC")
    repeat;
}
.note-popover .popover-content .note-style .dropdown-style blockquote,
.note-popover .popover-content .note-style .dropdown-style pre,
.note-editor .note-toolbar .note-style .dropdown-style blockquote,
.note-editor .note-toolbar .note-style .dropdown-style pre {
    margin: 0;
    padding: 5px 10px;
}
.note-popover .popover-content .note-style .dropdown-style h1,
.note-popover .popover-content .note-style .dropdown-style h2,
.note-popover .popover-content .note-style .dropdown-style h3,
.note-popover .popover-content .note-style .dropdown-style h4,
.note-popover .popover-content .note-style .dropdown-style h5,
.note-popover .popover-content .note-style .dropdown-style h6,
.note-popover .popover-content .note-style .dropdown-style p,
.note-editor .note-toolbar .note-style .dropdown-style h1,
.note-editor .note-toolbar .note-style .dropdown-style h2,
.note-editor .note-toolbar .note-style .dropdown-style h3,
.note-editor .note-toolbar .note-style .dropdown-style h4,
.note-editor .note-toolbar .note-style .dropdown-style h5,
.note-editor .note-toolbar .note-style .dropdown-style h6,
.note-editor .note-toolbar .note-style .dropdown-style p {
    margin: 0;
    padding: 0;
}
.note-popover .popover-content .note-color-all .note-dropdown-menu,
.note-editor .note-toolbar .note-color-all .note-dropdown-menu {
    min-width: 337px;
}
.note-popover .popover-content .note-color .dropdown-toggle,
.note-editor .note-toolbar .note-color .dropdown-toggle {
    width: 20px;
    padding-left: 5px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette {
    display: inline-block;
    margin: 0;
    width: 160px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette:first-child,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette:first-child {
    margin: 0 5px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-palette-title,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-palette-title {
    font-size: 12px;
    margin: 2px 7px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset,
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select {
    font-size: 11px;
    margin: 3px;
    padding: 0 3px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset:hover,
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select:hover,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset:hover,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select:hover {
    background: #eee;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-row,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-row {
    height: 20px;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select-btn,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select-btn {
    display: none;
}
.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn,
.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn {
    border: 1px solid #eee;
}
.note-popover .popover-content .note-para .note-dropdown-menu,
.note-editor .note-toolbar .note-para .note-dropdown-menu {
    min-width: 228px;
    padding: 5px;
}
.note-popover .popover-content .note-para .note-dropdown-menu > div + div,
.note-editor .note-toolbar .note-para .note-dropdown-menu > div + div {
    margin-left: 5px;
}
.note-popover .popover-content .note-dropdown-menu,
.note-editor .note-toolbar .note-dropdown-menu {
    min-width: 160px;
}
.note-popover .popover-content .note-dropdown-menu.right,
.note-editor .note-toolbar .note-dropdown-menu.right {
    right: 0;
    left: auto;
}
.note-popover .popover-content .note-dropdown-menu.right::before,
.note-editor .note-toolbar .note-dropdown-menu.right::before {
    right: 9px;
    left: auto !important;
}
.note-popover .popover-content .note-dropdown-menu.right::after,
.note-editor .note-toolbar .note-dropdown-menu.right::after {
    right: 10px;
    left: auto !important;
}
.note-popover .popover-content .note-dropdown-menu.note-check a i,
.note-editor .note-toolbar .note-dropdown-menu.note-check a i {
    color: #00bfff;
    visibility: hidden;
}
.note-popover .popover-content .note-dropdown-menu.note-check a.checked i,
.note-editor .note-toolbar .note-dropdown-menu.note-check a.checked i {
    visibility: visible;
}
.note-popover .popover-content .note-fontsize-10,
.note-editor .note-toolbar .note-fontsize-10 {
    font-size: 10px;
}
.note-popover .popover-content .note-color-palette,
.note-editor .note-toolbar .note-color-palette {
    line-height: 1;
}
.note-popover .popover-content .note-color-palette div .note-color-btn,
.note-editor .note-toolbar .note-color-palette div .note-color-btn {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
}
.note-popover .popover-content .note-color-palette div .note-color-btn:hover,
.note-editor .note-toolbar .note-color-palette div .note-color-btn:hover {
    transform: scale(1.2);
    transition: all 0.2s;
}
.note-modal .modal-dialog {
    outline: 0;
    border-radius: 5px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.note-modal .form-group {
    margin-left: 0;
    margin-right: 0;
}
.note-modal .note-modal-form {
    margin: 0;
}
.note-modal .note-image-dialog .note-dropzone {
    min-height: 100px;
    font-size: 30px;
    line-height: 4;
    color: #d3d3d3;
    text-align: center;
    border: 4px dashed #d3d3d3;
    margin-bottom: 10px;
}
@-moz-document url-prefix() {
    .note-modal .note-image-input {
        height: auto;
    }
}
.note-placeholder {
    position: absolute;
    display: none;
    color: gray;
}
.note-handle .note-control-selection {
    position: absolute;
    display: none;
    border: 1px solid #000;
}
.note-handle .note-control-selection > div {
    position: absolute;
}
.note-handle .note-control-selection .note-control-selection-bg {
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-opacity: 0.3;
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    opacity: 0.3;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
    filter: alpha(opacity=30);
}
.note-handle .note-control-selection .note-control-handle,
.note-handle .note-control-selection .note-control-sizing,
.note-handle .note-control-selection .note-control-holder {
    width: 7px;
    height: 7px;
    border: 1px solid #000;
}
.note-handle .note-control-selection .note-control-sizing {
    background-color: #000;
}
.note-handle .note-control-selection .note-control-nw {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}
.note-handle .note-control-selection .note-control-ne {
    top: -5px;
    right: -5px;
    border-bottom: none;
    border-left: none;
}
.note-handle .note-control-selection .note-control-sw {
    bottom: -5px;
    left: -5px;
    border-top: none;
    border-right: none;
}
.note-handle .note-control-selection .note-control-se {
    right: -5px;
    bottom: -5px;
    cursor: se-resize;
}
.note-handle .note-control-selection .note-control-se.note-control-holder {
    cursor: default;
    border-top: none;
    border-left: none;
}
.note-handle .note-control-selection .note-control-selection-info {
    right: 0;
    bottom: 0;
    padding: 5px;
    margin: 5px;
    color: #fff;
    background-color: #000;
    font-size: 12px;
    border-radius: 5px;
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
    filter: alpha(opacity=70);
}
.note-hint-popover {
    min-width: 100px;
    padding: 2px;
}
.note-hint-popover .popover-content {
    padding: 3px;
    max-height: 150px;
    overflow: auto;
}
.note-hint-popover .popover-content .note-hint-group .note-hint-item {
    display: block !important;
    padding: 3px;
}
.note-hint-popover .popover-content .note-hint-group .note-hint-item.active,
.note-hint-popover .popover-content .note-hint-group .note-hint-item:hover {
    display: block;
    clear: both;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    background-color: #428bca;
    outline: 0;
    cursor: pointer;
}
