/* ---------------------------------- */
/* Leaflet Maps
------------------------------------- */
.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;
	}
/* 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-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: 50%;
    position: absolute;
    transform: translateY(-50%);
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: initial; right: 15px;
	}
.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 {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}


/* 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 {

	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
}
	
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}


.leaflet-bar a.leaflet-disabled {
	cursor: default;
	pointer-events:none;
	}

.leaflet-touch .leaflet-bar a {
	width: 34px;
	height: 34px;
	line-height: 34px;
}

.leaflet-touch .leaflet-bar a i {
    line-height: 34px;
	left: -1px;
	position: relative;
}

body #submit_map {
    outline: none;
    margin-bottom: 30px;
}

/* 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: 15px;
	text-align: center;
	}


/* 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(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(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(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
    background: #fff;
    margin: 10px;
    border-radius: 3px;
    padding: 4px 8px;
    color: #777;
    font-weight: 500;
    line-height: 15px;
}

.leaflet-container .leaflet-control-attribution a {
    color: #333;
    text-decoration: none !important;
}
.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 {
	background-clip: padding-box;
	}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	background-color: #fff;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
	margin: 5px 15px;
	transition: 0.3s;
	box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
	font-size: 18px;
	height: 34px;
	width: 34px;
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover {
	background-color: #66676b;
	color: #fff;
}

.leaflet-control-zoom-in:before,
.leaflet-control-zoom-out:before  {
	font-family: "Feather-Icons";
	width: 100%;
	line-height: 35px;
}

.leaflet-control-zoom-in:before { content: "\e9b1"; }
.leaflet-control-zoom-out:before  { content: "\e996"; }

.marker-container:hover .marker-card,
.clicked .marker-container .marker-card, 

.leaflet-marker-icon.clicked .marker-container { transform: scale(1.3); }


/* Popup
----------------------------------------*/
.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 25px;
}

.leaflet-popup-content-wrapper {
	padding: 0;
	text-align: left;
	border-radius: 4px
}

.leaflet-popup-content  {
	width: 270px;
}

.leaflet-popup-content p {
	margin: 0;
}

.leaflet-listing-img-container img {
    border-radius: 4px 4px 0 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.leaflet-listing-img-container {
    position: relative;
    height: 210px;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.leaflet-listing-img-container:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    background: linear-gradient(to top, rgba(35,35,37,0.85) 0%, rgba(35,35,37,0.40) 35%, rgba(22,22,23,0) 60%, rgba(0,0,0,0) 100%);
    background-color: rgba(35,35,37,0.2);
}

.leaflet-listing-item-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 24px;
    width: 100%;
    z-index: 50;
    box-sizing: border-box;
}

.leaflet-listing-item-content h3 {
    color: #fff;
    font-size: 18px;
    padding: 0 0 2px 0;
    font-weight: 500;
    margin: 0;
    line-height: 25px;
}

.leaflet-listing-content {
    padding: 16px 22px;
    width: 100%;
    z-index: 50;
    box-sizing: border-box;  
    position: relative;
}

.leaflet-listing-content .not-rated {
    color: #888;
}

.leaflet-listing-content .star-rating {
    font-size: 16px;
    margin-top: 1px;
    display: block;
    line-height: 18px;
}

.leaflet-listing-content .numerical-rating {
	margin: 0;
}


.leaflet-listing-item-content span {
    font-size: 15px;
    font-weight: 300;
    display: inline-block;
    color: rgba(255,255,255,0.7);
    line-height: 24px;
    display: block;;
}

.leaflet-popup-tip-container {
	width: 30px;
	height: 30px;
	position: absolute;
	left: 50%;
	margin-left: -15px;
	overflow: hidden;
	pointer-events: none;
	background: transparent;
	}

.leaflet-popup-tip {

    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
	}

.leaflet-popup-content-wrapper {
	background: white;
	color: #333;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
    }

/* Close Button */
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-block;
	z-index: 999;
	text-align: center;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	height: 27px;
	width: 27px;
	line-height: 27px;
	background-color: #f0f0f0;
	color: transparent;
	transition: all 0.2s ease-in-out;
	border-radius: 4px;
}

