/*!
 * jQuery UI Bootstrap (0.5)
 * http://addyosmani.github.com/jquery-ui-bootstrap
 *
 * Copyright 2012 - 2013, Addy Osmani
 * Dual licensed under the MIT or GPL Version 2 licenses.
 *
 * Portions copyright jQuery UI & Twitter Bootstrap
 */


/* Layout helpers
----------------------------------*/

.ui-helper-hidden {
	display: none;
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}

.ui-helper-clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.ui-helper-clearfix {
	/*display: inline-block; */
	display: block;
	min-height: 0; /* support: IE7 */
}

/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix {
	height:1%;
}

/* end clearfix */
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0);
}
.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */

.ui-widget-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*
 * jQuery UI Resizable 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/resizable/
 */

.ui-resizable {
	position: relative;
}

.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	z-index: 99999;
	display: block;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}

.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}

.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}

.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}

.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}

.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}

.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}

.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}

.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}


/*
 * jQuery UI Selectable 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/selectable/
 */

.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}


/*
 * jQuery UI CSS Framework 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * 
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */

/* Component containers
----------------------------------*/

.ui-widget {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
}

.ui-widget .ui-widget {
	font-size: 13px;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: inherit;
}

.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff url(/static/assets/stylesheets/ui-bg_glass_75_ffffff_1x400.png) 50% 50% repeat-x;
	color: #404040;
}

.ui-widget-header {
	font-weight: bold;
	border-color: #0064cd #0064cd #003f81;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border: 1px solid #666;

}

.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	background-color: #e6e6e6;
	background-repeat: no-repeat;
	background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); /* Firefox 3.6 */
	background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* Opera 11.10+ */
	background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* CSS3 Compliant */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); /* IE8 */
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	color: #333333;
	font-size: 13px;
	line-height: normal;
	border: 1px solid #ccc;
	border-bottom-color: #bbb;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); /* Safari 4 */
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); /* Firefox 3.6 */
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-webkit-transition: 0.1s linear background-image;
	-moz-transition: 0.1s linear background-image;
	-o-transition: 0.1s linear background-image;
	transition: 0.1s linear background-image;
	overflow: visible;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	background-position: 0 -15px;
	color: #333333;
	text-decoration: none;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
	color: #212121;
	text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	font-weight: normal;
	color: #212121;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

.ui-widget :active {
	outline: none;
}

/* Interaction Cues
----------------------------------*/

.ui-state-highlight p,
.ui-state-error p,
.ui-state-default p {
	font-size: 13px;
	font-weight: normal;
	line-height: 18px;
	margin:7px 15px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	position: relative;
	margin-bottom: 18px;
	color: #404040;
	background-color: #eedc94;
	background-repeat: repeat-x;
	background-image: -webkit-linear-gradient(top, #fceec1, #eedc94); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #fceec1, #eedc94); /* Firefox 3.6 */
	background-image: -o-linear-gradient(top, #fceec1, #eedc94); /* Opera 11.10+ */
	background-image: linear-gradient(top, #fceec1, #eedc94); /* CSS3 Compliant */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0); /* IE8 */
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	border-color: #eedc94 #eedc94 #e4c652;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	border-width: 1px;
	border-style: solid;
	-webkit-border-radius: 4px; /* Safari 4 */
	-moz-border-radius: 4px; /* Firefox 3.6 */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); /* Safari 4 */
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); /* Firefox 3.6 */
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	position: relative;
	margin-bottom: 18px;
	color: #ffffff;
	border-width: 1px;
	border-style: solid;
	-webkit-border-radius: 4px; /* Safari 4 */
	-moz-border-radius: 4px; /* Firefox 3.6 */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); /* Safari 4 */
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); /* Firefox 3.6 */
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
	background-color: #c43c35;
	background-repeat: repeat-x;
	background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); /* Firefox 3.6 */
	background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); /* Opera 11.10+ */
	background-image: linear-gradient(top, #ee5f5b, #c43c35); /* CSS3 Compliant */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0); /* IE8 */
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	border-color: #c43c35 #c43c35 #882a25;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70);
	font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35);
	background-image: none;
}

.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */

.ui-icon {
	width: 16px;
	height: 16px;
	background-image: url(/static/assets/stylesheets/ui-icons_222222_256x240.png);
}

.ui-widget-content .ui-icon {
	background-image: url(/static/assets/stylesheets/ui-icons_222222_256x240.png);
}

.ui-widget-header .ui-icon {
	background-image: url(/static/assets/stylesheets/ui-icons_222222_256x240.png);
}

.ui-state-default .ui-icon {
	background-image: url(/static/assets/stylesheets/ui-icons_888888_256x240.png);
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(/static/assets/stylesheets/ui-icons_454545_256x240.png);
}

.ui-state-active .ui-icon {
	background-image: url(/static/assets/stylesheets/ui-icons_454545_256x240.png);
}

.ui-state-highlight .ui-icon {
	background-image: url(/static/assets/stylesheets/ui-icons_2e83ff_256x240.png);
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(/static/assets/stylesheets/ui-icons_f6cf3b_256x240.png);
}

/* positioning */

.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }

.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }

.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }

.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }

.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }

.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }

.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }

.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }

.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }

.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }

.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }

.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }

.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }

.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }

.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */

.ui-corner-all {
	-webkit-border-radius: 4px; /* Safari 4 */
	-moz-border-radius: 4px; /* Firefox 3.6 */
	border-radius: 4px;
}

.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	-webkit-border-top-left-radius: 4px; /* Safari 4 */
	-moz-border-radius-topleft: 4px; /* Firefox 3.6 */
	border-top-left-radius: 4px;
}

.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	-webkit-border-top-right-radius: 4px; /* Safari 4 */
	-moz-border-radius-topright: 4px; /* Firefox 3.6 */
	border-top-right-radius: 4px;
}

.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	-webkit-border-bottom-left-radius: 4px; /* Safari 4 */
	-moz-border-radius-bottomleft: 4px; /* Firefox 3.6 */
	border-bottom-left-radius: 4px;
}

.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	-webkit-border-bottom-right-radius: 4px; /* Safari 4 */
	-moz-border-radius-bottomright: 4px; /* Firefox 3.6 */
	border-bottom-right-radius: 4px;
}

/* Overlays */

.ui-widget-overlay {
	background: #aaaaaa url(/static/assets/stylesheets/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
	opacity: .30;
	filter:Alpha(Opacity=30);
}

.ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	background: #aaaaaa url(/static/assets/stylesheets/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
	opacity: .30;
	filter:Alpha(Opacity=30);
	-webkit-border-radius: 8px; /* Safari 4 */
	-moz-border-radius: 8px; /* Firefox 3.6 */
	border-radius: 8px;
}


/*
 * jQuery UI Accordion 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/accordion/
 */

/* IE/Win - Fix animation bug - #4615 */

.ui-accordion {
	width: 100%;
}
.ui-accordion .ui-accordion-header {
	cursor: pointer;
	position: relative;
	margin-top: 1px;
	font-weight:bold;
}

.ui-accordion .ui-accordion-li-fix {
	display: inline;
}

.ui-accordion .ui-accordion-header-active {
	border-bottom: 0 !important;
}

.ui-accordion .ui-accordion-header a {
	display: block;
	font-size: 1em;
	padding: .5em .5em .5em 1.7em;
}
.ui-accordion-icons .ui-accordion-header a {
	padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	margin-top: -2px;
	position: relative;
	top: 1px;
	margin-bottom: 2px;
	overflow: auto;
	display: none;
}

.ui-accordion .ui-accordion-content-active {
	display: block;
}


/*
 * jQuery UI Autocomplete 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/autocomplete/
 */

.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}


/*
 * jQuery UI Button 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */

.ui-button {
	cursor: pointer;
	display: inline-block;
	background-color: #F5F5F5;
	background-repeat: no-repeat;
	background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); /* Firefox 3.6 */
	background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* Opera 11.10+ */
	background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* CSS3 Compliant */
	padding: 5px 14px 6px;
	margin: 0px 4px 0px 0px;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	color: #333;
	font-size: 14px;
	line-height: normal;
	border: 1px solid #ccc;
	border-bottom-color: #bbb;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); /* Safari 4 */
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); /* Firefox 3.6 */
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-webkit-transition: 0.1s linear background-image;
	-moz-transition: 0.1s linear background-image;
	-o-transition: 0.1s linear background-image;
	transition: 0.1s linear background-image;
	overflow: visible; /* the overflow property removes extra width in IE */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	vertical-align: middle;
}

.ui-button:hover {
	color: #333;
	text-decoration: none;
	background-color:#e6e6e6;
	background-position: 0 -15px;
}

.ui-btn-large{
	padding: 11px 19px;
	font-size: 17.5px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.ui-btn-small {
	padding: 2px 10px;
	font-size: 11.9px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.ui-btn-mini {
	padding: 0 6px;
	font-size: 10.5px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}


.ui-button-text-icon-primary .ui-button-icon-primary {
    float:left;
}

.ui-button-text-icon-primary {
    padding:2px 7px 3px;
}

.ui-button-primary {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #006DCC;
	background-image: -moz-linear-gradient(top, #0088CC, #0044CC); /* Firefox 3.6 */
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088CC), to(#0044CC));
    background-image: -webkit-linear-gradient(top, #0088CC, #0044CC); /* Safari 5.1+, Chrome 10+ */
	background-image: -o-linear-gradient(top, #0088CC, #0044CC); /* Opera 11.10+ */
    background-image: linear-gradient(to bottom, #0088CC, #0044CC);/* CSS3 Compliant */
	background-repeat: repeat-x;
	border-color: #0044CC #0044CC #003f81;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088CC', endColorstr='#0044CC', GradientType=0); /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.ui-button-warning {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #faa732;
	background-image: -moz-linear-gradient(top, #fbb450, #f89406);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
	background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
	background-image: -o-linear-gradient(top, #fbb450, #f89406);
	background-image: linear-gradient(to bottom, #fbb450, #f89406);
	background-repeat: repeat-x;
	border-color: #f89406 #f89406 #ad6704;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);/* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.ui-button-info {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #49afcd;
	background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
	background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
	background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
	background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
	background-repeat: repeat-x;
	border-color: #2f96b4 #2f96b4 #1f6377;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);/* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.ui-button-danger {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #da4f49;
	background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
	background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
	background-repeat: repeat-x;
	border-color: #bd362f #bd362f #802420;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);/* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.ui-button-inverse {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #363636;
	background-image: -moz-linear-gradient(top, #444444, #222222);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
	background-image: -webkit-linear-gradient(top, #444444, #222222);
	background-image: -o-linear-gradient(top, #444444, #222222);
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
	border-color: #222222 #222222 #000000;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#222222', GradientType=0);/* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.ui-button-success {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #57a957;
    background-image: -moz-linear-gradient(top, #62c462, #57a957); /* Firefox 3.6 */
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
	background-image: -webkit-linear-gradient(top, #62c462, #57a957); /* Safari 5.1+, Chrome 10+ */
	background-image: -o-linear-gradient(top, #62c462, #57a957); /* Opera 11.10+ */
	background-image: linear-gradient(to bottom, #62c462, #57a957); /* CSS3 Compliant */
	background-repeat: repeat-x;
	border-color: #57a957 #57a957 #3d773d;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0); /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.ui-button-error {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #c43c35;
	background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); /* Firefox 3.6 */
	background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); /* Opera 11.10+ */
	background-image: linear-gradient(top, #ee5f5b, #c43c35); /* CSS3 Compliant */
	background-repeat: repeat-x;
	border-color: #c43c35 #c43c35 #882a25;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0); /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.ui-button-primary:hover,
.ui-button-success:hover,
.ui-button-info:hover,
.ui-button-danger:hover, 
.ui-button-warning:hover,
.ui-button-inverse:hover{
	color: #ffffff;
	text-decoration: none;
	background-position: 0 -15px;
}

.ui-button-primary:hover{
	background-color: #0044CC;
}

.ui-button-success:hover{
	background-color: #51A351;
}

.ui-button-info:hover{
	background-color: #2F96B4;
}

.ui-button-danger:hover{
	background-color: #BD362F;
}

.ui-button-warning:hover{
	background-color: #F89406;
}

.ui-button-inverse:hover{
	background-color: #222222;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}

/* button elements seem to need a little more width */
.ui-button-icons-only {
	width: 3.4em;
}

button.ui-button-icons-only {
	width: 3.7em;
}

.ui-button-text-icon-primary .ui-button-icon-primary.ui-icon {
    margin-top:5px;
}
/*button text element */

.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999px;
	display:none; /*tempfix*/
}

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}

.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}

/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/*button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
    margin-bottom: 0;
    margin-top: 0;
    top: 50%;
}

.ui-button-icon-only .ui-icon {
	left: 50%;
	/* chrome margin*/
	margin-left: -8px;
	/* firefox margin*/
    margin-right: -6px;
}

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/*button sets*/

.ui-buttonset {
	margin-right: 7px;
}

.ui-buttonset .ui-state-active {
	color: #ffffff;
	background-color: #0064cd;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #049cdb, #0064cd); /* Firefox 3.6 */
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#049cdb), to(#0064cd));
    background-image: -webkit-linear-gradient(top, #049cdb, #0064cd); /* Safari 5.1+, Chrome 10+ */
	background-image: -o-linear-gradient(top, #049cdb, #0064cd); /* Opera 11.10+ */
    background-image: linear-gradient(to bottom, #049cdb, #0064cd);/* CSS3 Compliant */
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0); /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	border-color: #0064cd #0064cd #003f81;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.4em;
}

/* reset extra padding in Firefox */
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
} 


/*
 * jQuery UI Menu 1.10.1
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */

.ui-menu {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: block;
	outline: none;
}

.ui-menu .ui-menu{
	margin-top: -3px;
	position: absolute;
	list-style:none;
}

/*
* Bug inline with IE sub menu
*/
/* IE9, IE10 */
@media screen and (min-width:0\0) {
	.ui-menu li {
	  list-style-type: none;
	  display: inline;
	  line-height: 0;
	}

	li.ui-menu-item { 
	  /* This fixes the IE10 issue (jQuery UI Issue #8844)*/
	  list-style-type: none;
	}
}

/*******/

.ui-menu .ui-menu-item {
	margin: 0;
	padding: 0;
	width: 100%;
	list-style:none;
}

.ui-menu .ui-menu-divider {
	margin: 5px -2px 5px -2px;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}

.ui-menu .ui-menu-item a {
	text-decoration: none;
	display: block;
	padding: 2px .4em;
	line-height: 1.5;
	min-height: 0; /* support: IE7 */
	font-weight: normal;
}

.ui-menu .ui-menu-item a.ui-corner-all{
	-webkit-border-radius: 0px; /* Safari 4 */
    -moz-border-radius: 0px; /* Firefox 3.6 */
    border-radius: 0px;
}

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active,
.ui-menu .ui-menu-item a.ui-widget-content{
	font-weight: bold;
	margin: 0;
	color: #ffffff;
	background: #0081C2;
	background-color: #0081C2;
	background-repeat: repeat-x;
	background-image: -webkit-linear-gradient(top, #0088CC, #0077B3); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #0088CC, #0077B3); /* Firefox 3.6 */
	background-image: -o-linear-gradient(top, #0088CC, #0077B3); /* Opera 11.10+ */
	background-image: linear-gradient(to bottom, #0088CC, #0077B3); /* CSS3 Compliant */
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	border-color: #0088CC #0088CC #0077B3;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088CC', endColorstr='#0077B3', GradientType=0); /* IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* Fix problem with border in ui-state-active */
.ui-menu .ui-menu-item a.ui-state-active {
	padding: 1px .4em;
}

.ui-menu .ui-state-disabled {
	font-weight: normal;
	margin: .4em 0 .2em;
	line-height: 1.5;
}

.ui-menu .ui-state-disabled a {
	cursor: default;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}

.ui-menu-icons .ui-menu-item a {
	position: relative;
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: .2em;
	left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	position: static;
	float: right;
}

.ui-menu {
	width: 200px;
	margin-bottom: 2em;
}


/*
 * jQuery UI spinner 1.10.0
 *
* Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */

.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}

.ui-spinner-input {
	border: none;
	background: none;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}

.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}

/* more specificity required here to overide default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}

/* vertical centre icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}

.ui-spinner-up {
	top: 0;
}

.ui-spinner-down {
	bottom: 0;
}

/* need to fix icons sprite */
.ui-spinner .ui-icon-triangle-1-s {
	background-position: -65px -16px;
}


/*
 * jQuery UI Dialog 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */

.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	width: 300px;
	overflow: hidden;
	outline: 0;
	background-clip: padding-box;
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 6px 6px 6px 6px;
	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); /* Safari 4 */
	-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); /* Firefox 3.6 */
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	/*left: 50%;
	margin-left: -280px;*/
	outline: medium none;
	/*top: 10%;
	width: 560px;*/
	z-index: 1050;
}
.ui-dialog .ui-dialog-titlebar {
	/*padding: .4em 1em;*/
	position: relative;
	padding: 5px 15px;
	border: 0 0 0 1px solid;
	border-color: white;
	padding: 5px 15px;
	font-size: 18px;
	text-decoration: none;
	background: none;
	-webkit-border-bottom-right-radius: 0; /* Safari 4 */
	-moz-border-radius-bottomright: 0; /* Firefox 3.6 */
	border-bottom-right-radius: 0;
	-webkit-border-bottom-left-radius: 0; /* Safari 4 */
	-moz-border-radius-bottomleft: 0; /* Firefox 3.6 */
	border-bottom-left-radius: 0;
	border-bottom: 1px solid #ccc;
}
.ui-dialog .ui-dialog-title {
	float: left;
	color: #404040;
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 5px;
	text-overflow: ellipsis;
	overflow: hidden;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 19px;
	margin: -20px 0 0 0;
	padding: 1px;
	height: 18px;
	font-size: 20px;
	font-weight: bold;
	line-height: 13.5px;
	text-shadow: 0 1px 0 #ffffff;
	filter:alpha(opacity=25);
	-khtml-opacity: 0.25;
	-moz-opacity: 0.25;
	opacity: 0.25;
	background: none;
	border-width: 0;
	border: none;
	-webkit-box-shadow: none; /* Safari 4 */
	-moz-box-shadow: none; /* Firefox 3.6 */
	box-shadow: none;
}

.ui-dialog .ui-dialog-titlebar-close span {
	display: block;
	margin: 1px;
	text-indent: 9999px;
}

.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
	padding: 1px;
	filter:alpha(opacity=90);
	-moz-opacity: 0.90;
	opacity: 0.90;	 
}

.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin: .5em 0 0 0;
	background-color: #f5f5f5;
	padding: 5px 15px 5px;
	border-top: 1px solid #ddd;
	-webkit-border-radius: 0 0 6px 6px; /* Safari 4 */
	-moz-border-radius: 0 0 6px 6px; /* Firefox 3.6 */
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: inset 0 1px 0 #ffffff; /* Safari 4 */
	-moz-box-shadow: inset 0 1px 0 #ffffff; /* Firefox 3.6 */
	box-shadow: inset 0 1px 0 #ffffff;
	margin-bottom: 0;

}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}

.ui-dialog .ui-resizable-se {
	width: 14px;
	height: 14px;
	right: 3px;
	bottom: 3px;
}

.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}

.ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
	color: #ffffff;
	background-color: #0064cd;
	background-repeat: repeat-x;
	background-image: -webkit-linear-gradient(top, #049cdb, #0064cd); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #049cdb, #0064cd); /* Firefox 3.6 */
	background-image: -o-linear-gradient(top, #049cdb, #0064cd); /* Opera 11.10+ */
	background-image: linear-gradient(top, #049cdb, #0064cd); /* CSS3 Compliant */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0); /* IE8 */
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	border-color: #0064cd #0064cd #003f81;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}


/*
 * jQuery UI Slider 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */

.ui-slider {
	position: relative;
	text-align: left;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}

.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
	color: #ffffff;
	background-color: #0e90d2;
	background-image: -moz-linear-gradient(top, #149bdf, #0480be);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
	background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
	background-image: -o-linear-gradient(top, #149bdf, #0480be);
	background-image: linear-gradient(to bottom, #149bdf, #0480be);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: width 0.6s ease;
	-moz-transition: width 0.6s ease;
	-o-transition: width 0.6s ease;
	transition: width 0.6s ease;
}

.ui-slider-horizontal {
	height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}


/*
 * jQuery UI Tabs 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/tabs/
 */

.ui-tabs {
	position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	border: 0;
	-webkit-border-radius: 0; /* Safari 4 */
	-moz-border-radius: 0; /* Firefox 3.6 */
	border-radius: 0;
}

.ui-tabs .ui-tabs-nav {
	margin-bottom: 5px;
	border: solid #ddd;
	border-width: 0 0 1px 0;
	-webkit-border-radius: 0; /* Safari 4 */
	-moz-border-radius: 0; /* Firefox 3.6 */
	border-radius: 0;
	background: none;
}

.ui-tabs .ui-tabs-nav li {
	position: relative;
	top: 0;
	float: left;
	margin-right: 2px;
	margin-bottom: -1px;
	border: 0;
	list-style: none;
	white-space: nowrap;
	background: none;
}

.ui-tabs-nav .ui-state-default {
	border: 0;
	-webkit-box-shadow: none;  /* Safari 4 */
	-moz-box-shadow: none;  /* Firefox 3.6 */
	box-shadow: none;
}

.ui-tabs .ui-tabs-nav li a {
	float: left;
	border: 1px solid #fff;
	border-bottom: 1px solid #ddd;
	-webkit-border-radius: 4px 4px 0 0; /* Safari 4 */
	-moz-border-radius: 4px 4px 0 0; /* Firefox 3.6 */
	border-radius: 4px 4px 0 0;
	padding: 8px 12px;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	color: #0069D6;
	background: none;
}

.ui-tabs .ui-tabs-nav li a:hover {
	border: 1px solid whiteSmoke;
	border-bottom: 1px solid #ddd;
	background-color: whiteSmoke;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
	border: 1px solid #ddd;
	border-bottom: 1px solid #fff;
	background-color: #fff;
	color: #555;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active:hover {
	background: #fff;
	cursor: text;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
	cursor: text;
}

/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
	display: block;
	margin: 1em 0;
	border: 0;
	-webkit-border-radius: 0; /* Safari 4 */
	-moz-border-radius: 0; /* Firefox 3.6 */
	border-radius: 0;
	padding: 1px 0;
	background: none;
}

.ui-tabs .ui-tabs-hide {
	display: none !important;
}

/* IE fix for background inheritance from ui-widget */
.ui-tabs .ui-tabs-nav li {
	filter:none;
}


/*
 * jQuery UI Tooltip 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/tooltip/
 */

.ui-tooltip {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    position: absolute;
    visibility: visible;
    z-index: 1024;
    max-width: 200px;
}

.ui-tooltip {
    background: #000000;
    border: 1px solid #000000;
}

.ui-tooltip {
    color: #FFFFFF;
    padding: 3px 8px;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: inset 0 1px 0 #000000; /* Safari 4 */
    -moz-box-shadow: inset 0 1px 0 #000000; /* Firefox 3.6 */
    box-shadow: inset 0 1px 0 #000000;
    border-radius: 4px 4px 4px 4px;
}

body .ui-tooltip {
	border-width: 1px;
}

.arrow {
    overflow: hidden;
    position: absolute;
    margin-left: 0;
    height: 20px;
    width: 20px;
}

.arrow.bottom {
    top: 100%;
    left: 38%;
}

.arrow.top {
    top: -50%;
    bottom: 22px;
    left: 42%;
}

.arrow.left {
    top : 25%;
    left: -15%;
    right: 0;
    bottom:-16px;
}

.arrow.right {
    top: 26%;
    left: 100%;
    right: 0;
    bottom:-16px;
    margin-left: 1px;
}

.arrow:after {
    content : " " ;
    position : absolute ;
    height : 0 ;
    left:0;
    top: 0;
    width: 0;
    margin-left : 0 ;
    bottom : 12px ;
    box-shadow: 6px 5px 9px -9px black;
}

.arrow.bottom:after {
    border-top:8px solid #000000;
    border-right:8px solid transparent;
    border-bottom:8px solid transparent;
    border-left:8px solid transparent;
}

.arrow.top:after {
    border-top:6px solid transparent;
    border-right:6px solid transparent;
    border-bottom:6px solid #000000;
    border-left:6px solid transparent;
}

.arrow.left:after{
    width:0;
    border-top: 6px solid transparent;
    border-right: 6px solid #000000;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
}

.arrow.right:after{
    width:0;
    border-top: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #000000;
}

/*
 * jQuery UI Datepicker 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/datepicker/
 */

.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}

.ui-datepicker .ui-datepicker-header {
	position:relative;
	padding: .2em 0;
	border: 0;
	font-weight: bold;
	width: 100%;
	padding: 4px 0;
	background-color: #f5f5f5;
	color: #808080;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	/*top: 1px;*/
}

.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}

.ui-datepicker .ui-datepicker-next {
	right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
	/*left:1px;*/
}

.ui-datepicker .ui-datepicker-next-hover {
	/*right:1px;*/
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}

.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin:0 0 .4em;
}

.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}

.ui-datepicker td {
	border: 0;
	padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding:0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow:visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */

.ui-datepicker.ui-datepicker-multi {
	width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
	border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}

.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0em;
}

/* RTL support */

.ui-datepicker-rtl {
	direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: right;
}

.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
	display: none; /*sorry for IE5*/
	display/**/: block; /*sorry for IE5*/
	position: absolute; /*must have*/
	z-index: -1; /*must have*/
	filter: mask(); /*must have*/
	top: -4px; /*must have*/
	left: -4px; /*must have*/
	width: 200px; /*must have*/
	height: 200px; /*must have*/
}

.ui-datepicker th {
	font-weight: bold;
	color: gray;
}

.ui-datepicker-today a:hover {
	background-color: #808080;
	color: #ffffff;

}
.ui-datepicker-today a {
	background-color: #BFBFBF;
	cursor: pointer;
	padding: 0 4px;
	margin-bottom: 0;
}

.ui-datepicker td a {
	margin-bottom: 0;
	border: 0;
}

.ui-datepicker td:hover {
	color: #ffffff;
}

.ui-datepicker td .ui-state-default {
	border: 0;
	background:none;
	margin-bottom: 0;
	padding: 5px;
	color: gray;
	text-align: center;
	filter: none;
}

.ui-datepicker td .ui-state-active {
	background: #bfbfbf;
	margin-bottom: 0;
	font-size: normal;
	text-shadow: 0;
	color: #ffffff;
	-webkit-border-radius: 4px; /* Safari 4 */
	-moz-border-radius: 4px; /* Firefox 3.6 */
	border-radius: 4px;
}

.ui-datepicker td .ui-state-hover {
	color: #ffffff;
	background: #0064cd;
	background-color: #0064cd;
	background-repeat: repeat-x;
	background-image: -webkit-linear-gradient(top, #049cdb, #0064cd); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #049cdb, #0064cd); /* Firefox 3.6 */
	background-image: -o-linear-gradient(top, #049cdb, #0064cd); /* Opera 11.10+ */
	background-image: linear-gradient(top, #049cdb, #0064cd); /* CSS3 Compliant */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0); /* IE8 */
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	border-color: #0064cd #0064cd #003f81;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	-webkit-border-radius: 4px; /* Safari 4 */
	-moz-border-radius: 4px; /* Firefox 3.6 */
	border-radius: 4px;
}


/*
 * jQuery UI Progressbar 1.10.0
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */

.ui-progressbar {
	height:2em;
	margin-bottom: 20px;
	border:0px;
	overflow: hidden;
	background-color: #f7f7f7;
	background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
	background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
	background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
	background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
	background-repeat: repeat-x;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ui-progressbar .ui-progressbar-value {
	height:100%;
	color: #ffffff; /*this can be removed if ui-widget-header is blue*/
	background-color: #0e90d2;
	background-image: -moz-linear-gradient(top, #149bdf, #0480be);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
	background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
	background-image: -o-linear-gradient(top, #149bdf, #0480be);
	background-image: linear-gradient(to bottom, #149bdf, #0480be);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: width 0.6s ease;
	-moz-transition: width 0.6s ease;
	-o-transition: width 0.6s ease;
	transition: width 0.6s ease;
}

/*** Input field styling from Bootstrap **/

 input, textarea {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-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;
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Safari 4 */
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Firefox 3.6 */
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
input:focus, textarea:focus {
	outline: 0;
	border-color: rgba(82, 168, 236, 0.8);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); /* Safari 4 */
	-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); /* Firefox 3.6 */
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}
input[type=file]:focus, input[type=checkbox]:focus, select:focus {
	-webkit-box-shadow: none; /* Safari 4 */
	-moz-box-shadow: none; /* Firefox 3.6 */
	box-shadow: none;
	outline: 1px dotted #666;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
.ui-autocomplete-input,
textarea,
.uneditable-input {
	display: inline-block;
	padding: 4px;
	font-size: 13px;
	line-height: 18px;
	color: #555555;
	border: 1px solid #ccc;
	-webkit-border-radius: 3px; /* Safari 4 */
	-moz-border-radius: 3px; /* Firefox 3.6 */
	border-radius: 3px;
}

/**Toolbar**/

.ui-toolbar {
	padding: 7px 14px;
	margin: 0 0 18px;
	background-color: #f5f5f5;
	background-repeat: repeat-x;
	background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5); /* Firefox 3.6 */
	background-image: -o-linear-gradient(top, #ffffff, #f5f5f5); /* Opera 11.10+ */
	background-image: linear-gradient(top, #ffffff, #f5f5f5); /* CSS3 Compliant */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0); /* IE8 */
	border: 1px solid #ddd;
	-webkit-border-radius: 3px; /* Safari 4 */
	-moz-border-radius: 3px; /* Firefox 3.6 */
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 0 #ffffff; /* Safari 4 */
	-moz-box-shadow: inset 0 1px 0 #ffffff; /* Firefox 3.6 */
	box-shadow: inset 0 1px 0 #ffffff;
}

/***Dialog fixes**/

.ui-dialog-buttonset .ui-button:not(:first-child) {
	cursor: pointer;
	display: inline-block;
	background-color: #e6e6e6;
	background-repeat: no-repeat;
	background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); /* Firefox 3.6 */
	background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* Opera 11.10+ */
	background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); /* CSS3 Compliant */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); /* IE8 */
	padding: 5px 14px 6px;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	color: #333;
	font-size: 13px;
	line-height: normal;
	border: 1px solid #ccc;
	border-bottom-color: #bbb;
	-webkit-border-radius: 4px; /* Safari 4 */
	-moz-border-radius: 4px; /* Firefox 3.6 */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); /* Safari 4 */
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); /* Firefox 3.6 */
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
	transition: 0.1s linear all;
	overflow: visible;
}

/***Wijmo Theming**/

div.wijmo-wijmenu {
	padding:0 20px;
	background-color: #222222;
	background-repeat: repeat-x;
	background-image: -webkit-linear-gradient(top, #333333, #222222); /* Safari 5.1+, Chrome 10+ */
	background-image: -moz-linear-gradient(top, #333333, #222222); /* Firefox 3.6 */
	background-image: -o-linear-gradient(top, #333333, #222222); /* Opera 11.10+ */
	background-image: linear-gradient(top, #333333, #222222); /* CSS3 Compliant */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); /* IE8 */
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); /* Safari 4 */
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); /* Firefox 3.6 */
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.wijmo-wijmenu .ui-state-default {
	-webkit-box-shadow: none; /* Safari 4 */
	-moz-box-shadow: none; /* Firefox 3.6 */
	box-shadow: none;
	color: #bfbfbf;
}

.wijmo-wijmenu .ui-state-default .wijmo-wijmenu-text {
	color: #bfbfbf;
}

.wijmo-wijmenu .ui-state-hover {
	background: #444;
	background: rgba(255, 255, 255, 0.05);
}

.wijmo-wijmenu .ui-state-hover .wijmo-wijmenu-text {
	color: #ffffff;
}

div.wijmo-wijmenu .ui-widget-header h3 {
	position: relative;
	margin-top: 1px;
	padding: 0;
}

.wijmo-wijmenu h3 a {
	color: #ffffff;
	display: block;
	float: left;
	font-size: 20px;
	font-weight: 200;
	line-height: 1;
	margin-left: -20px;
	margin-top: 1px;
	padding: 8px 20px 12px;
}

.wijmo-wijmenu h3 a:hover{
	background-color: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	text-decoration: none;
}

.wijmo-wijmenu .ui-widget-header {
	border: 0;
}

.wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child {
	padding: 0.3em 0;
}

div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child {
	background: #333;
	border: 0;
	margin: 0;
	padding: 6px 0;
	width: 160px;
	-webkit-border-radius: 0 0 6px 6px; /* Safari 4 */
	-moz-border-radius: 0 0 6px 6px; /* Firefox 3.6 */
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Safari 4 */
	-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Firefox 3.6 */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

div.wijmo-wijmenu .wijmo-wijmenu-item {
	margin: 0;
	border: 0;
}

.wijmo-wijmenu a.wijmo-wijmenu-link {
	margin: 0;
	line-height: 19px;
	padding: 10px 10px 11px;
	border: 0;
	-webkit-border-radius: 0; /* Safari 4 */
	-moz-border-radius: 0; /* Firefox 3.6 */
	border-radius: 0;
}

div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-link {
	display: block;
	float: none;
	padding: 4px 15px;
	width: auto;
}

div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-text {
	float: none;
}

.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child .ui-state-hover {
	background: #191919;
}

.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-separator {
	padding: 5px 0;
	background-image: none;
	background-color: #222;
	border-top: 1px solid #444;
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
}

.wijmo-wijmenu .wijmo-wijmenu-item input {
	-moz-transition: none 0s ease 0s;
	background-color: rgba(255, 255, 255, 0.3);
	border: 1px solid #111111;
	border-radius: 4px 4px 4px 4px;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25); /* Safari 4 */
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25); /* Firefox 3.6 */
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.75);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 1;
	margin: 5px 10px 0 10px;
	padding: 4px 9px;
	width: 100px;
}

.wijmo-wijmenu .wijmo-wijmenu-item input:hover {
	background-color: rgba(255, 255, 255, 0.5);
	color: #ffffff;
}

.wijmo-wijmenu .wijmo-wijmenu-item input:focus {
	background-color: #ffffff;
	border: 0 none;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); /* Safari 4 */
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); /* Firefox 3.6 */
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
	color: #404040;
	outline: 0 none;
	padding: 5px 10px;
	text-shadow: 0 1px 0 #ffffff;
}

.wijmo-wijmenu .ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	text-shadow:none;
}

.wijmo-wijmenu .ui-state-default {
	-webkit-box-shadow: none; /* Safari 4 */
	-moz-box-shadow: none; /* Firefox 3.6 */
	box-shadow: none;
	color: #bfbfbf;
	filter: none;
}

/**
* Font Awesome in jQuery UI
* @author Gerits Aurelien
*
**/

.ui-button-icon-primary.ui-icon[class^="icon-"]:before,
.ui-button-icon-primary.ui-icon[class*=" icon-"]:before,
.ui-button-icon-secondary.ui-icon[class^="icon-"]:before,
.ui-button-icon-secondary.ui-icon[class*=" icon-"]:before {
    font-size: inherit;
    margin-left: 7px!important;
    margin-left: 5px;
    display: inline;
    text-decoration: inherit;
    color:inherit;
}

/* **
* If you use "Font awesome" is disable UI icons in element
** */
.ui-state-default .ui-icon[class*=" icon-"]{
    /* Reset background with font Awesome */
    background:none;
    margin-left:-12px; /*fix for margin issue with font awesome buttons*/
}

/* If you do not use ui-icon uncomment the lines */
/*
.ui-button .ui-button-text{
    display: inline-block;
    padding:5px;
}

.ui-button-text-icon-primary .ui-button-icon-primary{
    float:none;
}*/
/* line 1, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-baidu-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/baidu.png);
}

/* line 2, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-delicious-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/delicious.png);
}

/* line 3, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-douban-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/douban.png);
}

/* line 4, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-email-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/email.png);
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-facebook-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/facebook.png);
}

/* line 6, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-flickr-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/flickr.png);
}

/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-google_bookmark-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/google_bookmark.png);
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-google_plus-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/google_plus.png);
}

/* line 9, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-kaixin001-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/kaixin001.png);
}

/* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-pinterest-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/pinterest.png);
}

/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-plurk-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/plurk.png);
}

/* line 12, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-qq-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/qq.png);
}

/* line 13, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-renren-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/renren.png);
}

/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-tqq-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/tqq.png);
}

/* line 15, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-tumblr-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/tumblr.png);
}

/* line 16, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-twitter-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/twitter.png);
}

/* line 17, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-weibo-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/16/weibo.png);
}

/* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-linkedin-16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/assets/stylesheets/social-share-button/32/linkedin.png);
}

/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-baidu-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/baidu.png);
}

/* line 21, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-delicious-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/delicious.png);
}

/* line 22, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-douban-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/douban.png);
}

/* line 23, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-email-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/email.png);
}

/* line 24, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-facebook-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/facebook.png);
}

/* line 25, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-flickr-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/flickr.png);
}

/* line 26, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-google_bookmark-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/google_bookmark.png);
}

/* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-google_plus-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/google_plus.png);
}

/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-kaixin001-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/kaixin001.png);
}

/* line 29, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-pinterest-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/pinterest.png);
}

/* line 30, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-plurk-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/plurk.png);
}

/* line 31, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-qq-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/qq.png);
}

/* line 32, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-renren-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/renren.png);
}

/* line 33, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-tqq-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/tqq.png);
}

/* line 34, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-tumblr-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/tumblr.png);
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-twitter-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/twitter.png);
}

/* line 36, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-weibo-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/weibo.png);
}

/* line 37, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/bundler/gems/social-share-button-139da97cd018/app/assets/stylesheets/social-share-button.scss */
.social-share-button-linkedin-32 {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/static/assets/stylesheets/social-share-button/32/linkedin.png);
}
.jq-ry-container{position:relative;padding:0 5px;line-height:0;display:block;cursor:pointer;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.jq-ry-container[readonly=readonly]{cursor:default}.jq-ry-container>.jq-ry-group-wrapper{position:relative;width:100%}.jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group{position:relative;line-height:0;z-index:10;white-space:nowrap}.jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group>svg{display:inline-block}.jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group.jq-ry-normal-group{width:100%}.jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group.jq-ry-rated-group{width:0;z-index:11;position:absolute;top:0;left:0;overflow:hidden}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url(/static/assets/stylesheets/fancybox_sprite.png);
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
  background: url(/static/assets/stylesheets/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
  background: transparent url(/static/assets/stylesheets/blank.gif); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
  background: url(/static/assets/stylesheets/fancybox_overlay.png);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url(/static/assets/stylesheets/fancybox_sprite@2x.png);
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
    background-image: url(/static/assets/stylesheets/fancybox_loading@2x.gif);
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}
#fancybox-buttons {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 8050;
}

#fancybox-buttons.top {
	top: 10px;
}

#fancybox-buttons.bottom {
	bottom: 10px;
}

#fancybox-buttons ul {
	display: block;
	width: 166px;
	height: 30px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	border: 1px solid #111;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	   -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	background: rgb(50,50,50);
	background: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(52,52,52) 50%, rgb(41,41,41) 50%, rgb(51,51,51) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(68,68,68)), color-stop(50%,rgb(52,52,52)), color-stop(50%,rgb(41,41,41)), color-stop(100%,rgb(51,51,51)));
	background: -webkit-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -o-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -ms-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#fancybox-buttons ul li {
	float: left;
	margin: 0;
	padding: 0;
}

#fancybox-buttons a {
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-color: transparent;
  background-image: url(/static/assets/stylesheets/fancybox_buttons.png);
	background-repeat: no-repeat;
	outline: none;
	opacity: 0.8;
}

#fancybox-buttons a:hover {
	opacity: 1;
}

#fancybox-buttons a.btnPrev {
	background-position: 5px 0;
}

