/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}
.leaflet-draw-section {
    position:relative;
}

.leaflet-draw-toolbar {
    margin-top:12px;
}

.leaflet-draw-toolbar-notop a:first-child {
    border-top-right-radius:0;
}

.leaflet-draw-toolbar-nobottom a:last-child {
    border-bottom-right-radius:0;
}

.leaflet-draw-toolbar a {
    background-image:linear-gradient(transparent,transparent),url(https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/images/spritesheet.svg);
    background-repeat:no-repeat;
    background-size:300px 30px;
    background-clip:padding-box;
}

.leaflet-retina .leaflet-draw-toolbar a {
    background-image:linear-gradient(transparent,transparent),url(https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/images/spritesheet.svg);
}

.leaflet-draw a {
    display:block;
    text-align:center;
    text-decoration:none;
}

.leaflet-draw a .sr-only {
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0;
    margin:-1px;
    padding:0;
}

.leaflet-draw-actions {
    display:none;
    list-style:none;
    position:absolute;
    left:26px;
    top:0;
    white-space:nowrap;
    margin:0;
    padding:0;
    z-index: 10000;
}

.leaflet-touch .leaflet-draw-actions {
    left:32px;
}

.leaflet-right .leaflet-draw-actions {
    right:26px;
    left:auto;
}

.leaflet-touch .leaflet-right .leaflet-draw-actions {
    right:32px;
    left:auto;
}

.leaflet-draw-actions li {
    display:inline-block;
}

.leaflet-draw-actions li:first-child a {
    border-left:0;
}

.leaflet-draw-actions li:last-child a {
    -webkit-border-radius:0 4px 4px 0;
    border-radius:0 4px 4px 0;
}

.leaflet-right .leaflet-draw-actions li:last-child a {
    -webkit-border-radius:0;
    border-radius:0;
}

.leaflet-right .leaflet-draw-actions li:first-child a {
    -webkit-border-radius:4px 0 0 4px;
    border-radius:4px 0 0 4px;
}

.leaflet-draw-actions a {
    background-color:#919187;
    border-left:1px solid #AAA;
    color:#FFF;
    font:11px/19px "Helvetica Neue",Arial,Helvetica,sans-serif;
    line-height:28px;
    text-decoration:none;
    padding-left:10px;
    padding-right:10px;
    height:28px;
}

.leaflet-touch .leaflet-draw-actions a {
    font-size:12px;
    line-height:30px;
    height:30px;
}

.leaflet-draw-actions-top {
    margin-top:1px;
}

.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a {
    height:27px;
    line-height:27px;
}

.leaflet-draw-actions a:hover {
    background-color:#a0a098;
}