.leaflet-container a.leaflet-popup-close-button:before {
    position: absolute;
    font-family: 'Feather-Icons';
    content: "\ea02";
    color: #666;
    transition: all 0.2s ease-in-out;
    left: 0;
    right: 0;
    top: 0;
}

.leaflet-container a.leaflet-popup-close-button:hover {
	background-color: #66676b;
}

.leaflet-container a.leaflet-popup-close-button:hover:before {
	color: #fff;
}


.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	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;
	}


/* Popups
------------------------------------- */
.leaflet-popup-content-wrapper .job-listing {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	box-shadow: none;
	width: 100%;
}

.leaflet-popup-content-wrapper .job-listing .job-listing-description {
	padding-top: 0;
}

.leaflet-popup-content-wrapper .job-listing:hover {
	transform: none;
}

.leaflet-popup-content-wrapper .job-listing-details {
	flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 25px;
}

.leaflet-popup-content-wrapper .job-listing h4.job-listing-company {
	font-size: 14px;
	position: relative;
	top: 0px;
}

.leaflet-popup-content-wrapper .job-listing .verified-badge {
	transform: scale(0.85);
	right: -7px;
	bottom: -7px;
}

.leaflet-popup-content-wrapper .job-listing .not-verified-badge {
	display: none;
}

.leaflet-popup-content-wrapper .job-listing-footer {
	flex-grow: 0;
	padding: 15px 25px;
	font-size: 16px;
	display: none;
}

.leaflet-popup-content-wrapper .job-listing h3.job-listing-title {
	font-size: 16px;
	line-height: 24px;
}

.leaflet-popup-content-wrapper .job-listing .job-listing-company-logo {
	max-width: 46px;
	margin: 5px 18px 5px 0;
	top: 0;
	flex: 0 0 46px;
}

.leaflet-popup-content-wrapper .job-listing .job-listing-company-logo img { max-width: 46px; }




/* 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-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}


/* Clusters
----------------------------------------*/
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
	background-color: transparent;
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
}

.marker-cluster div {
	margin-left: 5px;
	margin-top: 5px;
	text-align: center;
	font-size: 15px;
	color: #fff;
	font-weight: 600;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	line-height: 36px;
	background-color: #66676b;
	position: relative;
}

	
.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
	background-color: #66676b;
}

.marker-cluster div:before {
	border: 7px solid #66676b;
	opacity: 0.2;
	box-shadow: inset 0 0 0 4px #66676b;
	content: '';
	position:absolute;
	border-radius: 50%;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: cluster-animation 2.5s infinite;
}

@keyframes cluster-animation {
	0%,100% {
		transform:scale(1.3) rotate(0deg)
	}
	50% {
		transform:scale(1.5) rotate(90deg)
	}
}

.marker-cluster span {
    font-family: Arial, sans-serif;
    line-height: 36px;
}

.leaflet-control-geocoder {
  border-radius: 4px;
  background: white;
  min-width: 26px;
  min-height: 26px;
}

.leaflet-touch .leaflet-control-geocoder {
  min-width: 30px;
  min-height: 30px;
}

.leaflet-control-geocoder a,
.leaflet-control-geocoder .leaflet-control-geocoder-icon {
  border-bottom: none;
  display: inline-block;
}

.leaflet-control-geocoder .leaflet-control-geocoder-alternatives a {
  width: inherit;
  height: inherit;
  line-height: inherit;
}

.leaflet-control-geocoder a:hover,
.leaflet-control-geocoder .leaflet-control-geocoder-icon:hover {
  border-bottom: none;
  display: inline-block;
}

.leaflet-control-geocoder-form {
  display: none;
  vertical-align: middle;
}
.leaflet-control-geocoder-expanded .leaflet-control-geocoder-form {
  display: inline-block;
}
.leaflet-control-geocoder-form input {
  font-size: 120%;
  border: 0;
  background-color: transparent;
  width: 246px;
}