#fancybox-buttons a.btnNext {
	background-position: -33px 0;
	border-right: 1px solid #3e3e3e;
}

#fancybox-buttons a.btnPlay {
	background-position: 0 -30px;
}

#fancybox-buttons a.btnPlayOn {
	background-position: -30px -30px;
}

#fancybox-buttons a.btnToggle {
	background-position: 3px -60px;
	border-left: 1px solid #111;
	border-right: 1px solid #3e3e3e;
	width: 35px
}

#fancybox-buttons a.btnToggleOn {
	background-position: -27px -60px;
}

#fancybox-buttons a.btnClose {
	border-left: 1px solid #111;
	width: 35px;
	background-position: -56px 0px;
}

#fancybox-buttons a.btnDisabled {
	opacity : 0.4;
	cursor: default;
}
#fancybox-thumbs {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 8050;
}

#fancybox-thumbs.bottom {
	bottom: 2px;
}

#fancybox-thumbs.top {
	top: 2px;
}

#fancybox-thumbs ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

#fancybox-thumbs ul li {
	float: left;
	padding: 1px;
	opacity: 0.5;
}

#fancybox-thumbs ul li.active {
	opacity: 0.75;
	padding: 0;
	border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
	opacity: 1;
}

#fancybox-thumbs ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #222;
	background: #111;
	outline: none;
}

#fancybox-thumbs ul li img {
	display: block;
	position: relative;
	border: 0;
	padding: 0;
	max-width: none;
}
/*



 */

@charset "UTF-8";
/*
 * 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 bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *





 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/* line 9, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 32, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/* line 52, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 65, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 75, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 87, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
a {
  background: transparent;
}

/* line 95, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 107, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 115, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 124, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 133, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 142, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 151, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 159, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 167, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 171, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 182, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 190, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 201, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 209, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* line 219, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 227, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 250, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 264, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 275, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 288, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 300, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 309, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 320, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 332, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 344, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 355, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 368, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 377, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 388, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 397, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 406, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 417, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 422, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

@media print {
  /* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* line 15, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  a,
  a:visited {
    text-decoration: underline;
  }

  /* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 24, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 29, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 34, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 44, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 49, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  img {
    max-width: 100% !important;
  }

  /* line 53, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 67, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  select {
    background: #fff !important;
  }

  /* line 72, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  .navbar {
    display: none;
  }

  /* line 76, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  .table td,
  .table th {
    background-color: #fff !important;
  }

  /* line 83, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  /* line 87, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  .label {
    border: 1px solid #000;
  }

  /* line 91, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }

  /* line 95, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_print.scss */
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(/fonts/bootstrap/glyphicons-halflings-regular.eot);
  src: url(/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(/fonts/bootstrap/glyphicons-halflings-regular.woff) format("woff"), url(/fonts/bootstrap/glyphicons-halflings-regular.ttf) format("truetype"), url(/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}
/* line 25, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\2a";
}

/* line 39, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\2b";
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-euro:before {
  content: "\20ac";
}

/* line 41, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 42, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 43, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 44, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 45, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 46, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 47, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 48, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 49, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 51, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 52, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 53, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 54, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 55, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 56, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 57, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 58, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 59, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 61, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 62, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 63, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 64, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 65, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 66, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 67, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 68, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 69, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 70, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 71, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 72, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 73, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 74, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 75, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 76, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 77, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 78, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 79, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 80, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 81, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 82, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 83, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 84, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 85, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 86, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 87, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 88, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 89, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 90, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 91, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 92, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 93, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 94, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 95, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 96, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 97, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 98, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 99, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 100, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 101, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 102, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 103, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 104, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 105, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 106, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 107, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 108, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 109, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 110, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 111, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 112, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 113, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 114, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 115, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 116, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 117, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 118, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 119, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 120, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 121, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 122, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 123, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 124, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 125, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 126, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 127, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 128, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 129, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 130, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 131, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 132, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 133, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 134, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 135, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 136, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 137, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 138, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 139, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 140, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 141, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 142, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 143, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 144, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 145, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 146, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 147, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 148, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 149, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 150, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 151, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 152, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 153, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 154, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 155, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 156, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 157, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 158, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 159, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 160, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 161, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 162, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 163, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 164, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 165, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 166, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 167, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 168, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 169, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 170, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 171, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 172, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 173, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 174, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 175, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 176, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 177, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 178, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 179, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 180, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 181, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 182, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 183, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 184, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 185, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 186, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 187, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 188, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 189, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 190, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 191, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 192, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 193, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 194, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 195, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 196, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 197, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 198, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 199, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 200, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 201, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 202, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 203, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 204, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 205, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 206, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 207, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 208, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 209, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 210, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 211, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 212, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 213, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 214, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 215, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 216, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 217, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 218, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 219, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 220, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 221, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 222, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 223, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 224, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 225, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 226, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 227, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 228, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 229, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 230, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 231, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 232, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 233, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 234, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 235, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 236, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 237, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
a {
  color: #428bca;
  text-decoration: none;
}
/* line 52, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #2a6496;
  text-decoration: underline;
}
/* line 58, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}

/* line 86, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}

/* line 106, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_scaffolding.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

/* line 125, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 9, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 30, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 41, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 48, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 49, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 51, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 52, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 58, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 84, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
cite {
  font-style: normal;
}

/* line 88, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 95, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 96, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 97, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 98, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 99, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 102, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 103, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-uppercase {
  text-transform: uppercase;
}

/* line 104, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 107, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.text-muted {
  color: #777777;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #428bca;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover {
  color: #3071a9;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover {
  color: #2b542c;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover {
  color: #245269;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover {
  color: #66512c;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover {
  color: #843534;
}

/* line 124, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #428bca;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover {
  background-color: #3071a9;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover {
  background-color: #c1e2b3;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover {
  background-color: #afd9ee;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover {
  background-color: #f7ecb5;
}

/* line 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover {
  background-color: #e4b9b9;
}

/* line 143, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

/* line 154, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 158, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 173, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  margin-left: -5px;
}
/* line 177, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 185, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.428571429;
}

/* line 193, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 196, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 211, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 229, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

/* line 235, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 241, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
/* line 250, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 257, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}
/* line 265, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 274, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
blockquote:before,
blockquote:after {
  content: "";
}

/* line 300, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 24, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  box-shadow: none;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 54, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 65, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 55, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 45, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 55, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 45, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }

  /* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 55, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }

  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 45, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }

  /* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 6, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 9, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 16, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
/* line 25, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
/* line 44, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 51, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 56, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
.table .table {
  background-color: #fff;
}

/* line 69, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 82, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ddd;
}
/* line 88, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 95, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 109, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

/* line 123, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

/* line 135, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

/* line 143, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/* line 9, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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;
}

@media screen and (max-width: 767px) {
  /* line 171, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  /* line 182, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 190, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 199, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 207, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 211, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 224, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 47, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 52, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 65, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 71, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 77, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 84, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

/* line 115, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 53, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 102, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-moz-placeholder {
  color: #777777;
  opacity: 1;
}
/* line 104, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control:-ms-input-placeholder {
  color: #777777;
}
/* line 105, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-webkit-input-placeholder {
  color: #777777;
}
/* line 141, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

/* line 153, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 165, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-appearance: none;
}

/* line 178, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 34px;
  line-height: 1.428571429 \0 ;
}
/* line 186, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="date"].input-sm, .form-horizontal .form-group-sm input[type="date"].form-control, .input-group-sm > input[type="date"].form-control,
.input-group-sm > input[type="date"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="date"].btn,
input[type="time"].input-sm,
.form-horizontal .form-group-sm input[type="time"].form-control,
.input-group-sm > input[type="time"].form-control,
.input-group-sm > input[type="time"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="time"].btn,
input[type="datetime-local"].input-sm,
.form-horizontal .form-group-sm input[type="datetime-local"].form-control,
.input-group-sm > input[type="datetime-local"].form-control,
.input-group-sm > input[type="datetime-local"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
input[type="month"].input-sm,
.form-horizontal .form-group-sm input[type="month"].form-control,
.input-group-sm > input[type="month"].form-control,
.input-group-sm > input[type="month"].input-group-addon,
.input-group-sm > .input-group-btn > input[type="month"].btn {
  line-height: 30px;
}
/* line 189, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
input[type="date"].input-lg, .form-horizontal .form-group-lg input[type="date"].form-control, .input-group-lg > input[type="date"].form-control,
.input-group-lg > input[type="date"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="date"].btn,
input[type="time"].input-lg,
.form-horizontal .form-group-lg input[type="time"].form-control,
.input-group-lg > input[type="time"].form-control,
.input-group-lg > input[type="time"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="time"].btn,
input[type="datetime-local"].input-lg,
.form-horizontal .form-group-lg input[type="datetime-local"].form-control,
.input-group-lg > input[type="datetime-local"].form-control,
.input-group-lg > input[type="datetime-local"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
input[type="month"].input-lg,
.form-horizontal .form-group-lg input[type="month"].form-control,
.input-group-lg > input[type="month"].form-control,
.input-group-lg > input[type="month"].input-group-addon,
.input-group-lg > .input-group-btn > input[type="month"].btn {
  line-height: 46px;
}

/* line 200, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 209, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 217, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 224, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 233, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 239, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

/* line 248, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 260, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 269, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 279, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 291, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
/* line 298, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static.input-lg, .form-horizontal .form-group-lg .form-control-static.form-control, .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, .form-horizontal .form-group-sm .form-control-static.form-control, .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 67, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-sm, .form-horizontal .form-group-sm .form-control, .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 75, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-sm, .form-horizontal .form-group-sm select.form-control, .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 80, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-sm, .form-horizontal .form-group-sm textarea.form-control, .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,
.form-horizontal .form-group-sm select[multiple].form-control,
.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 67, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-lg, .form-horizontal .form-group-lg .form-control, .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.33;
  border-radius: 6px;
}

/* line 75, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-lg, .form-horizontal .form-group-lg select.form-control, .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 80, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-lg, .form-horizontal .form-group-lg textarea.form-control, .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,
.form-horizontal .form-group-lg select[multiple].form-control,
.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 320, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}
/* line 325, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 330, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}

/* line 341, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.input-lg + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 346, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.input-sm + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 {
  color: #3c763d;
}
/* line 17, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
/* line 33, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 {
  color: #8a6d3b;
}
/* line 17, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
/* line 33, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 {
  color: #a94442;
}
/* line 17, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
/* line 33, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 365, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 375, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 400, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group, .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 407, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control, .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 413, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group, .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 417, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group .input-group-addon, .navbar-form .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .navbar-form .input-group .input-group-btn,
  .form-inline .input-group .form-control,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 425, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control, .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 429, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .control-label, .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 437, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio, .navbar-form .radio,
  .form-inline .checkbox,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 444, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio label, .navbar-form .radio label,
  .form-inline .checkbox label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 448, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"], .navbar-form .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 458, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback, .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 475, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 485, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
/* line 491, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 498, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
/* line 509, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px;
}
@media (min-width: 768px) {
  /* line 520, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px;
  }
}
@media (min-width: 768px) {
  /* line 530, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}

/* line 9, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  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 25, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 30, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover, .btn:focus {
  color: #333;
  text-decoration: none;
}
/* line 36, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 43, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 57, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_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[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #3071a9;
  border-color: #285e8e;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_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[disabled].active, 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: #428bca;
  border-color: #357ebd;
}
/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}

/* line 64, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_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[disabled].active, 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: #5cb85c;
  border-color: #4cae4c;
}
/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 68, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_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[disabled].active, 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: #5bc0de;
  border-color: #46b8da;
}
/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 72, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_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[disabled].active, 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: #f0ad4e;
  border-color: #eea236;
}
/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 76, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_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[disabled].active, 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: #d9534f;
  border-color: #d43f3a;
}
/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 85, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
/* line 91, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 98, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
/* line 104, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
/* line 112, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 124, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 128, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 132, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 140, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 146, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 154, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_buttons.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}
/* line 21, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 26, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 30, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown {
  position: relative;
}

/* line 24, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 29, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 52, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 58, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 63, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 76, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

/* line 86, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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: #428bca;
}

/* line 101, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}

/* line 109, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 122, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}
/* line 127, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 136, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  left: auto;
  right: 0;
}

/* line 146, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  left: 0;
  right: auto;
}

/* line 152, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 162, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 172, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 185, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
/* line 191, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 768px) {
  /* line 205, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu, ul.account-menu .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 210, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left, ul.account-menu .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
/* line 6, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
/* line 15, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 21, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: 0;
}

/* line 30, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 39, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}
/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:after {
  clear: both;
}
/* line 43, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
/* line 47, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 54, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 59, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}
/* line 61, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 66, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 72, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 75, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 79, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 84, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 89, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 108, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 112, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 119, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 123, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 130, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 134, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 139, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 148, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}
/* line 160, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
/* line 165, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 175, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 178, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 182, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 187, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 191, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 196, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 205, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
/* line 210, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
/* line 216, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
/* line 220, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 235, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 13, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 54, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
/* line 59, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 64, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 73, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 85, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-sm, .form-horizontal .form-group-sm .input-group-addon.form-control,
.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 90, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-lg, .form-horizontal .form-group-lg .input-group-addon.form-control,
.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 97, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 104, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 113, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 116, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 125, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 131, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
/* line 140, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}
/* line 142, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
/* line 146, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 155, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
/* line 161, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}

/* line 9, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav, ul.account-menu, .account-management-panel .tabs ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:before, ul.account-menu:before, .account-management-panel .tabs ul:before, .nav:after, ul.account-menu:after, .account-management-panel .tabs ul:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:after, ul.account-menu:after, .account-management-panel .tabs ul:after {
  clear: both;
}
/* line 15, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav > li, ul.account-menu > li, .account-management-panel .tabs ul > li {
  position: relative;
  display: block;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a, ul.account-menu > li > a, .account-management-panel .tabs ul > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
/* line 23, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, ul.account-menu > li > a:hover, .account-management-panel .tabs ul > li > a:hover, .nav > li > a:focus, ul.account-menu > li > a:focus, .account-management-panel .tabs ul > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a, ul.account-menu > li.disabled > a, .account-management-panel .tabs ul > li.disabled > a {
  color: #777777;
}
/* line 34, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, ul.account-menu > li.disabled > a:hover, .account-management-panel .tabs ul > li.disabled > a:hover, .nav > li.disabled > a:focus, ul.account-menu > li.disabled > a:focus, .account-management-panel .tabs ul > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
/* line 46, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, ul.account-menu .open > a, .account-management-panel .tabs ul .open > a, .nav .open > a:hover, ul.account-menu .open > a:hover, .account-management-panel .tabs ul .open > a:hover, .nav .open > a:focus, ul.account-menu .open > a:focus, .account-management-panel .tabs ul .open > a:focus {
  background-color: #eeeeee;
  border-color: #428bca;
}
/* line 59, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider, ul.account-menu .nav-divider, .account-management-panel .tabs ul .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 66, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img, ul.account-menu > li > a > img, .account-management-panel .tabs ul > li > a > img {
  max-width: none;
}

/* line 76, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs, .account-management-panel .tabs ul {
  border-bottom: 1px solid #ddd;
}
/* line 78, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li, .account-management-panel .tabs ul > li {
  float: left;
  margin-bottom: -1px;
}
/* line 84, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a, .account-management-panel .tabs ul > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
/* line 89, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover, .account-management-panel .tabs ul > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
/* line 96, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .account-management-panel .tabs ul > li.active > a, .nav-tabs > li.active > a:hover, .account-management-panel .tabs ul > li.active > a:hover, .nav-tabs > li.active > a:focus, .account-management-panel .tabs ul > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 118, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}
/* line 122, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}
/* line 125, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}
/* line 131, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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: #428bca;
}

/* line 144, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}
/* line 146, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified, .account-management-panel .tabs ul {
  width: 100%;
}
/* line 163, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li, .account-management-panel .tabs ul > li {
  float: none;
}
/* line 165, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a, .account-management-panel .tabs ul > li > a {
  text-align: center;
  margin-bottom: 5px;
}
/* line 171, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu, .account-management-panel .tabs ul > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  /* line 177, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li, .account-management-panel .tabs ul > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a, .account-management-panel .tabs ul > li > a {
    margin-bottom: 0;
  }
}

/* line 190, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified, .account-management-panel .tabs ul {
  border-bottom: 0;
}
/* line 193, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a, .account-management-panel .tabs ul > li > a {
  margin-right: 0;
  border-radius: 4px;
}
/* line 199, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .account-management-panel .tabs ul > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.account-management-panel .tabs ul > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus,
.account-management-panel .tabs ul > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  /* line 206, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a, .account-management-panel .tabs ul > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .account-management-panel .tabs ul > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .account-management-panel .tabs ul > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus,
  .account-management-panel .tabs ul > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 224, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}
/* line 227, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu, .account-management-panel .tabs ul .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 31, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}
/* line 59, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  /* line 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-width: 480px) and (orientation: landscape) {
  /* line 92, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

/* line 108, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  /* line 128, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 138, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
  /* line 138, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 151, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 155, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 164, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
/* line 171, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  /* line 177, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 190, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 203, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}
/* line 208, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
/* line 214, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  /* line 190, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 229, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav, ul.account-menu {
  margin: 7.5px -15px;
}
/* line 232, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a, ul.account-menu > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  /* line 240, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu, ul.account-menu .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 248, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a, ul.account-menu .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header,
  ul.account-menu .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 252, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a, ul.account-menu .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 254, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, ul.account-menu .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus, ul.account-menu .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  /* line 229, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav, ul.account-menu {
    float: left;
    margin: 0;
  }
  /* line 267, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li, ul.account-menu > li {
    float: left;
  }
  /* line 269, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a, ul.account-menu > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  /* line 275, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav.navbar-right:last-child, ul.account-menu:last-child {
    margin-right: -15px;
  }
}

@media (min-width: 768px) {
  /* line 289, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }

  /* line 292, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right, ul.account-menu {
    float: right !important;
  }
}
/* line 303, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 (max-width: 767px) {
  /* line 315, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  /* line 303, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 335, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form.navbar-right:last-child, ul.navbar-form.account-menu:last-child {
    margin-right: -15px;
  }
}

/* line 345, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu, ul.account-menu > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 350, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu, .navbar-fixed-bottom ul.account-menu > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 359, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
/* line 362, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 365, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 375, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  /* line 375, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
  /* line 384, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text.navbar-right:last-child, ul.navbar-text.account-menu:last-child {
    margin-right: 0;
  }
}

/* line 394, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
/* line 398, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #777;
}
/* line 400, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
/* line 407, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}
/* line 412, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a, .navbar-default ul.account-menu > li > a {
  color: #777;
}
/* line 415, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default ul.account-menu > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default ul.account-menu > li > a:focus {
  color: #333;
  background-color: transparent;
}
/* line 422, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default ul.account-menu > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default ul.account-menu > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .navbar-default ul.account-menu > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
/* line 430, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default ul.account-menu > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default ul.account-menu > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus, .navbar-default ul.account-menu > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
/* line 439, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
/* line 441, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
/* line 445, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
/* line 450, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
/* line 459, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default ul.account-menu > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default ul.account-menu > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus, .navbar-default ul.account-menu > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 767px) {
  /* line 470, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a, .navbar-default ul.account-menu .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 472, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default ul.account-menu .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default ul.account-menu .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 479, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default ul.account-menu .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default ul.account-menu .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-default ul.account-menu .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 487, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default ul.account-menu .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default ul.account-menu .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-default ul.account-menu .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
/* line 503, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #777;
}
/* line 505, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}
/* line 510, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #777;
}
/* line 512, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}
/* line 518, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 528, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}
/* line 532, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #777777;
}
/* line 534, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
/* line 541, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #777777;
}
/* line 546, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a, .navbar-inverse ul.account-menu > li > a {
  color: #777777;
}
/* line 549, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse ul.account-menu > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse ul.account-menu > li > a:focus {
  color: #fff;
  background-color: transparent;
}
/* line 556, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse ul.account-menu > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse ul.account-menu > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse ul.account-menu > .active > a:focus {
  color: #fff;
  background-color: #090909;
}
/* line 564, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse ul.account-menu > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse ul.account-menu > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus, .navbar-inverse ul.account-menu > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
/* line 574, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
/* line 576, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
/* line 580, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
/* line 585, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
/* line 593, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse ul.account-menu > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse ul.account-menu > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse ul.account-menu > .open > a:focus {
  background-color: #090909;
  color: #fff;
}
@media (max-width: 767px) {
  /* line 604, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header, .navbar-inverse ul.account-menu .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 607, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider, .navbar-inverse ul.account-menu .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 610, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a, .navbar-inverse ul.account-menu .open .dropdown-menu > li > a {
    color: #777777;
  }
  /* line 612, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse ul.account-menu .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse ul.account-menu .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 619, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse ul.account-menu .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse ul.account-menu .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse ul.account-menu .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 627, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse ul.account-menu .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse ul.account-menu .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-inverse ul.account-menu .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
/* line 638, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #777777;
}
/* line 640, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
/* line 645, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #777777;
}
/* line 647, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}
/* line 653, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
/* line 13, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}
/* line 16, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}
/* line 23, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 4, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
/* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}
/* line 12, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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: #428bca;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
/* line 25, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  color: #2a6496;
  background-color: #eeeeee;
  border-color: #ddd;
}
/* line 51, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
  cursor: default;
}
/* line 63, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 17, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 17, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 5, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
.label:empty {
  display: none;
}
/* line 25, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 33, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
.label-default {
  background-color: #777777;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 48, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
.label-primary {
  background-color: #428bca;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #3071a9;
}

/* line 52, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 56, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 64, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
/* line 22, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}
/* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}
/* line 31, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
/* line 39, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_badges.scss */
a.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #fff;
}
/* line 44, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 51, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 17, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
/* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/* line 34, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #428bca;
}

/* line 9, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 16, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 22, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}
/* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
/* line 31, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 40, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
/* line 45, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 57, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 60, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 63, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 66, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 37, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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: #428bca;
  -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 55, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 65, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 72, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar[aria-valuenow="1"], .progress-bar[aria-valuenow="2"] {
  min-width: 30px;
}
/* line 77, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar[aria-valuenow="0"] {
  color: #777777;
  min-width: 30px;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
}

/* line 91, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 95, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 99, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 103, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 29, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 74, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 79, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}

/* line 85, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}
/* line 110, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 115, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 119, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  /* line 140, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 149, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}
/* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 16, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* line 17, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
/* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 24, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}

/* line 35, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 43, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 50, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 56, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 62, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 69, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 76, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 83, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 89, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  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);
  white-space: normal;
}
/* line 26, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}
/* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}
/* line 29, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 32, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 43, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 52, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 62, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 65, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 71, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 78, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
/* line 86, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 93, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
/* line 101, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 108, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
/* line 117, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 124, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

/* line 14, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 19, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* line 54, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
/* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

/* line 31, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table;
  }

  /* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 12, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 49, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 54, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 59, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table;
  }

  /* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 12, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 68, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }

  /* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table;
  }

  /* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 12, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/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 87, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table;
  }

  /* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 12, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  /* line 106, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 111, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}
/* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }

  /* line 10, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table;
  }

  /* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 12, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
/* line 150, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}
@media print {
  /* line 150, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 157, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}
@media print {
  /* line 157, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 164, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 164, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 18, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}
/*! ========================================================================
 * Bootstrap Toggle: bootstrap-toggle.css v2.2.0
 * http://www.bootstraptoggle.com
 * ========================================================================
 * Copyright 2014 Min Hur, The New York Times Company
 * Licensed under MIT
 * ======================================================================== */