.leaflet-draw-actions-top.leaflet-draw-actions-bottom a {
    height:26px;
    line-height:26px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polyline {
    background-position:-2px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline {
    background-position:0 -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polygon {
    background-position:-31px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon {
    background-position:-29px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
    background-position:-62px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
    background-position:-60px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circle {
    background-position:-92px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle {
    background-position:-90px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-marker {
    background-position:-122px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker {
    background-position:-120px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
    background-position:-273px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
    background-position:-271px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit {
    background-position:-152px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit {
    background-position:-150px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove {
    background-position:-182px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove {
    background-position:-180px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
    background-position:-212px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
    background-position:-210px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
    background-position:-242px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
    background-position:-240px -2px;
}

.leaflet-mouse-marker {
    background-color:#fff;
    cursor:crosshair;
}

.leaflet-draw-tooltip {
    background:rgba(0,0,0,0.5);
    border:1px solid transparent;
    -webkit-border-radius:4px;
    border-radius:4px;
    color:#fff;
    font:12px/18px "Helvetica Neue",Arial,Helvetica,sans-serif;
    margin-left:20px;
    margin-top:-21px;
    position:absolute;
    visibility:hidden;
    white-space:nowrap;
    z-index:6;
    padding:4px 8px;
}

.leaflet-draw-tooltip:before {
    border-right:6px solid #000;
    border-right-color:rgba(0,0,0,0.5);
    border-top:6px solid transparent;
    border-bottom:6px solid transparent;
    content:"";
    position:absolute;
    top:7px;
    left:-7px;
}

.leaflet-error-draw-tooltip {
    background-color:#f2dede;
    border:1px solid #e6b6bd;
    color:#b94a48;
}

.leaflet-error-draw-tooltip:before {
    border-right-color:#e6b6bd;
}

.leaflet-draw-tooltip-single {
    margin-top:-12px;
}

.leaflet-draw-tooltip-subtext {
    color:#f8d5e4;
}

.leaflet-draw-guide-dash {
    font-size:1%;
    opacity:.6;
    position:absolute;
    width:5px;
    height:5px;
}

.leaflet-edit-marker-selected {
    background-color:rgba(254,87,161,0.1);
    border:4px dashed rgba(254,87,161,0.6);
    -webkit-border-radius:4px;
    border-radius:4px;
    box-sizing:content-box;
}

.leaflet-edit-move {
    cursor:move;
}

.leaflet-edit-resize {
    cursor:pointer;
}

.leaflet-oldie .leaflet-draw-toolbar {
    border:1px solid #999;
}

.leaflet-draw-toolbar-top,.leaflet-draw-actions-bottom {
    margin-top:0;
}
.icon-active {
    background-color: #ffc !important;
  }
  
  .icon-ruler {
    cursor: pointer;
    background-image: url('data:image/png; base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAADVSURBVCiRndIxSkMBEIThb18eSLCwV7DRIiRH8AZaWtnYeQIPINhbWIh9Kg+hCN4hEQsLUawsRBFEhLXZgEgUngvT/bOzDBuZqes0nR1dTRHRQPsH0McAw9IIlzhuC+hh7QewjEdco4dTbEMTEQOc4xBbuMcrdrGEE6ziCusVYBEXWKj4Po5q+0ZmmgljDNrMfIuIp9q2g/fM3I+IwENEbNa5w2JWIjNFxAHucFvAqEp4wRST0k1mfszam2LvG3CGSWY+z222ktrM/Pyt/rmmrvOvN/oCjRNGEaC8yE0AAAAASUVORK5CYII=') !important;
  }
  
  .ruler-map {
    cursor: crosshair !important;
  }
  
  .total-popup {
    width: auto !important;
    height: auto !important;
    padding-left: 15px;
    margin-top: -10px !important;
    background-color: transparent;
  }
  
  .total-popup-content {
    padding: 1px 7px;
    background-color: #4d90fe;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
  }
  
    .total-popup-content .poly-close {
      display: none;
    }
  
      .total-popup-content .poly-close:hover {
        opacity: 0.7;
      }
  
    .total-popup-content:hover .poly-close {
      display: inline;
      margin-left: 10px;
      position: relative;
      cursor: pointer;
    }
  
    .total-popup-content svg {
      width: 15px;
      height: 10px;
      position: relative !important;
      top: 0px !important;
      left: 5px !important;
    }
  
      .total-popup-content svg path {
        stroke: white;
        fill: transparent;
        stroke-linecap: round;
        stroke-width: 7;
      }
  
      .total-popup-content svg:hover {
        opacity: 0.7;
      }
  
      .total-popup-content svg:active {
        opacity: 0.3;
      }
  
  .total-popup-label {
    padding: 0px;
    padding-top: 10px;
    background-color: transparent;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
    color: #4d90fe;
    font-weight: bold;
    font-size: 10px;
    white-space: nowrap;
  }
  
  .node-label {
    top: -25px !important;
  }
  
  .azimut {
    color: blue;
    text-shadow: 1px 1px 0px white;
    font-size: 13px;
    font-weight: normal;
  }
  
  .azimut-final {
    text-shadow: none;
    font-weight: bold;
  }
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

/*******************************************************************************
 *              bootstrap-rtl (version 3.3.4)
 *      Author: Morteza Ansarinia (http://github.com/morteza)
 *  Created on: August 13,2015
 *     Project: bootstrap-rtl
 *   Copyright: Unlicensed Public Domain
 *******************************************************************************/

html {
  direction: rtl;
}
body {
  direction: rtl;
}
.flip.text-left {
  text-align: right;
}
.flip.text-right {
  text-align: left;
}
.list-unstyled {
  padding-right: 0;
  padding-left: initial;
}
.list-inline {
  padding-right: 0;
  padding-left: initial;
  margin-right: -5px;
  margin-left: 0;
}
dd {
  margin-right: 0;
  margin-left: initial;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: right;
    clear: right;
    text-align: left;
  }
  .dl-horizontal dd {
    margin-right: 180px;
    margin-left: 0;
  }
}
blockquote {
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
.blockquote-reverse,
blockquote.pull-left {
  padding-left: 15px;
  padding-right: 0;
  border-left: 5px solid #eeeeee;
  border-right: 0;
  text-align: left;
}
.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;
}
.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: right;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  left: 100%;
  right: auto;
}
.col-xs-pull-11 {
  left: 91.66666667%;
  right: auto;
}
.col-xs-pull-10 {
  left: 83.33333333%;
  right: auto;
}
.col-xs-pull-9 {
  left: 75%;
  right: auto;
}
.col-xs-pull-8 {
  left: 66.66666667%;
  right: auto;
}
.col-xs-pull-7 {
  left: 58.33333333%;
  right: auto;
}
.col-xs-pull-6 {
  left: 50%;
  right: auto;
}
.col-xs-pull-5 {
  left: 41.66666667%;
  right: auto;
}
.col-xs-pull-4 {
  left: 33.33333333%;
  right: auto;
}
.col-xs-pull-3 {
  left: 25%;
  right: auto;
}
.col-xs-pull-2 {
  left: 16.66666667%;
  right: auto;
}
.col-xs-pull-1 {
  left: 8.33333333%;
  right: auto;
}
.col-xs-pull-0 {
  left: auto;
  right: auto;
}
.col-xs-push-12 {
  right: 100%;
  left: 0;
}
.col-xs-push-11 {
  right: 91.66666667%;
  left: 0;
}
.col-xs-push-10 {
  right: 83.33333333%;
  left: 0;
}
.col-xs-push-9 {
  right: 75%;
  left: 0;
}
.col-xs-push-8 {
  right: 66.66666667%;
  left: 0;
}
.col-xs-push-7 {
  right: 58.33333333%;
  left: 0;
}
.col-xs-push-6 {
  right: 50%;
  left: 0;
}
.col-xs-push-5 {
  right: 41.66666667%;
  left: 0;
}
.col-xs-push-4 {
  right: 33.33333333%;
  left: 0;
}
.col-xs-push-3 {
  right: 25%;
  left: 0;
}
.col-xs-push-2 {
  right: 16.66666667%;
  left: 0;
}
.col-xs-push-1 {
  right: 8.33333333%;
  left: 0;
}
.col-xs-push-0 {
  right: auto;
  left: 0;
}
.col-xs-offset-12 {
  margin-right: 100%;
  margin-left: 0;
}
.col-xs-offset-11 {
  margin-right: 91.66666667%;
  margin-left: 0;
}
.col-xs-offset-10 {
  margin-right: 83.33333333%;
  margin-left: 0;
}
.col-xs-offset-9 {
  margin-right: 75%;
  margin-left: 0;
}
.col-xs-offset-8 {
  margin-right: 66.66666667%;
  margin-left: 0;
}
.col-xs-offset-7 {
  margin-right: 58.33333333%;
  margin-left: 0;
}
.col-xs-offset-6 {
  margin-right: 50%;
  margin-left: 0;
}
.col-xs-offset-5 {
  margin-right: 41.66666667%;
  margin-left: 0;
}
.col-xs-offset-4 {
  margin-right: 33.33333333%;
  margin-left: 0;
}
.col-xs-offset-3 {
  margin-right: 25%;
  margin-left: 0;
}
.col-xs-offset-2 {
  margin-right: 16.66666667%;
  margin-left: 0;
}
.col-xs-offset-1 {
  margin-right: 8.33333333%;
  margin-left: 0;
}
.col-xs-offset-0 {
  margin-right: 0%;
  margin-left: 0;
}
@media (min-width: 768px) {
  .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: right;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    left: 100%;
    right: auto;
  }
  .col-sm-pull-11 {
    left: 91.66666667%;
    right: auto;
  }
  .col-sm-pull-10 {
    left: 83.33333333%;
    right: auto;
  }
  .col-sm-pull-9 {
    left: 75%;
    right: auto;
  }
  .col-sm-pull-8 {
    left: 66.66666667%;
    right: auto;
  }
  .col-sm-pull-7 {
    left: 58.33333333%;
    right: auto;
  }
  .col-sm-pull-6 {
    left: 50%;
    right: auto;
  }
  .col-sm-pull-5 {
    left: 41.66666667%;
    right: auto;
  }
  .col-sm-pull-4 {
    left: 33.33333333%;
    right: auto;
  }
  .col-sm-pull-3 {
    left: 25%;
    right: auto;
  }
  .col-sm-pull-2 {
    left: 16.66666667%;
    right: auto;
  }
  .col-sm-pull-1 {
    left: 8.33333333%;
    right: auto;
  }
  .col-sm-pull-0 {
    left: auto;
    right: auto;
  }
  .col-sm-push-12 {
    right: 100%;
    left: 0;
  }
  .col-sm-push-11 {
    right: 91.66666667%;
    left: 0;
  }
  .col-sm-push-10 {
    right: 83.33333333%;
    left: 0;
  }
  .col-sm-push-9 {
    right: 75%;
    left: 0;
  }
  .col-sm-push-8 {
    right: 66.66666667%;
    left: 0;
  }
  .col-sm-push-7 {
    right: 58.33333333%;
    left: 0;
  }
  .col-sm-push-6 {
    right: 50%;
    left: 0;
  }
  .col-sm-push-5 {
    right: 41.66666667%;
    left: 0;
  }
  .col-sm-push-4 {
    right: 33.33333333%;
    left: 0;
  }
  .col-sm-push-3 {
    right: 25%;
    left: 0;
  }
  .col-sm-push-2 {
    right: 16.66666667%;
    left: 0;
  }
  .col-sm-push-1 {
    right: 8.33333333%;
    left: 0;
  }
  .col-sm-push-0 {
    right: auto;
    left: 0;
  }
  .col-sm-offset-12 {
    margin-right: 100%;
    margin-left: 0;
  }
  .col-sm-offset-11 {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .col-sm-offset-10 {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .col-sm-offset-9 {
    margin-right: 75%;
    margin-left: 0;
  }
  .col-sm-offset-8 {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .col-sm-offset-7 {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .col-sm-offset-6 {
    margin-right: 50%;
    margin-left: 0;
  }
  .col-sm-offset-5 {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .col-sm-offset-4 {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .col-sm-offset-3 {
    margin-right: 25%;
    margin-left: 0;
  }
  .col-sm-offset-2 {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .col-sm-offset-0 {
    margin-right: 0%;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .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: right;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    left: 100%;
    right: auto;
  }
  .col-md-pull-11 {
    left: 91.66666667%;
    right: auto;
  }
  .col-md-pull-10 {
    left: 83.33333333%;
    right: auto;
  }
  .col-md-pull-9 {
    left: 75%;
    right: auto;
  }
  .col-md-pull-8 {
    left: 66.66666667%;
    right: auto;
  }
  .col-md-pull-7 {
    left: 58.33333333%;
    right: auto;
  }
  .col-md-pull-6 {
    left: 50%;
    right: auto;
  }
  .col-md-pull-5 {
    left: 41.66666667%;
    right: auto;
  }
  .col-md-pull-4 {
    left: 33.33333333%;
    right: auto;
  }
  .col-md-pull-3 {
    left: 25%;
    right: auto;
  }
  .col-md-pull-2 {
    left: 16.66666667%;
    right: auto;
  }
  .col-md-pull-1 {
    left: 8.33333333%;
    right: auto;
  }
  .col-md-pull-0 {
    left: auto;
    right: auto;
  }
  .col-md-push-12 {
    right: 100%;
    left: 0;
  }
  .col-md-push-11 {
    right: 91.66666667%;
    left: 0;
  }
  .col-md-push-10 {
    right: 83.33333333%;
    left: 0;
  }
  .col-md-push-9 {
    right: 75%;
    left: 0;
  }
  .col-md-push-8 {
    right: 66.66666667%;
    left: 0;
  }
  .col-md-push-7 {
    right: 58.33333333%;
    left: 0;
  }
  .col-md-push-6 {
    right: 50%;
    left: 0;
  }
  .col-md-push-5 {
    right: 41.66666667%;
    left: 0;
  }
  .col-md-push-4 {
    right: 33.33333333%;
    left: 0;
  }
  .col-md-push-3 {
    right: 25%;
    left: 0;
  }
  .col-md-push-2 {
    right: 16.66666667%;
    left: 0;
  }
  .col-md-push-1 {
    right: 8.33333333%;
    left: 0;
  }
  .col-md-push-0 {
    right: auto;
    left: 0;
  }
  .col-md-offset-12 {
    margin-right: 100%;
    margin-left: 0;
  }
  .col-md-offset-11 {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .col-md-offset-10 {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .col-md-offset-9 {
    margin-right: 75%;
    margin-left: 0;
  }
  .col-md-offset-8 {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .col-md-offset-7 {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .col-md-offset-6 {
    margin-right: 50%;
    margin-left: 0;
  }
  .col-md-offset-5 {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .col-md-offset-4 {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .col-md-offset-3 {
    margin-right: 25%;
    margin-left: 0;
  }
  .col-md-offset-2 {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .col-md-offset-0 {
    margin-right: 0%;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .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: right;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    left: 100%;
    right: auto;
  }
  .col-lg-pull-11 {
    left: 91.66666667%;
    right: auto;
  }
  .col-lg-pull-10 {
    left: 83.33333333%;
    right: auto;
  }
  .col-lg-pull-9 {
    left: 75%;
    right: auto;
  }
  .col-lg-pull-8 {
    left: 66.66666667%;
    right: auto;
  }
  .col-lg-pull-7 {
    left: 58.33333333%;
    right: auto;
  }
  .col-lg-pull-6 {
    left: 50%;
    right: auto;
  }
  .col-lg-pull-5 {
    left: 41.66666667%;
    right: auto;
  }
  .col-lg-pull-4 {
    left: 33.33333333%;
    right: auto;
  }
  .col-lg-pull-3 {
    left: 25%;
    right: auto;
  }
  .col-lg-pull-2 {
    left: 16.66666667%;
    right: auto;
  }
  .col-lg-pull-1 {
    left: 8.33333333%;
    right: auto;
  }
  .col-lg-pull-0 {
    left: auto;
    right: auto;
  }
  .col-lg-push-12 {
    right: 100%;
    left: 0;
  }
  .col-lg-push-11 {
    right: 91.66666667%;
    left: 0;
  }
  .col-lg-push-10 {
    right: 83.33333333%;
    left: 0;
  }
  .col-lg-push-9 {
    right: 75%;
    left: 0;
  }
  .col-lg-push-8 {
    right: 66.66666667%;
    left: 0;
  }
  .col-lg-push-7 {
    right: 58.33333333%;
    left: 0;
  }
  .col-lg-push-6 {
    right: 50%;
    left: 0;
  }
  .col-lg-push-5 {
    right: 41.66666667%;
    left: 0;
  }
  .col-lg-push-4 {
    right: 33.33333333%;
    left: 0;
  }
  .col-lg-push-3 {
    right: 25%;
    left: 0;
  }
  .col-lg-push-2 {
    right: 16.66666667%;
    left: 0;
  }
  .col-lg-push-1 {
    right: 8.33333333%;
    left: 0;
  }
  .col-lg-push-0 {
    right: auto;
    left: 0;
  }
  .col-lg-offset-12 {
    margin-right: 100%;
    margin-left: 0;
  }
  .col-lg-offset-11 {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .col-lg-offset-10 {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .col-lg-offset-9 {
    margin-right: 75%;
    margin-left: 0;
  }
  .col-lg-offset-8 {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .col-lg-offset-7 {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .col-lg-offset-6 {
    margin-right: 50%;
    margin-left: 0;
  }
  .col-lg-offset-5 {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .col-lg-offset-4 {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .col-lg-offset-3 {
    margin-right: 25%;
    margin-left: 0;
  }
  .col-lg-offset-2 {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .col-lg-offset-0 {
    margin-right: 0%;
    margin-left: 0;
  }
}
caption {
  text-align: right;
}
th {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-right: 0;
    border-left: initial;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-left: 0;
    border-right: initial;
  }
}
.radio label,
.checkbox label {
  padding-right: 20px;
  padding-left: initial;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  margin-right: -20px;
  margin-left: auto;
}
.radio-inline,
.checkbox-inline {
  padding-right: 20px;
  padding-left: 0;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-right: 10px;
  margin-left: 0;
}
.has-feedback .form-control {
  padding-left: 42.5px;
  padding-right: 12px;
}
.form-control-feedback {
  left: 0;
  right: auto;
}
@media (min-width: 768px) {
  .form-inline label {
    padding-right: 0;
    padding-left: initial;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: left;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  left: 15px;
  right: auto;
}
.caret {
  margin-right: 2px;
  margin-left: 0;
}
.dropdown-menu {
  right: 0;
  left: auto;
  float: left;
  text-align: right;
}
.dropdown-menu.pull-right {
  left: 0;
  right: auto;
  float: right;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  float: right;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-right: -1px;
  margin-left: 0px;
}
.btn-toolbar {
  margin-right: -5px;
  margin-left: 0px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: right;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-right: 5px;
  margin-left: 0px;
}
.btn-group > .btn:first-child {
  margin-right: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group {
  float: right;
}
.btn-group.btn-group-justified > .btn,
.btn-group.btn-group-justified > .btn-group {
  float: none;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn .caret {
  margin-right: 0;
}
.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-right: 0;
}
.input-group .form-control {
  float: right;
}
.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: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:first-child {
  border-left: 0px;
  border-right: 1px solid;
}
.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: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:last-child {
  border-left-width: 1px;
  border-left-style: solid;
  border-right: 0px;
}
.input-group-btn > .btn + .btn {
  margin-right: -1px;
  margin-left: auto;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-left: -1px;
  margin-right: auto;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-right: -1px;
  margin-left: auto;
}
.nav {
  padding-right: 0;
  padding-left: initial;
}
.nav-tabs > li {
  float: right;
}
.nav-tabs > li > a {
  margin-left: auto;
  margin-right: -2px;
  border-radius: 4px 4px 0 0;
}
.nav-pills > li {
  float: right;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-right: 2px;
  margin-left: auto;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-right: 0;
  margin-left: auto;
}
.nav-justified > .dropdown .dropdown-menu {
  right: auto;
}
.nav-tabs-justified > li > a {
  margin-left: 0;
  margin-right: auto;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-radius: 4px 4px 0 0;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: right;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
}
.navbar-brand {
  float: right;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-right: -15px;
    margin-left: auto;
  }
}
.navbar-toggle {
  float: left;
  margin-left: 15px;
  margin-right: auto;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 25px 5px 15px;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: right;
  }
  .navbar-nav > li {
    float: right;
  }
}
@media (min-width: 768px) {
  .navbar-left.flip {
    float: right !important;
  }
  .navbar-right:last-child {
    margin-left: -15px;
    margin-right: auto;
  }
  .navbar-right.flip {
    float: left !important;
    margin-left: -15px;
    margin-right: auto;
  }
  .navbar-right .dropdown-menu {
    left: 0;
    right: auto;
  }
}
@media (min-width: 768px) {
  .navbar-text {
    float: right;
  }
  .navbar-text.navbar-right:last-child {
    margin-left: 0;
    margin-right: auto;
  }
}
.pagination {
  padding-right: 0;
}
.pagination > li > a,
.pagination > li > span {
  float: right;
  margin-right: -1px;
  margin-left: 0px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  margin-right: -1px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pager {
  padding-right: 0;
  padding-left: initial;
}
.pager .next > a,
.pager .next > span {
  float: left;
}
.pager .previous > a,
.pager .previous > span {
  float: right;
}
.nav-pills > li > a > .badge {
  margin-left: 0px;
  margin-right: 3px;
}
.list-group-item > .badge {
  float: left;
}
.list-group-item > .badge + .badge {
  margin-left: 5px;
  margin-right: auto;
}
.alert-dismissable,
.alert-dismissible {
  padding-left: 35px;
  padding-right: 15px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  right: auto;
  left: -21px;
}
.progress-bar {
  float: right;
}
.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-left.flip {
  margin-right: 0;
  margin-left: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}
.media > .pull-right.flip {
  margin-left: 0;
  margin-right: 10px;
}
.media-right,
.media > .pull-right {
  padding-right: 10px;
  padding-left: initial;
}
.media-left,
.media > .pull-left {
  padding-left: 10px;
  padding-right: initial;
}
.media-list {
  padding-right: 0;
  padding-left: initial;
  list-style: none;
}
.list-group {
  padding-right: 0;
  padding-left: initial;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 0;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 0;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
  border-top-right-radius: 0;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
  border-top-left-radius: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-right: 0;
  border-left: none;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: none;
  border-left: 0;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object {
  right: 0;
  left: auto;
}
.close {
  float: left;
}
.modal-footer {
  text-align: left;
}
.modal-footer.flip {
  text-align: right;
}
.modal-footer .btn + .btn {
  margin-left: auto;
  margin-right: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-right: -1px;
  margin-left: auto;
}
.modal-footer .btn-block + .btn-block {
  margin-right: 0;
  margin-left: auto;
}
.popover {
  left: auto;
  text-align: right;
}
.popover.top > .arrow {
  right: 50%;
  left: auto;
  margin-right: -11px;
  margin-left: auto;
}
.popover.top > .arrow:after {
  margin-right: -10px;
  margin-left: auto;
}
.popover.bottom > .arrow {
  right: 50%;
  left: auto;
  margin-right: -11px;
  margin-left: auto;
}
.popover.bottom > .arrow:after {
  margin-right: -10px;
  margin-left: auto;
}
.carousel-control {
  right: 0;
  bottom: 0;
}
.carousel-control.left {
  right: auto;
  left: 0;
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  right: auto;
  margin-right: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  left: auto;
  margin-left: -10px;
}
.carousel-indicators {
  right: 50%;
  left: 0;
  margin-right: -30%;
  margin-left: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: 0;
    margin-right: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-left: 0;
    margin-right: -15px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
}
.pull-right.flip {
  float: left !important;
}
.pull-left.flip {
  float: right !important;
}
#sourceMappingURL=bootstrap-rtl.css.map

html {
  position: relative;
  min-height: 100%;
}
#content {
  margin-top:60px;
}
/*  === */
.label {
 font-size:90%;
     display: inline-block;
     /* margin-top: 4px; */
}
/*  entry screen imag */
.center_logo {
  text-align:center;
  
}
/*  footer wraper body */
.with_footer {
  /* Margin bottom by footer height + support iphone x margin bottom */
  margin-bottom: calc( env(safe-area-inset-bottom) + 60px);
}

hr {
  margin-top:10px;
  margin-bottom:10px;
}
/* ===Views internal top menu and bottom menu defs ===== */
 
.btn.disabled, .btn[disabled] {
  filter:alpha(opacity=30);
  opacity:.30;
  pointer-events: none;
}

.with-header {
  margin-top:50px;
}
.gutterl-small{
padding-left:5px;
}
/* ==== ship confirm  === */
.sign_name {
  width: 100px;
}

.checkbox-inline {
  margin-right: -5px;
  margin-left: 5px;
}

.sign_text {
  line-height:1.5;
}
.signature_area{
  border:1px solid #c4caac;
}

/* === shoot page - load image file ===== */
#shootImage{
height:100px;
border:1px solid gray;
cursor: pointer;
}
#picture_img , #signature_img {
  height: 100px;
  width: 100%;
}
/* peulot layer - should be on top but behind the popups */
.peulot_fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 1020;
}
/* for google autocomplete address, when showing on modal window, it was hidden underneeth it */
.pac-container {
  z-index: 1070;
}

.shipments_header {
  position:fixed;
  top: 60px;
  left: 1rem;
  z-index: 1001;
}

input[type=number]::-webkit-textfield-decoration-container {
  unicode-bidi: embed;
  direction: rtl;
}

input[type=number] {
  direction: ltr;
  text-align: right;
}

.history_style {
  direction: ltr;
  text-align: right;
}

/* shipments_list margin from filters */

@media (min-width: 0px) { 
  .hide_label {
    display: none;
  }
  .drivers_map {
    position:fixed;
    top: 130px;
    left: 1rem;
    z-index: 1001;
  }
}

@media (min-width: 520px) { 
  .hide_label {
    display: none;
  }
  .drivers_map {
    position:fixed;
    top: 180px;
    left: 1rem;
    z-index: 1001;
  }
}

@media (min-width: 768px) { 
  .hide_label {
    display: block;
  }
}

@media (min-width: 1100px) { 
  .hide_label {
    display: block;
  }
}



/* map */

.shipments_map {
  position:fixed;
  top: 189px;
  left: 1rem;
  z-index: 1001;
}

.positions_map {
  position:fixed;
  top: 40px;
  left: 1rem;
  z-index: 1001;
}

.form-control[disabled] {
  background-color: #f7f7f7;
}

.data_input_cell {
  font-size: 1.5rem;
  padding-left: 7px;
  padding-right: 7px;
}

.data_import_btn_group {
  text-align:right; 
  padding: 3px 20px;
  background: transparent;
}

.data_import_btn_group:hover {
  background-color: rgb(225 222 222 / 50%);
}


/*  coordination */
#modalCoordination .nav-tabs > li.active > a {
  background-color: white;
  color: #455A64;
}

.select2-container {
  width: 100%!important;
}

.select2-container--default {
  width: 100%!important;
}

.select2-container--below{
  width: 100%!important;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #ccc!important;
}

span.select2-selection--multiple[aria-expanded=true] {
  border-color:#66afe9 !important;
  outline: 0!important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6)!important; 
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 3px;
}

.select2-selection__rendered {
  font-size: 13px!important;
  margin-top: 3px!important;
}

.select2-search__field {
  padding-right: 12px!important;
  font-size: 16px!important;
}

.select2-selection--multiple{
  overflow: hidden !important;
  height: auto !important;
}

.table-hover tbody tr:hover td {
  background: rgb(152, 161, 161);
  cursor: pointer;
}

.area_polygon_btn_group {
  text-align:right; 
  padding: 3px 20px;
  background: transparent;
}

#assign_to_trip_btn {
  display: none;
  
}

#shipment_link:hover * #assign_to_trip_btn{
  display: inline-block;
  padding-bottom: 2px;
  padding-top: 2px;
}

.inactiveLink {
  pointer-events: none;
  cursor: default;
}

.img_error {
  top: 25%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color:#d9534f;
}

.panel-title {
  font-size: 16px;
}

.file_class_btn {
  width: 100%;
  background: transparent;
}

.file_class_btn:hover {
  background-color: rgb(225 222 222 / 50%);
}

.tag_color_square {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 0.5em;
}

.embed_pdf {
  width:80px; 
  height:80px; 
  pointer-events: none;
  border: none;
}

#coord_from_time {
  border-radius: 0px;
}

.search_select_item {
  width: fit-content;
}

.time_item {
  width: 174px;
}

.search_term_item {
  width: 650px;
}

@media (max-width: 767px) {
  .menu_padding {
    padding: 10px 25px 10px 15px !important;
  }

  .search_item {
    flex-wrap: wrap;
  }

  .search_select_item {
    width: 100%;
  }

  .time_item {
    width: 100%;
  }

  .search_term_item {
    width: 100%;
  }
}

.shipment_settings_table {
  border-color: #ccc !important;
}

.shipment_settings_table td,
.shipment_settings_table th {
  border-color: #ccc !important;
}

/* for barcode reads screen the type selection button (div) */
#select_barcode_reads_type_btn[disabled],
#select_barcode_reads_type_btn.disabled {
  opacity: 0.8;
}

#select_barcode_reads_type_btn[disabled] .caret {
  display: none;
}

/* dont reverse caret on dropup */
.dropup .btn-lg .caret {
  border-width: 5px 5px 0;
  border-top-style: dashed;
  border-top-color: initial;
  border-bottom: 0;
}
/*****************CHAT BODY *******************/

.chat-body .answer {
  position: relative;
  max-width: 600px;
  overflow: hidden;
  clear: both;
}

.chat-body .answer .text {
  padding: 8px;
  font-size: 14px;
  line-height: 16px;
  position: relative;
}

/*LEFT*/
.chat-body .answer.left {
  text-align: right;
  float: left;
  padding-right: 30px;
  clear: both;
}

.chat-body .answer.left .text {
  background: #ffffff;
  color: gray;
  border-radius: 8px 8px 8px 8px;
}


/*RIGHT*/
.chat-body .answer.right {
  text-align: right;
  float: right;
  padding-left: 30px;
  clear: both;
}

.chat-body .answer.right .text {
  background: #ddd;
  color: gray;
  border-radius: 8px 8px 8px 8px;
}

.chat-body .answer .footer {
  font-size: 12px;
  line-height: 14px;
  padding-bottom: 8px;
  color: #aaa;
}


.timepicker-picker .table-condensed {
  direction: ltr;
}

#shipments_filter .form-group {
  margin-bottom: 0px;
}

#date_index_show_id .form-group {
  margin-bottom: 0px;
}

#points_index .nav-tabs > li.active > a, #points_index .nav-tabs > li.active > a:hover {
  background-color:#ffffff;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.flex-cols {
  display: flex;
  flex-direction: column;
}

.flex-end {
  justify-content: flex-end;
}
.flex-start {
  justify-content: flex-start;
}
.flex-grow1 {
  flex-grow: 1;
}
.flex-shrink1 {
  flex-shrink: 1;
}
.flex-b {
  justify-content: space-around;
}
.warp {
  flex-wrap: wrap;
  /* flex-basis: content; */
}
.warpr {
  flex-wrap: wrap-reverse;
}
.flex-center {
  align-items: center;
}
.flex-baseline {
  align-items: baseline;
}
.basis-40 {
  flex-basis: 40%;
}

/* responsive warp to make it 100% on small screen */
 .flexmax-xs {
  /* Return them to document order */
  padding-left: 1rem;;
}

@media all and (max-width: 600px) {
  .flexmax-xs {
    /* Return them to document order */
    order: 0; 
    width: 100%;
    padding-left: 0px;
    font-size: 0.8em;
  }
}
/* general padding and margin utility */

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.pt-1 {
  padding-top: 0.5rem;
}
.pt-2 {
  padding-top: 1rem;
}
.pt-3 {
  padding-top: 2rem;
}
.pl-1 {
  padding-left: 0.5rem;
}
.pl-2 {
  padding-left: 0.7rem;
}

.pr-1 {
  padding-right: 0.5rem;
}
.pb-1 {
  padding-bottom: 0.5rem;
}
.pb-2 {
  padding-bottom: 1rem;
}
.pa-1 {
  padding: 0.5rem;
}

/*  borders  */

.bb-light {
  border-bottom: 1px solid rgb(208, 208, 208);"
}

/*  borders  */
.shorten {
  white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis;
}
@font-face {
    font-family: 'icomoon';
    src:    url('../fonts/icomoon.eot?v0iucz');
    src:    url('../fonts/icomoon.eot?v0iucz#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?v0iucz') format('truetype'),
        url('../fonts/icomoon.woff?v0iucz') format('woff'),
        url('../fonts/icomoon.svg?v0iucz#icomoon') format('svg');

    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: text-bottom;
}
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-error:before {
    content: "\e000";
}
.icon-error_outline:before {
    content: "\e001";
}
.icon-warning:before {
    content: "\e002";
}
.icon-add_alert:before {
    content: "\e003";
}
.icon-album:before {
    content: "\e004";
}
.icon-av_timer:before {
    content: "\e005";
}
.icon-closed_caption:before {
    content: "\e006";
}
.icon-equalizer:before {
    content: "\e007";
}
.icon-explicit:before {
    content: "\e008";
}
.icon-fast_forward:before {
    content: "\e009";
}
.icon-fast_rewind:before {
    content: "\e00a";
}
.icon-games:before {
    content: "\e00b";
}
.icon-hearing:before {
    content: "\e00c";
}
.icon-high_quality:before {
    content: "\e00d";
}
.icon-loop:before {
    content: "\e00e";
}
.icon-mic:before {
    content: "\e00f";
}
.icon-mic_none:before {
    content: "\e010";
}
.icon-mic_off:before {
    content: "\e011";
}
.icon-movie:before {
    content: "\e012";
}
.icon-library_add:before {
    content: "\e013";
}
.icon-library_books:before {
    content: "\e014";
}
.icon-library_music:before {
    content: "\e015";
}
.icon-new_releases:before {
    content: "\e016";
}
.icon-not_interested:before {
    content: "\e017";
}
.icon-pause:before {
    content: "\e018";
}
.icon-pause_circle_filled:before {
    content: "\e019";
}
.icon-pause_circle_outline:before {
    content: "\e01a";
}
.icon-play_arrow:before {
    content: "\e01b";
}
.icon-play_circle_filled:before {
    content: "\e01c";
}
.icon-play_circle_outline:before {
    content: "\e01d";
}
.icon-playlist_add:before {
    content: "\e01e";
}
.icon-queue:before {
    content: "\e01f";
}
.icon-queue_music:before {
    content: "\e020";
}
.icon-radio:before {
    content: "\e021";
}
.icon-recent_actors:before {
    content: "\e022";
}
.icon-repeat:before {
    content: "\e023";
}
.icon-repeat_one:before {
    content: "\e024";
}
.icon-replay:before {
    content: "\e025";
}
.icon-shuffle:before {
    content: "\e026";
}
.icon-skip_next:before {
    content: "\e027";
}
.icon-skip_previous:before {
    content: "\e028";
}
.icon-snooze:before {
    content: "\e029";
}
.icon-stop:before {
    content: "\e02a";
}
.icon-subtitles:before {
    content: "\e02b";
}
.icon-surround_sound:before {
    content: "\e02c";
}
.icon-video_collection:before {
    content: "\e02d";
}
.icon-videocam:before {
    content: "\e02e";
}
.icon-videocam_off:before {
    content: "\e02f";
}
.icon-volume_down:before {
    content: "\e030";
}
.icon-volume_mute:before {
    content: "\e031";
}
.icon-volume_off:before {
    content: "\e032";
}
.icon-volume_up:before {
    content: "\e033";
}
.icon-web:before {
    content: "\e034";
}
.icon-hd:before {
    content: "\e035";
}
.icon-sort_by_alpha:before {
    content: "\e036";
}
.icon-airplay:before {
    content: "\e037";
}
.icon-forward_10:before {
    content: "\e038";
}
.icon-forward_30:before {
    content: "\e039";
}
.icon-forward_5:before {
    content: "\e03a";
}
.icon-replay_10:before {
    content: "\e03b";
}
.icon-replay_30:before {
    content: "\e03c";
}
.icon-replay_5:before {
    content: "\e03d";
}
.icon-business:before {
    content: "\e03e";
}
.icon-call:before {
    content: "\e03f";
}
.icon-call_end:before {
    content: "\e040";
}
.icon-call_made:before {
    content: "\e041";
}
.icon-call_merge:before {
    content: "\e042";
}
.icon-call_missed:before {
    content: "\e043";
}
.icon-call_received:before {
    content: "\e044";
}
.icon-call_split:before {
    content: "\e045";
}
.icon-chat:before {
    content: "\e046";
}
.icon-clear_all:before {
    content: "\e047";
}
.icon-comment:before {
    content: "\e048";
}
.icon-contacts:before {
    content: "\e049";
}
.icon-dialer_sip:before {
    content: "\e04a";
}
.icon-dialpad:before {
    content: "\e04b";
}
.icon-email:before {
    content: "\e04c";
}
.icon-forum:before {
    content: "\e04d";
}
.icon-import_export:before {
    content: "\e04e";
}
.icon-invert_colors_off:before {
    content: "\e04f";
}
.icon-live_help:before {
    content: "\e050";
}
.icon-location_off:before {
    content: "\e051";
}
.icon-location_on:before {
    content: "\e052";
}
.icon-message:before {
    content: "\e053";
}
.icon-chat_bubble:before {
    content: "\e054";
}
.icon-chat_bubble_outline:before {
    content: "\e055";
}
.icon-no_sim:before {
    content: "\e056";
}
.icon-phone:before {
    content: "\e057";
}
.icon-portable_wifi_off:before {
    content: "\e058";
}
.icon-contact_phone:before {
    content: "\e059";
}
.icon-ring_volume:before {
    content: "\e05a";
}
.icon-speaker_phone:before {
    content: "\e05b";
}
.icon-stay_current_landscape:before {
    content: "\e05c";
}
.icon-stay_current_portrait:before {
    content: "\e05d";
}
.icon-stay_primary_landscape:before {
    content: "\e05e";
}
.icon-stay_primary_portrait:before {
    content: "\e05f";
}
.icon-swap_calls:before {
    content: "\e060";
}
.icon-textsms:before {
    content: "\e061";
}
.icon-voicemail:before {
    content: "\e062";
}
.icon-vpn_key:before {
    content: "\e063";
}
.icon-phonelink_erase:before {
    content: "\e064";
}
.icon-phonelink_lock:before {
    content: "\e065";
}
.icon-phonelink_ring:before {
    content: "\e066";
}
.icon-phonelink_setup:before {
    content: "\e067";
}
.icon-present_to_all:before {
    content: "\e068";
}
.icon-add:before {
    content: "\e069";
}
.icon-add_box:before {
    content: "\e06a";
}
.icon-add_circle:before {
    content: "\e06b";
}
.icon-add_circle_outline:before {
    content: "\e06c";
}
.icon-archive:before {
    content: "\e06d";
}
.icon-backspace:before {
    content: "\e06e";
}
.icon-block:before {
    content: "\e06f";
}
.icon-clear:before {
    content: "\e070";
}
.icon-content_copy:before {
    content: "\e071";
}
.icon-content_cut:before {
    content: "\e072";
}
.icon-content_paste:before {
    content: "\e073";
}
.icon-create:before {
    content: "\e074";
}
.icon-drafts:before {
    content: "\e075";
}
.icon-filter_list:before {
    content: "\e076";
}
.icon-flag:before {
    content: "\e077";
}
.icon-forward:before {
    content: "\e078";
}
.icon-gesture:before {
    content: "\e079";
}
.icon-inbox:before {
    content: "\e07a";
}
.icon-link:before {
    content: "\e07b";
}
.icon-mail:before {
    content: "\e07c";
}
.icon-markunread:before {
    content: "\e07d";
}
.icon-redo:before {
    content: "\e07e";
}
.icon-remove:before {
    content: "\e07f";
}
.icon-remove_circle:before {
    content: "\e080";
}
.icon-remove_circle_outline:before {
    content: "\e081";
}
.icon-reply:before {
    content: "\e082";
}
.icon-reply_all:before {
    content: "\e083";
}
.icon-report:before {
    content: "\e084";
}
.icon-save:before {
    content: "\e085";
}
.icon-select_all:before {
    content: "\e086";
}
.icon-send:before {
    content: "\e087";
}
.icon-sort:before {
    content: "\e088";
}
.icon-text_format:before {
    content: "\e089";
}
.icon-undo:before {
    content: "\e08a";
}
.icon-font_download:before {
    content: "\e08b";
}
.icon-access_alarm:before {
    content: "\e08c";
}
.icon-access_alarms:before {
    content: "\e08d";
}
.icon-access_time:before {
    content: "\e08e";
}
.icon-add_alarm:before {
    content: "\e08f";
}
.icon-airplanemode_inactive:before {
    content: "\e090";
}
.icon-airplanemode_active:before {
    content: "\e091";
}
.icon-battery_alert:before {
    content: "\e092";
}
.icon-battery_charging_full:before {
    content: "\e093";
}
.icon-battery_full:before {
    content: "\e094";
}
.icon-battery_std:before {
    content: "\e095";
}
.icon-battery_unknown:before {
    content: "\e096";
}
.icon-bluetooth:before {
    content: "\e097";
}
.icon-bluetooth_connected:before {
    content: "\e098";
}
.icon-bluetooth_disabled:before {
    content: "\e099";
}
.icon-bluetooth_searching:before {
    content: "\e09a";
}
.icon-brightness_auto:before {
    content: "\e09b";
}
.icon-brightness_high:before {
    content: "\e09c";
}
.icon-brightness_low:before {
    content: "\e09d";
}
.icon-brightness_medium:before {
    content: "\e09e";
}
.icon-data_usage:before {
    content: "\e09f";
}
.icon-developer_mode:before {
    content: "\e0a0";
}
.icon-devices:before {
    content: "\e0a1";
}
.icon-dvr:before {
    content: "\e0a2";
}
.icon-gps_fixed:before {
    content: "\e0a3";
}
.icon-gps_not_fixed:before {
    content: "\e0a4";
}
.icon-gps_off:before {
    content: "\e0a5";
}
.icon-location_disabled:before {
    content: "\e0a6";
}
.icon-location_searching:before {
    content: "\e0a7";
}
.icon-graphic_eq:before {
    content: "\e0a8";
}
.icon-network_cell:before {
    content: "\e0a9";
}
.icon-network_wifi:before {
    content: "\e0aa";
}
.icon-nfc:before {
    content: "\e0ab";
}
.icon-now_wallpaper:before {
    content: "\e0ac";
}
.icon-now_widgets:before {
    content: "\e0ad";
}
.icon-screen_lock_landscape:before {
    content: "\e0ae";
}
.icon-screen_lock_portrait:before {
    content: "\e0af";
}
.icon-screen_lock_rotation:before {
    content: "\e0b0";
}
.icon-screen_rotation:before {
    content: "\e0b1";
}
.icon-sd_storage:before {
    content: "\e0b2";
}
.icon-settings_system_daydream:before {
    content: "\e0b3";
}
.icon-signal_cellular_4_bar:before {
    content: "\e0b4";
}
.icon-signal_cellular_connected_no_internet_4_bar:before {
    content: "\e0b5";
}
.icon-signal_cellular_no_sim:before {
    content: "\e0b6";
}
.icon-signal_cellular_null:before {
    content: "\e0b7";
}
.icon-signal_cellular_off:before {
    content: "\e0b8";
}
.icon-signal_wifi_4_bar:before {
    content: "\e0b9";
}
.icon-signal_wifi_4_bar_lock:before {
    content: "\e0ba";
}
.icon-signal_wifi_off:before {
    content: "\e0bb";
}
.icon-storage:before {
    content: "\e0bc";
}
.icon-usb:before {
    content: "\e0bd";
}
.icon-wifi_lock:before {
    content: "\e0be";
}
.icon-wifi_tethering:before {
    content: "\e0bf";
}
.icon-attach_file:before {
    content: "\e0c0";
}
.icon-attach_money:before {
    content: "\e0c1";
}
.icon-border_all:before {
    content: "\e0c2";
}
.icon-border_bottom:before {
    content: "\e0c3";
}
.icon-border_clear:before {
    content: "\e0c4";
}
.icon-border_color:before {
    content: "\e0c5";
}
.icon-border_horizontal:before {
    content: "\e0c6";
}
.icon-border_inner:before {
    content: "\e0c7";
}
.icon-border_left:before {
    content: "\e0c8";
}
.icon-border_outer:before {
    content: "\e0c9";
}
.icon-border_right:before {
    content: "\e0ca";
}
.icon-border_style:before {
    content: "\e0cb";
}
.icon-border_top:before {
    content: "\e0cc";
}
.icon-border_vertical:before {
    content: "\e0cd";
}
.icon-format_align_center:before {
    content: "\e0ce";
}
.icon-format_align_justify:before {
    content: "\e0cf";
}
.icon-format_align_left:before {
    content: "\e0d0";
}
.icon-format_align_right:before {
    content: "\e0d1";
}
.icon-format_bold:before {
    content: "\e0d2";
}
.icon-format_clear:before {
    content: "\e0d3";
}
.icon-format_color_fill:before {
    content: "\e0d4";
}
.icon-format_color_reset:before {
    content: "\e0d5";
}
.icon-format_color_text:before {
    content: "\e0d6";
}
.icon-format_indent_decrease:before {
    content: "\e0d7";
}
.icon-format_indent_increase:before {
    content: "\e0d8";
}
.icon-format_italic:before {
    content: "\e0d9";
}
.icon-format_line_spacing:before {
    content: "\e0da";
}
.icon-format_list_bulleted:before {
    content: "\e0db";
}
.icon-format_list_numbered:before {
    content: "\e0dc";
}
.icon-format_paint:before {
    content: "\e0dd";
}
.icon-format_quote:before {
    content: "\e0de";
}
.icon-format_size:before {
    content: "\e0df";
}
.icon-format_strikethrough:before {
    content: "\e0e0";
}
.icon-format_textdirection_l_to_r:before {
    content: "\e0e1";
}
.icon-format_textdirection_r_to_l:before {
    content: "\e0e2";
}
.icon-format_underlined:before {
    content: "\e0e3";
}
.icon-functions:before {
    content: "\e0e4";
}
.icon-insert_chart:before {
    content: "\e0e5";
}
.icon-insert_comment:before {
    content: "\e0e6";
}
.icon-insert_drive_file:before {
    content: "\e0e7";
}
.icon-insert_emoticon:before {
    content: "\e0e8";
}
.icon-insert_invitation:before {
    content: "\e0e9";
}
.icon-insert_link:before {
    content: "\e0ea";
}
.icon-insert_photo:before {
    content: "\e0eb";
}
.icon-merge_type:before {
    content: "\e0ec";
}
.icon-mode_comment:before {
    content: "\e0ed";
}
.icon-mode_edit:before {
    content: "\e0ee";
}
.icon-publish:before {
    content: "\e0ef";
}
.icon-space_bar:before {
    content: "\e0f0";
}
.icon-strikethrough_s:before {
    content: "\e0f1";
}
.icon-vertical_align_bottom:before {
    content: "\e0f2";
}
.icon-vertical_align_center:before {
    content: "\e0f3";
}
.icon-vertical_align_top:before {
    content: "\e0f4";
}
.icon-wrap_text:before {
    content: "\e0f5";
}
.icon-money_off:before {
    content: "\e0f6";
}
.icon-attachment:before {
    content: "\e0f7";
}
.icon-cloud:before {
    content: "\e0f8";
}
.icon-cloud_circle:before {
    content: "\e0f9";
}
.icon-cloud_done:before {
    content: "\e0fa";
}
.icon-cloud_download:before {
    content: "\e0fb";
}
.icon-cloud_off:before {
    content: "\e0fc";
}
.icon-cloud_queue:before {
    content: "\e0fd";
}
.icon-cloud_upload:before {
    content: "\e0fe";
}
.icon-file_download:before {
    content: "\e0ff";
}
.icon-file_upload:before {
    content: "\e100";
}
.icon-folder:before {
    content: "\e101";
}
.icon-folder_open:before {
    content: "\e102";
}
.icon-folder_shared:before {
    content: "\e103";
}
.icon-cast:before {
    content: "\e104";
}
.icon-cast_connected:before {
    content: "\e105";
}
.icon-computer:before {
    content: "\e106";
}
.icon-desktop_mac:before {
    content: "\e107";
}
.icon-desktop_windows:before {
    content: "\e108";
}
.icon-developer_board:before {
    content: "\e109";
}
.icon-dock:before {
    content: "\e10a";
}
.icon-gamepad:before {
    content: "\e10b";
}
.icon-headset:before {
    content: "\e10c";
}
.icon-headset_mic:before {
    content: "\e10d";
}
.icon-keyboard:before {
    content: "\e10e";
}
.icon-keyboard_arrow_down:before {
    content: "\e10f";
}
.icon-keyboard_arrow_left:before {
    content: "\e110";
}
.icon-keyboard_arrow_right:before {
    content: "\e111";
}
.icon-keyboard_arrow_up:before {
    content: "\e112";
}
.icon-keyboard_backspace:before {
    content: "\e113";
}
.icon-keyboard_capslock:before {
    content: "\e114";
}
.icon-keyboard_hide:before {
    content: "\e115";
}
.icon-keyboard_return:before {
    content: "\e116";
}
.icon-keyboard_tab:before {
    content: "\e117";
}
.icon-keyboard_voice:before {
    content: "\e118";
}
.icon-laptop:before {
    content: "\e119";
}
.icon-laptop_chromebook:before {
    content: "\e11a";
}
.icon-laptop_mac:before {
    content: "\e11b";
}
.icon-laptop_windows:before {
    content: "\e11c";
}
.icon-memory:before {
    content: "\e11d";
}
.icon-mouse:before {
    content: "\e11e";
}
.icon-phone_android:before {
    content: "\e11f";
}
.icon-phone_iphone:before {
    content: "\e120";
}
.icon-phonelink:before {
    content: "\e121";
}
.icon-phonelink_off:before {
    content: "\e122";
}
.icon-router:before {
    content: "\e123";
}
.icon-scanner:before {
    content: "\e124";
}
.icon-security:before {
    content: "\e125";
}
.icon-sim_card:before {
    content: "\e126";
}
.icon-smartphone:before {
    content: "\e127";
}
.icon-speaker:before {
    content: "\e128";
}
.icon-speaker_group:before {
    content: "\e129";
}
.icon-tablet:before {
    content: "\e12a";
}
.icon-tablet_android:before {
    content: "\e12b";
}
.icon-tablet_mac:before {
    content: "\e12c";
}
.icon-toys:before {
    content: "\e12d";
}
.icon-tv:before {
    content: "\e12e";
}
.icon-watch:before {
    content: "\e12f";
}
.icon-device_hub:before {
    content: "\e130";
}
.icon-power_input:before {
    content: "\e131";
}
.icon-add_to_photos:before {
    content: "\e132";
}
.icon-adjust:before {
    content: "\e133";
}
.icon-assistant:before {
    content: "\e134";
}
.icon-assistant_photo:before {
    content: "\e135";
}
.icon-audiotrack:before {
    content: "\e136";
}
.icon-blur_circular:before {
    content: "\e137";
}
.icon-blur_linear:before {
    content: "\e138";
}
.icon-blur_off:before {
    content: "\e139";
}
.icon-blur_on:before {
    content: "\e13a";
}
.icon-brightness_1:before {
    content: "\e13b";
}
.icon-brightness_2:before {
    content: "\e13c";
}
.icon-brightness_3:before {
    content: "\e13d";
}
.icon-brightness_4:before {
    content: "\e13e";
}
.icon-brightness_5:before {
    content: "\e13f";
}
.icon-brightness_6:before {
    content: "\e140";
}
.icon-brightness_7:before {
    content: "\e141";
}
.icon-broken_image:before {
    content: "\e142";
}
.icon-brush:before {
    content: "\e143";
}
.icon-camera:before {
    content: "\e144";
}
.icon-camera_alt:before {
    content: "\e145";
}
.icon-camera_front:before {
    content: "\e146";
}
.icon-camera_rear:before {
    content: "\e147";
}
.icon-camera_roll:before {
    content: "\e148";
}
.icon-center_focus_strong:before {
    content: "\e149";
}
.icon-center_focus_weak:before {
    content: "\e14a";
}
.icon-collections:before {
    content: "\e14b";
}
.icon-color_lens:before {
    content: "\e14c";
}
.icon-colorize:before {
    content: "\e14d";
}
.icon-compare:before {
    content: "\e14e";
}
.icon-control_point:before {
    content: "\e14f";
}
.icon-control_point_duplicate:before {
    content: "\e150";
}
.icon-crop_16_9:before {
    content: "\e151";
}
.icon-crop_3_2:before {
    content: "\e152";
}
.icon-crop:before {
    content: "\e153";
}
.icon-crop_5_4:before {
    content: "\e154";
}
.icon-crop_7_5:before {
    content: "\e155";
}
.icon-crop_din:before {
    content: "\e156";
}
.icon-crop_free:before {
    content: "\e157";
}
.icon-crop_landscape:before {
    content: "\e158";
}
.icon-crop_original:before {
    content: "\e159";
}
.icon-crop_portrait:before {
    content: "\e15a";
}
.icon-crop_square:before {
    content: "\e15b";
}
.icon-dehaze:before {
    content: "\e15c";
}
.icon-details:before {
    content: "\e15d";
}
.icon-edit:before {
    content: "\e15e";
}
.icon-exposure:before {
    content: "\e15f";
}
.icon-exposure_minus_1:before {
    content: "\e160";
}
.icon-exposure_minus_2:before {
    content: "\e161";
}
.icon-exposure_plus_1:before {
    content: "\e162";
}
.icon-exposure_plus_2:before {
    content: "\e163";
}
.icon-exposure_zero:before {
    content: "\e164";
}
.icon-filter_1:before {
    content: "\e165";
}
.icon-filter_2:before {
    content: "\e166";
}
.icon-filter_3:before {
    content: "\e167";
}
.icon-filter:before {
    content: "\e168";
}
.icon-filter_4:before {
    content: "\e169";
}
.icon-filter_5:before {
    content: "\e16a";
}
.icon-filter_6:before {
    content: "\e16b";
}
.icon-filter_7:before {
    content: "\e16c";
}
.icon-filter_8:before {
    content: "\e16d";
}
.icon-filter_9:before {
    content: "\e16e";
}
.icon-filter_9_plus:before {
    content: "\e16f";
}
.icon-filter_b_and_w:before {
    content: "\e170";
}
.icon-filter_center_focus:before {
    content: "\e171";
}
.icon-filter_drama:before {
    content: "\e172";
}
.icon-filter_frames:before {
    content: "\e173";
}
.icon-filter_hdr:before {
    content: "\e174";
}
.icon-filter_none:before {
    content: "\e175";
}
.icon-filter_tilt_shift:before {
    content: "\e176";
}
.icon-filter_vintage:before {
    content: "\e177";
}
.icon-flare:before {
    content: "\e178";
}
.icon-flash_auto:before {
    content: "\e179";
}
.icon-flash_off:before {
    content: "\e17a";
}
.icon-flash_on:before {
    content: "\e17b";
}
.icon-flip:before {
    content: "\e17c";
}
.icon-gradient:before {
    content: "\e17d";
}
.icon-grain:before {
    content: "\e17e";
}
.icon-grid_off:before {
    content: "\e17f";
}
.icon-grid_on:before {
    content: "\e180";
}
.icon-hdr_off:before {
    content: "\e181";
}
.icon-hdr_on:before {
    content: "\e182";
}
.icon-hdr_strong:before {
    content: "\e183";
}
.icon-hdr_weak:before {
    content: "\e184";
}
.icon-healing:before {
    content: "\e185";
}
.icon-image:before {
    content: "\e186";
}
.icon-image_aspect_ratio:before {
    content: "\e187";
}
.icon-iso:before {
    content: "\e188";
}
.icon-landscape:before {
    content: "\e189";
}
.icon-leak_add:before {
    content: "\e18a";
}
.icon-leak_remove:before {
    content: "\e18b";
}
.icon-lens:before {
    content: "\e18c";
}
.icon-looks_3:before {
    content: "\e18d";
}
.icon-looks:before {
    content: "\e18e";
}
.icon-looks_4:before {
    content: "\e18f";
}
.icon-looks_5:before {
    content: "\e190";
}
.icon-looks_6:before {
    content: "\e191";
}
.icon-looks_one:before {
    content: "\e192";
}
.icon-looks_two:before {
    content: "\e193";
}
.icon-loupe:before {
    content: "\e194";
}
.icon-monochrome_photos:before {
    content: "\e195";
}
.icon-movie_creation:before {
    content: "\e196";
}
.icon-music_note:before {
    content: "\e197";
}
.icon-nature:before {
    content: "\e198";
}
.icon-nature_people:before {
    content: "\e199";
}
.icon-navigate_before:before {
    content: "\e19a";
}
.icon-navigate_next:before {
    content: "\e19b";
}
.icon-palette:before {
    content: "\e19c";
}
.icon-panorama:before {
    content: "\e19d";
}
.icon-panorama_fish_eye:before {
    content: "\e19e";
}
.icon-panorama_horizontal:before {
    content: "\e19f";
}
.icon-panorama_vertical:before {
    content: "\e1a0";
}
.icon-panorama_wide_angle:before {
    content: "\e1a1";
}
.icon-photo:before {
    content: "\e1a2";
}
.icon-photo_album:before {
    content: "\e1a3";
}
.icon-photo_camera:before {
    content: "\e1a4";
}
.icon-photo_library:before {
    content: "\e1a5";
}
.icon-picture_as_pdf:before {
    content: "\e1a6";
}
.icon-portrait:before {
    content: "\e1a7";
}
.icon-remove_red_eye:before {
    content: "\e1a8";
}
.icon-rotate_90_degrees_ccw:before {
    content: "\e1a9";
}
.icon-rotate_left:before {
    content: "\e1aa";
}
.icon-rotate_right:before {
    content: "\e1ab";
}
.icon-slideshow:before {
    content: "\e1ac";
}
.icon-straighten:before {
    content: "\e1ad";
}
.icon-style:before {
    content: "\e1ae";
}
.icon-switch_camera:before {
    content: "\e1af";
}
.icon-switch_video:before {
    content: "\e1b0";
}
.icon-tag_faces:before {
    content: "\e1b1";
}
.icon-texture:before {
    content: "\e1b2";
}
.icon-timelapse:before {
    content: "\e1b3";
}
.icon-timer_10:before {
    content: "\e1b4";
}
.icon-timer_3:before {
    content: "\e1b5";
}
.icon-timer:before {
    content: "\e1b6";
}
.icon-timer_off:before {
    content: "\e1b7";
}
.icon-tonality:before {
    content: "\e1b8";
}
.icon-transform:before {
    content: "\e1b9";
}
.icon-tune:before {
    content: "\e1ba";
}
.icon-view_comfortable:before {
    content: "\e1bb";
}
.icon-view_compact:before {
    content: "\e1bc";
}
.icon-wb_auto:before {
    content: "\e1bd";
}
.icon-wb_cloudy:before {
    content: "\e1be";
}
.icon-wb_incandescent:before {
    content: "\e1bf";
}
.icon-wb_sunny:before {
    content: "\e1c0";
}
.icon-collections_bookmark:before {
    content: "\e1c1";
}
.icon-photo_size_select_actual:before {
    content: "\e1c2";
}
.icon-photo_size_select_large:before {
    content: "\e1c3";
}
.icon-photo_size_select_small:before {
    content: "\e1c4";
}
.icon-vignette:before {
    content: "\e1c5";
}
.icon-wb_iridescent:before {
    content: "\e1c6";
}
.icon-beenhere:before {
    content: "\e1c7";
}
.icon-directions:before {
    content: "\e1c8";
}
.icon-directions_bike:before {
    content: "\e1c9";
}
.icon-directions_bus:before {
    content: "\e1ca";
}
.icon-directions_car:before {
    content: "\e1cb";
}
.icon-directions_ferry:before {
    content: "\e1cc";
}
.icon-directions_subway:before {
    content: "\e1cd";
}
.icon-directions_railway:before {
    content: "\e1ce";
}
.icon-directions_transit:before {
    content: "\e1cf";
}
.icon-directions_walk:before {
    content: "\e1d0";
}
.icon-flight:before {
    content: "\e1d1";
}
.icon-hotel:before {
    content: "\e1d2";
}
.icon-layers:before {
    content: "\e1d3";
}
.icon-layers_clear:before {
    content: "\e1d4";
}
.icon-local_airport:before {
    content: "\e1d5";
}
.icon-local_atm:before {
    content: "\e1d6";
}
.icon-local_attraction:before {
    content: "\e1d7";
}
.icon-local_bar:before {
    content: "\e1d8";
}
.icon-local_cafe:before {
    content: "\e1d9";
}
.icon-local_car_wash:before {
    content: "\e1da";
}
.icon-local_convenience_store:before {
    content: "\e1db";
}
.icon-local_drink:before {
    content: "\e1dc";
}
.icon-local_florist:before {
    content: "\e1dd";
}
.icon-local_gas_station:before {
    content: "\e1de";
}
.icon-local_grocery_store:before {
    content: "\e1df";
}
.icon-local_hospital:before {
    content: "\e1e0";
}
.icon-local_hotel:before {
    content: "\e1e1";
}
.icon-local_laundry_service:before {
    content: "\e1e2";
}
.icon-local_library:before {
    content: "\e1e3";
}
.icon-local_mall:before {
    content: "\e1e4";
}
.icon-local_movies:before {
    content: "\e1e5";
}
.icon-local_offer:before {
    content: "\e1e6";
}
.icon-local_parking:before {
    content: "\e1e7";
}
.icon-local_pharmacy:before {
    content: "\e1e8";
}
.icon-local_phone:before {
    content: "\e1e9";
}
.icon-local_pizza:before {
    content: "\e1ea";
}
.icon-local_play:before {
    content: "\e1eb";
}
.icon-local_post_office:before {
    content: "\e1ec";
}
.icon-local_print_shop:before {
    content: "\e1ed";
}
.icon-local_restaurant:before {
    content: "\e1ee";
}
.icon-local_see:before {
    content: "\e1ef";
}
.icon-local_shipping:before {
    content: "\e1f0";
}
.icon-local_taxi:before {
    content: "\e1f1";
}
.icon-location_history:before {
    content: "\e1f2";
}
.icon-map:before {
    content: "\e1f3";
}
.icon-my_location:before {
    content: "\e1f4";
}
.icon-navigation:before {
    content: "\e1f5";
}
.icon-pin_drop:before {
    content: "\e1f6";
}
.icon-place:before {
    content: "\e1f7";
}
.icon-rate_review:before {
    content: "\e1f8";
}
.icon-restaurant_menu:before {
    content: "\e1f9";
}
.icon-satellite:before {
    content: "\e1fa";
}
.icon-store_mall_directory:before {
    content: "\e1fb";
}
.icon-terrain:before {
    content: "\e1fc";
}
.icon-traffic:before {
    content: "\e1fd";
}
.icon-directions_run:before {
    content: "\e1fe";
}
.icon-apps:before {
    content: "\e1ff";
}
.icon-arrow_back:before {
    content: "\e200";
}
.icon-arrow_drop_down:before {
    content: "\e201";
}
.icon-arrow_drop_down_circle:before {
    content: "\e202";
}
.icon-arrow_drop_up:before {
    content: "\e203";
}
.icon-arrow_forward:before {
    content: "\e204";
}
.icon-cancel:before {
    content: "\e205";
}
.icon-check:before {
    content: "\e206";
}
.icon-chevron_left:before {
    content: "\e207";
}
.icon-chevron_right:before {
    content: "\e208";
}
.icon-close:before {
    content: "\e209";
}
.icon-expand_less:before {
    content: "\e20a";
}
.icon-expand_more:before {
    content: "\e20b";
}
.icon-fullscreen:before {
    content: "\e20c";
}
.icon-fullscreen_exit:before {
    content: "\e20d";
}
.icon-menu:before {
    content: "\e20e";
}
.icon-keyboard_control:before {
    content: "\e20f";
}
.icon-more_vert:before {
    content: "\e210";
}
.icon-refresh:before {
    content: "\e211";
}
.icon-unfold_less:before {
    content: "\e212";
}
.icon-unfold_more:before {
    content: "\e213";
}
.icon-adb:before {
    content: "\e214";
}
.icon-bluetooth_audio:before {
    content: "\e215";
}
.icon-disc_full:before {
    content: "\e216";
}
.icon-do_not_disturb_alt:before {
    content: "\e217";
}
.icon-do_not_disturb:before {
    content: "\e218";
}
.icon-drive_eta:before {
    content: "\e219";
}
.icon-event_available:before {
    content: "\e21a";
}
.icon-event_busy:before {
    content: "\e21b";
}
.icon-event_note:before {
    content: "\e21c";
}
.icon-folder_special:before {
    content: "\e21d";
}
.icon-mms:before {
    content: "\e21e";
}
.icon-more:before {
    content: "\e21f";
}
.icon-network_locked:before {
    content: "\e220";
}
.icon-phone_bluetooth_speaker:before {
    content: "\e221";
}
.icon-phone_forwarded:before {
    content: "\e222";
}
.icon-phone_in_talk:before {
    content: "\e223";
}
.icon-phone_locked:before {
    content: "\e224";
}
.icon-phone_missed:before {
    content: "\e225";
}
.icon-phone_paused:before {
    content: "\e226";
}
.icon-sd_card:before {
    content: "\e227";
}
.icon-sim_card_alert:before {
    content: "\e228";
}
.icon-sms:before {
    content: "\e229";
}
.icon-sms_failed:before {
    content: "\e22a";
}
.icon-sync:before {
    content: "\e22b";
}
.icon-sync_disabled:before {
    content: "\e22c";
}
.icon-sync_problem:before {
    content: "\e22d";
}
.icon-system_update:before {
    content: "\e22e";
}
.icon-tap_and_play:before {
    content: "\e22f";
}
.icon-time_to_leave:before {
    content: "\e230";
}
.icon-vibration:before {
    content: "\e231";
}
.icon-voice_chat:before {
    content: "\e232";
}
.icon-vpn_lock:before {
    content: "\e233";
}
.icon-airline_seat_flat:before {
    content: "\e234";
}
.icon-airline_seat_flat_angled:before {
    content: "\e235";
}
.icon-airline_seat_individual_suite:before {
    content: "\e236";
}
.icon-airline_seat_legroom_extra:before {
    content: "\e237";
}
.icon-airline_seat_legroom_normal:before {
    content: "\e238";
}
.icon-airline_seat_legroom_reduced:before {
    content: "\e239";
}
.icon-airline_seat_recline_extra:before {
    content: "\e23a";
}
.icon-airline_seat_recline_normal:before {
    content: "\e23b";
}
.icon-confirmation_number:before {
    content: "\e23c";
}
.icon-live_tv:before {
    content: "\e23d";
}
.icon-ondemand_video:before {
    content: "\e23e";
}
.icon-personal_video:before {
    content: "\e23f";
}
.icon-power:before {
    content: "\e240";
}
.icon-wc:before {
    content: "\e241";
}
.icon-wifi:before {
    content: "\e242";
}
.icon-cake:before {
    content: "\e243";
}
.icon-domain:before {
    content: "\e244";
}
.icon-group:before {
    content: "\e245";
}
.icon-group_add:before {
    content: "\e246";
}
.icon-location_city:before {
    content: "\e247";
}
.icon-mood:before {
    content: "\e248";
}
.icon-mood_bad:before {
    content: "\e249";
}
.icon-notifications:before {
    content: "\e24a";
}
.icon-notifications_none:before {
    content: "\e24b";
}
.icon-notifications_off:before {
    content: "\e24c";
}
.icon-notifications_active:before {
    content: "\e24d";
}
.icon-notifications_paused:before {
    content: "\e24e";
}
.icon-pages:before {
    content: "\e24f";
}
.icon-party_mode:before {
    content: "\e250";
}
.icon-people:before {
    content: "\e251";
}
.icon-people_outline:before {
    content: "\e252";
}
.icon-person:before {
    content: "\e253";
}
.icon-person_add:before {
    content: "\e254";
}
.icon-person_outline:before {
    content: "\e255";
}
.icon-plus_one:before {
    content: "\e256";
}
.icon-poll:before {
    content: "\e257";
}
.icon-public:before {
    content: "\e258";
}
.icon-school:before {
    content: "\e259";
}
.icon-share:before {
    content: "\e25a";
}
.icon-whatshot:before {
    content: "\e25b";
}
.icon-check_box:before {
    content: "\e25c";
}
.icon-check_box_outline_blank:before {
    content: "\e25d";
}
.icon-radio_button_unchecked:before {
    content: "\e25e";
}
.icon-radio_button_checked:before {
    content: "\e25f";
}
.icon-star:before {
    content: "\e260";
}
.icon-star_half:before {
    content: "\e261";
}
.icon-star_outline:before {
    content: "\e262";
}
.icon-3d_rotation:before {
    content: "\e263";
}
.icon-accessibility:before {
    content: "\e264";
}
.icon-account_balance:before {
    content: "\e265";
}
.icon-account_balance_wallet:before {
    content: "\e266";
}
.icon-account_box:before {
    content: "\e267";
}
.icon-account_circle:before {
    content: "\e268";
}
.icon-add_shopping_cart:before {
    content: "\e269";
}
.icon-alarm:before {
    content: "\e26a";
}
.icon-alarm_add:before {
    content: "\e26b";
}
.icon-alarm_off:before {
    content: "\e26c";
}
.icon-alarm_on:before {
    content: "\e26d";
}
.icon-android:before {
    content: "\e26e";
}
.icon-announcement:before {
    content: "\e26f";
}
.icon-aspect_ratio:before {
    content: "\e270";
}
.icon-assessment:before {
    content: "\e271";
}
.icon-assignment:before {
    content: "\e272";
}
.icon-assignment_ind:before {
    content: "\e273";
}
.icon-assignment_late:before {
    content: "\e274";
}
.icon-assignment_return:before {
    content: "\e275";
}
.icon-assignment_returned:before {
    content: "\e276";
}
.icon-assignment_turned_in:before {
    content: "\e277";
}
.icon-autorenew:before {
    content: "\e278";
}
.icon-backup:before {
    content: "\e279";
}
.icon-book:before {
    content: "\e27a";
}
.icon-bookmark:before {
    content: "\e27b";
}
.icon-bookmark_outline:before {
    content: "\e27c";
}
.icon-bug_report:before {
    content: "\e27d";
}
.icon-build:before {
    content: "\e27e";
}
.icon-cached:before {
    content: "\e27f";
}
.icon-change_history:before {
    content: "\e280";
}
.icon-check_circle:before {
    content: "\e281";
}
.icon-chrome_reader_mode:before {
    content: "\e282";
}
.icon-class:before {
    content: "\e283";
}
.icon-code:before {
    content: "\e284";
}
.icon-credit_card:before {
    content: "\e285";
}
.icon-dashboard:before {
    content: "\e286";
}
.icon-delete:before {
    content: "\e287";
}
.icon-description:before {
    content: "\e288";
}
.icon-dns:before {
    content: "\e289";
}
.icon-done:before {
    content: "\e28a";
}
.icon-done_all:before {
    content: "\e28b";
}
.icon-event:before {
    content: "\e28c";
}
.icon-exit_to_app:before {
    content: "\e28d";
}
.icon-explore:before {
    content: "\e28e";
}
.icon-extension:before {
    content: "\e28f";
}
.icon-face:before {
    content: "\e290";
}
.icon-favorite:before {
    content: "\e291";
}
.icon-favorite_outline:before {
    content: "\e292";
}
.icon-feedback:before {
    content: "\e293";
}
.icon-find_in_page:before {
    content: "\e294";
}
.icon-find_replace:before {
    content: "\e295";
}
.icon-flip_to_back:before {
    content: "\e296";
}
.icon-flip_to_front:before {
    content: "\e297";
}
.icon-get_app:before {
    content: "\e298";
}
.icon-grade:before {
    content: "\e299";
}
.icon-group_work:before {
    content: "\e29a";
}
.icon-help:before {
    content: "\e29b";
}
.icon-highlight_remove:before {
    content: "\e29c";
}
.icon-history:before {
    content: "\e29d";
}
.icon-home:before {
    content: "\e29e";
}
.icon-hourglass_empty:before {
    content: "\e29f";
}
.icon-hourglass_full:before {
    content: "\e2a0";
}
.icon-https:before {
    content: "\e2a1";
}
.icon-info:before {
    content: "\e2a2";
}
.icon-info_outline:before {
    content: "\e2a3";
}
.icon-input:before {
    content: "\e2a4";
}
.icon-invert_colors_on:before {
    content: "\e2a5";
}
.icon-label:before {
    content: "\e2a6";
}
.icon-label_outline:before {
    content: "\e2a7";
}
.icon-language:before {
    content: "\e2a8";
}
.icon-launch:before {
    content: "\e2a9";
}
.icon-list:before {
    content: "\e2aa";
}
.icon-lock:before {
    content: "\e2ab";
}
.icon-lock_open:before {
    content: "\e2ac";
}
.icon-lock_outline:before {
    content: "\e2ad";
}
.icon-loyalty:before {
    content: "\e2ae";
}
.icon-markunread_mailbox:before {
    content: "\e2af";
}
.icon-note_add:before {
    content: "\e2b0";
}
.icon-open_in_browser:before {
    content: "\e2b1";
}
.icon-open_in_new:before {
    content: "\e2b2";
}
.icon-open_with:before {
    content: "\e2b3";
}
.icon-pageview:before {
    content: "\e2b4";
}
.icon-payment:before {
    content: "\e2b5";
}
.icon-perm_camera_mic:before {
    content: "\e2b6";
}
.icon-perm_contact_calendar:before {
    content: "\e2b7";
}
.icon-perm_data_setting:before {
    content: "\e2b8";
}
.icon-perm_device_information:before {
    content: "\e2b9";
}
.icon-perm_identity:before {
    content: "\e2ba";
}
.icon-perm_media:before {
    content: "\e2bb";
}
.icon-perm_phone_msg:before {
    content: "\e2bc";
}
.icon-perm_scan_wifi:before {
    content: "\e2bd";
}
.icon-picture_in_picture:before {
    content: "\e2be";
}
.icon-polymer:before {
    content: "\e2bf";
}
.icon-power_settings_new:before {
    content: "\e2c0";
}
.icon-print:before {
    content: "\e2c1";
}
.icon-query_builder:before {
    content: "\e2c2";
}
.icon-question_answer:before {
    content: "\e2c3";
}
.icon-receipt:before {
    content: "\e2c4";
}
.icon-redeem:before {
    content: "\e2c5";
}
.icon-report_problem:before {
    content: "\e2c6";
}
.icon-restore:before {
    content: "\e2c7";
}
.icon-room:before {
    content: "\e2c8";
}
.icon-schedule:before {
    content: "\e2c9";
}
.icon-search:before {
    content: "\e2ca";
}
.icon-settings:before {
    content: "\e2cb";
}
.icon-settings_applications:before {
    content: "\e2cc";
}
.icon-settings_backup_restore:before {
    content: "\e2cd";
}
.icon-settings_bluetooth:before {
    content: "\e2ce";
}
.icon-settings_cell:before {
    content: "\e2cf";
}
.icon-settings_brightness:before {
    content: "\e2d0";
}
.icon-settings_ethernet:before {
    content: "\e2d1";
}
.icon-settings_input_antenna:before {
    content: "\e2d2";
}
.icon-settings_input_component:before {
    content: "\e2d3";
}
.icon-settings_input_composite:before {
    content: "\e2d4";
}
.icon-settings_input_hdmi:before {
    content: "\e2d5";
}
.icon-settings_input_svideo:before {
    content: "\e2d6";
}
.icon-settings_overscan:before {
    content: "\e2d7";
}
.icon-settings_phone:before {
    content: "\e2d8";
}
.icon-settings_power:before {
    content: "\e2d9";
}
.icon-settings_remote:before {
    content: "\e2da";
}
.icon-settings_voice:before {
    content: "\e2db";
}
.icon-shop:before {
    content: "\e2dc";
}
.icon-shop_two:before {
    content: "\e2dd";
}
.icon-shopping_basket:before {
    content: "\e2de";
}
.icon-shopping_cart:before {
    content: "\e2df";
}
.icon-speaker_notes:before {
    content: "\e2e0";
}
.icon-spellcheck:before {
    content: "\e2e1";
}
.icon-stars:before {
    content: "\e2e2";
}
.icon-store:before {
    content: "\e2e3";
}
.icon-subject:before {
    content: "\e2e4";
}
.icon-supervisor_account:before {
    content: "\e2e5";
}
.icon-swap_horiz:before {
    content: "\e2e6";
}
.icon-swap_vert:before {
    content: "\e2e7";
}
.icon-swap_vertical_circle:before {
    content: "\e2e8";
}
.icon-system_update_alt:before {
    content: "\e2e9";
}
.icon-tab:before {
    content: "\e2ea";
}
.icon-tab_unselected:before {
    content: "\e2eb";
}
.icon-theaters:before {
    content: "\e2ec";
}
.icon-thumb_down:before {
    content: "\e2ed";
}
.icon-thumb_up:before {
    content: "\e2ee";
}
.icon-thumbs_up_down:before {
    content: "\e2ef";
}
.icon-toc:before {
    content: "\e2f0";
}
.icon-today:before {
    content: "\e2f1";
}
.icon-toll:before {
    content: "\e2f2";
}
.icon-track_changes:before {
    content: "\e2f3";
}
.icon-translate:before {
    content: "\e2f4";
}
.icon-trending_down:before {
    content: "\e2f5";
}
.icon-trending_neutral:before {
    content: "\e2f6";
}
.icon-trending_up:before {
    content: "\e2f7";
}
.icon-turned_in:before {
    content: "\e2f8";
}
.icon-turned_in_not:before {
    content: "\e2f9";
}
.icon-verified_user:before {
    content: "\e2fa";
}
.icon-view_agenda:before {
    content: "\e2fb";
}
.icon-view_array:before {
    content: "\e2fc";
}
.icon-view_carousel:before {
    content: "\e2fd";
}
.icon-view_column:before {
    content: "\e2fe";
}
.icon-view_day:before {
    content: "\e2ff";
}
.icon-view_headline:before {
    content: "\e300";
}
.icon-view_list:before {
    content: "\e301";
}
.icon-view_module:before {
    content: "\e302";
}
.icon-view_quilt:before {
    content: "\e303";
}
.icon-view_stream:before {
    content: "\e304";
}
.icon-view_week:before {
    content: "\e305";
}
.icon-visibility:before {
    content: "\e306";
}
.icon-visibility_off:before {
    content: "\e307";
}
.icon-card_giftcard:before {
    content: "\e308";
}
.icon-card_membership:before {
    content: "\e309";
}
.icon-card_travel:before {
    content: "\e30a";
}
.icon-work:before {
    content: "\e30b";
}
.icon-youtube_searched_for:before {
    content: "\e30c";
}
.icon-eject:before {
    content: "\e30d";
}
.icon-camera_enhance:before {
    content: "\e30e";
}
.icon-help_outline:before {
    content: "\e30f";
}
.icon-reorder:before {
    content: "\e310";
}
.icon-zoom_in:before {
    content: "\e311";
}
.icon-zoom_out:before {
    content: "\e312";
}
.icon-http:before {
    content: "\e313";
}
.icon-event_seat:before {
    content: "\e314";
}
.icon-flight_land:before {
    content: "\e315";
}
.icon-flight_takeoff:before {
    content: "\e316";
}
.icon-play_for_work:before {
    content: "\e317";
}
.icon-gif:before {
    content: "\e318";
}
.icon-indeterminate_check_box:before {
    content: "\e319";
}
.icon-offline_pin:before {
    content: "\e31a";
}


.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}
.form-signin .checkbox {
  font-weight: normal;
}
.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="number"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.register_email {
  border: 1px solid #ccc; 
  border-radius: 4px; 
  background-color: #fff; 
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 
  box-shadow: auto;
  padding: 6px 12px;
}

.leaflet-popup-content .line {
  font-size:14px;
  line-height: 20px;
  padding-top: 5px;
}

#commandCurrLocation {
    display: none;
}
.checker {
  border-style: solid;
  border-width: 2px;
  border-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  cursor: pointer;
  background-color: white;
  background-image: url(/img/targets.png);
  background-position: right center;
  background-size: auto 100%;
  width: 33px;
  height: 33px;
  background-repeat: no-repeat;
}
#commandCurrLocation:checked + .checker {
  background-position: left center;
}
.notify-fixed-top {
  position: fixed;
  left: 0;
  right: 0;
  top: 80px;
  z-index: 1030;
}
.highlight {
  margin-top: 2px;
}
.highlight.header {
  margin-top: 5px;
  background-color: #e4e6e7;
}

.highlight.header.closetoday {
  background-color: #f7f7f7;
}

.highlight.header.today {
  background-color: ivory;
}

.highlight:hover , .highlight.header:hover {
  background-color: white;
  cursor:pointer;
}

.tab-content {
    margin-top: 20px;
}
  
.sticker_page {
    background-color: lightgrey;
}

.sticker_box {
    background-color: whitesmoke; 
    border: 1px solid gray;
    padding: 1rem;
    padding-left: 2rem;
}

.print-item {
    background-color: whitesmoke;
    padding: 8px;
}

.span_trip_info {
    padding-left: 10px;
}

#trip_info {
    margin-top: 10px;
}

#print-tab li.active a {
    background-color: #ffffff;
    color: #455a64;
}

#print-tab li a {
    color: #767676;
    border-color: #ddd;
}

.stickers-controls {
    display: flex;
    justify-content: space-between ; 
    align-items: center; 
    margin-bottom: 1rem;
}

.sticker-start, .stickers-total-number{
    display: flex;
    align-items: center;
    padding: 0 3rem;
}

.sticker_small_text {
    margin-top: 5px;
    margin-bottom: 5px;
}
/*
@page {
     size: A4 portrait;  
    margin: 8mm 0 !important;
}
*/

@media print {

    html, body {
        padding: 0;
        margin: 0;    
    }

    /* 
    was making sticker print inacurate page break
    .col-xs-12 {
        padding: 0;
    } 
    */
    .col-xs-12 {
        padding: 0;
    } 
    #stickers_print {
        padding-right: 4mm;
        padding-left: 4mm;
    }
    .sticker_box {
        border: none;
        position: relative;
        break-inside: avoid-page;
    }

    .tab-content {
        margin-top: 0;
    }

    #content {
        margin-top: 0;
    }

    .print-hide {
        display: none;
    }

    .stickers-controls {
        margin-bottom: 0;
    }

    .print-shipments {
        margin: 0 15px;
    }

    .print-trip {
        margin: 0 15px;
    }

    .print-item {
        border: 0;
    }

    .print_images {
        flex-direction: column;
    }

    td:last-child, th:last-child {
        word-break: break-word;
    }

    .print-item-wrapper {
        page-break-inside: avoid;
        break-inside: avoid;
    }
} 
.spinner {
display: inline-block;
height:10px;
width:10px;
margin:0px auto;
position:relative;
-webkit-animation: rotation .6s infinite linear;
-moz-animation: rotation .6s infinite linear;
-o-animation: rotation .6s infinite linear;
animation: rotation .6s infinite linear;
border-left:4px solid rgba(0,174,239,.15);
border-right:4px solid rgba(0,174,239,.15);
border-bottom:4px solid rgba(0,174,239,.15);
border-top:4px solid rgba(0,174,239,.8);
border-radius:100%;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}

@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
}

@-moz-keyframes rotation {
from {-moz-transform: rotate(0deg);}
to {-moz-transform: rotate(359deg);}
}

@-o-keyframes rotation {
from {-o-transform: rotate(0deg);}
to {-o-transform: rotate(359deg);}
}

@keyframes rotation {
from {transform: rotate(0deg);}
to {transform: rotate(359deg);}
}

.navbar-nav li [class^="icon-"]{
    padding-left: 5px;
}

.btn_back {
  float:left;
  margin-left:5px;
}

.btn_back_holder {
  padding-right: 39px;
}

.navbar-brand > img {
    /* display: block; */
  display: inline;
  margin-left: 8px;
}

/* 
  top menu and button on small screen , reduce the brand size
*/
@media all and (max-width: 600px) {
  .navbar-brand {
    max-width: 150px;
    overflow: hidden;
  }
  div.navbar-header {
    white-space: nowrap;
    overflow: hidden;
  }
  /* working button */
  a.change_driver_work_status {
    background-color: transparent;
  }
}


/* Trips list */
a#trip_link {
  cursor: pointer;
}

a#trip_link:hover{
  background-color: antiquewhite;
}
/* Trip show */
/* top trip bar position fixed on top of map with position fixed */
.bar {
  padding: 0.5rem;
  background-color: #dddddd;
  border-radius: 3px;
  align-items: center;
}

.fixed-bar {
  padding: 0.5rem;
  background-color: #dddddd;
  border-radius: 3px;
  align-items: center;
  position: fixed;
   z-index: 1010;/* to show tooltip over map */
  left: 1rem;
  right: 1rem;
  top: 51px;
} 

.sticky2 {
  position: -webkit-sticky; /* Safari */  
  position: sticky;
  top: 97px;
  will-change: scroll-position;
}

.sticky3 {
  position: -webkit-sticky; /* Safari */  
  position: sticky;
  will-change: scroll-position;
}

.time-bar {
  padding: 0.5rem;
  margin-top:0.5rem;
  margin-bottom: 0.5rem;
  background-color: #e9e9e9;
  border-radius: 3px;
}

.point-actions {
  /* one point actions */
  width: 4.5rem;
  margin-top: 0.8rem;
}

.point-actions .dropdown {
  position: absolute;
}

.expected_hour {
  margin-top: 0.9rem;
}

.expected_hour span {
  background-color: #fff;
}

.point_check {
  margin-top: 0.9rem;
  cursor: pointer;
}

.point_check span {
  font-size: 2.2rem;
}

.point_check :hover {
  color: #199106;
}

.point_check .icon-check_box {
  color: #199106;
}

.point_check .icon-indeterminate_check_box {
  color: #199106;
}

.trip_checkbox {
  float: right;
  left: 0;
  right: auto;
}

/* trip points  */
.point-list-item {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    height: 100%;
    overflow-x: hidden;
    /* overflow: visible;
    
    overflow-y: hidden;  this is not working with the drop down, they are not fully shown , need to move to another menu*/ 
}

.point-list-content {
  padding: 0.5rem;
}

/* trip points > drag and drop */
.drop_area {
    height: 4px;
    background-color:transparent;
}

.drop_area.active {
height: 4px;
background-color:#f0ad4e;;
}

.drag_handle {
  width: 1.5rem;
  margin: 0px;
  background-color: #ccc;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255,255,255,.5) 5px, rgba(255,255,255,.5) 8px);
  cursor: move;
}
  
.changing {
  border: 1px solid #f0ad4e;
}
.deleted {
  background-color: #d29a99;
}
/* end ----  trip points drag and drop */
  
/* trip point buttons */
.no_border {
  border-color: transparent;
} 
  
/* map */

.trip_map {
  position:fixed; 
  top: 100px;
  left: 1rem;
  z-index: 1001;
}

.position-bar {
  background-color: #dddddd;
  border-radius: 3px;
  align-items: center;
  position: fixed;
    z-index: 1010;/* to show tooltip over map */
  left: 1rem;
  right: 1rem;
  top: 50px;
} 
/* for fileupload view  */

/* 
    hide the original, but still exists as 0.1px , and in absolute
    so it wont interfare with the flow
*/
#file_input {
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
/* 
    customize the label as a button
    removed, using bootstrap btn class 
*/