.leaflet-control-geocoder-icon {
  border-radius: 4px;
  width: 26px;
  height: 26px;
  border: none;
  background-color: white;
  background-image: url(images/geocoder.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.leaflet-touch .leaflet-control-geocoder-icon {
  width: 30px;
  height: 30px;
}

.leaflet-control-geocoder-throbber .leaflet-control-geocoder-icon {
  background-image: url(images/throbber.gif);
}

.leaflet-control-geocoder-form-no-error {
  display: none;
}

.leaflet-control-geocoder-form input:focus {
  outline: none;
}

.leaflet-control-geocoder-form button {
  display: none;
}
.leaflet-control-geocoder-error {
  margin-top: 8px;
  margin-left: 8px;
  display: block;
  color: #444;
}
.leaflet-control-geocoder-alternatives {
  display: block;
  width: 272px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.leaflet-control-geocoder-alternatives-minimized {
  display: none;
  height: 0;
}
.leaflet-control-geocoder-alternatives li {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  padding: 5px 8px;
  text-overflow: ellipsis;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.leaflet-control-geocoder-alternatives li a,
.leaflet-control-geocoder-alternatives li a:hover {
  width: inherit;
  height: inherit;
  line-height: inherit;
  background: inherit;
  border-radius: inherit;
  text-align: left;
}

.leaflet-control-geocoder-alternatives li:last-child {
  border-bottom: none;
}
.leaflet-control-geocoder-alternatives li:hover,
.leaflet-control-geocoder-selected {
  background-color: #f5f5f5;
}
.leaflet-control-geocoder-address-detail {
}
.leaflet-control-geocoder-address-context {
  color: #666;
}	


/* Touch Gestures
----------------------------------------*/
@-webkit-keyframes leaflet-gestures-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes leaflet-gestures-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.leaflet-container:after {
  -webkit-animation: leaflet-gestures-fadein 0.8s backwards;
          animation: leaflet-gestures-fadein 0.8s backwards;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 461;
  pointer-events: none; }

.leaflet-gesture-handling-touch-warning:after,
.leaflet-gesture-handling-scroll-warning:after {
  -webkit-animation: leaflet-gestures-fadein 0.8s forwards;
          animation: leaflet-gestures-fadein 0.8s forwards; }

.leaflet-gesture-handling-touch-warning:after {
  content: attr(data-gesture-handling-touch-content); }

.leaflet-gesture-handling-scroll-warning:after {
  content: attr(data-gesture-handling-scroll-content); }



/* Leaflet autocomplete  */
#leaflet-geocode-cont {
	position: absolute;
	z-index: 110;
	background: #fff;
	border: none;
	border-radius: 0 0 4px 4px;
	top: 46px;
	box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.12);
	display: none;
	width: 100%;
    border-top: 1px solid #e8e8e8;
}

#leaflet-geocode-cont:before {
	content: "";
	width: 100%;
	height: 4px;
	background-color: #fff;
	display: block;
	position: absolute;
	top: -5px
}
#leaflet-geocode-cont.active {
	display: block;
}

#leaflet-geocode-cont ul { 
	list-style: none;
	padding: 0;
	margin: 0;
}


#leaflet-geocode-cont ul li { 
	color: #888;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	padding: 11px 15px;
	padding-left: 38px;
	margin: 0;
	border-bottom: 1px solid #e8e8e8;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
/*     white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; */
}

#leaflet-geocode-cont ul li:before { 
	content: "\f041";
	font-family: "FontAwesome";
	font-size: 14px;
	position: absolute;
	top: 10px;
	left: 20px;
	margin-right: 0;
	color: #aaa;
	transition: 0.3s;
}

#leaflet-geocode-cont ul li:hover:before {
	color: #a0a0a0;
} 

#leaflet-geocode-cont ul li:last-child { 
	border: none;
	border-radius: 0 0 4px 4px;
}

#leaflet-geocode-cont ul li.selected,
#leaflet-geocode-cont ul li:hover {
	background: #fafafa;
} 

#leaflet-geocode-cont span.highlight {
	color: #222;
	font-weight: 700;
}
.type-and-hit-enter {
	display: block;
	position:absolute;
	right: 16px;
	top: 13px;
	z-index: 120;
	background-color: #f0f0f0;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	color: #888;
	line-height: 18px;
	padding: 3px 7px;
	pointer-events: none;
	opacity: 0;
	transition: 0.4s;
	transform: translateX(4px);
}