/* line 8, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.checkbox label .toggle, .checkbox-inline .toggle {
  margin-left: -20px;
  margin-right: 5px;
}

/* line 9, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle {
  position: relative;
  overflow: hidden;
}

/* line 10, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle input[type=checkbox] {
  display: none;
}

/* line 11, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-group {
  position: absolute;
  width: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  transition: left .35s;
  -webkit-transition: left .35s;
  -moz-user-select: none;
  -webkit-user-select: none;
}

/* line 12, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle.off .toggle-group {
  left: -100%;
}

/* line 13, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

/* line 14, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-off {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}

/* line 15, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-handle {
  position: relative;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  width: 0;
  border-width: 0 1px;
}

/* line 16, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle.btn {
  min-width: 59px;
  min-height: 34px;
}

/* line 17, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-on.btn {
  padding-right: 24px;
}

/* line 18, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-off.btn {
  padding-left: 24px;
}

/* line 19, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle.btn-lg, .btn-group-lg > .toggle.btn {
  min-width: 79px;
  min-height: 45px;
}

/* line 20, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-on.btn-lg, .btn-group-lg > .toggle-on.btn {
  padding-right: 31px;
}

/* line 21, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-off.btn-lg, .btn-group-lg > .toggle-off.btn {
  padding-left: 31px;
}

/* line 22, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-handle.btn-lg, .btn-group-lg > .toggle-handle.btn {
  width: 40px;
}

/* line 23, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle.btn-sm, .btn-group-sm > .toggle.btn {
  min-width: 50px;
  min-height: 30px;
}

/* line 24, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-on.btn-sm, .btn-group-sm > .toggle-on.btn {
  padding-right: 20px;
}

/* line 25, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-off.btn-sm, .btn-group-sm > .toggle-off.btn {
  padding-left: 20px;
}

/* line 26, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle.btn-xs, .btn-group-xs > .toggle.btn {
  min-width: 35px;
  min-height: 22px;
}

/* line 27, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-on.btn-xs, .btn-group-xs > .toggle-on.btn {
  padding-right: 12px;
}

/* line 28, /home/nader/lbb/lbb-production/vendor/assets/stylesheets/bootstrap-toggle.min.css */
.toggle-off.btn-xs, .btn-group-xs > .toggle-off.btn {
  padding-left: 12px;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/animated_check_mark.scss */
.animated-check-mark-wrapper {
  width: 26px;
  margin: 16px auto 0;
}

/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/animated_check_mark.scss */
.animated-check-mark {
  stroke: #0dbf60;
  stroke-dashoffset: 745.74853515625;
  stroke-dasharray: 745.74853515625;
  animation: dash 2s ease-out forwards;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 745.74853515625;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/debug.scss */
.todo {
  padding: 5px;
  font-size: 150%;
  background-color: red;
  color: yellow;
}

/* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/debug.scss */
.debug-info-panel {
  background-color: #ffffee;
  padding: 10px;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.alert-notice {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-notice hr {
  border-top-color: #c9e2b3;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-notice .alert-link {
  color: #2b542c;
}

/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.alert-alert {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-alert hr {
  border-top-color: #e4b9c0;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-alert .alert-link {
  color: #843534;
}

/* AUTHOR RETARGETING POPUP */
/* line 17, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
#author-retargeting-popup {
  text-align: center;
  padding: 20px;
  font-size: 16px;
}
/* line 21, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
#author-retargeting-popup .welcome {
  font-size: 20px;
  font-weight: bold;
}
/* line 24, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
#author-retargeting-popup .welcome:before {
  content: '';
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 12px;
  background: url(/static/assets/stylesheets/svg/hello.svg) no-repeat center;
  background-size: auto;
}
/* line 34, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
#author-retargeting-popup .cta {
  padding: 12px 0;
}
/* line 37, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
#author-retargeting-popup .cta-button {
  margin-top: 12px;
  border-radius: 3px;
  padding: 7px 18px;
  min-width: 190px;
  line-height: 22px;
  font-size: 14px;
  font-weight: bold;
}
/* line 46, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
#author-retargeting-popup a:not(.cta-button) {
  text-decoration: underline;
}
/* line 49, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
#author-retargeting-popup .close-popup {
  float: right;
}
/* line 51, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
#author-retargeting-popup .close-popup a:hover {
  color: #ffe96b;
}

/* line 57, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.retargeting-popup-space {
  margin-bottom: 30px;
  margin-top: 0px;
  background-color: #445266;
  color: #EEEEEE;
}
/* line 62, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.retargeting-popup-space .cta {
  color: #FF951B;
}
/* line 65, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.retargeting-popup-space .cta-button {
  background-color: #0050E7;
  color: #EEEEEE;
}
/* line 69, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.retargeting-popup-space a {
  color: #EEEEEE;
}

/* line 79, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.retargeting-popup-website {
  background: rgba(209, 38, 46, 0.75);
  color: #fff;
}
/* line 82, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.retargeting-popup-website .cta-button {
  background-color: #354051;
  color: #fff;
}
/* line 86, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/alert.scss */
.retargeting-popup-website a {
  color: #fff;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/flashes.scss */
.flashes {
  position: relative;
  padding: 0 0 0;
  z-index: 1000;
}
/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/flashes.scss */
.flashes.flashes-site {
  margin: 75px 0 0;
}
/* line 9, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/flashes.scss */
.flashes .alert {
  height: 70px;
  padding: 15px;
  border-radius: 0 !important;
  border: 0 none !important;
  text-align: center;
  position: relative;
  margin: 0 !important;
  line-height: 38px;
  color: #fff !important;
  font-size: 16px;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(51, 51, 51, 0.27);
  -moz-box-shadow: 0px 3px 9px 0px rgba(51, 51, 51, 0.27);
  box-shadow: 0px 3px 9px 0px rgba(51, 51, 51, 0.27);
}
/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/flashes.scss */
.flashes .alert.alert-notice {
  background: #33CC7A !important;
}
/* line 25, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/flashes.scss */
.flashes .alert.alert-notice:before {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(/static/assets/stylesheets/persona/flash-notice.svg);
  background-size: 30px;
  line-height: 38px;
  vertical-align: middle;
  margin: -3px 12px 0 0;
}
/* line 37, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/flashes.scss */
.flashes .alert.alert-alert {
  background: #e7454d !important;
}
/* line 39, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/flashes.scss */
.flashes .alert.alert-alert:before {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(/static/assets/stylesheets/persona/flash-alert.svg);
  background-size: 30px;
  line-height: 38px;
  vertical-align: middle;
  margin: -3px 12px 0 0;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/human_friendly_captcha.scss */
.hfc-field {
  display: none;
}

/* line 11, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
body {
  background: #ffffff;
  font-size: 14px;
  font-family: 'Bitter', Arial, Helvetica, sans-serif;
  margin: 0px;
  padding: 0px;
  position: relative;
  top: 0px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* line 24, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#main-content {
  min-height: 600px;
  padding-top: 74px;
}
@media only screen and (max-width: 480px) {
  /* line 24, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
  #main-content {
    padding-top: 0;
  }
}

/* line 36, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.row {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 41, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
p:empty {
  display: none;
}

/* line 45, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.thumbnail {
  margin-bottom: 10px !important;
}

/* line 49, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.site-main-content {
  min-height: 500px;
  float: left;
  width: 70%;
}
@media only screen and (max-width: 480px) {
  /* line 49, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
  .site-main-content {
    width: 100%;
    padding: 0 3%;
    float: none;
  }
}

/* line 60, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.site-main-content-full {
  min-height: 500px;
  position: relative;
}

/* line 67, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.body a {
  color: #3D80B1;
  text-decoration: underline;
}
/* line 70, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.body a:hover {
  color: #D1262E;
}

/* line 75, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.caret {
  border-bottom-color: #666 !important;
  border-top-color: #666 !important;
}

/* line 80, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.container {
  position: relative;
  padding: 0;
}
/* line 86, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.container ul.main-navigation, .container ul.account-menu {
  position: absolute;
  right: 0;
}
/* line 89, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.container ul.main-navigation a, .container ul.account-menu a {
  color: #FFFFFF !important;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.container ul.main-navigation {
  right: 150px;
}
/* line 99, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.container .row > p {
  color: #666;
  text-align: center;
  padding: 20px 180px;
}

/* line 108, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.thumbnail {
  border: none;
}
/* line 110, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.thumbnail img {
  border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -webkit-border-radius: 2px !important;
}

/* line 118, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
div.col-lg-4 h3 {
  margin-bottom: 20px;
  text-align: center;
}
/* line 122, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
div.col-lg-4 strong {
  color: #212832;
}

/* line 128, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
table:not(.ui-datepicker-calendar) th, table:not(.ui-datepicker-calendar) td {
  padding: 20px !important;
}
/* line 131, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
table:not(.ui-datepicker-calendar) a {
  color: #D1262E;
}
/* line 133, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
table:not(.ui-datepicker-calendar) a:hover {
  color: #661115;
}

/* line 142, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.meta {
  border: 1px solid #EEEEEE;
  border-width: 1px 0;
  padding: 10px 0;
  background: none;
  border-color: rgba(102, 102, 102, 0.1);
  margin-bottom: 10px;
  color: #ccc;
}
/* line 148, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
.meta p {
  padding: 0;
  margin: 0;
}

/* line 163, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .container > .row, #topic_groups-show .container > .row, #topic_groups-show .container > .row, #articles-show .container > .row, #article_categories-show .container > .row, #document_templates-for_lessors .container > .row, #document_templates-show .container > .row, #document_templates-for_tenants .container > .row, #glossary_items-index .container > .row {
  padding: 60px 0 0 !important;
  position: relative;
}
/* line 170, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar h3, #topic_groups-show .site-sidebar h3, #topic_groups-show .site-sidebar h3, #articles-show .site-sidebar h3, #article_categories-show .site-sidebar h3, #document_templates-for_lessors .site-sidebar h3, #document_templates-show .site-sidebar h3, #document_templates-for_tenants .site-sidebar h3, #glossary_items-index .site-sidebar h3 {
  font-size: 24px;
  color: #212832;
  font-weight: bold;
}
/* line 175, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar h4, #topic_groups-show .site-sidebar h4, #topic_groups-show .site-sidebar h4, #articles-show .site-sidebar h4, #article_categories-show .site-sidebar h4, #document_templates-for_lessors .site-sidebar h4, #document_templates-show .site-sidebar h4, #document_templates-for_tenants .site-sidebar h4, #glossary_items-index .site-sidebar h4 {
  padding: 0;
  border-top: 1px solid rgba(34, 42, 52, 0.17);
  margin: 30px 0 0;
  line-height: 56px;
  font-size: 1em;
}
/* line 181, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar h4 + ul, #topic_groups-show .site-sidebar h4 + ul, #topic_groups-show .site-sidebar h4 + ul, #articles-show .site-sidebar h4 + ul, #article_categories-show .site-sidebar h4 + ul, #document_templates-for_lessors .site-sidebar h4 + ul, #document_templates-show .site-sidebar h4 + ul, #document_templates-for_tenants .site-sidebar h4 + ul, #glossary_items-index .site-sidebar h4 + ul {
  margin: -6px 0 24px;
  border-color: transparent;
}
/* line 185, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar h4 + ul li, #topic_groups-show .site-sidebar h4 + ul li, #topic_groups-show .site-sidebar h4 + ul li, #articles-show .site-sidebar h4 + ul li, #article_categories-show .site-sidebar h4 + ul li, #document_templates-for_lessors .site-sidebar h4 + ul li, #document_templates-show .site-sidebar h4 + ul li, #document_templates-for_tenants .site-sidebar h4 + ul li, #glossary_items-index .site-sidebar h4 + ul li {
  font-size: .9em;
  line-height: 28px;
  border: 0 none;
}
/* line 190, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar h4 + ul li a, #topic_groups-show .site-sidebar h4 + ul li a, #topic_groups-show .site-sidebar h4 + ul li a, #articles-show .site-sidebar h4 + ul li a, #article_categories-show .site-sidebar h4 + ul li a, #document_templates-for_lessors .site-sidebar h4 + ul li a, #document_templates-show .site-sidebar h4 + ul li a, #document_templates-for_tenants .site-sidebar h4 + ul li a, #glossary_items-index .site-sidebar h4 + ul li a {
  text-indent: 4px;
}
/* line 192, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar h4 + ul li a:before, #topic_groups-show .site-sidebar h4 + ul li a:before, #topic_groups-show .site-sidebar h4 + ul li a:before, #articles-show .site-sidebar h4 + ul li a:before, #article_categories-show .site-sidebar h4 + ul li a:before, #document_templates-for_lessors .site-sidebar h4 + ul li a:before, #document_templates-show .site-sidebar h4 + ul li a:before, #document_templates-for_tenants .site-sidebar h4 + ul li a:before, #glossary_items-index .site-sidebar h4 + ul li a:before {
  content: "\00BB \0020";
}
/* line 195, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar h4 + ul li a:hover, #topic_groups-show .site-sidebar h4 + ul li a:hover, #topic_groups-show .site-sidebar h4 + ul li a:hover, #articles-show .site-sidebar h4 + ul li a:hover, #article_categories-show .site-sidebar h4 + ul li a:hover, #document_templates-for_lessors .site-sidebar h4 + ul li a:hover, #document_templates-show .site-sidebar h4 + ul li a:hover, #document_templates-for_tenants .site-sidebar h4 + ul li a:hover, #glossary_items-index .site-sidebar h4 + ul li a:hover {
  background: rgba(34, 42, 52, 0.08);
  text-decoration: none;
}
/* line 198, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar h4 + ul li a:hover:after, #topic_groups-show .site-sidebar h4 + ul li a:hover:after, #topic_groups-show .site-sidebar h4 + ul li a:hover:after, #articles-show .site-sidebar h4 + ul li a:hover:after, #article_categories-show .site-sidebar h4 + ul li a:hover:after, #document_templates-for_lessors .site-sidebar h4 + ul li a:hover:after, #document_templates-show .site-sidebar h4 + ul li a:hover:after, #document_templates-for_tenants .site-sidebar h4 + ul li a:hover:after, #glossary_items-index .site-sidebar h4 + ul li a:hover:after {
  right: 0;
  top: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border: solid transparent;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 10px 14px 0;
  border-color: transparent #fff transparent transparent;
}
/* line 221, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar ul, #topic_groups-show .site-sidebar ul, #topic_groups-show .site-sidebar ul, #articles-show .site-sidebar ul, #article_categories-show .site-sidebar ul, #document_templates-for_lessors .site-sidebar ul, #document_templates-show .site-sidebar ul, #document_templates-for_tenants .site-sidebar ul, #glossary_items-index .site-sidebar ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(34, 42, 52, 0.17);
  margin: 30px 0 0;
}
/* line 226, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar ul li, #topic_groups-show .site-sidebar ul li, #topic_groups-show .site-sidebar ul li, #articles-show .site-sidebar ul li, #article_categories-show .site-sidebar ul li, #document_templates-for_lessors .site-sidebar ul li, #document_templates-show .site-sidebar ul li, #document_templates-for_tenants .site-sidebar ul li, #glossary_items-index .site-sidebar ul li {
  line-height: 56px;
  border-bottom: 1px solid rgba(34, 42, 52, 0.17);
}
/* line 229, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar ul li a, #topic_groups-show .site-sidebar ul li a, #topic_groups-show .site-sidebar ul li a, #articles-show .site-sidebar ul li a, #article_categories-show .site-sidebar ul li a, #document_templates-for_lessors .site-sidebar ul li a, #document_templates-show .site-sidebar ul li a, #document_templates-for_tenants .site-sidebar ul li a, #glossary_items-index .site-sidebar ul li a {
  display: block;
  position: relative;
  background: transparent;
  text-indent: 9px;
}
/* line 234, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar ul li a:hover, #topic_groups-show .site-sidebar ul li a:hover, #topic_groups-show .site-sidebar ul li a:hover, #articles-show .site-sidebar ul li a:hover, #article_categories-show .site-sidebar ul li a:hover, #document_templates-for_lessors .site-sidebar ul li a:hover, #document_templates-show .site-sidebar ul li a:hover, #document_templates-for_tenants .site-sidebar ul li a:hover, #glossary_items-index .site-sidebar ul li a:hover {
  background: rgba(34, 42, 52, 0.05);
  text-decoration: none;
}
/* line 237, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar ul li a:hover:after, #topic_groups-show .site-sidebar ul li a:hover:after, #topic_groups-show .site-sidebar ul li a:hover:after, #articles-show .site-sidebar ul li a:hover:after, #article_categories-show .site-sidebar ul li a:hover:after, #document_templates-for_lessors .site-sidebar ul li a:hover:after, #document_templates-show .site-sidebar ul li a:hover:after, #document_templates-for_tenants .site-sidebar ul li a:hover:after, #glossary_items-index .site-sidebar ul li a:hover:after {
  right: 0;
  top: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border: solid transparent;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 10px 28px 0;
  border-color: transparent #fff transparent transparent;
}
/* line 257, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .site-sidebar ul + h4, #topic_groups-show .site-sidebar ul + h4, #topic_groups-show .site-sidebar ul + h4, #articles-show .site-sidebar ul + h4, #article_categories-show .site-sidebar ul + h4, #document_templates-for_lessors .site-sidebar ul + h4, #document_templates-show .site-sidebar ul + h4, #document_templates-for_tenants .site-sidebar ul + h4, #glossary_items-index .site-sidebar ul + h4 {
  margin: 12px 0 0;
}
/* line 264, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .article-in-list, #topic_groups-show .article-in-list, #topic_groups-show .article-in-list, #articles-show .article-in-list, #article_categories-show .article-in-list, #document_templates-for_lessors .article-in-list, #document_templates-show .article-in-list, #document_templates-for_tenants .article-in-list, #glossary_items-index .article-in-list {
  list-style: none;
  padding: 42px 0 0;
  overflow: hidden;
}
/* line 268, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .article-in-list li, #topic_groups-show .article-in-list li, #topic_groups-show .article-in-list li, #articles-show .article-in-list li, #article_categories-show .article-in-list li, #document_templates-for_lessors .article-in-list li, #document_templates-show .article-in-list li, #document_templates-for_tenants .article-in-list li, #glossary_items-index .article-in-list li {
  background: url(/static/assets/stylesheets/svg/articles/lease-f3e7283c50a16c7883ed76fd21108bece1f075ea0fcd2f3da7ed655b78d657c4.svg) no-repeat;
  background-size: 19px;
  padding: 5px 0 12px 0;
  margin: 0 0 9px;
  float: left;
  width: 50%;
}
/* line 275, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .article-in-list li a, #topic_groups-show .article-in-list li a, #topic_groups-show .article-in-list li a, #articles-show .article-in-list li a, #article_categories-show .article-in-list li a, #document_templates-for_lessors .article-in-list li a, #document_templates-show .article-in-list li a, #document_templates-for_tenants .article-in-list li a, #glossary_items-index .article-in-list li a {
  color: #3D80B1;
  text-decoration: underline;
  display: block;
  margin: 0 0 0 30px;
}
/* line 285, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .next-articles .pull-left, #topic_groups-show .next-articles .pull-left, #topic_groups-show .next-articles .pull-left, #articles-show .next-articles .pull-left, #article_categories-show .next-articles .pull-left, #document_templates-for_lessors .next-articles .pull-left, #document_templates-show .next-articles .pull-left, #document_templates-for_tenants .next-articles .pull-left, #glossary_items-index .next-articles .pull-left {
  float: none !important;
}
/* line 287, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .next-articles .pull-left .thumbnail, #topic_groups-show .next-articles .pull-left .thumbnail, #topic_groups-show .next-articles .pull-left .thumbnail, #articles-show .next-articles .pull-left .thumbnail, #article_categories-show .next-articles .pull-left .thumbnail, #document_templates-for_lessors .next-articles .pull-left .thumbnail, #document_templates-show .next-articles .pull-left .thumbnail, #document_templates-for_tenants .next-articles .pull-left .thumbnail, #glossary_items-index .next-articles .pull-left .thumbnail {
  width: auto !important;
}
/* line 289, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .next-articles .pull-left .thumbnail img, #topic_groups-show .next-articles .pull-left .thumbnail img, #topic_groups-show .next-articles .pull-left .thumbnail img, #articles-show .next-articles .pull-left .thumbnail img, #article_categories-show .next-articles .pull-left .thumbnail img, #document_templates-for_lessors .next-articles .pull-left .thumbnail img, #document_templates-show .next-articles .pull-left .thumbnail img, #document_templates-for_tenants .next-articles .pull-left .thumbnail img, #glossary_items-index .next-articles .pull-left .thumbnail img {
  width: 150px;
}

/* line 299, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .wrap, #article_categories-show .wrap, #topic_groups-show .wrap {
  overflow: hidden;
}
/* line 303, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .thumbnail, #article_categories-show .thumbnail, #topic_groups-show .thumbnail {
  float: left;
  width: 35%;
  padding: 0 !important;
  background: none !important;
}
/* line 308, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .thumbnail + .article-title, #article_categories-show .thumbnail + .article-title, #topic_groups-show .thumbnail + .article-title {
  padding-left: 140px;
}
/* line 313, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .text, #article_categories-show .text, #topic_groups-show .text {
  float: left;
  width: 72%;
}
/* line 316, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/ui.scss */
#topics-show .text .summary, #article_categories-show .text .summary, #topic_groups-show .text .summary {
  min-height: 70px;
}

@media screen and (min-width: 1170px) {
  /* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  footer .row {
    width: 1170px;
  }
}
@media screen and (max-width: 992px) {
  /* line 22, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .tile-content .col-md-4 {
    width: 100% !important;
  }
  /* line 25, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .tile-content .col-md-8 {
    height: auto !important;
  }
  /* line 28, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .tile-content .img-tile {
    width: 50% !important;
  }

  /* line 37, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .flow .flow-body {
    position: relative;
  }
  /* line 39, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .flow .flow-body .flow-form-sidebar {
    float: none;
    width: 100%;
    margin: 24px 0 0;
  }
  /* line 46, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .flow .flow-buttons .flow-button-previous {
    float: left;
    width: 41.6667%;
  }
  /* line 50, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .flow .flow-buttons .flow-button-next {
    float: right;
    width: 41.6667%;
  }
  /* line 55, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .flow .save-for-later-width {
    background: #455266;
  }
  /* line 57, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .flow .save-for-later-width > * {
    color: #fff;
  }
  /* line 60, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .flow .save-for-later-width h5, .flow .save-for-later-width .save-for-later-button {
    display: inline;
  }
  /* line 62, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .flow .save-for-later-width h5 button, .flow .save-for-later-width .save-for-later-button button {
    margin-left: 12px;
  }

  /* line 74, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .welcome-banner .col-md-4 {
    padding-left: 20px;
    text-align: left;
  }

  /* line 81, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #filter-form .filter, #filter-form .filter-control {
    float: left;
    width: 25%;
  }

  /* line 89, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .download-details .col-md-6 {
    width: 50%;
    float: left;
  }
  /* line 92, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .download-details .col-md-6 + .col-md-6 {
    float: right;
  }

  /* line 97, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .site-sidebar {
    margin: 10px 0px !important;
  }

  /* line 101, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .site-main-content + .site-sidebar {
    padding: 0 30px;
    width: 100%;
  }

  /* line 108, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #article_categories-show .thumbnail {
    width: 100px !important;
  }
}
@media screen and (max-width: 640px) {
  /* line 121, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .banner_holder .stamp-holder {
    display: none;
  }
  /* line 124, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .verifier-banner p span {
    display: none;
  }
  /* line 126, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .verifier-banner p span.question {
    display: inline;
  }
  /* line 130, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .nav.nav-tabs > li, #pages-home ul.nav-tabs.account-menu > li, #pages-home .account-management-panel .tabs ul > li, .account-management-panel .tabs #pages-home ul > li {
    width: 100%;
  }
  /* line 132, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .nav.nav-tabs > li a, #pages-home ul.nav-tabs.account-menu > li a, #pages-home .account-management-panel .tabs ul > li a, .account-management-panel .tabs #pages-home ul > li a {
    border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
  }
  /* line 136, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home #icons {
    padding-bottom: 50px;
  }
  /* line 139, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .icon_text {
    display: none;
  }
  /* line 142, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .thumbnail {
    display: none;
  }
  /* line 145, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .article-title {
    padding: 0 0 20px 0 !important;
  }
  /* line 148, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home #articles #articles_frame .articles_box .article_box.active .summary, #pages-home #articles #articles_frame .articles_box .article_box.active .summary + p {
    visibility: hidden;
    height: 0px;
  }
  /* line 152, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home h2 {
    font-size: 27px;
  }
  /* line 154, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home h2 em {
    line-height: 2.5em;
  }
  /* line 157, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home h2 ~ a {
    display: inline-block;
    margin: 0 20px;
  }
  /* line 160, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home h2 ~ a + a {
    margin-top: 20px;
  }
  /* line 165, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .about-us {
    margin-top: 0;
    padding: 0 20px 0 !important;
  }
  /* line 169, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home footer.bottom {
    margin-top: 20px;
  }

  /* line 176, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .wrap-welcome-contract-intro h1 {
    font-size: 27px;
  }
  /* line 180, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .wrap-welcome-contract-intro > div {
    width: 90%;
  }
  /* line 184, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .wrap-welcome-contract-intro .intro-text {
    margin-top: 10px;
  }

  /* line 196, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .row .welcome-banner {
    width: 100%;
  }

  /* line 202, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #wizards-index .start-button {
    margin: 10px 0;
  }
  /* line 205, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #wizards-index .start-button button.start-wizard:after {
    display: none;
  }

  /* line 213, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .illustration h3 {
    padding: 0 20px;
    font-size: 16px;
  }

  /* line 219, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  p.home_short_explanation {
    padding: 20px 0 0 5px !important;
    font-size: 1.15em;
  }

  /* line 224, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .how-it-works + h2 {
    font-size: 27px;
  }

  /* line 228, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .navbar-toggle {
    display: none;
  }

  /* line 234, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-show .site-main-content #team li {
    position: relative;
    float: none;
    height: auto;
    width: 90%;
  }

  /* line 243, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .top-navigation .container header {
    display: none;
  }
  /* line 246, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .top-navigation .container ul {
    padding: 0;
  }
  /* line 248, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .top-navigation .container ul li.dropdown {
    padding: 0;
  }
  /* line 251, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .top-navigation .container ul li.search-bar {
    display: block !important;
    position: relative;
    top: auto;
    right: auto;
  }
  /* line 256, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .top-navigation .container ul li.search-bar .form-group {
    margin: 25px auto 10px;
    overflow: hidden;
    width: 195px;
  }
}
@media screen and (max-width: 480px) {
  /* line 268, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  #pages-home .verifier-banner p span.question {
    display: none;
  }

  /* line 271, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .banner_holder {
    padding-top: 15px !important;
  }
  /* line 273, /home/nader/lbb/lbb-production/app/assets/stylesheets/legacy/media-queries.scss */
  .banner_holder .banner_triangle .verifier-banner #verifier-mobile {
    display: none !important;
  }
}
/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder {
  width: 100%;
  height: auto;
  position: fixed;
  background: #fff;
  border-bottom: 1px solid #EEEEEE;
  z-index: 1000;
}
@media only screen and (max-width: 480px) {
  /* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
  .header_holder {
    position: relative;
  }
}
/* line 11, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header {
  width: 94%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  text-align: left;
  max-width: 1210px;
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
  margin: 0 auto;
}
/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_logo {
  height: auto;
  float: left;
}
/* line 27, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_logo a {
  text-decoration: none;
}
/* line 29, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_logo a img {
  vertical-align: middle;
}
/* line 31, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_logo a img + img {
  padding: 2px 0 0;
}
@media only screen and (max-width: 480px) {
  /* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
  .header_holder .header .header_logo {
    float: none;
    text-align: center;
  }
  /* line 40, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
  .header_holder .header .header_logo img:first-child {
    width: 85px;
    height: auto;
  }
}
/* line 47, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation {
  height: auto;
  text-align: right;
  float: right;
}
/* line 51, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul {
  margin: 1em 0 0;
}
/* line 53, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li {
  height: auto;
  width: auto;
  float: left;
  padding: 8px 0px 0px 40px;
  font-size: 14px;
  line-height: 17px;
  list-style: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
/* line 65, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li > a {
  display: block;
  padding: 4px 0;
  border: 1px solid transparent;
}
/* line 71, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li.account-menu > a {
  position: relative;
  border: 1px solid #455266;
  padding: 4px 4px 4px 32px;
  border-radius: 1px;
}
/* line 76, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li.account-menu > a:before {
  content: "";
  display: block;
  height: 33px;
  width: 22px;
  position: absolute;
  top: -8px;
  left: 0;
  background: url(/static/assets/stylesheets/persona/icon-account-menu.svg) no-repeat;
  background-size: auto;
}
/* line 87, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li.account-menu > a:after {
  content: "";
  display: block;
  height: 26px;
  width: 1px;
  position: absolute;
  top: 0;
  left: 22px;
  background: #455266;
}
/* line 98, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li.account-menu ul {
  -webkit-box-shadow: 0px 15px 20px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 15px 20px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 15px 20px 1px rgba(0, 0, 0, 0.1);
}
/* line 105, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li.professionals a {
  border: 1px solid #EEEEEE;
  padding: 4px 12px;
  border-radius: 2px;
}
/* line 111, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li a {
  color: #444444;
  text-decoration: none;
}
/* line 114, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li a:link {
  color: #444444;
  text-decoration: none;
}
/* line 118, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li a:visited {
  color: #444444;
  text-decoration: none;
}
/* line 122, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li a:hover {
  color: #d1262e;
  text-decoration: none;
}
/* line 127, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li ul {
  position: absolute;
  top: 60px;
  left: 30px;
  width: auto;
  white-space: nowrap;
  display: none;
  text-align: left;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #FFF;
  margin: 0px;
  padding: 15px 0px 0px 0px;
}
/* line 146, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
.header_holder .header .header_navigation ul li ul li {
  display: block;
  padding: 0px 15px 15px 15px;
  float: none;
  text-align: left;
  margin: 0px;
}
@media only screen and (max-width: 480px) {
  /* line 47, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
  .header_holder .header .header_navigation {
    float: none;
    position: relative;
    text-align: center;
  }
  /* line 160, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
  .header_holder .header .header_navigation ul {
    margin: 0;
    padding: 0;
  }
  /* line 163, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
  .header_holder .header .header_navigation ul li {
    padding: 0 8px 12px;
    float: none;
  }
  /* line 166, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
  .header_holder .header .header_navigation ul li ul {
    top: 27px;
  }
  /* line 170, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/header.scss */
  .header_holder .header .header_navigation ul .professionals {
    display: none;
  }
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder {
  width: 100%;
  height: auto;
  background-color: #212832;
  position: relative;
  top: 35px;
  padding-bottom: 35px;
}
/* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer {
  width: 94%;
  height: auto;
  text-align: center;
  max-width: 1210px;
  padding: 60px 0px 80px 0px;
  line-height: 1.6em;
  margin: 0 auto;
}
/* line 16, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_1 {
  width: 20%;
  height: auto;
  padding-left: 0%;
  padding-right: 3%;
  text-align: left;
  float: left;
}
/* line 25, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_2 {
  width: 20%;
  height: auto;
  padding-left: 0%;
  padding-right: 3%;
  text-align: left;
  float: left;
}
/* line 34, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_3 {
  width: 20%;
  height: auto;
  padding-left: 0%;
  padding-right: 3%;
  text-align: left;
  float: left;
}
/* line 43, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_4 {
  width: 31%;
  height: auto;
  padding-left: 0%;
  padding-right: 0%;
  text-align: right;
  float: right;
}
/* line 51, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_4 input[type=email] {
  font-size: 14px;
  color: #333333;
  border-right: 0px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 0px 10px 0px 10px;
  text-align: left;
  height: 23px;
  display: inline-block;
  width: 234px;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  font-family: "bitter";
}
/* line 71, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_4 .subscribe-button .btn-success {
  line-height: 19px;
  padding: 3px 12px;
  font-size: 12px;
}
/* line 80, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_4 .trustpilot {
  max-width: 160px;
  float: right;
  margin: 26px 0px 0 0;
}
/* line 88, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_title {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 20px;
}
/* line 95, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_text ul {
  padding-left: 0;
}
/* line 98, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_text ul li {
  list-style: none;
}
/* line 101, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_text ul li a {
  color: #999;
  text-decoration: none;
}
/* line 105, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_text ul li a:visited {
  color: #999;
  text-decoration: none;
}
/* line 110, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.footer_holder .footer .footer_text ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media only screen and (max-width: 480px) {
  /* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
  .footer_holder .footer {
    padding: 12px 0;
  }
  /* line 121, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
  .footer_holder .footer .footer_1 {
    width: 50%;
    padding: 0 3%;
  }
  /* line 125, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
  .footer_holder .footer .footer_2 {
    width: 50%;
    padding: 0 3%;
  }
  /* line 129, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
  .footer_holder .footer .footer_3 {
    width: 100%;
    padding: 0 3%;
    text-align: center;
  }
  /* line 134, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
  .footer_holder .footer .footer_4 {
    width: 100%;
    padding: 0 3%;
    text-align: center;
  }
  /* line 138, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
  .footer_holder .footer .footer_4 .footer_title {
    margin-top: 12px;
  }
  /* line 141, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
  .footer_holder .footer .footer_4 .trustpilot {
    max-width: none;
    float: none;
  }
}

/* line 151, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.social_footer {
  margin-top: 32px;
}
/* line 154, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.social_footer a {
  margin: 0 0 0 6px;
  opacity: .9;
}
/* line 158, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.social_footer a img {
  width: 32px;
  height: 32px;
}
/* line 163, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.social_footer a:hover {
  opacity: 1;
}

/* RED CLOSING BAR */
/* line 174, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.red_closing_holder {
  width: 100%;
  height: auto;
  background-color: #d1262f;
  position: relative;
  top: 35px;
}
/* line 181, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.red_closing_holder .red_closing {
  width: 94%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  text-align: center;
  max-width: 1210px;
  padding: 10px 0px 10px 0px;
  margin: 0 auto;
  overflow: hidden;
}
/* line 192, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.red_closing_holder .red_closing .red_closing_left {
  color: #ffffff;
  float: left;
  width: 50%;
  font-size: 12px;
  text-align: left;
}
/* line 200, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/footer.scss */
.red_closing_holder .red_closing .red_closing_right {
  color: #ffffff;
  float: right;
  width: 50%;
  font-size: 12px;
  text-align: right;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/forms.scss */
.form-group.required .control-label:after,
.required-control-label:after,
.checkbox.required label:after {
  content: " *";
  color: #a94442;
}

/* line 9, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/forms.scss */
input.ng-dirty.ng-invalid {
  color: #a94442;
  border-color: #ebccd1;
}

/* line 14, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/forms.scss */
.error-message {
  margin-top: 0.5em;
  color: #a94442;
}

/* line 19, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/forms.scss */
.radio label.disabled {
  color: #eeeeee;
}

/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/forms.scss */
.checkbox.has-error {
  color: #a94442;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sidebar.scss */
.site-sidebar {
  margin: 0 0 0 5%;
  padding: 0;
  float: left;
  width: 25%;
  background-color: rgba(238, 238, 238, 0.3);
  background-color: #fff;
}
/* line 9, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sidebar.scss */
.site-sidebar h4 {
  padding-bottom: 10px;
}
/* line 11, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sidebar.scss */
.site-sidebar h4 a {
  color: #D1262E !important;
}

/* line 17, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sidebar.scss */
#sidebar-item-0 {
  margin-bottom: 100px;
}

@media (min-width: 996px) {
  /* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sidebar.scss */
  .desktop {
    display: block;
  }

  /* line 26, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sidebar.scss */
  .mobile {
    display: none;
  }
}
@media (max-width: 995px) {
  /* line 33, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sidebar.scss */
  .desktop {
    display: none;
  }

  /* line 36, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sidebar.scss */
  .mobile {
    display: block;
  }
}
/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/share_sheet.scss */
.share-sheet {
  text-align: right;
  margin-bottom: 10px;
}

/* line 4, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.search-bar-article {
  float: right;
  width: 200px;
  margin: 10px 0 0 60px;
}
/* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.search-bar-article input[type=search] {
  width: 120px;
  font-size: 12px;
  height: 32px;
}
/* line 13, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.search-bar-article input[type=submit] {
  border: 1px solid #D1262E;
  background: #D1262E;
  font-size: 12px;
  padding: 6px;
  color: #fff;
  height: 32px;
}

/* line 22, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.topic-intro {
  margin: 0 0 20px;
  padding: 5px 0 15px;
  background: none;
  color: #666;
}
/* line 27, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.topic-intro h1 {
  margin: 0 0 20px;
  font-size: 26px;
  color: #212832;
}

/* line 34, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 24px !important;
}
/* line 39, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 2.5% 0 0;
  padding: 12px 15px 24px;
  border: 1px solid #EEEEEE;
  background: #FFFFFF;
}
/* line 47, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article.even {
  margin: 0 0 0 2.5%;
}
/* line 52, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article a .image-container {
  display: block;
  overflow: hidden;
  background: #3456ae;
  height: 120px;
}
/* line 57, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article a .image-container img {
  margin-top: -50px;
  width: 100%;
  opacity: .9;
  transition: opacity 0.5s;
}
/* line 62, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article a .image-container img :hover {
  opacity: 1;
  transition: opacity 0.3s;
}
/* line 68, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article a h2 {
  margin: 15px 0 20px 0;
  font-size: 17px;
  line-height: 1.3em;
  font-weight: 500;
  color: #D1262E;
}
/* line 75, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article a .summary {
  font-size: 14px;
  color: #333;
}
/* line 79, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article a:hover {
  text-decoration: none;
}
/* line 83, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.featured-articles .row article:hover {
  -webkit-box-shadow: 0px 4px 14px 4px #c7c7c7;
  -moz-box-shadow: 0px 4px 14px 4px #c7c7c7;
  box-shadow: 0px 4px 14px 4px #c7c7c7;
  transition: box-shadow 0.55s;
}

@media screen and (max-width: 1200px) {
  /* line 100, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
  .featured-articles .thumbnail {
    float: left;
    margin: 0 20px 20px 0;
    width: 100px;
  }
}
/* line 108, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.next-articles {
  padding: 50px 0 0;
}
/* line 111, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.next-articles article {
  border-top: 1px solid #EEEEEE;
  padding: 35px 15px;
  overflow: hidden;
}
/* line 116, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.next-articles article > a img {
  float: left;
  display: block;
  padding: 0 30px 21px 0;
}
/* line 122, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.next-articles article > a h2 {
  font-size: 17px;
  line-height: 1.3em;
  font-weight: 500;
  margin: 0 0 12px !important;
  color: #D1262E;
}
/* line 129, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.next-articles article > a .summary {
  font-size: 14px;
  color: #333333;
}
/* line 133, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.next-articles article > a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 480px) {
  /* line 108, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
  .next-articles {
    padding: 0;
  }
}

/* line 145, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.articles-list {
  padding: 0 0;
  margin-top: -30px;
}
/* line 148, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.articles-list article {
  border-top: 1px solid #EEEEEE;
  padding: 35px 15px 25px;
  overflow: hidden;
}
/* line 152, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.articles-list article > a {
  float: left;
  display: block;
  padding: 0 30px 0 0;
}
/* line 157, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.articles-list article h2 {
  font-size: 21px;
  line-height: 1.3em;
  font-weight: 500;
  margin: 0 0 12px !important;
}
/* line 162, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.articles-list article h2 a {
  color: #D1262E;
}
/* line 167, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.articles-list article .summary {
  font-size: 14px;
}
/* line 169, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.articles-list article .summary a {
  color: #D1262E;
}

/* line 177, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.read-more a {
  color: #D1262E;
}

/* line 182, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.pagination a {
  color: #D1262E;
}
/* line 186, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.pagination .page.active a {
  border-color: #D1262E;
  color: #FFFFFF;
  background-color: #D1262E;
}

/* line 195, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
img.social-share-icon {
  width: 32px;
  margin: 5px;
}

/* line 200, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.call-to-action {
  border: 3px solid #F74B68;
  border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  position: relative;
  padding: 18px 24px 18px 140px;
  margin: 24px 0 0;
}
/* line 206, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.call-to-action img {
  position: absolute;
  display: block;
  bottom: 0;
  left: 30px;
  height: 175px;
}
/* line 213, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.call-to-action h3 {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 1.4em;
}
/* line 218, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.call-to-action a {
  display: inline-block;
  font-size: .8em;
  padding: 5px 12px;
  margin: 0 0 0 21px;
  color: #fff;
  background: #D1262E;
  border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
}
/* line 226, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.call-to-action a:before {
  content: ' ';
  display: inline-block;
  height: 12px;
  width: 6px;
  vertical-align: middle;
  margin: 6px 6px 6px 0;
  background: url(/static/assets/stylesheets/svg/shared/small-arrow.svg) no-repeat;
}
/* line 235, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.call-to-action a:hover {
  color: #fff;
  text-decoration: none;
  background: #de474e;
}
@media only screen and (max-width: 480px) {
  /* line 200, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
  .call-to-action {
    padding: 18px 24px 18px 100px;
  }
  /* line 243, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
  .call-to-action img {
    left: 9px;
  }
  /* line 246, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
  .call-to-action a {
    margin: 18px 0 3px;
  }
}

/* line 255, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content h1 {
  font-size: 24px;
  color: #212832;
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 3px solid #eea2a5;
}
/* line 263, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .intro {
  margin: 20px 0 38px;
  font-size: 16px;
  color: #e43840;
}
/* line 268, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .body {
  margin-bottom: 40px;
}
/* line 270, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .body p, #articles-show .site-main-content .body div {
  line-height: 1.8em;
  color: #535353;
  text-align: justify;
  margin-bottom: 21px;
}
/* line 276, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .body a {
  text-decoration: none;
  border-bottom: 1px dotted;
}
/* line 280, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .body ul {
  overflow: hidden;
  margin: 5px 0 25px;
  padding: 0 0 0 25px !important;
  list-style-position: outside;
  line-height: 1.8em;
  color: #535353;
}
/* line 287, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .body ul li {
  margin: 0 0 9px;
}
/* line 291, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .body h2 {
  font-size: 20px !important;
  margin: 20px 0 18px 0;
  color: #212832;
  color: #212832;
  font-weight: bold;
  border-bottom: 1px solid #e6e6e6;
  display: inline-block;
  padding: 0 0 3px;
}
/* line 301, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .body h3 {
  color: #D1262E;
  font-size: 16px !important;
  margin: 20px 0 18px 0;
}
/* line 306, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .site-main-content .body blockquote {
  font-size: 1em;
  line-height: 1.8em;
  color: #535353;
  text-align: justify;
  margin-bottom: 28px;
}
@media only screen and (max-width: 480px) {
  /* line 315, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
  #articles-show .site-main-content .body img {
    width: 100% !important;
  }
}
/* line 321, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .body ul {
  list-style-position: outside;
}
/* line 328, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .image {
  padding: 14px 20px 20px 0;
}
/* line 330, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .image img {
  width: 250px;
}
/* line 333, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
#articles-show .image figcaption {
  padding: 3px 0 0 0;
  color: #666;
  font-size: 9px;
  font-weight: normal !important;
}

/* line 346, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.important {
  display: inline-block;
  margin: 10px auto;
  padding: 15px;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.5em;
  background-color: rgba(255, 255, 0, 0.3);
}

/* line 359, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.article-in-list .thumbnail > img, .article-in-list .thumbnail a > img {
  max-width: none !important;
}

/* line 365, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.article-title a {
  color: #D1262E;
  font-weight: 500;
  font-size: 18px;
}

/* line 372, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/articles.scss */
.article-search-results a {
  font-weight: bold;
  color: #333333;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.nav-justified > li, .nav-tabs.nav-justified > li, .account-management-panel .tabs ul > li, .nav-tabs.nav-justified, .account-management-panel .tabs ul {
  white-space: nowrap;
}
/* line 3, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.nav-justified > li.be, .account-management-panel .tabs ul > li.be, .nav-tabs.nav-justified.be, .account-management-panel .tabs ul.be {
  text-align: center;
}
/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.nav-justified > li > li, .nav-tabs.nav-justified > li > li, .account-management-panel .tabs ul > li > li, .nav-tabs.nav-justified > li, .account-management-panel .tabs ul > li {
  display: inline-block !important;
  width: auto !important;
}
@media only screen and (max-width: 480px) {
  /* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
  .nav-justified > li > li, .nav-tabs.nav-justified > li > li, .account-management-panel .tabs ul > li > li, .nav-tabs.nav-justified > li, .account-management-panel .tabs ul > li {
    display: block !important;
  }
}

/* line 14, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation {
  padding: 20px 0;
  background: #212832;
}
/* line 19, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .dropdown:hover .dropdown-menu {
  display: block;
}
/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .dropdown-menu {
  margin-top: 0px;
}
/* line 28, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container {
  width: 94%;
  max-width: 1210px;
  margin: 0 auto;
}
/* line 32, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container header {
  position: absolute;
  top: 50%;
  left: 0;
  color: #EEEEEE;
  line-height: 24px;
  margin-top: -12px;
  font-size: 13px;
}
/* line 42, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul {
  margin: 0;
}
/* line 44, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul.be {
  padding: 0 160px;
}
/* line 46, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul.be li.dropdown {
  padding: 0 20px;
}
/* line 48, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul.be li.dropdown > a {
  padding-left: 28px;
  padding-right: 28px;
}
/* line 55, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul.fr li.dropdown {
  padding: 0 10px;
}
/* line 57, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul.fr li.dropdown > a {
  padding-left: 10px;
  padding-right: 10px;
}
/* line 65, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.dropdown > a {
  border-radius: 4px 4px 0 0 !important;
  -moz-border-radius: 4px 4px 0 0 !important;
  -webkit-border-radius: 4px 4px 0 0 !important;
  border: 1px solid transparent;
  font-size: 16px;
  color: #FFFFFF !important;
  background: #455266;
}
/* line 72, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.dropdown > a .caret {
  border-bottom-color: #FFFFFF !important;
  border-top-color: #FFFFFF !important;
}
/* line 76, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.dropdown > a:hover {
  background: #D1262E;
}
/* line 81, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.dropdown.open > a {
  background: #D1262E;
}
/* line 83, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.dropdown.open > a:hover {
  background: #D1262E;
}
/* line 88, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.dropdown .dropdown-menu {
  background-color: #D1262E !important;
  padding: 24px 24px 32px 4px;
  box-shadow: 0 !important;
  border: 0 transparent;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.dropdown .dropdown-menu a {
  color: #FFFFFF;
  display: block;
  line-height: 20px;
  opacity: .9;
}
/* line 98, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.dropdown .dropdown-menu a:hover {
  background: #D1262E;
  opacity: 1;
}
/* line 106, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.search-bar {
  position: absolute;
  right: 0;
  top: 8px;
}
/* line 110, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.search-bar .form-group {
  margin: 0;
}
/* line 112, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.search-bar .form-group input[type="search"] {
  display: block;
  float: left;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border: 0 none;
  height: 28px;
  width: 120px;
  padding: 0 6px;
  font-size: 10px;
  margin: 0;
}
/* line 123, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li.search-bar .form-group input[type="submit"] {
  display: block;
  float: left;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border: 0 none;
  height: 28px;
  padding: 0 12px;
  font-size: 10px;
  margin: 0;
  background: #d1262e;
  color: #fff;
}
/* line 139, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul .group a {
  font-size: larger;
  font-weight: bold;
  border-bottom: 2px solid #FFFFFF;
  margin: 0 20px 9px;
  padding: 0;
  opacity: 1;
}
/* line 148, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
.top-navigation .container ul li + .group {
  margin: 18px 0 0;
}
@media only screen and (max-width: 480px) {
  /* line 42, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
  .top-navigation .container ul {
    padding: 0;
  }
  /* line 153, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
  .top-navigation .container ul li.dropdown {
    padding: 0 3px;
  }
  /* line 156, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
  .top-navigation .container ul li.dropdown > a {
    padding-left: 9px;
    padding-right: 9px;
    position: inherit;
  }
  /* line 164, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
  .top-navigation .container ul li.search-bar {
    position: relative;
    right: auto;
    top: auto;
  }
  /* line 168, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
  .top-navigation .container ul li.search-bar .form-group {
    overflow: hidden;
    margin: 0 auto;
  }
  /* line 171, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
  .top-navigation .container ul li.search-bar .form-group input[type="search"] {
    display: block;
    float: left;
    border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    border: 0 none;
    height: 28px;
    width: 120px;
    padding: 0 6px;
    font-size: 10px;
    margin: 0;
  }
  /* line 182, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/top_navigation.scss */
  .top-navigation .container ul li.search-bar .form-group input[type="submit"] {
    display: block;
    float: left;
    border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    border: 0 none;
    height: 28px;
    padding: 0 12px;
    font-size: 10px;
    margin: 0;
    background: #d1262e;
    color: #fff;
  }
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/breadcrumb.scss */
.breadcrumb > li + li:before {
  content: "» ";
}

/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/breadcrumb.scss */
.breadcrumb {
  margin-top: 12px;
  border-radius: 0;
  padding: 20px 0 0 0;
  margin-left: 0;
  background: none;
}
/* line 12, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/breadcrumb.scss */
.breadcrumb a {
  color: #333;
}
/* line 14, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/breadcrumb.scss */
.breadcrumb a:hover {
  cursor: pointer;
}
@media screen and (max-width: 850px) {
  /* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/breadcrumb.scss */
  .breadcrumb {
    display: none;
  }
}

/* line 25, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/breadcrumb.scss */
#pages-section .breadcrumb {
  width: 94%;
  max-width: 1210px;
  margin: 12px auto;
  padding: 0;
}

/* line 7, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
.glossary-item .intro {
  font-weight: bold;
}
/* line 11, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
.glossary-item .definition {
  margin-bottom: 20px;
}
/* line 15, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
.glossary-item .meta {
  margin-top: 20px;
}

/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
#glossary_items-index .site-sidebar {
  padding-top: 38px;
}
/* line 27, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
#glossary_items-index .site-main-content {
  padding: 15px 30px;
}

/* line 35, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
.terms-index .row > div {
  padding-left: 0;
}
/* line 37, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
.terms-index .row > div a {
  color: #333333;
}
/* line 43, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
.terms-index dt {
  font-weight: strong;
  font-size: 150%;
  color: #D1262E;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #EEEEEE;
}
/* line 51, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
.terms-index dd {
  margin-bottom: 0.5em;
}
/* line 55, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/glossary_items.scss */
.terms-index dd + dt {
  margin-top: 1em;
}

/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
.document-template .intro {
  font-weight: bold;
}

/* line 11, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#collect-email-modal {
  z-index: 7000;
}
@media screen and (min-width: 768px) {
  /* line 13, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
  #collect-email-modal .modal-dialog {
    width: 700px;
    margin: 30px auto;
  }
}

/* line 24, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#collect-email-modal-form .checkbox a {
  color: #428BCA;
  text-decoration: underline;
}
/* line 29, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#collect-email-modal-form .checkbox a:hover {
  color: #D1262E;
  text-decoration: none;
}

/* line 36, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
.between-buttons-margin a:first-child {
  margin-bottom: 10px;
}

/* line 40, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
.modeles {
  margin-top: -30px;
  padding: 20px 0 30px;
  border-top: 2px dotted #FFFFFF;
  text-align: center;
}
/* line 45, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
.modeles h2 {
  margin-bottom: 30px;
  font-size: 28px;
}
/* line 48, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
.modeles h2 em {
  line-height: 2.8em;
  font-size: 12px;
}
/* line 53, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
.modeles a {
  border: 1px solid #D1262E;
  padding: 10px 30px;
  color: #D1262E;
  text-decoration: none;
  border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
}
/* line 194, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.modeles a:hover {
  color: #FFFFFF;
  background-color: #D1262E;
}
@media only screen and (max-width: 480px) {
  /* line 53, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
  .modeles a {
    display: block;
    margin-bottom: 9px;
  }
}

/* line 62, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
.document-templates-intro {
  padding: 20px 0;
}
/* line 64, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
.document-templates-intro + .modeles {
  padding-top: 40px !important;
  border: none;
}
@media only screen and (max-width: 480px) {
  /* line 64, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
  .document-templates-intro + .modeles {
    padding-top: 12px !important;
  }
}

/* line 75, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .site-main-content, #document_templates-for_tenants .site-main-content {
  width: 100% !important;
}
/* line 78, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .document-templates-intro, #document_templates-for_tenants .document-templates-intro {
  padding: 35px 0 0;
  text-align: justify;
}
/* line 82, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .document-templates-list, #document_templates-for_tenants .document-templates-list {
  padding: 10px 0;
}
/* line 84, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .document-templates-list .col-md-6, #document_templates-for_tenants .document-templates-list .col-md-6 {
  padding: 0;
}
/* line 86, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .document-templates-list .col-md-6 li, #document_templates-for_tenants .document-templates-list .col-md-6 li {
  background: url(/static/assets/stylesheets/svg/document-templates/document-download-147db1716089497bfebc59836048f9eb331913578401cef67cb0ef61692a0b70.svg) no-repeat;
  background-size: 16px;
  padding: 1px 21px 6px 30px;
}
/* line 90, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .document-templates-list .col-md-6 li a, #document_templates-for_tenants .document-templates-list .col-md-6 li a {
  color: #3D80B1;
  text-decoration: underline;
}
/* line 97, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .document-templates-list h2, #document_templates-for_tenants .document-templates-list h2 {
  margin-right: 20px;
  border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -webkit-border-radius: 2px !important;
  padding: 10px 0 10px 10px;
  font-size: 20px;
  color: #D1262E;
  background-color: #FFFFFF;
}
/* line 105, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .document-templates-list ul, #document_templates-for_tenants .document-templates-list ul {
  margin-left: 10px;
  padding: 0;
  list-style: none;
}
/* line 109, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-for_lessors .document-templates-list ul li, #document_templates-for_tenants .document-templates-list ul li {
  margin-bottom: 15px;
}

/* line 117, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-index .site-main-content-full {
  max-width: 900px;
  padding: 0 24px;
  margin: 0 auto;
}
/* line 122, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-index .site-main-content-full h1 {
  text-align: center;
}
/* line 125, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-index .site-main-content-full .document-templates-intro {
  text-align: center;
}

/* line 133, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .document-templates-intro {
  padding: 40px 0 20px;
  text-align: justify;
  border-top: 1px solid #EEEEEE;
}
/* line 138, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .download-section {
  float: right;
  width: 35%;
  padding: 18px 24px 24px;
  margin: 20px 0 70px 50px;
  border: 3px solid #33CC7A;
  background-color: #fff;
  box-shadow: 0 1px 5px #898989;
  position: relative;
}
/* line 147, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .download-section h3 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
}
/* line 153, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .download-section .download-buttons {
  text-align: center;
  padding: 15px 0 0;
}
/* line 156, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .download-section .download-buttons a {
  background-color: #2db46b;
  border: none;
}
/* line 159, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .download-section .download-buttons a:hover {
  background-color: #33CC7A;
}
/* line 162, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .download-section .download-buttons a:before {
  content: url(/static/assets/stylesheets/svg/shared/arrow.svg);
  display: block;
  opacity: .65;
  width: 80px;
  position: absolute;
  top: 66px;
  left: -20px;
}
/* line 173, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .download-section .share-sheet {
  position: relative;
  margin: 0px 0 -42px;
  bottom: -42px;
  height: 42px;
}
@media only screen and (max-width: 480px) {
  /* line 138, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
  #document_templates-show .download-section {
    float: none;
    width: 100%;
    margin: 0 0 90px;
  }
  /* line 183, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
  #document_templates-show .download-section .share-sheet {
    text-align: center;
  }
}
/* line 188, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .wizard-button {
  float: right;
  width: 35%;
  box-shadow: 0 1px 5px #898989;
  padding: 18px;
  margin: 20px 0 70px 50px;
  position: relative;
  display: inline-block;
  font-size: 1.1em;
  font-weight: bold;
  background: #D1262E;
  border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
}
@media only screen and (max-width: 480px) {
  /* line 188, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
  #document_templates-show .wizard-button {
    display: none;
  }
}
/* line 202, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .wizard-button a {
  color: #fff;
}
/* line 206, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .wizard-button:before {
  content: ' ';
  display: inline-block;
  height: 12px;
  width: 6px;
  vertical-align: middle;
  margin: 6px 6px 6px 0;
  background: url(/static/assets/stylesheets/svg/shared/small-arrow.svg) no-repeat;
}
/* line 215, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .wizard-button:hover {
  color: #fff;
  text-decoration: none;
  background: #de474e;
}
/* line 220, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .wizard-button .share-sheet {
  position: relative;
  margin: 0px 0 -42px;
  bottom: -32px;
  height: 42px;
}
/* line 227, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .intro {
  margin: 24px 0 48px;
}
/* line 229, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .intro h1 {
  margin: 0 0 18px;
  font-size: 26px;
}
/* line 234, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .body {
  clear: both;
  background: #FFFFFF;
  border: 4px solid #EEEEEE;
  padding: 44px 24px;
  width: 100%;
  margin-bottom: 24px;
}
/* line 241, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/document_templates.scss */
#document_templates-show .body table {
  table-layout: fixed;
}

/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content {
  padding-left: 50px;
  width: 75% !important;
}
/* line 10, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .banner {
  height: 30px;
  background: #212832;
}
/* line 14, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .row {
  padding: 60px 0 0 !important;
  position: relative;
}
/* line 18, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-sidebar {
  float: none;
  position: absolute;
  top: 60px;
  left: 0;
  margin: 0;
}
/* line 24, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-sidebar h3 {
  font-size: 24px;
  color: #212832;
  font-weight: bold;
}
/* line 29, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-sidebar ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(34, 42, 52, 0.17);
  margin: 30px 0 0;
}
/* line 34, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-sidebar ul li {
  line-height: 56px;
  border-bottom: 1px solid rgba(34, 42, 52, 0.17);
}
/* line 37, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-sidebar ul li a {
  display: block;
  position: relative;
  background: transparent;
  text-indent: 9px;
}
/* line 42, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-sidebar ul li a:hover {
  background: rgba(34, 42, 52, 0.05);
  text-decoration: none;
}
/* line 45, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-sidebar ul li a:hover:after {
  right: 0;
  top: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border: solid transparent;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 10px 28px 0;
  border-color: transparent #fff transparent transparent;
}
/* line 67, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content {
  margin: 0 0 0 30%;
}
/* line 69, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content h1 {
  font-size: 28px;
  color: #D1262E;
  font-weight: bold;
  padding-bottom: 0;
}
/* line 75, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content h2 {
  display: inline-block;
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 24px;
  padding: 30px 0 5px;
  border-bottom: 3px solid #eea2a5;
}
/* line 83, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content h3 {
  font-size: 18px;
  color: #1a1a1a;
  padding: 0 0 9px;
}
/* line 88, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content h2 + h3 {
  margin-top: 0;
}
/* line 91, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content p, #pages-show .site-main-content ul {
  color: #404040;
  margin-bottom: 24px;
  padding-left: 0;
  line-height: 1.6em;
}
/* line 99, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content ul li {
  list-style: none;
  line-height: 28px;
}
/* line 102, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content ul li:before {
  content: "\2192 \0020";
}
/* line 107, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content #team {
  margin: 0 0 -110px;
  overflow: hidden;
  padding: 80px 4px 0;
}
/* line 111, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content #team li {
  position: relative;
  float: left;
  height: 260px;
  background: #fff;
  border: 1px solid #e6e6e6;
  width: 45%;
  margin: 0 0 110px 5%;
  text-align: center;
}
/* line 120, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content #team li:nth-child(odd) {
  margin: 0 5% 110px 0;
}
/* line 123, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content #team li:before {
  content: "";
}
/* line 126, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content #team li img {
  border: 4px solid #8899b0;
  margin-top: -72px;
}
/* line 130, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
#pages-show .site-main-content #team li p {
  padding: 0 36px 12px;
  text-align: justify;
}
@media only screen and (max-width: 480px) {
  /* line 67, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
  #pages-show .site-main-content {
    margin: 0;
    padding-left: 0;
    width: 100% !important;
  }
}

/* line 146, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.page .intro {
  padding: 18px 0 0;
}
/* line 150, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.page .meta {
  margin-top: 2em;
}
/* line 156, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.page .download-page-as-pdf {
  float: right;
  margin: 10px 15px;
}
/* line 159, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.page .download-page-as-pdf a.btn {
  border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  border: 1px solid #D1262E;
  padding: 10px 30px;
  color: #FFFFFF;
  text-decoration: none;
  background-color: #D1262E;
}
/* line 166, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.page .download-page-as-pdf a.btn:hover {
  border-color: #661115;
  color: #FFFFFF;
  background-color: #661115;
}

/* line 175, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
ul.explore {
  list-style-type: none;
  padding: 0;
}
/* line 178, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
ul.explore li.group {
  margin-top: 1em;
  font-weight: bold;
}
/* line 182, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
ul.explore a {
  color: #333333;
}

/* line 187, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page {
  text-align: center;
  padding: 40px;
  color: #455266;
}
/* line 194, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page p {
  font-size: 16px;
  font-family: "Arial", sans-serif;
  margin-bottom: 30px;
}
/* line 199, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page ul {
  list-style: none;
  padding: 0;
  text-align: justify;
  margin-bottom: 40px;
}
/* line 204, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page ul p {
  margin-bottom: 8px;
}
/* line 208, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page .explanation {
  width: 80%;
  margin: 0 10%;
}
/* line 211, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page .explanation img {
  width: 200px;
}
/* line 214, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page .explanation ul {
  list-style: none;
  padding: 30px 0 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
/* line 219, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page .explanation ul li {
  width: 33.3%;
  float: left;
  padding: 0 3%;
  text-align: center;
}
/* line 224, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pages.scss */
.signature-landing-page .explanation ul li img {
  display: block;
  width: 100%;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .container {
  width: 100%;
}
/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .intro {
  height: 500px;
  padding-top: 50px;
  background-color: #efefef;
}
/* line 10, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .white-box {
  width: 55%;
  margin: 0 0 0 40%;
  padding: 50px;
  background: rgba(255, 255, 255, 0.85);
  color: #455266;
}
/* line 16, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .white-box h1 {
  margin: 0 0 30px;
  font-size: 30px;
  font-weight: bold;
}
/* line 21, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .white-box ul {
  list-style: none;
  padding: 0 0 24px;
}
/* line 24, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .white-box ul li {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 12px;
}
/* line 29, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .white-box ul small {
  font-size: 13px;
  font-weight: normal;
}
/* line 34, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .white-box .cta {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  background: #D1262E;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 0 21px;
  border-radius: 8px;
}
/* line 44, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .white-box .cta:hover {
  text-decoration: none;
  background: #bb2229;
}
/* line 50, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages {
  padding: 40px;
  text-align: center;
}
/* line 53, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages h3 {
  font-size: 30px;
}
/* line 56, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages ul {
  margin: 30px auto 0;
  padding: 0;
  max-width: 1300px;
  list-style: none;
}
/* line 62, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages li {
  display: inline-block;
  width: 460px;
  margin: 1% 2%;
  background: url(/static/assets/stylesheets/section_pages/arrow.svg) no-repeat 420px center;
  background-size: 11px auto;
}
/* line 68, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages li a {
  display: block;
  height: 74px;
  line-height: 74px;
  border: 1px solid #D1262E;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  color: #455266;
}
/* line 77, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages li a:before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 74px;
  vertical-align: middle;
}
/* line 84, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages li a:hover {
  background-color: rgba(142, 142, 142, 0.1);
}
/* line 89, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages .furnished a:before {
  background: url(/static/assets/stylesheets/section_pages/furnished.svg) no-repeat center center;
  background-size: 44px auto;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages .not_furnished a:before {
  background: url(/static/assets/stylesheets/section_pages/not-furnished.svg) no-repeat center center;
  background-size: 34px auto;
}
/* line 97, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages .cohabitation a:before {
  background: url(/static/assets/stylesheets/section_pages/cohabitation.svg) no-repeat center center;
  background-size: 50px auto;
}
/* line 101, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages .seasonal a:before {
  background: url(/static/assets/stylesheets/section_pages/seasonal.svg) no-repeat center center;
  background-size: 66px auto;
}
/* line 105, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #links-other-section-pages .student a:before {
  background: url(/static/assets/stylesheets/section_pages/student.svg) no-repeat center center;
  background-size: 42px auto;
}
/* line 110, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #page-parts {
  width: 100%;
  max-width: 100%;
  background: #F2F2F2;
  padding-top: 96px;
  text-align: left;
}
/* line 116, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section #page-parts > .row {
  width: 94%;
  max-width: 1210px;
  margin: 0 auto !important;
}
/* line 123, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .page-parts-nav h3 {
  display: inline-block;
  color: #455266;
  font-weight: bold;
  margin: 0 0 32px;
  padding: 0 0 12px;
  border-bottom: 4px solid #D1262E;
}
/* line 131, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .page-parts-nav a {
  display: block;
  margin: 0 0 9px;
  font-weight: bold;
  color: #455266;
}
/* line 138, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .expanded-list {
  padding: 0 0 0 32px;
  font-family: "Arial", sans-serif;
}
@media only screen and (max-width: 768px) {
  /* line 138, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section .expanded-list {
    padding: 60px 0 0;
  }
}
/* line 144, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .expanded-list .item {
  background: #fff;
  padding: 32px;
  margin: 0 0 32px;
  text-align: justify;
}
/* line 149, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
#pages-section .expanded-list .item h4 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin: 0 0 24px;
}
@media only screen and (max-width: 480px) {
  /* line 158, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section .top-navigation {
    display: none;
  }
  /* line 161, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section .intro {
    height: auto;
    padding-top: 0;
  }
  /* line 165, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section .white-box {
    width: 100%;
    margin: 0;
    padding: 21px;
  }
  /* line 169, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section .white-box .cta {
    font-size: 15px;
    line-height: normal;
    text-align: center;
    display: block;
    display: table-cell;
    vertical-align: middle;
  }
  /* line 178, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section #links-other-section-pages {
    padding: 21px;
  }
  /* line 180, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section #links-other-section-pages li {
    width: 100%;
    margin: 2% 0;
    display: table;
  }
  /* line 184, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section #links-other-section-pages li a {
    line-height: normal;
    text-align: center;
    display: block;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
  }
  /* line 191, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
  #pages-section #links-other-section-pages li a:before {
    display: none;
  }
}

/* line 204, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-student .intro {
  background: url(/static/assets/stylesheets/home/section-page-student.jpg) no-repeat center center;
  background-size: cover;
}
/* line 208, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-student .topic-page {
  width: 94%;
  max-width: 1210px;
  margin: 45px auto 0;
}

/* line 204, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-furnished .intro {
  background: url(/static/assets/stylesheets/home/section-page-furnished.jpg) no-repeat center center;
  background-size: cover;
}
/* line 208, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-furnished .topic-page {
  width: 94%;
  max-width: 1210px;
  margin: 45px auto 0;
}

/* line 204, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-not-furnished .intro {
  background: url(/static/assets/stylesheets/home/section-page-not-furnished.jpg) no-repeat center center;
  background-size: cover;
}
/* line 208, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-not-furnished .topic-page {
  width: 94%;
  max-width: 1210px;
  margin: 45px auto 0;
}

/* line 204, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-seasonal .intro {
  background: url(/static/assets/stylesheets/home/section-page-seasonal.jpg) no-repeat center center;
  background-size: cover;
}
/* line 208, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-seasonal .topic-page {
  width: 94%;
  max-width: 1210px;
  margin: 45px auto 0;
}

/* line 204, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-cohabitation .intro {
  background: url(/static/assets/stylesheets/home/section-page-cohabitation.jpg) no-repeat center center;
  background-size: cover;
}
/* line 208, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-page-cohabitation .topic-page {
  width: 94%;
  max-width: 1210px;
  margin: 45px auto 0;
}

/* line 216, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/sections.scss */
.section-star-rating {
  margin-top: 30px;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
.topics-intro {
  padding: 20px 0 0;
}
/* line 3, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
.topics-intro + .modeles {
  padding-top: 40px !important;
  border: none;
}
@media only screen and (max-width: 480px) {
  /* line 3, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
  .topics-intro + .modeles {
    padding-top: 12px !important;
  }
}

@media (min-width: 768px) {
  /* line 13, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
  #topics-index .banner + .container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  /* line 18, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
  #topics-index .banner + .container {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
  #topics-index .banner + .container {
    width: 100%;
  }
}
/* line 27, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .site-main-content-full {
  padding: 0;
  margin: 0 auto;
}
/* line 30, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .site-main-content-full h1 {
  text-align: center;
  color: #D1262E;
  font-size: 30px;
  margin-top: 30px;
}
/* line 36, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .site-main-content-full .topics-intro {
  text-align: center;
}
/* line 38, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .site-main-content-full .topics-intro p {
  margin-bottom: 18px;
}
@media (min-width: 1200px) {
  /* line 43, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
  #topics-index .site-main-content-full .topics-intro p {
    padding-left: 100px;
    padding-right: 100px;
  }
}
/* line 49, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics-cta {
  font-size: 21px;
  font-weight: bold;
  padding: 24px;
}
/* line 53, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics-cta a {
  font-size: 15px;
  display: inline-block;
  background: #6198FF;
  color: #fff;
  padding: 13px 30px;
  margin-left: 12px;
  border-radius: 5px;
}
/* line 66, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .row {
  padding-top: 30px !important;
  text-align: center;
}
/* line 70, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics {
  background: #F2F2F2;
}
/* line 73, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics h2 {
  margin-bottom: 0;
}
/* line 76, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics ul {
  list-style: none;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 70px;
}
/* line 82, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics ul li {
  width: 30%;
  display: block;
  height: 180px;
  float: left;
  margin: 0 1.65%;
}
/* line 88, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics ul li a {
  background: #455266;
  opacity: .85;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  margin-top: 90px;
  padding: 12px 24px;
}
/* line 97, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics ul li.legal {
  background: url(/static/assets/stylesheets/topics/legal.jpg) no-repeat center center;
  background-size: cover;
}
/* line 101, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics ul li.lessor {
  background: url(/static/assets/stylesheets/topics/lessor.jpg) no-repeat center center;
  background-size: cover;
}
/* line 105, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topics ul li.tenant {
  background: url(/static/assets/stylesheets/topics/tenant.jpg) no-repeat center center;
  background-size: cover;
}
/* line 113, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .models .buttons {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 0 70px;
  border-bottom: 2px dashed #CCCCCC;
  overflow: hidden;
}
/* line 119, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .models .buttons .col-md-6 {
  text-align: right;
}
/* line 121, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .models .buttons .col-md-6:last-child {
  text-align: left;
}
/* line 126, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .models .buttons a {
  display: inline-block;
  height: 92px;
  line-height: 92px;
  background: #6198FF;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 0 24px;
  border-radius: 5px;
}
/* line 136, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .models .buttons a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 56px;
  width: 56px;
  background: url(/static/assets/stylesheets/topics/icon-lessor-models.svg) no-repeat center center;
  background-size: auto;
  margin-right: 12px;
}
/* line 146, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .models .buttons a.tenant-models:before {
  background: url(/static/assets/stylesheets/topics/icon-tenant-models.svg) no-repeat center center;
}
/* line 153, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topic-categories {
  padding-top: 120px !important;
}
/* line 156, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topic-category {
  margin: 0 auto 45px;
  max-width: 1200px;
  overflow: hidden;
  text-align: left;
}
/* line 161, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topic-category img {
  float: left;
  margin: 0 60px 24px 0;
}
/* line 165, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topic-category h3 {
  margin-top: 0;
}
/* line 168, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topic-category .link {
  margin-top: 30px;
}
/* line 170, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topic-category .link a {
  color: #D1262E;
  font-size: 16px;
  font-weight: bold;
}
/* line 174, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .topic-category .link a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  background: url(/static/assets/stylesheets/topics/red-arrow.svg) no-repeat left center;
  background-size: auto;
  vertical-align: middle;
  margin-right: 12px;
}
/* line 187, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topics.scss */
#topics-index .call-to-action {
  max-width: 1200px;
  margin: 0 auto;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topic_groups.scss */
.topic-group-page {
  margin-top: 25px;
}
/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topic_groups.scss */
.topic-group-page .topic-category {
  border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  padding: 20px;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.3);
}
/* line 11, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topic_groups.scss */
.topic-group-page .topic-category button {
  border-color: #D1262E;
  margin: 0 0 20px 0;
  color: #D1262E;
  background: none;
}
/* line 16, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/topic_groups.scss */
.topic-group-page .topic-category button:hover {
  color: #FFFFFF;
  background-color: #D1262E;
}

/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
#faq-show .banner {
  height: 30px;
  background: #212832;
}
/* line 10, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
#faq-show .site-main-content-full > .row {
  padding: 60px 0 0 !important;
}
@media only screen and (max-width: 480px) {
  /* line 10, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
  #faq-show .site-main-content-full > .row {
    padding: 24px 0 0 !important;
  }
}

/* line 18, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar {
  margin: 0;
  padding: 0 15px;
  float: left;
  width: 25%;
}
/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar h1 {
  font-size: 24px;
  color: #212832;
  font-weight: bold;
}
/* line 28, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(34, 42, 52, 0.17);
  margin: 30px 0 0;
}
/* line 33, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar ul li {
  line-height: 56px;
  border-bottom: 1px solid rgba(34, 42, 52, 0.17);
}
/* line 36, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar ul li a {
  display: block;
  position: relative;
  background: transparent;
  text-indent: 9px;
}
/* line 41, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar ul li a:hover {
  background: rgba(34, 42, 52, 0.05);
  text-decoration: none;
  color: #D1262E;
}
/* line 45, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar ul li a:hover:after {
  right: 0;
  top: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border: solid transparent;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 10px 28px 0;
  border-color: transparent #fff transparent transparent;
}
/* line 65, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar ul li.active a {
  font-weight: bold;
}
/* line 70, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-sidebar ul + h4 {
  margin: 12px 0 0;
}
@media only screen and (max-width: 480px) {
  /* line 18, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
  .faq-sidebar {
    float: none;
    width: 100%;
    padding-bottom: 24px;
  }
}

/* line 80, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-main {
  float: left;
  width: 75%;
  padding: 0 0 0 50px;
}
/* line 84, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-main h2, .faq-main h2 a {
  font-size: 28px;
  color: #d1262e;
  font-weight: bold;
  padding-bottom: 0;
}
/* line 92, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-main .faq-question h3 a {
  display: inline-block;
  font-size: 17px;
  color: #1a1a1a;
  margin: 0 0 12px 24px;
  padding: 0 0 5px;
  border-bottom: 3px solid #eea2a5;
  position: relative;
  text-decoration: none;
}
/* line 101, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-main .faq-question h3 a:hover {
  text-decoration: none;
}
/* line 104, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-main .faq-question h3 a:before {
  content: "+";
  color: #D1262E;
  display: block;
  position: absolute;
  left: -24px;
  -webkit-transition: transform 1s;
  /* Safari */
  transition: transform 1s;
}
/* line 117, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-main .faq-question.active h3 a:before {
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}
@media only screen and (max-width: 480px) {
  /* line 80, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
  .faq-main {
    width: 100%;
    float: none;
    padding: 15px;
  }
}

/* line 133, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-topic {
  display: none;
}
/* line 137, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-topic.active {
  display: block;
}

/* line 143, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-questions {
  padding: 45px 0 50px;
}

/* line 148, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-question h3 {
  margin-top: 0;
}
/* line 151, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-question .faq-answer {
  margin: 0 0 0 24px;
  padding: 0;
  max-height: 0;
  color: transparent;
  background: transparent;
  position: relative;
  transition: max-height .5s ease;
  overflow: hidden;
}
/* line 163, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/faq.scss */
.faq-question.active .faq-answer {
  padding: 18px;
  margin: 0 0 32px 24px;
  color: #333333;
  max-height: 300px;
  background: #EEEEEE;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/useful_addresses.scss */
.space {
  margin-top: 70px;
}

/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/useful_addresses.scss */
.useful-addresses-intro {
  margin-top: 50px;
  margin-bottom: 20px;
}

/* line 10, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/useful_addresses.scss */
.useful-addresses-list {
  min-height: 400px;
}

/* line 16, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/useful_addresses.scss */
.address-card h3 small a {
  color: #666;
}

/* line 7, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content .banner {
  height: 260px;
  background: #EEEEEE;
}
/* line 11, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content header {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  text-align: center;
}
/* line 20, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content header h2 {
  font-size: 18px;
}
/* line 25, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content section {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 0 50px;
}
/* line 30, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content section article {
  float: left;
  width: 33.3%;
  text-align: center;
  position: relative;
  top: -110px;
}
/* line 37, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content section article h3 {
  color: #D1262E;
  font-size: 1.3em;
  padding: 0 0 12px;
}
/* line 41, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content section article h3 img {
  display: block;
  margin: 0 auto 24px;
}
/* line 46, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content section article ul {
  list-style: circle;
  padding: 0 40px;
  text-align: justify;
}
/* line 50, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content section article ul li {
  margin: 0 0 3px;
}
/* line 56, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content .well {
  clear: both;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 90px 60px;
  background: #fff;
  border: 6px solid rgba(209, 38, 46, 0.7);
  box-shadow: -1px 0px 6px 0 rgba(0, 0, 0, 0.37);
}
@media only screen and (max-width: 480px) {
  /* line 56, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
  #professionals-index #main-content .well {
    width: 98%;
    padding: 21px;
  }
  /* line 68, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
  #professionals-index #main-content .well h2 {
    font-size: 24px;
    text-align: center;
  }
}
/* line 73, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content .well .contact-form-intro {
  margin: 0 0 30px;
  text-align: center;
}
/* line 77, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content .well .text-right {
  padding-top: 24px;
}
/* line 80, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content .well a {
  color: #D1262E;
  text-decoration: underline;
}
/* line 84, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content .well a:hover {
  color: #000;
}
/* line 89, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content .pro-video {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 40px;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/professionals.scss */
#professionals-index #main-content .pro-video #pro-video {
  margin: 0 10%;
  width: 80%;
}

/*
 * 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 bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *
 */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  src: local("Bitter-Regular"), url(https://fonts.gstatic.com/s/bitter/v7/zfs6I-5mjWQ3nxqccMoL2A.woff2) format("woff2"), url(https://fonts.gstatic.com/s/bitter/v7/SHIcXhdd5RknatSgOzyEkA.woff) format("woff");
}
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  src: local("Bitter-Bold"), url(https://fonts.gstatic.com/s/bitter/v7/evC1haE-MsorTl_A7_uSGVtXRa8TVwTICgirnJhmVJw.woff2) format("woff2"), url(https://fonts.gstatic.com/s/bitter/v7/evC1haE-MsorTl_A7_uSGT8E0i7KZn-EPnyo3HZu7kw.woff) format("woff");
}
@font-face {
  font-family: 'Bitter';
  font-style: italic;
  font-weight: 400;
  src: local("Bitter-Italic"), url(https://fonts.gstatic.com/s/bitter/v7/-t3SK6sofTjAH0MNf_tLaPesZW2xOQ-xsNqO47m55DA.woff2) format("woff2"), url(https://fonts.gstatic.com/s/bitter/v7/eMS0tViDqryBl0EG1pqFZfesZW2xOQ-xsNqO47m55DA.woff) format("woff");
}
/* line 40, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#pages-home .container {
  width: 100%;
}
/* line 42, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#pages-home .container div {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 52, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder {
  width: 100%;
  height: auto;
  background: url(/static/assets/stylesheets/home/background.jpg) no-repeat center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 0 0;
  color: #fff;
}
/* line 62, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .stamp-holder {
  width: 94%;
  height: 0;
  padding-left: 3%;
  padding-right: 3%;
  max-width: 1210px;
  position: relative;
  margin: 0 auto;
}
/* line 70, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .stamp-holder #stamp {
  display: block;
  position: absolute;
  left: 3%;
  top: 7px;
  z-index: 1001;
}
/* line 78, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle {
  background: url(/static/assets/stylesheets/home/triangle.png);
  background-size: 100% 26px;
  background-repeat: no-repeat;
  background-position: bottom;
}
/* line 83, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner {
  width: 94%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
/* line 92, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner_title h1 {
  font-size: 36px;
  line-height: 38px;
  color: #ffffff;
  padding: 140px 0px 24px 0px;
  margin: 0;
  font-weight: 700;
}
@media only screen and (max-width: 480px) {
  /* line 92, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .banner_holder .banner_triangle .banner .banner_title h1 {
    padding: 32px 0px 24px 0px;
  }
}
/* line 103, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner_title .banner_subtitle {
  font-size: 22px;
  color: #ffffff;
  padding: 0px 0px 54px 0px;
  margin: 0;
  font-weight: 700;
}
/* line 109, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner_title .banner_subtitle b {
  color: #ffe96b;
}
@media only screen and (max-width: 480px) {
  /* line 103, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .banner_holder .banner_triangle .banner .banner_title .banner_subtitle {
    padding: 0px 0px 27px 0px;
  }
}
/* line 117, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner_button {
  font-size: 18px;
  color: #ffffff;
  padding: 0px 0px 0px 0px;
}
/* line 121, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner_button a.btn {
  display: inline-block;
  padding: 10px 20px;
  line-height: 38px;
  background-color: #d1262e;
  color: white;
  border-radius: 7px;
  text-decoration: none;
}
/* line 129, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner_button a.btn img {
  width: 13px;
  height: auto;
  margin: 0 0 0 15px;
  line-height: 38px;
  vertical-align: middle;
}
/* line 136, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner_button a.btn:hover {
  color: #ffe96b;
  background-color: #a61e25;
}
/* line 142, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner #promo-badge {
  margin-top: 10px;
  margin-left: 20px;
}
/* line 146, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .examples-preview-links {
  padding: 30px 0px 120px 0px;
}
@media only screen and (max-width: 480px) {
  /* line 146, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .banner_holder .banner_triangle .banner .examples-preview-links {
    padding: 30px 0px 70px 0px;
  }
}
/* line 152, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner-text {
  font-size: 15px;
  color: #ffffff;
  padding: 5px;
}
/* line 156, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner-text a:link, .banner_holder .banner_triangle .banner .banner-text a:visited {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}
/* line 161, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .banner .banner-text a:hover {
  color: #ffe96b;
  text-decoration: none;
}
/* line 167, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .verifier-banner {
  background: rgba(209, 39, 47, 0.75);
  text-align: center;
  font-size: 15px;
  height: 48px;
  line-height: 48px;
}
/* line 173, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .verifier-banner a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  color: #d1262e;
  height: 24px;
  line-height: 24px;
  padding: 0 5px;
  font-family: "Arial" sans-serif;
  font-size: 13px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin: 0 0 0 6px;
}
/* line 186, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .verifier-banner a:hover {
  text-decoration: none;
  background: white;
}
/* line 191, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.banner_holder .banner_triangle .verifier-banner #verifier-mobile {
  display: none;
}
@media screen and (max-width: 850px) {
  /* line 195, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .banner_holder .banner_triangle .verifier-banner span {
    display: none;
  }
  /* line 198, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .banner_holder .banner_triangle .verifier-banner #verifier-mobile {
    display: inline;
  }
}

/* Header Banner */
/* line 208, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.header-banner {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 850px) {
  /* line 208, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .header-banner {
    display: none;
  }
}

/* ADVANTAGES */
/* line 221, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#icons {
  height: auto;
  text-align: center;
  max-width: 1210px;
  padding: 30px 3% 100px;
  line-height: 1.6em;
  margin: 0 auto;
  overflow: hidden;
}
/* line 229, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#icons .icon {
  padding: 30px 3% 30px 3%;
  float: left;
  width: 19%;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
}
/* line 237, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#icons .icon img {
  max-width: 120px;
}
/* line 240, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#icons .icon h3 {
  padding: 30px 0px 10px 0px;
  color: #d1262e;
  font-size: 15px;
  font-weight: bold;
}
/* line 247, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#icons .icon:hover {
  -webkit-box-shadow: 0px 4px 14px 4px #c7c7c7;
  -moz-box-shadow: 0px 4px 14px 4px #c7c7c7;
  box-shadow: 0px 4px 14px 4px #c7c7c7;
  cursor: pointer;
  transition: all 0.25s linear;
}
@media only screen and (max-width: 480px) {
  /* line 256, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #icons .icon {
    padding: 30px 3% 30px 3%;
    float: none;
    width: auto;
  }
}

/* VIDEO */
/* line 267, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#video_holder {
  width: 94%;
  height: auto;
  text-align: center;
  max-width: 1210px;
  padding: 50px 3% 120px;
  color: #333;
  border-top: 2px dotted #ccc;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  /* line 267, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #video_holder {
    padding-bottom: 45px;
  }
}
/* line 281, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#video_holder.videos-2 .home-video {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding-right: 3%;
}
/* line 288, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#video_holder.videos-2 .home-video:nth-child(even) {
  padding: 0 0 0 3%;
}
/* line 293, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#video_holder h2 {
  font-size: 30px;
  font-weight: normal;
  padding: 0px 0px 12px 0px;
  margin: 0;
}
/* line 298, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#video_holder h2 + p {
  font-size: 14px;
  padding: 0px 0px 40px 0px;
}
/* line 303, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#video_holder .iframe-responsive-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
}
/* line 307, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#video_holder .iframe-responsive-wrapper .iframe-ratio {
  display: block;
  width: 100%;
  height: auto;
}
/* line 312, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#video_holder .iframe-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 850px) {
  /* line 325, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #video_holder.videos-2 .home-video {
    float: none;
    width: 100%;
    padding-right: 0;
    padding-bottom: 24px;
  }
  /* line 330, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #video_holder.videos-2 .home-video:nth-child(even) {
    padding: 0;
  }
}
/* FAQ & SECTION PAGE LINKS */
/* line 344, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#faq_holder, #section_page_links_holder {
  width: 94%;
  height: auto;
  max-width: 1210px;
  padding: 77px 3% 100px;
  margin: 0 auto;
  text-align: center;
  border-top: 2px dotted #CCC;
}
@media only screen and (max-width: 480px) {
  /* line 344, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #faq_holder, #section_page_links_holder {
    padding: 45px 3%;
  }
}
/* line 355, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#faq_holder h2, #section_page_links_holder h2 {
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  padding: 0px 0px 15px 0px;
  margin: 0;
}
/* line 361, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#faq_holder h2 + p, #section_page_links_holder h2 + p {
  color: #333333;
  font-size: 14px;
  padding: 0px 0px 72px 0px;
}
@media only screen and (max-width: 480px) {
  /* line 361, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #faq_holder h2 + p, #section_page_links_holder h2 + p {
    padding-bottom: 15px;
  }
}

/* line 372, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#faqs {
  width: 94%;
  height: auto;
  max-width: 1210px;
  padding: 77px 3% 100px;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  /* line 372, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #faqs {
    padding: 45px 3%;
  }
}
/* line 382, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#faqs .faq .question a {
  color: #333333;
  font-size: 20px;
}
/* line 386, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#faqs .faq .answer {
  display: none;
  text-align: justify;
}
/* line 389, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#faqs .faq .answer p {
  margin: 0;
}

/* line 397, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#section_page_links .col-xs-4 {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
/* line 403, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#section_page_links .section-page-link img {
  width: 80%;
}
/* line 406, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#section_page_links .section-page-link a {
  color: #333333;
  text-decoration: none;
}
/* line 410, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#section_page_links .section-page-link p {
  font-size: 16px;
  font-weight: normal;
  margin: 1em 0 3em;
  color: #D1262E;
}

/* ARTICLES (now categories) */
/* line 424, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#article_holder {
  width: 100%;
  height: auto;
  background-color: #F2F2F2;
}

/* line 430, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles {
  width: 94%;
  height: auto;
  text-align: center;
  max-width: 1210px;
  padding: 126px 3% 100px;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  /* line 430, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #articles {
    padding: 45px 3%;
  }
}
/* line 440, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles h2 {
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  padding: 0px 0px 35px 0px;
  margin: 0;
}
/* line 446, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles h2 + p {
  color: #333333;
  font-size: 14px;
  padding: 0px 0px 72px 0px;
}
@media only screen and (max-width: 480px) {
  /* line 446, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #articles h2 + p {
    padding-bottom: 15px;
  }
}
/* line 456, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame {
  width: 100%;
  max-width: 1210px;
  background-color: #ffffff;
  border-top: 1px solid #d1262e;
  padding-top: 40px;
  padding-bottom: 90px;
  line-height: 1.6em;
  display: block;
  min-height: 550px;
  position: relative;
}
/* line 467, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box {
  width: 100%;
  max-width: 1210px;
  padding-bottom: 0px;
  line-height: 1.6em;
}
/* line 472, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box a {
  color: #D1262E;
  text-decoration: none;
}
/* line 475, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box a:visited {
  color: #d1262e;
  text-decoration: none;
}
/* line 479, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box a:hover {
  color: #d1262e;
  text-decoration: none;
}
/* line 484, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box {
  color: #666666;
  width: 31%;
  margin: 0 0 0 1.5%;
  float: left;
  text-align: center;
  position: relative;
  z-index: 100;
  background-color: #FFF;
  height: auto;
  overflow: visible;
}
@media only screen and (max-width: 480px) {
  /* line 484, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #articles #articles_frame .articles_box .article_box {
    width: 100%;
    margin: 0;
    float: none;
  }
}
/* line 500, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box .article_box_inner {
  padding: 27px;
}
@media only screen and (max-width: 480px) {
  /* line 500, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  #articles #articles_frame .articles_box .article_box .article_box_inner {
    padding: 12px;
  }
}
/* line 505, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box .article_box_inner img {
  width: 100%;
  height: auto;
}
/* line 509, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box .article_box_inner h3 {
  font-size: 16px;
  font-weight: normal;
  margin: 1em 0;
  color: #D1262E;
}
/* line 515, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box .article_box_inner .summary {
  visibility: hidden;
  height: 0px;
  overflow: hidden;
  margin: 0 0 1em;
}
/* line 525, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box h3 a:hover {
  color: #000;
  text-decoration: underline;
}
/* line 532, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box ul {
  list-style-type: none;
  padding-left: 0;
}
/* line 536, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box ul li a {
  color: #555555;
}
/* line 539, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box ul li a:hover {
  color: #D1262E;
  text-decoration: underline;
}
/* line 547, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box.active {
  z-index: 101;
  -webkit-box-shadow: 0px 4px 14px 4px #c7c7c7;
  -moz-box-shadow: 0px 4px 14px 4px #c7c7c7;
  box-shadow: 0px 4px 14px 4px #c7c7c7;
  transition: all 0.25s linear;
}
/* line 553, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame .articles_box .article_box.active .summary, #articles #articles_frame .articles_box .article_box.active .summary + p {
  visibility: visible;
  height: auto;
}
/* line 561, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame #articles_box_1 {
  display: block;
}
/* line 564, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame #articles_box_2 {
  display: none;
}
/* line 567, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame #articles_box_3 {
  display: none;
}
/* line 571, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame #articles_text {
  position: absolute;
  bottom: 45px;
  z-index: 90;
  width: 60%;
  border-top: 1px solid #d9d9d9;
  padding-top: 45px;
  left: 20%;
}
/* line 579, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame #articles_text a {
  color: #666;
}
/* line 581, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#articles #articles_frame #articles_text a:hover {
  color: red;
}

/* TESTIMONIALS */
/* line 598, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.testimonials_holder {
  width: 100%;
  height: auto;
}
/* line 601, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.testimonials_holder .testimonials {
  width: 94%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  text-align: center;
  max-width: 1210px;
  padding: 126px 0px 100px 0px;
  border-bottom: 2px dotted #CCC;
  line-height: 1.6em;
  margin: 0 auto;
}
/* line 612, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.testimonials_holder .testimonials .testimonials_title {
  font-size: 30px;
  font-weight: normal;
  color: #333333;
  padding: 0px 0px 77px 0px;
  margin: 0;
}
/* line 619, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.testimonials_holder .testimonials .testimonial {
  width: 27%;
  margin-left: 3%;
  margin-right: 3%;
  float: left;
  text-align: center;
  color: #666666;
  font-size: 14px;
  font-style: italic;
}
/* line 628, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.testimonials_holder .testimonials .testimonial .testimonial_thumbnail {
  margin: auto;
  width: 120px;
  height: 120px;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
/* line 639, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.testimonials_holder .testimonials .testimonial .testimonial_thumbnail img {
  display: inline;
  margin: 0 auto;
  height: 100%;
  width: auto;
}
/* line 646, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.testimonials_holder .testimonials .testimonial .testimonial_name {
  font-size: 16px;
  color: #333333;
  padding: 20px 0px 0px 0px;
  font-style: normal;
}
/* line 652, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.testimonials_holder .testimonials .testimonial .testimonial_position {
  font-size: 14px;
  color: #d1262f;
  padding: 0px 0px 20px 0px;
  font-style: italic;
  font-weight: 400;
}
@media only screen and (max-width: 480px) {
  /* line 601, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .testimonials_holder .testimonials {
    padding: 45px 0;
  }
  /* line 662, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .testimonials_holder .testimonials .testimonials_title {
    padding: 0px 0px 24px 0px;
  }
}

/* SOCIAL LINKS */
/* line 678, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder {
  width: 100%;
  height: auto;
}
/* line 681, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social {
  width: 94%;
  height: auto;
  padding-left: 3%;
  padding-right: 3%;
  text-align: center;
  max-width: 1210px;
  padding: 85px 0px 126px 0px;
  margin: 0 auto;
}
/* line 690, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social .social_title {
  font-size: 24px;
  font-weight: normal;
  color: #333333;
  padding: 0px 0px 60px 0px;
  margin: 0;
}
/* line 697, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social .social_icons {
  height: 56px;
  background: url(/static/assets/stylesheets/home/social_shadow.png) no-repeat center bottom;
  overflow: hidden;
}
/* line 701, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social .social_icons img {
  margin: 0px 11px 0px 11px;
  width: 62px;
  clip: rect(0px, 62px, 200px, 0px);
}
/* line 707, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social .subscribe_title {
  font-size: 18px;
  font-weight: normal;
  color: #333333;
  padding: 66px 0px 24px 0px;
  margin: 0;
}
/* line 714, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social .subscribe_text {
  font-size: 14px;
  color: #666666;
  padding: 0px 0px 40px 0px;
  width: 40%;
  margin: 0 auto;
}
/* line 721, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social #newsletter-subscription {
  color: #333;
}
/* line 723, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social #newsletter-subscription .subscribe_field {
  font-size: 14px;
  color: #333333;
  border-right: 0px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 0px 10px 0px 10px;
  width: 255px;
  text-align: left;
  margin: 0px;
  height: 34px;
  line-height: 34px;
  vertical-align: middle;
  border-radius: 3px 0 0 3px !important;
  -moz-border-radius: 3px 0 0 3px !important;
  -webkit-border-radius: 3px 0 0 3px !important;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* line 742, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social #newsletter-subscription .subscribe_button {
  font-size: 14px;
  width: 88px;
  margin: 0px;
  height: 36px;
  position: relative;
  top: 0px;
  left: -3px;
  border-radius: 0 3px 3px 0;
}
/* line 752, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social #newsletter-subscription .field_with_errors {
  display: inline;
}
/* line 754, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.social_holder .social #newsletter-subscription .field_with_errors .error-messages {
  padding-top: 12px;
  color: #d1262f;
}
@media only screen and (max-width: 480px) {
  /* line 681, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .social_holder .social {
    padding: 45px 0px;
  }
  /* line 762, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .social_holder .social .social_title {
    padding-bottom: 24px;
  }
  /* line 765, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .social_holder .social .social_icons {
    height: 50px;
  }
  /* line 767, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .social_holder .social .social_icons img {
    margin: 0;
    width: 50px;
  }
  /* line 772, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .social_holder .social .subscribe_title {
    padding: 24px 0px;
  }
  /* line 776, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .social_holder .social #newsletter-subscription .subscribe_field {
    width: 66%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  /* line 782, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .social_holder .social #newsletter-subscription .subscribe_button {
    width: 33%;
    height: 34px;
  }
}

@media screen and (max-width: 850px) {
  /* line 808, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .header_navigation > ul > li:first-child {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  /* line 814, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .icons_icon {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }

  /* line 819, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .icons_icon h2 {
    padding: 10px 0px 10px 0px;
  }

  /* line 822, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .articles_frame {
    width: 100%;
    max-width: 1210px;
    background-color: #ffffff;
    border-top: 1px solid #d1262e;
    padding-top: 40px;
    padding-bottom: 60px;
    line-height: 1.6em;
    display: block;
    height: auto;
    max-height: 2000px;
    overflow: visible;
  }

  /* line 835, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .articles_box_active {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    float: none;
    height: auto;
    margin-bottom: 15px;
  }

  /* line 843, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .articles_box_inactive {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    float: none;
    height: auto;
    margin-bottom: 15px;
  }

  /* line 852, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .articles_box_active p {
    display: none;
    font-size: 0px;
  }

  /* line 857, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .articles_box_inactive p {
    display: none;
    font-size: 0px;
  }

  /* line 862, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .articles_text {
    display: none;
  }

  /* line 866, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .testimonial {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    float: none;
    margin-bottom: 40px;
  }

  /* line 874, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .footer_1 {
    width: 100%;
    height: auto;
    padding-left: 0%;
    padding-right: 0%;
    text-align: left;
    float: none;
  }

  /* line 883, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .footer_2 {
    width: 100%;
    height: auto;
    padding-left: 0%;
    padding-right: 0%;
    text-align: left;
    float: none;
  }

  /* line 892, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .footer_3 {
    width: 100%;
    height: auto;
    padding-left: 0%;
    padding-right: 0%;
    text-align: left;
    float: none;
  }

  /* line 901, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .footer_4 {
    width: 100%;
    height: auto;
    padding-left: 0%;
    padding-right: 0%;
    text-align: left;
    float: none;
  }

  /* line 910, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .footer_title {
    margin-top: 40px;
  }

  /* line 914, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .subscribe_field {
    float: left;
    margin-top: 0px;
  }

  /* line 919, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
  .subscribe_button {
    float: left;
    margin-top: 15px;
  }
}
/* line 931, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
a.btn {
  display: block;
  padding: 10px;
  text-decoration: none;
}

/* line 937, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.btn-success {
  font-family: Bitter;
  border: none;
  border-radius: 3px;
  color: white;
  background-color: #5db75d;
}
/* line 943, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.btn-success:hover {
  color: white;
  background-color: #459c45;
  cursor: pointer;
}

/* line 949, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
.btn-success[disabled] {
  background-color: #5db75d;
  color: #b5deb5;
}

/* line 954, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#magic-trick {
  padding-bottom: 50px;
  border-bottom: 2px dotted #ccc;
  margin-bottom: 50px;
  text-align: center;
}
/* line 959, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/home.scss */
#magic-trick a {
  color: #D1262E;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#energy-public-lead-form, #fire-insurance-public-lead-form, #inventory-public-lead-form, #building-diagnostics-public-lead-form {
  -webkit-box-shadow: 0px 4px 14px 4px #c7c7c7;
  -moz-box-shadow: 0px 4px 14px 4px #c7c7c7;
  box-shadow: 0px 4px 14px 4px #c7c7c7;
}
/* line 7, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#energy-public-lead-form header, #fire-insurance-public-lead-form header, #inventory-public-lead-form header, #building-diagnostics-public-lead-form header {
  background: #eb5768;
  background: -moz-linear-gradient(top, #eb5768 0%, #ce2b3a 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #eb5768), color-stop(100%, #ce2b3a));
  background: -webkit-linear-gradient(top, #eb5768 0%, #ce2b3a 100%);
  background: -o-linear-gradient(top, #eb5768 0%, #ce2b3a 100%);
  background: -ms-linear-gradient(top, #eb5768 0%, #ce2b3a 100%);
  background: linear-gradient(to bottom, #eb5768 0%, #ce2b3a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb5768', endColorstr='#ce2b3a', GradientType=0 );
  color: #fff;
  font-family: "Arial", sans-serif;
  overflow: hidden;
}
/* line 19, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#energy-public-lead-form header h2, #fire-insurance-public-lead-form header h2, #inventory-public-lead-form header h2, #building-diagnostics-public-lead-form header h2 {
  font-size: 20px;
  font-weight: bold;
  padding: 18px 18px 0;
  margin: 0;
}
/* line 24, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#energy-public-lead-form header h2 span, #fire-insurance-public-lead-form header h2 span, #inventory-public-lead-form header h2 span, #building-diagnostics-public-lead-form header h2 span {
  display: inline-block;
  padding: 0 8px 14px 0;
  background: url(/static/assets/stylesheets/public-leads/highlighting@2x.png) no-repeat left bottom;
  background-size: contain;
  position: relative;
}
/* line 30, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#energy-public-lead-form header h2 span:after, #fire-insurance-public-lead-form header h2 span:after, #inventory-public-lead-form header h2 span:after, #building-diagnostics-public-lead-form header h2 span:after {
  display: block;
  content: "";
  width: 77px;
  height: 219px;
  background: url(/static/assets/stylesheets/public-leads/pencil@2x.png) no-repeat center center;
  background-size: 77px auto;
  position: absolute;
  top: 30px;
  left: 225px;
}
/* line 43, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#energy-public-lead-form header p, #fire-insurance-public-lead-form header p, #inventory-public-lead-form header p, #building-diagnostics-public-lead-form header p {
  padding: 0 18px 18px;
  margin: 0;
}

/* line 51, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#building-diagnostics-public-lead-form header {
  background: #208371;
  background: -moz-linear-gradient(top, #219580 0%, #208371 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #219580), color-stop(100%, #208371));
  background: -webkit-linear-gradient(top, #219580 0%, #208371 100%);
  background: -o-linear-gradient(top, #219580 0%, #208371 100%);
  background: -ms-linear-gradient(top, #219580 0%, #208371 100%);
  background: linear-gradient(to bottom, #219580 0%, #208371 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#219580', endColorstr='#208371', GradientType=0 );
  overflow: visible;
  position: relative;
}
/* line 62, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#building-diagnostics-public-lead-form header:before {
  display: block;
  content: "";
  width: 204px;
  height: 133px;
  background: url(/static/assets/stylesheets/public-leads/peb@2x.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -30px;
  right: -50px;
}
/* line 74, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#building-diagnostics-public-lead-form header h2 {
  position: relative;
  z-index: 990;
}
/* line 77, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#building-diagnostics-public-lead-form header h2 span {
  background: transparent;
}
/* line 79, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
#building-diagnostics-public-lead-form header h2 span:after {
  display: none;
}

/* line 87, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
.well {
  border: 0 none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 94, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
.well input[type="text"], .well input[type="email"], .well input[type="tel"], .well input[type="search"], .well input[type="url"], .well input[type="password"], .well .ui-autocomplete-input, .well textarea, .well .uneditable-input {
  background: #EFEFEF;
  border: 0 none;
  padding: 4px 12px;
  color: #000;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* line 107, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
.well .buttons {
  padding: 6px 0;
  text-align: center;
}
/* line 110, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
.well .buttons .button {
  color: #fff;
  padding: 0 14px 0 0;
  background: url(/static/assets/stylesheets/svg/shared/arrow-right.svg) no-repeat right center #354051;
  background-size: auto 12px;
  border: 10px solid #354051;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
}
/* line 120, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
.well .buttons .button:hover {
  opacity: .8;
}

/* line 127, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/public_leads.scss */
.public-building-diagnostics-price {
  font-weight: bold;
  text-align: center;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partnerships.scss */
iframe#partner-content {
  border: none;
  width: 100%;
  height: 1800px;
}

/* line 7, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partnerships.scss */
.sidebar-partnership-allo-diagnostic {
  margin-top: 150px;
  text-align: center;
  color: #858593;
}
/* line 13, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partnerships.scss */
.sidebar-partnership-allo-diagnostic h3 {
  color: #576f92;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 21, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partnerships.scss */
.sidebar-partnership-allo-diagnostic span.num {
  font-weight: bold;
  font-size: 20px;
  color: #576f92;
  border: 3px #576f92 solid;
  border-radius: 35px;
  padding: 0 10px 3px 10px;
}
/* line 30, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partnerships.scss */
.sidebar-partnership-allo-diagnostic .mention {
  font-size: 10px;
}
/* line 32, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partnerships.scss */
.sidebar-partnership-allo-diagnostic .mention p {
  margin-top: 10px;
  margin-bottom: 0;
}

/* line 39, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partnerships.scss */
iframe#enchantier_iframe {
  margin-top: 20px;
  height: 1200px;
}

/* line 44, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partnerships.scss */
.partnerships-selectra, .partnerships-idemenager {
  text-align: center;
  font-family: "Helvetica neue", "Helvetica", "Arial", sans-serif;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/partner_banners.scss */
.partner-banner {
  margin-bottom: 20px;
  text-align: center;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/cookie_warning.scss */
#cookie-warning {
  border: 3px solid red;
}
/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/cookie_warning.scss */
#cookie-warning .cc_container {
  font-size: .85em;
  padding: 12px;
}
/* line 9, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/cookie_warning.scss */
#cookie-warning .cc_container .cc_btn {
  padding: 6px;
  width: auto;
}

/* line 17, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/cookie_warning.scss */
.space-affiliate #cookie-warning {
  border: none;
}

/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier {
  margin: 50px auto;
  width: 420px;
  position: relative;
  -moz-box-shadow: 0px 0px 55px 3px #cfcfcf;
  -webkit-box-shadow: 0px 0px 55px 3px #cfcfcf;
  -o-box-shadow: 0px 0px 55px 3px #cfcfcf;
  box-shadow: 0px 0px 55px 3px #cfcfcf;
  filter: progid:DXImageTransform.Microsoft.Shadow(color=#cfcfcf, Direction=NaN, Strength=55);
}
/* line 14, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form {
  text-align: center;
  background: url(/static/assets/stylesheets/svg/verifier/verifier-illu.svg) no-repeat center bottom #D1262E;
  background-size: 110px;
  color: #fff;
  width: 420px;
  position: relative;
  z-index: 900;
  min-height: 480px;
}
/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form h1 {
  padding: 50px 0 0;
  margin: 0;
  font-weight: bold;
  font-size: 30px;
}
/* line 28, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form h1:before, .verifier #form h1:after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 60px;
  background: #fff;
  vertical-align: middle;
  margin: 0 11px;
}
/* line 38, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form h2 {
  margin: 0;
  padding: 14px 0 33px;
  font-weight: bold;
  font-size: 18px;
}
/* line 43, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form h2:before {
  content: "";
  display: inline-block;
  background-image: url(/static/assets/stylesheets/svg/verifier/by.svg);
  width: 27px;
  height: 26px;
  vertical-align: middle;
}
/* line 51, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form h2 span {
  display: none;
}
/* line 54, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form h2 + p {
  width: 310px;
  margin: 0 auto 28px;
}
/* line 59, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form input {
  border: 1px solid #811B11;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  display: inline-block;
  padding: 4px;
  font-size: 16px;
  line-height: 26px;
  width: 216px;
  color: #555555;
  background-image: url(/static/assets/stylesheets/svg/verifier/verifier-icon.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 8px center;
  text-indent: 32px;
}
/* line 74, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes {
  width: 290px;
  margin: 11px auto;
  background-color: rgba(71, 44, 44, 0.77);
  padding: 0;
  position: relative;
}
/* line 80, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes:before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: 50%;
  margin-left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 9px 15px;
  border-color: transparent transparent rgba(71, 44, 44, 0.77) transparent;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 97, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes ul li {
  text-align: left;
  font-size: 12px;
}
/* line 100, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes ul li a {
  display: block;
  line-height: 22px;
  padding: 6px 15px;
  color: #fff;
}
/* line 105, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes ul li a span {
  display: inline-block;
  width: 50px;
  color: #FF6816;
}
/* line 110, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes ul li a:hover {
  background: #472c2c;
}
/* line 115, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes ul li:first-child a {
  padding-top: 12px;
}
/* line 120, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #form #communes ul li:last-child a {
  padding-bottom: 12px;
}
/* line 128, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result {
  width: 400px;
  position: absolute;
  z-index: 800;
  right: 0;
  top: 0;
  text-align: center;
}
/* line 135, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result h2 {
  display: inline-block;
  font-weight: bold;
  font-size: 21px;
  text-align: center;
  border-bottom: 3px solid #000;
  margin: 30px 0 12px;
}
/* line 142, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result h2 small {
  display: inline-block;
}
/* line 146, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table {
  margin: 12px auto 0;
  width: 310px;
  border-collapse: collapse;
}
/* line 151, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr td {
  padding: 7px 0 !important;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
  position: relative;
}
/* line 157, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr td:first-child {
  max-width: 230px;
}
/* line 161, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr td.value {
  color: #FF6816;
  text-align: right;
  position: relative;
  font-size: 14px;
}
/* line 166, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr td.value a {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #D7D7D7;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  position: absolute;
  right: -27px;
  top: 50%;
  margin: -8px 0 0;
  color: #D7D7D7;
  border-radius: 7px !important;
  -moz-border-radius: 7px !important;
  -webkit-border-radius: 7px !important;
  cursor: pointer;
}
/* line 182, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr td.value a:hover {
  color: #333;
  border-color: #333;
}
/* line 189, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr.result-yes td.value:before {
  content: "oui";
  display: inline-block;
  color: green;
  width: 21px;
  height: 17px;
  background: url(/static/assets/stylesheets/svg/verifier/yes.svg) no-repeat;
  text-indent: 10000px;
}
/* line 200, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr.result-no {
  color: #BFBFBF;
}
/* line 202, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr.result-no td.value:before {
  content: "non";
  display: inline-block;
  color: red;
  width: 17px;
  height: 17px;
  background: url(/static/assets/stylesheets/svg/verifier/no.svg) no-repeat;
  text-indent: 10000px;
}
/* line 216, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr.risk_appendix_details.risk_appendix-yes td {
  font-size: 13px;
}
/* line 220, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #result table tr.risk_appendix_details .title {
  padding-left: 1em;
}
/* line 229, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier div.help {
  position: absolute;
  width: 305px;
  padding: 12px;
  background: #fff;
  display: block;
  top: -20px;
  z-index: 700;
  border: 3px solid #444;
  color: #444;
  font-size: 12px;
  left: 0;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.28);
}
/* line 244, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier div.help:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 14px;
  right: -20px;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #444444;
  z-index: 7010;
}
/* line 257, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier div.help:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 17px;
  right: -16px;
  border-style: solid;
  border-width: 17px 0 17px 17px;
  border-color: transparent transparent transparent #fff;
  z-index: 720;
}
/* line 272, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier #risk_appendix_reason {
  font-style: italic;
}
/* line 277, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier .call-to-action {
  border: 0;
  padding: 0;
  margin: 0;
  text-align: right;
  margin: 24px auto 0;
  width: 310px;
}
/* line 284, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier .call-to-action a {
  display: inline-block;
  font-size: 1em;
  padding: 5px 12px;
  margin: 0;
  color: #fff;
  background: #D1262E;
  border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
}

/* line 299, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation {
  color: #333;
  margin-top: 80px;
}
@media only screen and (max-width: 480px) {
  /* line 299, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
  .verifier-explanation {
    margin: 40px 21px 0;
  }
}
/* line 306, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation h2 {
  max-width: 26em;
  text-align: center;
  margin: 0 auto 30px;
  color: #455266;
}
/* line 313, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation h3 {
  margin-top: 50px;
  color: #D1262E;
}
/* line 318, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation p, .verifier-explanation li, .verifier-explanation blockquote {
  color: #555555;
}
/* line 322, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation .heading {
  font-weight: bold;
}
/* line 324, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation .heading strong {
  color: #D1262E;
}
/* line 329, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation .text {
  max-width: 50em;
  margin: 20px auto 0 auto;
}
/* line 334, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation blockquote {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
}
/* line 341, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation p.citation {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: right;
  font-style: italic;
}
/* line 348, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/verifier.scss */
.verifier-explanation .call-to-action {
  margin-top: 70px;
  margin-bottom: 50px;
}

/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
body.admin-session {
  border-left: yellow 5px dotted;
  border-right: yellow 5px dotted;
}

/* line 16, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
.account-management-panel {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  /* line 16, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
  .account-management-panel {
    margin-left: 25%;
  }
}
@media (min-width: 992px) {
  /* line 16, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
  .account-management-panel {
    float: left;
    width: 50%;
  }
}
/* line 27, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
.account-management-panel .tabs li.active {
  font-weight: bold;
}
/* line 32, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
.account-management-panel .body {
  margin-top: 20px;
}
/* line 36, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
.account-management-panel textarea.terms {
  font-size: 80%;
}
/* line 40, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
.account-management-panel .buttons {
  text-align: right;
}
/* line 44, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
.account-management-panel .button-ok {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.account-management-panel .button-ok:hover, .account-management-panel .button-ok:focus, .account-management-panel .button-ok:active, .account-management-panel .button-ok.active, .open > .account-management-panel .button-ok.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.account-management-panel .button-ok:active, .account-management-panel .button-ok.active, .open > .account-management-panel .button-ok.dropdown-toggle {
  background-image: none;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.account-management-panel .button-ok.disabled, .account-management-panel .button-ok.disabled:hover, .account-management-panel .button-ok.disabled:focus, .account-management-panel .button-ok.disabled:active, .account-management-panel .button-ok.disabled.active, .account-management-panel .button-ok[disabled], .account-management-panel .button-ok[disabled]:hover, .account-management-panel .button-ok[disabled]:focus, .account-management-panel .button-ok[disabled]:active, .account-management-panel .button-ok[disabled].active, fieldset[disabled] .account-management-panel .button-ok, fieldset[disabled] .account-management-panel .button-ok:hover, fieldset[disabled] .account-management-panel .button-ok:focus, fieldset[disabled] .account-management-panel .button-ok:active, fieldset[disabled] .account-management-panel .button-ok.active {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.account-management-panel .button-ok .badge {
  color: #5cb85c;
  background-color: #fff;
}
/* line 49, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
.account-management-panel label a {
  color: blue;
  text-decoration: underline;
}

/* line 58, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#accounts-confirmation .account-confirmation-panel {
  width: 70%;
  margin-top: 30px;
  border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -webkit-border-radius: 2px !important;
  padding: 30px;
  background-color: #FFFFFF;
}
/* line 65, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#accounts-confirmation #resend-confirmation-link {
  margin-top: 20px;
  border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  border: none;
  padding: 10px;
  color: #FFFFFF;
  background-color: #D1262E;
}
/* line 72, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#accounts-confirmation #resend-confirmation-link:hover {
  background-color: #661115;
}

/* line 79, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .account-management-panel, #sessions-create .account-management-panel, #accounts-new .account-management-panel, #accounts-create .account-management-panel, #password_recoveries-new .account-management-panel, #my_profile-show .account-management-panel, #my_profile-account .account-management-panel, #account_invitations-show .account-management-panel, #my_profile-pro .account-management-panel, #my_profile-logo .account-management-panel {
  margin-top: 40px;
}
/* line 81, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .account-management-panel .body, #sessions-create .account-management-panel .body, #accounts-new .account-management-panel .body, #accounts-create .account-management-panel .body, #password_recoveries-new .account-management-panel .body, #my_profile-show .account-management-panel .body, #my_profile-account .account-management-panel .body, #account_invitations-show .account-management-panel .body, #my_profile-pro .account-management-panel .body, #my_profile-logo .account-management-panel .body {
  margin-top: 0;
  border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  border: 1px solid rgba(51, 51, 51, 0.2);
  padding: 20px;
  background-color: #FFFFFF;
}
/* line 87, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .account-management-panel .body .control-label, #sessions-create .account-management-panel .body .control-label, #accounts-new .account-management-panel .body .control-label, #accounts-create .account-management-panel .body .control-label, #password_recoveries-new .account-management-panel .body .control-label, #my_profile-show .account-management-panel .body .control-label, #my_profile-account .account-management-panel .body .control-label, #account_invitations-show .account-management-panel .body .control-label, #my_profile-pro .account-management-panel .body .control-label, #my_profile-logo .account-management-panel .body .control-label {
  margin-bottom: 10px;
}
/* line 90, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .account-management-panel .body a, #sessions-create .account-management-panel .body a, #accounts-new .account-management-panel .body a, #accounts-create .account-management-panel .body a, #password_recoveries-new .account-management-panel .body a, #my_profile-show .account-management-panel .body a, #my_profile-account .account-management-panel .body a, #account_invitations-show .account-management-panel .body a, #my_profile-pro .account-management-panel .body a, #my_profile-logo .account-management-panel .body a {
  color: #D1262E;
}
/* line 94, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .account-management-panel #sign-in-button, #sessions-new .account-management-panel #sign-up-button, #sessions-new .account-management-panel #recover-password-button, #sessions-new .account-management-panel #save-personal-info-button, #sessions-new .account-management-panel #save-email-button, #sessions-new .account-management-panel #save-password-button, #sessions-new .account-management-panel #save-changes-button, #sessions-create .account-management-panel #sign-in-button, #sessions-create .account-management-panel #sign-up-button, #sessions-create .account-management-panel #recover-password-button, #sessions-create .account-management-panel #save-personal-info-button, #sessions-create .account-management-panel #save-email-button, #sessions-create .account-management-panel #save-password-button, #sessions-create .account-management-panel #save-changes-button, #accounts-new .account-management-panel #sign-in-button, #accounts-new .account-management-panel #sign-up-button, #accounts-new .account-management-panel #recover-password-button, #accounts-new .account-management-panel #save-personal-info-button, #accounts-new .account-management-panel #save-email-button, #accounts-new .account-management-panel #save-password-button, #accounts-new .account-management-panel #save-changes-button, #accounts-create .account-management-panel #sign-in-button, #accounts-create .account-management-panel #sign-up-button, #accounts-create .account-management-panel #recover-password-button, #accounts-create .account-management-panel #save-personal-info-button, #accounts-create .account-management-panel #save-email-button, #accounts-create .account-management-panel #save-password-button, #accounts-create .account-management-panel #save-changes-button, #password_recoveries-new .account-management-panel #sign-in-button, #password_recoveries-new .account-management-panel #sign-up-button, #password_recoveries-new .account-management-panel #recover-password-button, #password_recoveries-new .account-management-panel #save-personal-info-button, #password_recoveries-new .account-management-panel #save-email-button, #password_recoveries-new .account-management-panel #save-password-button, #password_recoveries-new .account-management-panel #save-changes-button, #my_profile-show .account-management-panel #sign-in-button, #my_profile-show .account-management-panel #sign-up-button, #my_profile-show .account-management-panel #recover-password-button, #my_profile-show .account-management-panel #save-personal-info-button, #my_profile-show .account-management-panel #save-email-button, #my_profile-show .account-management-panel #save-password-button, #my_profile-show .account-management-panel #save-changes-button, #my_profile-account .account-management-panel #sign-in-button, #my_profile-account .account-management-panel #sign-up-button, #my_profile-account .account-management-panel #recover-password-button, #my_profile-account .account-management-panel #save-personal-info-button, #my_profile-account .account-management-panel #save-email-button, #my_profile-account .account-management-panel #save-password-button, #my_profile-account .account-management-panel #save-changes-button, #account_invitations-show .account-management-panel #sign-in-button, #account_invitations-show .account-management-panel #sign-up-button, #account_invitations-show .account-management-panel #recover-password-button, #account_invitations-show .account-management-panel #save-personal-info-button, #account_invitations-show .account-management-panel #save-email-button, #account_invitations-show .account-management-panel #save-password-button, #account_invitations-show .account-management-panel #save-changes-button, #my_profile-pro .account-management-panel #sign-in-button, #my_profile-pro .account-management-panel #sign-up-button, #my_profile-pro .account-management-panel #recover-password-button, #my_profile-pro .account-management-panel #save-personal-info-button, #my_profile-pro .account-management-panel #save-email-button, #my_profile-pro .account-management-panel #save-password-button, #my_profile-pro .account-management-panel #save-changes-button, #my_profile-logo .account-management-panel #sign-in-button, #my_profile-logo .account-management-panel #sign-up-button, #my_profile-logo .account-management-panel #recover-password-button, #my_profile-logo .account-management-panel #save-personal-info-button, #my_profile-logo .account-management-panel #save-email-button, #my_profile-logo .account-management-panel #save-password-button, #my_profile-logo .account-management-panel #save-changes-button {
  border: none;
  padding: 10px 30px !important;
  background-color: #D1262E;
}
/* line 98, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .account-management-panel #sign-in-button:hover, #sessions-new .account-management-panel #sign-up-button:hover, #sessions-new .account-management-panel #recover-password-button:hover, #sessions-new .account-management-panel #save-personal-info-button:hover, #sessions-new .account-management-panel #save-email-button:hover, #sessions-new .account-management-panel #save-password-button:hover, #sessions-new .account-management-panel #save-changes-button:hover, #sessions-create .account-management-panel #sign-in-button:hover, #sessions-create .account-management-panel #sign-up-button:hover, #sessions-create .account-management-panel #recover-password-button:hover, #sessions-create .account-management-panel #save-personal-info-button:hover, #sessions-create .account-management-panel #save-email-button:hover, #sessions-create .account-management-panel #save-password-button:hover, #sessions-create .account-management-panel #save-changes-button:hover, #accounts-new .account-management-panel #sign-in-button:hover, #accounts-new .account-management-panel #sign-up-button:hover, #accounts-new .account-management-panel #recover-password-button:hover, #accounts-new .account-management-panel #save-personal-info-button:hover, #accounts-new .account-management-panel #save-email-button:hover, #accounts-new .account-management-panel #save-password-button:hover, #accounts-new .account-management-panel #save-changes-button:hover, #accounts-create .account-management-panel #sign-in-button:hover, #accounts-create .account-management-panel #sign-up-button:hover, #accounts-create .account-management-panel #recover-password-button:hover, #accounts-create .account-management-panel #save-personal-info-button:hover, #accounts-create .account-management-panel #save-email-button:hover, #accounts-create .account-management-panel #save-password-button:hover, #accounts-create .account-management-panel #save-changes-button:hover, #password_recoveries-new .account-management-panel #sign-in-button:hover, #password_recoveries-new .account-management-panel #sign-up-button:hover, #password_recoveries-new .account-management-panel #recover-password-button:hover, #password_recoveries-new .account-management-panel #save-personal-info-button:hover, #password_recoveries-new .account-management-panel #save-email-button:hover, #password_recoveries-new .account-management-panel #save-password-button:hover, #password_recoveries-new .account-management-panel #save-changes-button:hover, #my_profile-show .account-management-panel #sign-in-button:hover, #my_profile-show .account-management-panel #sign-up-button:hover, #my_profile-show .account-management-panel #recover-password-button:hover, #my_profile-show .account-management-panel #save-personal-info-button:hover, #my_profile-show .account-management-panel #save-email-button:hover, #my_profile-show .account-management-panel #save-password-button:hover, #my_profile-show .account-management-panel #save-changes-button:hover, #my_profile-account .account-management-panel #sign-in-button:hover, #my_profile-account .account-management-panel #sign-up-button:hover, #my_profile-account .account-management-panel #recover-password-button:hover, #my_profile-account .account-management-panel #save-personal-info-button:hover, #my_profile-account .account-management-panel #save-email-button:hover, #my_profile-account .account-management-panel #save-password-button:hover, #my_profile-account .account-management-panel #save-changes-button:hover, #account_invitations-show .account-management-panel #sign-in-button:hover, #account_invitations-show .account-management-panel #sign-up-button:hover, #account_invitations-show .account-management-panel #recover-password-button:hover, #account_invitations-show .account-management-panel #save-personal-info-button:hover, #account_invitations-show .account-management-panel #save-email-button:hover, #account_invitations-show .account-management-panel #save-password-button:hover, #account_invitations-show .account-management-panel #save-changes-button:hover, #my_profile-pro .account-management-panel #sign-in-button:hover, #my_profile-pro .account-management-panel #sign-up-button:hover, #my_profile-pro .account-management-panel #recover-password-button:hover, #my_profile-pro .account-management-panel #save-personal-info-button:hover, #my_profile-pro .account-management-panel #save-email-button:hover, #my_profile-pro .account-management-panel #save-password-button:hover, #my_profile-pro .account-management-panel #save-changes-button:hover, #my_profile-logo .account-management-panel #sign-in-button:hover, #my_profile-logo .account-management-panel #sign-up-button:hover, #my_profile-logo .account-management-panel #recover-password-button:hover, #my_profile-logo .account-management-panel #save-personal-info-button:hover, #my_profile-logo .account-management-panel #save-email-button:hover, #my_profile-logo .account-management-panel #save-password-button:hover, #my_profile-logo .account-management-panel #save-changes-button:hover {
  background-color: #661115;
}
/* line 102, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .account-management-panel #sign-up-button, #sessions-create .account-management-panel #sign-up-button, #accounts-new .account-management-panel #sign-up-button, #accounts-create .account-management-panel #sign-up-button, #password_recoveries-new .account-management-panel #sign-up-button, #my_profile-show .account-management-panel #sign-up-button, #my_profile-account .account-management-panel #sign-up-button, #account_invitations-show .account-management-panel #sign-up-button, #my_profile-pro .account-management-panel #sign-up-button, #my_profile-logo .account-management-panel #sign-up-button {
  margin-top: 20px;
}
/* line 105, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .account-management-panel #sign-up-button:disabled, #sessions-create .account-management-panel #sign-up-button:disabled, #accounts-new .account-management-panel #sign-up-button:disabled, #accounts-create .account-management-panel #sign-up-button:disabled, #password_recoveries-new .account-management-panel #sign-up-button:disabled, #my_profile-show .account-management-panel #sign-up-button:disabled, #my_profile-account .account-management-panel #sign-up-button:disabled, #account_invitations-show .account-management-panel #sign-up-button:disabled, #my_profile-pro .account-management-panel #sign-up-button:disabled, #my_profile-logo .account-management-panel #sign-up-button:disabled {
  background-color: #e6777c;
}
/* line 109, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/accounts.scss */
#sessions-new .alert-alert, #sessions-create .alert-alert, #accounts-new .alert-alert, #accounts-create .alert-alert, #password_recoveries-new .alert-alert, #my_profile-show .alert-alert, #my_profile-account .alert-alert, #account_invitations-show .alert-alert, #my_profile-pro .alert-alert, #my_profile-logo .alert-alert {
  margin-top: 30px;
}

/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreements.scss */
table.rental-agreements {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
/* line 83, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
table.rental-agreements > thead > tr > th,
table.rental-agreements > thead > tr > td,
table.rental-agreements > tbody > tr > th,
table.rental-agreements > tbody > tr > td,
table.rental-agreements > tfoot > tr > th,
table.rental-agreements > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: center;
  border-top: 1px solid #ddd;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
table.rental-agreements > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
/* line 102, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
table.rental-agreements > caption + thead > tr:first-child > th,
table.rental-agreements > caption + thead > tr:first-child > td,
table.rental-agreements > colgroup + thead > tr:first-child > th,
table.rental-agreements > colgroup + thead > tr:first-child > td,
table.rental-agreements > thead:first-child > tr:first-child > th,
table.rental-agreements > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 109, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
table.rental-agreements > tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 117, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
table.rental-agreements > tbody > tr:nth-child(odd) > td,
table.rental-agreements > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
/* line 149, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
table.rental-agreements > thead > tr > th,
table.rental-agreements > thead > tr > td,
table.rental-agreements > tbody > tr > th,
table.rental-agreements > tbody > tr > td,
table.rental-agreements > tfoot > tr > th,
table.rental-agreements > tfoot > tr > td {
  padding: 5px;
}

/* line 12, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreements.scss */
table.download-invitations button {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
table.download-invitations button:hover, table.download-invitations button:focus, table.download-invitations button:active, table.download-invitations button.active, .open > table.download-invitations button.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}
/* line 20, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
table.download-invitations button:active, table.download-invitations button.active, .open > table.download-invitations button.dropdown-toggle {
  background-image: none;
}
/* line 28, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
table.download-invitations button.disabled, table.download-invitations button.disabled:hover, table.download-invitations button.disabled:focus, table.download-invitations button.disabled:active, table.download-invitations button.disabled.active, table.download-invitations button[disabled], table.download-invitations button[disabled]:hover, table.download-invitations button[disabled]:focus, table.download-invitations button[disabled]:active, table.download-invitations button[disabled].active, fieldset[disabled] table.download-invitations button, fieldset[disabled] table.download-invitations button:hover, fieldset[disabled] table.download-invitations button:focus, fieldset[disabled] table.download-invitations button:active, fieldset[disabled] table.download-invitations button.active {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
/* line 38, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_buttons.scss */
table.download-invitations button .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 17, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreements.scss */
.errors-on-tenant-invitation-email {
  color: #a94442;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreement_samples.scss */
body#samples-show {
  background-color: #F2F2F2;
}
/* line 5, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreement_samples.scss */
body#samples-show .call-to-action {
  padding: 18px 24px 18px 24px;
}
/* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreement_samples.scss */
body#samples-show .call-to-action .btn {
  margin-left: 0;
}

/* line 14, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreement_samples.scss */
.rental-agreement-sample {
  text-align: center;
  margin-bottom: 20px;
}
/* line 20, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreement_samples.scss */
.rental-agreement-sample .sample-page {
  margin-bottom: 20px;
}
/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreement_samples.scss */
.rental-agreement-sample .sample-page img {
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 480px) {
  /* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/rental_agreement_samples.scss */
  .rental-agreement-sample .sample-page img {
    width: 100%;
  }
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners {
  color: #404040;
}
/* line 4, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners h2, .lawyer-partners h3 {
  color: #1a1a1a;
  padding: 0 0 9px;
}
/* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners h2 {
  font-size: 22px;
  margin: 0 0 0 95px;
}
/* line 12, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners h3 {
  font-size: 18px;
}
/* line 16, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners #articles {
  padding-top: 20px;
}
/* line 18, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners #articles .correct-height {
  height: 450px;
}
/* line 23, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners .back-link {
  margin: 20px 0;
  padding: 0 50px;
  width: 50%;
  position: relative;
  z-index: 10000;
}
/* line 29, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners .back-link a {
  color: #8C8C8C;
  font-size: 15px;
}
/* line 32, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners .back-link a:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 9px;
  background: url(/static/assets/stylesheets/persona/back-link.svg) no-repeat left center;
  background-size: 11px 9px;
}
/* line 44, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners .meta img {
  border: 4px solid #8899b0;
  border-radius: 50%;
  width: 130px;
  position: absolute;
}
/* line 50, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners .meta p, .lawyer-partners .meta h2, .lawyer-partners .meta h3, .lawyer-partners .meta h4 {
  margin: 12px;
  margin-left: 160px;
}
/* line 54, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners .meta .profile {
  color: #404040;
}
/* line 57, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners .meta p.recruiting {
  color: #404040;
  font-style: italic;
}
/* line 63, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
.lawyer-partners .short-signature {
  font-weight: bold;
  margin-bottom: 25px;
}

/* line 70, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
#lawyer-partner-profile {
  margin: 70px;
  margin-bottom: 30px;
  padding: 30px;
  background: #fff;
  border: 1px solid #e6e6e6;
  float: left;
  text-align: justify;
}
/* line 78, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
#lawyer-partner-profile img {
  border: 4px solid #8899b0;
  border-radius: 50%;
  position: absolute;
  left: 35px;
  top: 75px;
}

/* line 87, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
#lawyer-partners-list {
  overflow: hidden;
  padding: 80px 4px 0;
}
/* line 90, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
#lawyer-partners-list .lawyer-partner-card {
  height: 180px;
  background: #fff;
  border: 1px solid #e6e6e6;
  margin: 0 0 110px 5%;
  text-align: center;
}
/* line 96, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
#lawyer-partners-list .lawyer-partner-card:before {
  content: "";
}
/* line 99, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
#lawyer-partners-list .lawyer-partner-card img {
  border: 4px solid #8899b0;
  border-radius: 50%;
  margin-top: -72px;
}
/* line 104, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/lawyer_partners.scss */
#lawyer-partners-list .lawyer-partner-card p {
  color: #404040;
  padding: 0 0 9px;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pages-pricing_sheet #main-content {
  background: linear-gradient(180deg, #F2F2F2 420px, #fff 420px);
}

/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet {
  overflow: hidden;
  padding: 40px 60px 0;
}
@media screen and (max-width: 1024px) {
  /* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
  #pricing-sheet {
    padding: 80px 30px 0;
  }
}
/* line 12, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet h1 {
  font-size: 28px;
  line-height: 120%;
  font-weight: bold;
  margin: 0 0 18px;
  color: #455266;
  text-align: center;
}
/* line 19, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet h1:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 18px auto 0;
  background: #F74B68;
}
/* line 28, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet h2 {
  text-align: center;
  font-size: 18px;
  line-height: 150%;
  font-weight: normal;
  margin: 0 40px 20px;
  color: #455266;
}
/* line 36, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pricing-switch {
  width: 340px;
  height: 36px;
  margin: 36px auto 60px;
  text-align: center;
  background: #D9D9D9;
  border: 1px solid #B3B3B3;
}
/* line 43, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pricing-switch a {
  display: block;
  width: 50%;
  height: 100%;
  line-height: 34px;
  float: left;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
/* line 52, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pricing-switch a:hover {
  background: #c0c0c0;
  text-decoration: none;
}
/* line 57, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pricing-switch .selected {
  background: #6198FF;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.34);
  -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;
}
/* line 60, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pricing-switch .selected:hover {
  background: #6198FF;
}
/* line 70, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet .white-card {
  border: 1px solid #D9D9D9;
  background: #fff;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1000;
  text-align: center;
  color: #455266;
  -webkit-box-shadow: 0 2px 23px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 23px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 23px 0px rgba(0, 0, 0, 0.2);
}
/* line 81, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet .white-card footer {
  background: #F9F9F9;
  border-top: 1px solid #D9D9D9;
  padding: 27px;
}
/* line 85, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet .white-card footer button {
  display: inline-block;
  border: none;
  height: 44px;
  line-height: 44px;
  padding: 0 33px;
  background: #33CC7A;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 3px;
}
/* line 96, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet .white-card footer button:hover {
  text-decoration: none;
  background: #30c073;
}
/* line 100, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet .white-card footer button:disabled {
  background-color: #ccc;
  cursor: forbidden;
}
/* line 108, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pay-per-use .white-card {
  width: 480px;
  margin-top: -15px;
}
/* line 112, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pay-per-use h3 {
  font-family: "Arial", sans-serif;
  font-size: 18px;
  color: #455266;
  font-weight: bold;
  text-transform: uppercase;
  margin: 45px 0 30px;
}
/* line 120, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pay-per-use table {
  font-family: "Arial", sans-serif;
  width: 360px;
  margin: 30px auto 50px;
}
/* line 124, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pay-per-use table td {
  padding: 0 !important;
  font-size: 16px;
  line-height: 30px;
  font-weight: bold;
  text-align: left;
}
/* line 131, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pay-per-use table .options .title {
  padding-top: 12px !important;
  font-size: 16px;
  font-weight: normal;
  color: #b3b3b3;
}
/* line 137, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #pay-per-use table .price {
  text-align: right;
  color: #6198FF;
}
/* line 143, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans {
  margin: 0 auto;
}
/* line 146, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans .white-card {
  width: 33%;
  float: left;
}
/* line 149, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans .white-card.big {
  z-index: 1001;
  border: 5px solid #6198FF;
  padding: 8px 0px 0px 0px;
  margin-top: -12px;
}
/* line 156, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans h3 {
  font-family: "Arial", sans-serif;
  font-size: 18px;
  color: #455266;
  font-weight: bold;
  text-transform: uppercase;
  margin: 30px 0 30px;
}
/* line 164, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table {
  font-family: "Arial", sans-serif;
  margin: 30px auto 50px;
  max-width: 280px;
}
/* line 168, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table td {
  padding: 0 !important;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
}
/* line 175, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table thead td {
  text-align: center;
  padding-bottom: 45px !important;
}
/* line 179, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table thead .number {
  font-size: 72px;
  line-height: 72px;
  display: inline-block;
  position: relative;
  color: #6198FF;
  font-weight: bold;
}
/* line 186, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table thead .number small {
  display: block;
  position: absolute;
  font-size: 20px;
  line-height: 20px;
  top: 9px;
  left: 100%;
  width: 100px;
  text-align: left;
}
/* line 195, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table thead .number small span {
  color: #A1BEFF;
  font-size: 15px;
  font-weight: normal;
}
/* line 205, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table tbody td {
  line-height: normal;
  padding: 5px 12px !important;
}
/* line 210, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table .quantity {
  padding-right: 12px !important;
  text-align: right;
  font-size: 30px;
  color: #6198FF;
}
/* line 216, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table .free {
  font-size: 16px;
  font-weight: bold;
  color: #6198FF;
}
/* line 223, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans table .included tr:first-child td {
  padding-top: 24px !important;
}
/* line 230, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/pricing.scss */
#pricing-sheet #plans .price-per-unit {
  font-family: "Arial", sans-serif;
  font-size: 13px;
  padding: 9px 0 0;
  margin: 0 0 -5px;
  color: #999;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/affiliates.scss */
body#affiliates-test {
  background-color: #e3e9f2;
  border-top: 5px solid #9db2d2;
  padding-top: 20px;
}
/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/affiliates.scss */
body#affiliates-test.admin-session {
  border-left: none;
  border-right: none;
}

/* line 12, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/affiliates.scss */
#affiliate-documentation-sidebar {
  margin-top: 15px;
}