@media (min-width: 992px) {
	.intro-banner-search-form .type-and-hit-enter {
		top: 23px;
		right: 18px;
	}

	.intro-banner-search-form #leaflet-geocode-cont {
		width: calc(100% + 24px);
		left: -12px;
		top: calc(100% + 10px);
	}
}

@media (max-width: 992px) {
	.intro-banner-search-form #leaflet-geocode-cont {
		top: calc(100% + 0px);
	}
	.intro-banner-search-form .type-and-hit-enter {
		top: 17px;
		right: 14px;
	}
}

.tip-visible-focusin.type-and-hit-enter,
.tip-visible.type-and-hit-enter {
	opacity: 1;
	transform: translateX(0);
}

.main-search-container.alt-search-box #leaflet-geocode-cont { top: 51px; } 
.main-search-input.gray-style .type-and-hit-enter,
.main-search-inner .type-and-hit-enter { top: 11px; right: 25px; } 
.main-search-container.alt-search-box .type-and-hit-enter { right: 19px; top: 14px; }


@media (min-width: 992px) {
        .main-search-input .osm-dropdown-active #leaflet-geocode-cont,
        .main-search-container:not(.alt-search-box) .osm-dropdown-active #leaflet-geocode-cont {
            box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);
            border: none;
            padding-top: 45px;
            top: 0;
            z-index: 10;
            border-radius: 4px;
        }
        
        .main-search-input.gray-style .osm-dropdown-active #leaflet-geocode-cont {
            box-shadow: none;
            border: 1px solid #e0e0e0;
        }
        
        .main-search-input .osm-dropdown-active #leaflet-geocode-cont ul li:first-child,
        .main-search-container:not(.alt-search-box) .osm-dropdown-active #leaflet-geocode-cont ul li:first-child { border-top: 1px solid #e8e8e8; }
}

@media (max-width: 992px) {
    .main-search-container:not(.alt-search-box) #leaflet-geocode-cont { top: 52px; } 
    .main-search-input.gray-style .type-and-hit-enter,
    .main-search-container:not(.alt-search-box) .type-and-hit-enter { top: 16px; right: 20px; } 
}

#leaflet-geocode-cont ul li.powered-by-osm { 
	display: block;
	padding: 9px 0;
	padding-right: 20px;
	font-size: 12px;
	font-weight: 500;
	color: #999;
	pointer-events: none;
	text-align: right;
}

#leaflet-geocode-cont ul li.powered-by-osm strong {
	color: #333;
	position: relative;
	padding-left: 26px;
} 

#leaflet-geocode-cont ul li.powered-by-osm strong:before {
	background-image: url(https://i.imgur.com/YaiaYGw.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 17px;
	width: 17px;
	display: inline-block;
	position: absolute;
	left: 5px;
	top: -2px
}

#leaflet-geocode-cont ul li.powered-by-osm:before { content: ""; }
.leaflet-control-geocoder {
  border-radius: 4px;
  background: white;
  min-width: 26px;
  min-height: 26px;
}

.leaflet-touch .leaflet-control-geocoder {
  min-width: 30px;
  min-height: 30px;
}

.leaflet-control-geocoder a,
.leaflet-control-geocoder .leaflet-control-geocoder-icon {
  border-bottom: none;
  display: inline-block;
}

.leaflet-control-geocoder .leaflet-control-geocoder-alternatives a {
  width: inherit;
  height: inherit;
  line-height: inherit;
}

.leaflet-control-geocoder a:hover,
.leaflet-control-geocoder .leaflet-control-geocoder-icon:hover {
  border-bottom: none;
  display: inline-block;
}

.leaflet-control-geocoder-form {
  display: none;
  vertical-align: middle;
}
.leaflet-control-geocoder-expanded .leaflet-control-geocoder-form {
  display: inline-block;
}
.leaflet-control-geocoder-form input {
  font-size: 120%;
  border: 0;
  background-color: transparent;
  width: 246px;
}

.leaflet-control-geocoder-icon {
  border-radius: 4px;
  width: 26px;
  height: 26px;
  border: none;
  background-color: white;
  background-image: url(images/geocoder.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.leaflet-touch .leaflet-control-geocoder-icon {
  width: 30px;
  height: 30px;
}

.leaflet-control-geocoder-throbber .leaflet-control-geocoder-icon {
  background-image: url(images/throbber.gif);
}

.leaflet-control-geocoder-form-no-error {
  display: none;
}

.leaflet-control-geocoder-form input:focus {
  outline: none;
}

.leaflet-control-geocoder-form button {
  display: none;
}
.leaflet-control-geocoder-error {
  margin-top: 8px;
  margin-left: 8px;
  display: block;
  color: #444;
}
.leaflet-control-geocoder-alternatives {
  display: block;
  width: 272px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.leaflet-control-geocoder-alternatives-minimized {
  display: none;
  height: 0;
}
.leaflet-control-geocoder-alternatives li {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  padding: 5px 8px;
  text-overflow: ellipsis;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.leaflet-control-geocoder-alternatives li a,
.leaflet-control-geocoder-alternatives li a:hover {
  width: inherit;
  height: inherit;
  line-height: inherit;
  background: inherit;
  border-radius: inherit;
  text-align: left;
}

.leaflet-control-geocoder-alternatives li:last-child { border-bottom: none; }
.leaflet-control-geocoder-alternatives li:hover,
.leaflet-control-geocoder-selected { background-color: #f5f5f5; }

.leaflet-control-geocoder-address-detail {  }
.leaflet-control-geocoder-address-context { color: #666; }
#streetView { z-index: 999; }
#map, #singleListingMap { outline: none; }


/* HELPER TEMPLATE */
.input-error{
    box-shadow: 0 2px 12px rgb(255, 0, 0) !important;
}
.text-error{
  color: rgb(255, 0, 0) !important;
}
.bg-error{
    background: rgb(255, 0, 0) !important;
}
.rating-estrela{
    display: inherit;
}
.estrela{
    display: inline-block;
    margin: 0;
    padding: 0;
    float: left;
    margin-right: 0;
    position: relative;
    cursor: pointer;
}
.estrela:before{
    font-family: "Material-Icons";
    content: "\e988";
    display: block;
    color: #ccc;
    font-size: 30px;
    margin: 0 5px;
}
.estrela.ativa:before{
    color: #febe42;
}
.checkbox.fixo input:checked + label span.checkbox-icon{
    background: transparent;
    border-color: transparent;
}
.checkbox.fixo input + label span.checkbox-icon:after{
    border-color: #287ddb;
    width: 8px;
    height: 12px;
    top: 0;
}
.ripple-effect.ajuda{
    overflow: initial;
}

.ripple-effect.ajuda .btn-ajuda{
    position: absolute;
    right: -30px;
    top: 6px;
}
.ripple-effect.ajuda .btn-ajuda span{
    font-size: 20px;
}

/* SUBSTITUIÇÃO TEMPLATE */
.pricing-plan.recommended{
    margin: 0;
    box-shadow: 0 0 0px rgba(0,0,0,0.1);
}
.pricing-plan .recommended-badge{
    height: 40px;
    top: 0px;
    line-height: 40px;
}
.uploadButton .uploadButton-button, .pricing-plan .button{
    color: #fff;
    border-color: #fff;
}
.widget-content:before, .widget-content:before{
    opacity: 0.6;
    background: #333;
}
.widget-content h5, .widget-content h5{
    color: #fff;
}
.widget-content span, .widget-content span{
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.order-confirmation-page h2{
    line-height: 48px;
}
.intro-banner .background-image-container{
    background-position: 100% 45%;
}
.order-confirmation-page{
    padding-bottom: 30px;
}
.into-banner-personalizado .intro-banner-search-form{
    margin-top: 70px;
}
.into-banner-personalizado .intro-search-field{
    border: none;
}
.logo-rodape{
    max-width: 100%;
    max-height: 50px;
    margin: 20px 0;
}
#footer{
    background: #fff;
}
#footer .footer-bottom-section{
    background: #111;
    color: #fff;
}
#footer .footer-bottom-section a{
    color: #fff;
}
.footer-rows-container{
    height: 90px;
}
.footer-row-inner.footer-logo img{
    max-height: 25px;
}
.footer-row-inner.footer-logo{
    height: 60px;
}
.footer-top-section{
    border: none;
}
.footer-rows-right .footer-row:first-child{
    border: none;
}
.footer-bottom-section{
    border: none;
}
.footer-rows-container{
    z-index: 0;
}

.pricing-plan .button{
    background: #287ddb;
    border-color: #fff;
}
.pricing-plan .recommended-badge{
    background: linear-gradient(to right,rgba(230,48,94,1) 25%, rgba(130,39,124,1) 100%);
}
.pricing-plan.recommended .button{
    background: linear-gradient(to right,rgba(230,48,94,1) 25%, rgba(130,39,124,1) 100%);
    border-color: #fff;
}
.accordion-header{
    background: #287ddb;
}
@media (max-width: 992px){
    .into-banner-personalizado .intro-banner-search-form{
        margin-top: 0;
    }
}
/* FIM SUBSTITUIÇÃO TEMPLATE */

/* CARREGANDO */
.wrapper-loader {
    position: absolute;
    width: 200px;
    height: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
  }
  
.loader {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .loader div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: #287ddb;
    -webkit-animation: go 0.8s infinite alternate ease;
            animation: go 0.8s infinite alternate ease;
    box-shadow: 0 0 20px #287ddb;
  }
  .loader div:nth-child(1) {
    -webkit-animation-delay: -0.72s;
            animation-delay: -0.72s;
  }
  .loader div:nth-child(2) {
    -webkit-animation-delay: -0.64s;
            animation-delay: -0.64s;
  }
  .loader div:nth-child(3) {
    -webkit-animation-delay: -0.56s;
            animation-delay: -0.56s;
  }
  .loader div:nth-child(4) {
    -webkit-animation-delay: -0.48s;
            animation-delay: -0.48s;
  }
  .loader div:nth-child(5) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
  }
  .loader div:nth-child(6) {
    -webkit-animation-delay: -0.32s;
            animation-delay: -0.32s;
  }
  .loader div:nth-child(7) {
    -webkit-animation-delay: -0.24s;
            animation-delay: -0.24s;
  }
  .loader div:nth-child(8) {
    -webkit-animation-delay: -0.16s;
            animation-delay: -0.16s;
  }
  .loader div:nth-child(9) {
    -webkit-animation-delay: -0.08s;
            animation-delay: -0.08s;
  }
  .loader div:nth-child(10) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  
  @-webkit-keyframes go {
    100% {
      background: transparent;
      -webkit-box-flex: 10;
              flex: 10;
      box-shadow: 0 0 0 transparent;
    }
  }
  
  @keyframes go {
    100% {
      background: transparent;
      -webkit-box-flex: 10;
          -ms-flex: 10;
              flex: 10;
      box-shadow: 0 0 0 transparent;
    }
  }
  
/* FIM CARREGANDO */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The modal-close Button */
  .modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .modal-close:hover,
  .modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* Modal Header */
.modal-header {
    padding: 15px;
    color: white;
}
.modal-header h4, .modal-header span{
    color: white;
}

.marker-container{
    background: #7806bf  !important
}
  
  /* Modal Body */
  /* .modal-body {padding: 2px 16px;} */
  
  /* Modal Footer */
  .modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  
  /* Add Animation */
  @keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
  }

.btn-whats{
    position: fixed;
    right: 0;
    bottom: 10px;
    margin: 0 10px 0 0;
    z-index: 999;
    padding: 0 20px 0 15px;
}
.btn-whats a{
    color: #fff;
}
.btn-whats a table{
    height: 36px;
}

.btn-imprimir-folder{
  position: fixed;
  right: 20px;
  bottom: 155px;
  margin: 0 10px 0 0;
  z-index: 999;
  width: 55px;
  line-height: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
}

.btn-imprimir{
    position: fixed;
    right: 20px;
    bottom: 85px;
    margin: 0 10px 0 0;
    z-index: 999;
    width: 55px;
    line-height: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
}

.btn-comparar{
    position: fixed;
    right: 0;
    top: 15px;
    margin: 0 10px 0 0;
    z-index: 999;
    padding: 0 20px 0 15px;
    box-shadow: 0 0 0 0 rgba(#5a99d4, .5);
    -webkit-animation: pulse 1.5s infinite;
}

.btn-comparar:hover{
	-webkit-animation: none;
}

.intro-banner{
    min-height: 100vh;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.35);
    padding: 12vh 0;

}
.intro-banner .input{
    width: 100%;
}
.banner-headline strong.color{
    color: #84107d;
}
.banner-headline strong{
    color: #84107d;
}
.div-label{
    color: #fff;
    border-radius: 4px;
    padding: 10px 20px;
    line-height: 22px;
    cursor: default;
    font-size: 20px;
    font-weight: normal;
    background: linear-gradient(to right,rgba(230,48,94,1), rgba(130,39,124,1));
    display: inline-block;
}
.div-label.div-label-menor{
    font-size: 16px;
    padding: 5px 10px;
}
.btn-gigante{
    text-align: center;
    padding: 20px 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    color: #000;
}
.btn-gigante img{
    display: block;
    margin: 0 auto 20px;
    max-height: 150px;
}
.btn-gigante img {
    display: block;
    margin: 0 auto 20px;
    max-height: 150px;
    transition: transform .5s;
}
.btn-gigante img:hover {
    transform: scale(1.2);
}

.input-c-r-inline .checkbox, .input-c-r-inline .radio{
    margin-right: 20px;
}
.intro-banner.fundo-branco:after, .intro-banner.fundo-branco:before{
    background: linear-gradient(to right,rgba(250,250,250,1) 20%, rgba(250,250,250,.95) 50% ,rgba(250,250,250,0.5) 100%,rgba(250,250,250,0) 100%);
}
.intro-banner-search-form .intro-search-field:nth-last-child(2){
    border-right: 1px solid #e4e4e4;
}
.border-none{
    border: none !important;
}
#navigation{
    margin-top: 25px;
}
.icon-box-circle{
    height: 80px;
}
@media (max-width: 600px){
    .intro-banner .intro-search-field{
        display: block !important;
    }
    .intro-banner .intro-search-field .checkbox, .intro-banner .intro-search-field .radio{
        display: block;
    }
}
@media (max-width: 768px){
    .footer-row-inner.footer-logo{
        height: 30px;
    }
    .footer-rows-container{
        height: 150px;
    }
}
@media (max-width: 992px){
    #formCotacao #form-w-1 .intro-banner-search-form.input-error{
        box-shadow: none !important;
    }
}
@media (min-width: 993px){
    .intro-banner .container.h-center-align{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }

    #formCotacao #form-w-1 .intro-banner-search-form .intro-search-field.input-error{
        box-shadow: none !important;
    }
}