/* line 15, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/affiliates.scss */
#affiliate-documentation-sidebar ul > li.active a {
  background-color: #E5E5E5;
  font-weight: bold;
}

/* line 20, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/affiliates.scss */
.modal {
  z-index: 99999;
}
@media screen and (min-width: 1024px) {
  /* line 22, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/affiliates.scss */
  .modal .modal-dialog {
    width: 80%;
    margin: 50px auto;
  }
}
/* line 27, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/affiliates.scss */
.modal .modal-dialog .modal-content {
  padding: 20px;
  border: 0 none;
  border-radius: 0;
  -webkit-box-shadow: 0 none;
  box-shadow: 0 none;
}
/* line 33, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/affiliates.scss */
.modal .modal-dialog .modal-content .container {
  width: 99%;
}

/* line 1, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/star_rating.scss */
.star-rating-widget {
  height: 24px;
  margin-bottom: 20px;
  color: #333;
}
/* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/star_rating.scss */
.star-rating-widget p.prompt {
  margin: 0;
  display: inline;
  font-weight: bold;
}

/* line 21, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/star_rating.scss */
#pages-home #star-rating {
  margin: auto;
}

/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index #main-content {
  background: #F2F2F2;
}
/* line 4, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index #main-content > .container {
  padding-top: 33px;
}
/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index #main-content > .container h3 {
  margin-top: 0;
}
/* line 10, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index #main-content .flow-form-wrapper .well {
  border: 1px solid #ccc;
  border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  background: #fff;
  padding: 21px 0;
  overflow: hidden;
}
/* line 17, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index #main-content .flow-form-wrapper .well > * {
  padding-left: 21px;
  padding-right: 21px;
}
/* line 22, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index #main-content .flow-form-wrapper .well h4 {
  margin: -21px auto 18px;
  background: #fafafa;
  padding: 15px 21px;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  font-size: 16px;
  color: #5a6a84;
}
/* line 31, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index #main-content .flow-form-wrapper .well h5 {
  font-size: 16px;
  margin: 0 0 12px;
  font-weight: bold;
}
/* line 36, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index #main-content .flow-form-wrapper .well .row + .form-group {
  margin-top: 21px;
}
/* line 41, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index input[type="text"], #wizards-index input[type="email"], #wizards-index input[type="tel"], #wizards-index input[type="search"], #wizards-index input[type="url"], #wizards-index input[type="password"], #wizards-index input[type="number"], #wizards-index .ui-autocomplete-input, #wizards-index .uneditable-input {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0 1.5em 0 1em;
  height: 44px;
  color: #555;
  font-size: 15px;
}
/* line 53, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index textarea {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0 1.5em 0 1em;
  color: #555;
  font-size: 15px;
}
/* line 63, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index button {
  border: none;
  color: #FFFFFF;
  background-color: #33CC7A;
  border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
}
/* line 68, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index button:hover {
  background-color: #5cd695;
}
/* line 71, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index button:focus, #wizards-index button:active {
  box-shadow: none;
  outline: 0px;
}
/* line 75, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index button.button-add, #wizards-index button.button-remove {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  background: #6198FF;
}
/* line 81, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index button.button-remove {
  background: #D1262E;
}
/* line 85, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index .go-to-last-step {
  font-size: 11px;
}
/* line 88, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index a.help-popover {
  width: 18px;
  height: 18px;
  line-height: 18px;
  display: inline-block;
  margin-left: .3em;
  text-align: center;
  color: #fff !important;
  background-color: #669bff;
  border-radius: 9px;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  vertical-align: middle;
}
/* line 102, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index a.help-popover:hover {
  background-color: #D1262E;
}
/* line 105, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
#wizards-index a.help-popover.help-popover-lessor_attorney, #wizards-index a.help-popover.help-popover-tenant_address {
  display: block;
  position: absolute;
  right: 24px;
  top: 12px;
}

/* line 116, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow.flow-current-step-0 .flow-form-main {
  width: 100%;
  padding: 0;
  float: none;
}
/* line 121, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow.flow-current-step-0 .flow-form-sidebar, .flow.flow-current-step-0 .flow-step-groups {
  display: none;
}
/* line 124, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow.flow-current-step-0 .flow-form-wrapper {
  background: transparent;
  border: 0 none;
}
/* line 129, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-form-main {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  /* line 129, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
  .flow .flow-form-main {
    float: left;
    width: 75%;
  }
}
/* line 132, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-form-wrapper {
  background: #fff;
  border: 1px solid #ccc;
}
/* line 136, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .form-success, .flow .alert-success {
  background-color: #ebfaf2;
  border: 1px solid #33CC7A;
  color: #33CC7A;
  padding: 21px;
  margin-bottom: 20px;
}
/* line 142, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .form-success p, .flow .alert-success p {
  margin: 0;
}
/* line 146, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .verifier-error {
  background-color: #fae3e4;
  border: 1px solid #D1262E;
  color: #D1262E;
  padding: 21px;
  margin-bottom: 20px;
}
/* line 152, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .verifier-error p {
  margin: 0;
}
/* line 156, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow div:not(#wizard-step0).wizard-step {
  padding: 30px;
}
/* line 159, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-form-sidebar {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 900;
    /*
    .help {
      z-index: 0;
      width: 235px;
      overflow: hidden;

      @include wiz-alert-info();

      font-size: $font-size-small;

      h4 {
        font-size: 1em;
      }

      ol, ul {
        padding-left: 15px;
      }

      .topic {
        margin-bottom: 1.5em;
      }

    }
    */
}
@media (min-width: 992px) {
  /* line 159, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
  .flow .flow-form-sidebar {
    float: left;
    width: 25%;
  }
}
/* line 188, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-step-groups {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #E7E8EB;
  border-bottom: 1px solid #D9D9D9;
  overflow: hidden;
  font-family: "helvetica", sans-serif;
  position: relative;
  z-index: 500;
}
/* line 199, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-step-groups > li {
  width: 33.3%;
  float: left;
}
/* line 203, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-step-groups > li > a {
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 600;
  height: 50px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  background: url(/static/assets/stylesheets/wizard/bg-flow-step-no-active.svg) no-repeat right center;
  background-size: 1012px 52px;
  color: #455266;
}
/* line 216, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-step-groups > li:last-child > a {
  background: none;
}
/* line 219, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-step-groups > li.active > a {
  font-weight: bold;
  z-index: 500;
}
/* line 223, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-step-groups > li.active > a:before {
  content: "";
  display: block;
  width: 1000px;
  height: 50px;
  background: url(/static/assets/stylesheets/wizard/bg-flow-step.svg) no-repeat right center;
  background-size: 1012px 52px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 510;
}
/* line 235, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-step-groups > li:last-child.active > a:before {
  right: -30px;
}
/* line 240, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-steps {
  list-style: none;
  width: 100%;
  margin: -1px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 900;
}
/* line 247, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-steps:before {
  content: " ";
  display: table;
}
/* line 251, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-steps > li {
  display: table-cell;
  width: 1%;
}
/* line 254, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-steps > li a {
  color: transparent;
  display: block;
  height: 9px;
  position: relative;
}
/* line 260, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-steps > li.active a:before {
  content: "";
  display: block;
  height: 9px;
  width: 1000px;
  position: absolute;
  top: 0;
  right: 0;
  background: #D1262E;
}
/* line 272, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-buttons {
  overflow: hidden;
  padding: 0 15px 30px;
}
/* line 275, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-buttons .flow-button-previous {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  /* line 275, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
  .flow .flow-buttons .flow-button-previous {
    float: left;
    width: 33.3333333333%;
  }
}
/* line 279, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-buttons .flow-button-next {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  /* line 279, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
  .flow .flow-buttons .flow-button-next {
    margin-left: 33.3333333333%;
  }
}
@media (min-width: 992px) {
  /* line 279, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
  .flow .flow-buttons .flow-button-next {
    float: left;
    width: 33.3333333333%;
  }
}
/* line 282, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-buttons .flow-button-next button.go-to-last-step {
  margin-top: 10px;
}
/* line 287, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-buttons button {
  width: 100%;
  font-size: 16px;
  line-height: 36px;
  height: 40px;
}
/* line 295, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-auth {
  padding: 30px;
}
/* line 298, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .flow-auth p.forgotten-password {
  margin-bottom: 20px;
}
/* line 302, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property {
  background: #f0f0f0;
  padding: 21px;
  margin: 21px 0;
}
/* line 306, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property .remove-property-button {
  float: right !important;
}
/* line 310, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property-parts {
  padding: 18px 0 0;
}
/* line 312, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property-parts table {
  margin-bottom: 12px;
}
/* line 315, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property-parts th, .flow .co-ownership-property-parts td {
  padding: 8px !important;
}
/* line 318, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property-parts th.part-columns {
  border-bottom: 1px solid #ccc !important;
}
/* line 321, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property-parts tr.secondary th {
  border-top: none;
}
/* line 325, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property-parts td.slash {
  vertical-align: middle;
}
/* line 328, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .co-ownership-property-parts .remove-property-button .button-remove {
  background: none !important;
  color: #D1262E !important;
  text-decoration: underline;
}
/* line 334, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .rooms, .flow .outbuildings {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  /* line 334, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
  .flow .rooms, .flow .outbuildings {
    float: left;
    width: 50%;
  }
}
/* line 339, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .rooms table, .flow .outbuildings table, .flow .home-appliances table, .flow .shared-charges table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
/* line 83, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .rooms table > thead > tr > th,
.flow .rooms table > thead > tr > td,
.flow .rooms table > tbody > tr > th,
.flow .rooms table > tbody > tr > td,
.flow .rooms table > tfoot > tr > th,
.flow .rooms table > tfoot > tr > td, .flow .outbuildings table > thead > tr > th,
.flow .outbuildings table > thead > tr > td,
.flow .outbuildings table > tbody > tr > th,
.flow .outbuildings table > tbody > tr > td,
.flow .outbuildings table > tfoot > tr > th,
.flow .outbuildings table > tfoot > tr > td, .flow .home-appliances table > thead > tr > th,
.flow .home-appliances table > thead > tr > td,
.flow .home-appliances table > tbody > tr > th,
.flow .home-appliances table > tbody > tr > td,
.flow .home-appliances table > tfoot > tr > th,
.flow .home-appliances table > tfoot > tr > td, .flow .shared-charges table > thead > tr > th,
.flow .shared-charges table > thead > tr > td,
.flow .shared-charges table > tbody > tr > th,
.flow .shared-charges table > tbody > tr > td,
.flow .shared-charges table > tfoot > tr > th,
.flow .shared-charges table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: center;
  border-top: 1px solid #ddd;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .rooms table > thead > tr > th, .flow .outbuildings table > thead > tr > th, .flow .home-appliances table > thead > tr > th, .flow .shared-charges table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
/* line 102, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .rooms table > caption + thead > tr:first-child > th,
.flow .rooms table > caption + thead > tr:first-child > td,
.flow .rooms table > colgroup + thead > tr:first-child > th,
.flow .rooms table > colgroup + thead > tr:first-child > td,
.flow .rooms table > thead:first-child > tr:first-child > th,
.flow .rooms table > thead:first-child > tr:first-child > td, .flow .outbuildings table > caption + thead > tr:first-child > th,
.flow .outbuildings table > caption + thead > tr:first-child > td,
.flow .outbuildings table > colgroup + thead > tr:first-child > th,
.flow .outbuildings table > colgroup + thead > tr:first-child > td,
.flow .outbuildings table > thead:first-child > tr:first-child > th,
.flow .outbuildings table > thead:first-child > tr:first-child > td, .flow .home-appliances table > caption + thead > tr:first-child > th,
.flow .home-appliances table > caption + thead > tr:first-child > td,
.flow .home-appliances table > colgroup + thead > tr:first-child > th,
.flow .home-appliances table > colgroup + thead > tr:first-child > td,
.flow .home-appliances table > thead:first-child > tr:first-child > th,
.flow .home-appliances table > thead:first-child > tr:first-child > td, .flow .shared-charges table > caption + thead > tr:first-child > th,
.flow .shared-charges table > caption + thead > tr:first-child > td,
.flow .shared-charges table > colgroup + thead > tr:first-child > th,
.flow .shared-charges table > colgroup + thead > tr:first-child > td,
.flow .shared-charges table > thead:first-child > tr:first-child > th,
.flow .shared-charges table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 109, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .rooms table > tbody + tbody, .flow .outbuildings table > tbody + tbody, .flow .home-appliances table > tbody + tbody, .flow .shared-charges table > tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 117, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .rooms table > tbody > tr:nth-child(odd) > td,
.flow .rooms table > tbody > tr:nth-child(odd) > th, .flow .outbuildings table > tbody > tr:nth-child(odd) > td,
.flow .outbuildings table > tbody > tr:nth-child(odd) > th, .flow .home-appliances table > tbody > tr:nth-child(odd) > td,
.flow .home-appliances table > tbody > tr:nth-child(odd) > th, .flow .shared-charges table > tbody > tr:nth-child(odd) > td,
.flow .shared-charges table > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
/* line 343, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .rooms table td, .flow .outbuildings table td, .flow .home-appliances table td, .flow .shared-charges table td {
  width: 50%;
  padding: 10px !important;
}
/* line 350, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .rooms .remove-button, .flow .outbuildings .remove-button, .flow .home-appliances .remove-button, .flow .shared-charges .remove-button {
  margin-top: 10px;
  text-align: right;
}
/* line 358, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .bedroom-details table, .flow .bathroom-details table, .flow .livingroom-details table, .flow .kitchen-details table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
/* line 83, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .bedroom-details table > thead > tr > th,
.flow .bedroom-details table > thead > tr > td,
.flow .bedroom-details table > tbody > tr > th,
.flow .bedroom-details table > tbody > tr > td,
.flow .bedroom-details table > tfoot > tr > th,
.flow .bedroom-details table > tfoot > tr > td, .flow .bathroom-details table > thead > tr > th,
.flow .bathroom-details table > thead > tr > td,
.flow .bathroom-details table > tbody > tr > th,
.flow .bathroom-details table > tbody > tr > td,
.flow .bathroom-details table > tfoot > tr > th,
.flow .bathroom-details table > tfoot > tr > td, .flow .livingroom-details table > thead > tr > th,
.flow .livingroom-details table > thead > tr > td,
.flow .livingroom-details table > tbody > tr > th,
.flow .livingroom-details table > tbody > tr > td,
.flow .livingroom-details table > tfoot > tr > th,
.flow .livingroom-details table > tfoot > tr > td, .flow .kitchen-details table > thead > tr > th,
.flow .kitchen-details table > thead > tr > td,
.flow .kitchen-details table > tbody > tr > th,
.flow .kitchen-details table > tbody > tr > td,
.flow .kitchen-details table > tfoot > tr > th,
.flow .kitchen-details table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: center;
  border-top: 1px solid #ddd;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .bedroom-details table > thead > tr > th, .flow .bathroom-details table > thead > tr > th, .flow .livingroom-details table > thead > tr > th, .flow .kitchen-details table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
/* line 102, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .bedroom-details table > caption + thead > tr:first-child > th,
.flow .bedroom-details table > caption + thead > tr:first-child > td,
.flow .bedroom-details table > colgroup + thead > tr:first-child > th,
.flow .bedroom-details table > colgroup + thead > tr:first-child > td,
.flow .bedroom-details table > thead:first-child > tr:first-child > th,
.flow .bedroom-details table > thead:first-child > tr:first-child > td, .flow .bathroom-details table > caption + thead > tr:first-child > th,
.flow .bathroom-details table > caption + thead > tr:first-child > td,
.flow .bathroom-details table > colgroup + thead > tr:first-child > th,
.flow .bathroom-details table > colgroup + thead > tr:first-child > td,
.flow .bathroom-details table > thead:first-child > tr:first-child > th,
.flow .bathroom-details table > thead:first-child > tr:first-child > td, .flow .livingroom-details table > caption + thead > tr:first-child > th,
.flow .livingroom-details table > caption + thead > tr:first-child > td,
.flow .livingroom-details table > colgroup + thead > tr:first-child > th,
.flow .livingroom-details table > colgroup + thead > tr:first-child > td,
.flow .livingroom-details table > thead:first-child > tr:first-child > th,
.flow .livingroom-details table > thead:first-child > tr:first-child > td, .flow .kitchen-details table > caption + thead > tr:first-child > th,
.flow .kitchen-details table > caption + thead > tr:first-child > td,
.flow .kitchen-details table > colgroup + thead > tr:first-child > th,
.flow .kitchen-details table > colgroup + thead > tr:first-child > td,
.flow .kitchen-details table > thead:first-child > tr:first-child > th,
.flow .kitchen-details table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 109, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .bedroom-details table > tbody + tbody, .flow .bathroom-details table > tbody + tbody, .flow .livingroom-details table > tbody + tbody, .flow .kitchen-details table > tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 117, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .bedroom-details table > tbody > tr:nth-child(odd) > td,
.flow .bedroom-details table > tbody > tr:nth-child(odd) > th, .flow .bathroom-details table > tbody > tr:nth-child(odd) > td,
.flow .bathroom-details table > tbody > tr:nth-child(odd) > th, .flow .livingroom-details table > tbody > tr:nth-child(odd) > td,
.flow .livingroom-details table > tbody > tr:nth-child(odd) > th, .flow .kitchen-details table > tbody > tr:nth-child(odd) > td,
.flow .kitchen-details table > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
/* line 130, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .bedroom-details table > thead > tr > th,
.flow .bedroom-details table > thead > tr > td,
.flow .bedroom-details table > tbody > tr > th,
.flow .bedroom-details table > tbody > tr > td,
.flow .bedroom-details table > tfoot > tr > th,
.flow .bedroom-details table > tfoot > tr > td, .flow .bathroom-details table > thead > tr > th,
.flow .bathroom-details table > thead > tr > td,
.flow .bathroom-details table > tbody > tr > th,
.flow .bathroom-details table > tbody > tr > td,
.flow .bathroom-details table > tfoot > tr > th,
.flow .bathroom-details table > tfoot > tr > td, .flow .livingroom-details table > thead > tr > th,
.flow .livingroom-details table > thead > tr > td,
.flow .livingroom-details table > tbody > tr > th,
.flow .livingroom-details table > tbody > tr > td,
.flow .livingroom-details table > tfoot > tr > th,
.flow .livingroom-details table > tfoot > tr > td, .flow .kitchen-details table > thead > tr > th,
.flow .kitchen-details table > thead > tr > td,
.flow .kitchen-details table > tbody > tr > th,
.flow .kitchen-details table > tbody > tr > td,
.flow .kitchen-details table > tfoot > tr > th,
.flow .kitchen-details table > tfoot > tr > td {
  border: 1px solid #ddd;
}
/* line 137, /home/nader/lbb/lbb-production/app/assets/stylesheets/shared/mixins.scss */
.flow .bedroom-details table > thead > tr > th,
.flow .bedroom-details table > thead > tr > td, .flow .bathroom-details table > thead > tr > th,
.flow .bathroom-details table > thead > tr > td, .flow .livingroom-details table > thead > tr > th,
.flow .livingroom-details table > thead > tr > td, .flow .kitchen-details table > thead > tr > th,
.flow .kitchen-details table > thead > tr > td {
  border-bottom-width: 2px;
}
/* line 364, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .bedroom-details thead th, .flow .bathroom-details thead th, .flow .livingroom-details thead th, .flow .kitchen-details thead th {
  text-align: center;
}
/* line 368, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .bedroom-details td, .flow .bathroom-details td, .flow .livingroom-details td, .flow .kitchen-details td {
  padding: 8px !important;
}
/* line 370, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .bedroom-details td .checkbox,
.flow .bedroom-details td .form-group, .flow .bathroom-details td .checkbox,
.flow .bathroom-details td .form-group, .flow .livingroom-details td .checkbox,
.flow .livingroom-details td .form-group, .flow .kitchen-details td .checkbox,
.flow .kitchen-details td .form-group {
  margin: 0;
}
/* line 374, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .bedroom-details td .checkbox label, .flow .bathroom-details td .checkbox label, .flow .livingroom-details td .checkbox label, .flow .kitchen-details td .checkbox label {
  display: block;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
/* line 383, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .bedroom-details td.present, .flow .bathroom-details td.present, .flow .livingroom-details td.present, .flow .kitchen-details td.present {
  background-color: #dff0d8 !important;
  font-weight: normal;
}
/* line 388, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .bedroom-details .remove-button, .flow .bathroom-details .remove-button, .flow .livingroom-details .remove-button, .flow .kitchen-details .remove-button {
  text-align: right;
}
/* line 393, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .property-features, .flow .shared-features {
  padding: 21px 0 0;
}
/* line 395, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .property-features .feature, .flow .shared-features .feature {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  /* line 395, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
  .flow .property-features .feature, .flow .shared-features .feature {
    float: left;
    width: 33.3333333333%;
  }
}
/* line 400, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .property-features .present label, .flow .shared-features .present label {
  font-weight: bold;
  line-height: 18px;
}
/* line 406, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .property-features .remove-button, .flow .shared-features .remove-button {
  margin-top: 10px;
  text-align: right;
}
/* line 411, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .form-warning, .flow .form-danger, .flow .form-success {
  padding: 15px;
  margin-bottom: 20px;
}
/* line 415, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .form-warning, .flow .security-deposit-warning, .flow .smoke-detectors-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* line 8, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.flow .form-warning hr, .flow .security-deposit-warning hr, .flow .smoke-detectors-warning hr {
  border-top-color: #f7e1b5;
}
/* line 11, /home/nader/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/bootstrap-sass-3.2.0.4/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.flow .form-warning .alert-link, .flow .security-deposit-warning .alert-link, .flow .smoke-detectors-warning .alert-link {
  color: #66512c;
}
/* line 418, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .lessors.well .lessor, .flow .guarantor {
  background: #f0f0f0;
  padding: 21px;
  margin: 21px;
}
/* line 423, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .remove-guarantor {
  text-align: right;
}
/* line 426, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .professional-usage.well {
  margin-top: 30px;
}
/* line 429, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.flow .ng-show {
  padding: 0 !important;
}

/* STEP 0 */
/* line 437, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro {
  margin-bottom: 40px;
  text-align: center;
  padding: 0 0 40px;
  overflow: hidden;
}
/* line 442, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .contract {
  display: inline-block;
  width: 43%;
  min-width: 260px;
  max-width: 400px;
  margin: 40px 2% 80px;
  background-color: white;
  position: relative;
  padding: 18px 30px 30px;
  vertical-align: top;
  -webkit-box-shadow: 4px 6px 24px 0px rgba(0, 42, 63, 0.2);
  -moz-box-shadow: 4px 6px 24px 0px rgba(0, 42, 63, 0.2);
  box-shadow: 4px 6px 24px 0px rgba(0, 42, 63, 0.2);
}
/* line 455, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .contract:before {
  content: " ";
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background-image: url(/static/assets/stylesheets/checkout/icon-checkout-main.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80px auto;
}
/* line 466, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .contract h2 {
  font-size: 18px;
  font-weight: bold;
  color: #455266;
  margin: 0 0 21px;
}
/* line 472, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .contract h6 {
  position: absolute;
  top: 0;
  right: 12px;
  color: #33CC7A;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
/* line 480, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .contract h6 small {
  font-size: 8px;
  font-weight: normal;
  color: #33CC7A;
  display: block;
  line-height: 12px;
}
/* line 489, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .contract.seasonal:before {
  background-image: url(/static/assets/stylesheets/checkout/icon-checkout-signature.svg);
}
/* line 494, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .start-button {
  margin: 24px 0 0;
}
/* line 496, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .start-button button {
  line-height: 44px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: bold;
  background-color: #6198FF !important;
  border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
}
/* line 503, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .start-button button:hover {
  background-color: #a61e25;
}
/* line 507, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .start-button + p + h2 {
  color: #D1262E;
}
/* line 511, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro h1 {
  height: 72px;
  line-height: 72px;
  font-size: 15px;
  font-weight: bold;
  background: rgba(51, 204, 122, 0.9);
  color: #FFFFFF;
  text-shadow: 0px 1px 2px #434242;
  margin: 0 auto;
  width: 90%;
  max-width: 850px;
}
/* line 522, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro h1:before {
  content: " ";
  display: inline-block;
  height: 30px;
  width: 28px;
  margin: -7px 9px 0 0;
  background: url(/static/assets/stylesheets/home/lawyer.svg) no-repeat center center;
  vertical-align: middle;
}
/* line 532, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro .intro-text {
  display: inline-block;
  margin-top: 30px;
  width: 90%;
  color: #093753;
}
/* line 538, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.wrap-welcome-contract-intro + p {
  display: inline-block;
  width: 40%;
  font-size: 16px;
}

/* STEP 0 - EMBED WIZARD*/
/* line 549, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.embed-wizard .affiliate-partnership header {
  text-align: center;
}
/* line 550, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.embed-wizard .affiliate-partnership header h2 {
  max-width: 800px;
  margin: 0 auto 12px;
  padding: 0 3%;
  font-size: 20px;
  font-weight: bold;
  color: #455266;
}
/* line 563, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.embed-wizard .wrap-welcome-contract-intro {
  background: #fff;
  margin-bottom: 0;
}
/* line 567, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.embed-wizard .wrap-welcome-contract-intro h1 {
  display: none;
}
/* line 571, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.embed-wizard .wrap-welcome-contract-intro .contract {
  margin-bottom: 0;
}
/* line 575, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.embed-wizard .wrap-welcome-contract-intro .trustpilot-widget {
  display: none;
}
/* line 583, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.embed-wizard .how-it-works {
  display: none !important;
}

/* line 590, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.how-it-works {
  overflow: hidden;
  text-align: center;
  padding: 12px 36px 60px;
}
/* line 595, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.how-it-works .advantage {
  width: 27%;
  float: left;
  padding: 24px 36px;
  margin: 0 3%;
  color: #666666;
  background: #fff;
  min-height: 300px;
}
/* line 603, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.how-it-works .advantage:hover {
  -webkit-box-shadow: 0px 4px 14px 4px #c7c7c7;
  -moz-box-shadow: 0px 4px 14px 4px #c7c7c7;
  box-shadow: 0px 4px 14px 4px #c7c7c7;
  cursor: pointer;
  transition: all 0.25s linear;
}
/* line 612, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.how-it-works h2 {
  padding: 0;
  height: 88px;
  line-height: 88px;
  margin: 0 0 24px;
}
/* line 617, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.how-it-works h2 img {
  vertical-align: middle;
}
/* line 622, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.how-it-works strong {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #D1262E;
  padding-bottom: 20px;
}

/* VERIFICATEUR */
/* line 637, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.built-in-verifier .form-group label {
  margin-bottom: 21px;
  font-weight: normal;
}
/* line 643, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.built-in-verifier .help-block {
  font-size: 12px;
}
/* line 650, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.built-in-verifier .verifier-communes li:hover {
  cursor: pointer;
  color: #D1262E;
  background-color: #eeeeee;
}
/* line 656, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.built-in-verifier .verifier-communes li:hover span.postal-code, .built-in-verifier .verifier-communes li:hover span.name {
  color: #D1262E;
}
/* line 664, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.built-in-verifier .verifier-communes span.postal-code {
  color: #666;
}
/* line 668, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.built-in-verifier .verifier-communes span.name {
  color: #000;
}

/* ADD TENANT */
/* line 678, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.well.tenant .remove-tenant, .well.tenant .remove-lessor, .well.lessor .remove-tenant, .well.lessor .remove-lessor {
  text-align: right;
}

/* SAVE FOR LATER */
/* line 685, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.save-for-later-width {
  text-align: center;
  background: #fff;
  padding: 24px;
}
/* line 689, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.save-for-later-width h5 {
  font-size: 16px;
  line-height: 1.3em;
  margin: 0 0 15px;
  font-weight: bold;
  color: #455266;
}
/* line 696, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.save-for-later-width button {
  line-height: 36px;
  height: 40px;
  background: #6198FF !important;
  padding: 0 18px;
}

/* line 705, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.label-verifier {
  margin-left: 3px;
  background-color: #33CC7A;
}
/* line 708, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.label-verifier span.glyphicon {
  margin-right: 3px;
}

/* line 715, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.error-sidebar {
  text-align: center;
  background: #fff;
}
/* line 718, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.error-sidebar h5 {
  font-size: 16px;
  line-height: 1.3em;
  margin: 0;
  padding: 9px 24px;
  font-weight: bold;
  color: #455266;
  border: 1px solid #C8C9CB;
}
/* line 727, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.error-sidebar ul {
  list-style: none;
  text-align: left;
  padding: 3px 0 0;
}
/* line 731, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.error-sidebar ul li {
  padding: 12px 16px;
  border-bottom: 1px solid #E1E4E6;
}
/* line 734, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.error-sidebar ul li .circle {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #D1262E;
  border-radius: 7px !important;
  -moz-border-radius: 7px !important;
  -webkit-border-radius: 7px !important;
  vertical-align: middle;
  margin-right: 3px;
}
/* line 743, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.error-sidebar ul li a {
  font-size: 12px;
  line-height: 14px;
  color: #6B6F77;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
}
/* line 750, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.error-sidebar ul li a:hover {
  color: #D1262E;
}

/* line 762, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizards.scss */
.placeholder small {
  color: #999;
}

/* Absolute Center CSS Spinner */
/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizard_loading.scss */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* line 13, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizard_loading.scss */
.loading .intro {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: auto;
  margin: -150px 0 0 -50%;
  text-align: center;
  font-family: 'Bitter', Arial, Helvetica, sans-serif;
}
/* line 21, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizard_loading.scss */
.loading .intro h2 {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
  color: #D1262E;
  margin: 0 0 12px;
}
/* line 28, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizard_loading.scss */
.loading .intro p {
  font-size: 16px;
  line-height: normal;
  color: #666666;
  margin: 0 0 9px;
}

/* Transparent Overlay */
/* line 38, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizard_loading.scss */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.88);
}