@media (min-width: 1600px){
    .intro-banner .background-image-container{
        background-position: 100% 40%;
    }
}

.pricing-plan {
    overflow: hidden;
}
.pricing-plan > aside {
    position: absolute;
    width: 230px;
    right: 0;
    margin: -20px -75px 20px 0;
    -webkit-transform: rotate(35deg);
     -khtml-transform: rotate(35deg);
       -moz-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
            transform: rotate(35deg);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
            box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    color: #fff;
    background: #ff3019;
    background: -moz-linear-gradient(45deg, #ff3019 0%, #cf0404 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#ff3019), color-stop(100%,#cf0404));
    background: -webkit-linear-gradient(45deg, #ff3019 0%,#cf0404 100%);
    background: -o-linear-gradient(45deg, #ff3019 0%,#cf0404 100%);
    background: -ms-linear-gradient(45deg, #ff3019 0%,#cf0404 100%);
    background: linear-gradient(45deg, #ff3019 0%,#cf0404 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=1 );
}
.pricing-plan > aside > p {
    font-size: 10px;
}

.c-bg-g{
	background-color: #287ddb;
}
#modal-enviar-cotacao{
  z-index: 10000 !important;
}
.width-modal-enviar{
	/* width: max-content !important; */
	top: 15%;
}

.button-close{
	float: none !important;
}

.get-map {
	cursor: pointer;
}

.col-comparacao {
	text-align: -webkit-center;
}

#tabela-comparacao-planos{
	width: fit-content;
	max-height: 500px; 
	max-width: 100%; 
	overflow: hidden;
	border: 1px solid black;
	border-bottom: none;
	overflow-y: auto;
	overflow-x: auto;
    text-align: justify;
    border-radius: 5px;
}

#tbl-comparacao{
	border-radius: 10%;
}

#tbl-comparacao thead tr th{
	border-left: 1px solid black;
	border-bottom: 1px solid black;
	text-align: center;
	position: sticky;
	top: 0;
	color: white;
}

#tbl-comparacao tbody tr td{
	border-left: 1px solid black;
	border-bottom: 1px solid black;
	text-align: center;
}