/* :not(:required) hides these rules from IE9 and below */
/* line 50, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizard_loading.scss */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 59, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/wizard_loading.scss */
.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 2, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
#tenant_forms-show #main-content {
  background: linear-gradient(180deg, #F2F2F2 360px, #fff 360px);
}

/* line 6, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page {
  padding-top: 45px;
}
/* line 8, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page h1 {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #455266;
  width: 600px;
  margin: 0 auto;
}
/* line 17, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .white-card {
  position: relative;
  border: 1px solid #D9D9D9;
  width: 862px;
  background: #fff;
  padding: 20px 40px;
  margin: 45px auto 30px;
  -webkit-box-shadow: 0 2px 23px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 23px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 23px 0px rgba(0, 0, 0, 0.2);
}
/* line 27, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .white-card:before {
  display: block;
  content: "";
  width: 674px;
  height: 560px;
  background: url(/static/assets/stylesheets/wizard/illu-signature-hand.svg) no-repeat;
  background-size: auto;
  position: absolute;
  right: -560px;
  top: -30px;
}
/* line 38, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .white-card h2 {
  text-align: center;
  font-size: 24px;
  color: #455266;
  font-weight: bold;
  line-height: 36px;
}
/* line 44, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .white-card h2 address {
  font-weight: normal;
  max-width: 600px;
  margin: 0 auto;
}
/* line 49, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .white-card h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 20px auto 32px;
  background: #F74B68;
}
/* line 59, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .white-card .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
/* line 63, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .white-card h4 {
  margin-bottom: 24px;
}
/* line 69, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .remove-tenant {
  text-align: right;
}
/* line 73, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page button {
  border: none;
  background: #6198FF;
  color: #fff;
  margin: 18px 0;
  padding: 9px 12px;
}
/* line 79, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page button.button-remove {
  margin: 0;
}
/* line 84, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page button[disabled] {
  background-color: #ccc !important;
}
/* line 87, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page button[disabled]:hover {
  cursor: not-allowed;
  background-color: #b3b3b3 !important;
}
/* line 93, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-representation {
  padding: 0 0 24px;
}
/* line 97, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .flow-button-next {
  text-align: right;
}
/* line 99, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .flow-button-next button {
  font-size: 16px;
  font-weight: bold;
  padding: 15px 24px;
}
/* line 103, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .flow-button-next button .glyphicon {
  margin-right: 6px;
}
/* line 110, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page select.call-back-select {
  width: auto;
  display: inline;
  margin-left: 10px;
}
/* line 116, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page span.call-back-between {
  margin-left: 10px;
}
/* line 120, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page span.appointment-prompt {
  display: inline-block;
  width: 40px;
  text-align: right;
}
/* line 127, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .form-warning {
  color: #999;
}
/* line 131, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .form-warning-couple {
  margin-bottom: 10px;
}
/* line 135, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-form-lead {
  padding: 9px 24px;
  border: 2px solid #C5281B;
  margin: 24px 0;
}
/* line 139, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-form-lead .form-group, .tenant-form-page .tenant-form-lead .has-radio-error {
  border: 0 none;
  padding: 18px 0 9px;
  border-top: 1px solid #EEEEEE;
  margin-bottom: 6px;
}
/* line 144, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-form-lead .form-group > *, .tenant-form-page .tenant-form-lead .has-radio-error > * {
  color: #333333;
}
/* line 148, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-form-lead .insurance-lead-details label.insurance-brand {
  margin-bottom: 24px;
}
/* line 150, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-form-lead .insurance-lead-details label.insurance-brand:before {
  content: "";
  display: block;
  background-size: auto;
  float: left;
  height: 38px;
  margin: 0 12px 0 0;
}
/* line 161, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-form-lead .insurance-lead-details-be label.insurance-brand:before {
  width: 47px;
  background: url(/static/assets/stylesheets/logotypes/generali.svg) no-repeat;
}
/* line 168, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-form-lead label small {
  color: #999;
}
/* line 173, /home/nader/lbb/lbb-production/app/assets/stylesheets/website/tenant_form.scss */
.tenant-form-page .tenant-form-lead b.tel {
  color: #D1262E;
}