#tbl-comparacao thead>tr>th:nth-child(1):not(.label-rede-credenciada){
	border-left: none;
	left: 0;
	z-index: 1;
}

#tbl-comparacao tbody>tr>td:nth-child(1):not(.label-rede-credenciada){
	border-left: none;
	position: sticky;
	left: 0;
	background-color: white;
	color: black;
	font-weight: bold;
}

.label-rede-credenciada{
	border-left: none !important;
	color: black;
	font-weight: bold;
}

#tbl-comparacao tbody tr:nth-child(odd):not(.label-rede-credenciada) {
	background-color: #f1f1f1;
}

.padding-5{
	padding: 5px !important;
}

#legenda{
	text-align: justify;
}

.legenda{
	font-weight: bold;
}

.switches-list{
	padding-left: 30%;
	margin-bottom: 1rem;
}

.icon-imprimir{
	font-size: 35px;
	line-height: 55px;
	color: white;
}

.btn-excluir{
  background: -moz-linear-gradient(45deg, #ff3019 0%, #cf0404 100%);
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#ff3019), color-stop(100%,#cf0404));
  background: -webkit-linear-gradient(45deg, #ff3019 0%,#cf0404 100%);
  background: -o-linear-gradient(45deg, #ff3019 0%,#cf0404 100%);
  background: -ms-linear-gradient(45deg, #ff3019 0%,#cf0404 100%);
  background: linear-gradient(45deg, #ff3019 0%,#cf0404 100%); 
  border-radius: 90%; 
  font-size: 20px; 
  position: absolute; 
  top: -8px; 
  left: 7px; 
  padding: 4.5px 5.5px;
  color: #fff;
  transition: 0.5s;
  z-index: 10;
}

.btn-excluir:hover{
  background:linear-gradient(45deg, #fff 0%,#cac 100%); 
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#fff), color-stop(100%,#cac));
  background: -webkit-linear-gradient(45deg, #fff 0%,#cac 100%);
  background: -o-linear-gradient(45deg, #fff 0%,#cac 100%);
  background: -ms-linear-gradient(45deg, #fff 0%,#cac 100%);
  background: linear-gradient(45deg, #fff 0%,#cac 100%);
  color: #111;
}

.btn-excluir span{
  padding:4px 2px;
}

.pricing-plan{
  min-height: 280px;
}
/* [data-title] {
  position: relative;
  cursor: help;
  text-decoration: underline;
}

[data-title]:hover::before {
  content: attr(data-title);
  position: absolute;
  bottom: -50px;
  display: inline-block;
  padding: 20px;
  border-radius: 2px;
  background: #009689;
  color: #fff;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: bold;
  word-wrap: break-word;
  z-index: 99;
  width: 350px;
}
[data-title]:hover::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 8px;
  display: inline-block;
  color: #fff;
  border: 8px solid transparent;	
  border-bottom: 8px solid #009689;
} */

@media (max-width: 768px){
  .btn-excluir{
    top: -55px;
    left: 0px;
  }
  
  .padding-mobile{
    padding-left:15px;
    padding-right:15px;

  }
}

@media (max-width: 576px){
  .btn-excluir{
    top: -55px;
    left: 0px;
  }
}

@media (max-width: 414px){
  .btn-excluir{
    top: -50px;
    left: 5px;
  }
}

#mdl-plano-manual{
	z-index: 10000 !important; 
	padding-top: 5%;
}

.mudar_icone:after{
	transform: rotate(180deg) !important;
}