/*|-------------|-----------------|
  | app name    | one call mapper | 
  | app version | 7.0             |
  | app author  | mawen maywin    |
  |-------------|-----------------|*/
* {
	margin: 0;
	padding: 0;
	font-family: "Lato", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "asktippy", sans-serif;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
body {
    height: 100%;
    background-color: rgb(242,242,242);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*___ map form wrap ___*/
/* every input & button element */
/*label, input, button, textarea, submit {
    border-radius: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    resize: none;
}*/
/* placeholder */
::-webkit-input-placeholder {color: rgb(134,134,134);}/* placeholder text color for safari, google chrome, opera 15+, and microsoft edge */
::placeholder {color: rgb(134,134,134);}
:-moz-placeholder {/* placeholder text color for mozzilla firefox */
    color: rgb(134,134,134);
    opacity: 1;
}
::-moz-placeholder {/* placeholder text color for Mozilla Firefox 19+ */
    color: rgb(134,134,134);
    opacity: 1;
}
:-ms-input-placeholder {color: rgb(134,134,134);}/* placeholder text color for Internet Explorer 10-11 */
::-ms-input-placeholder {color: rgb(134,134,134);}/* placeholder text color for internet explorer 10 and 11 */
:focus {/* focus */
    outline-color: transparent;/* makes the input/textarea glow transparent for safari/chrome */
    outline-style: none;/* removes input/textarea glow for safari/chrome */
}
textarea {/* all textareas, img selectors */
    display: block;/* remove bottom margin from all textareas and pictures */
    margin: 0;/* remove bottom margin from all textareas */
    border-radius: 0;
    background-color: transparent;
}
a {/* all <a> selectors */
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
/* remove default style */
/* label, input, button, submit {
    border-radius: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
input {
    -webkit-appearance: none;
}
*/
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px rgb(245, 245, 245) inset !important;
}
.ui_global_input_style {
    -webkit-appearance: none;
}
.ui_global_input_style::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(134,134,134);
}
.ui_global_input_style:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_global_input_style::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_global_input_style:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_global_input_style::placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_global_input_style:focus {/* focus */
    outline-color: transparent;/* makes the input/textarea glow transparent for safari/chrome */
    outline-style: none;/* removes input/textarea glow for safari/chrome */
}
.page_blur_wrap {
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
}
/* cordova style */
@media screen and (min-aspect-ratio: 1/1) and (min-width: 400px) {/* Landscape layout (with min-width) */
    .ui_window_container {
        background-position: left center;
        padding: 75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin: -90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}
.ui_window_event.ui_event_listening {display: block;}
.ui_window_event.ui_event_received {display: none;}
.ui_window_wrap.ui_device_ready .ui_window_event.ui_event_listening { display: none; }
.ui_window_wrap.ui_device_ready .ui_window_event.ui_event_received { display: block; }
.ui_window_wrap {}
.ui_view_wrap {
    position: fixed;
    left: 0px;
    right: 0px;
    top:  0px;
    bottom: 0px;
    display: none;
}
.ui_view_wrap.visiblized {
    display: block;
}
.ui_view_wrap.ui_view_slide_in_left {
    animation: slideInLeft; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_slide_in_right {
    animation: slideInRight; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_slide_out_left {
    animation: slideOutLeft; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_slide_out_right {
    animation: slideOutRight; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_bounce_in_up {
    animation: bounceInUp; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_bounce_out_down {
    animation: bounceOutDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_fade_in_up {
    animation: fadeInUp; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_fade_out_down {
    animation: fadeOutDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_fade_in {
    animation: fadeIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_fade_out {
    animation: fadeOut; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_blurred {/* modal general frost */
    -webkit-filter: blur(34px);
       -moz-filter: blur(34px);
        -ms-filter: blur(34px);
         -o-filter: blur(34px);
    filter: url("data:image/svg+xml;utf34,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='-5%' y='-5%' width='110%' height='110%'><feGaussianBlur in='SourceGraphic' stdDeviation='5'/></filter></svg>#svgBlur");/* FF doesn't support blur filter, but SVG */
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius = '34');
    filter: blur(34px);
}
/* placeholder */
::-webkit-input-placeholder {color: rgb(117, 117, 117);}/* placeholder text color for safari, google chrome, opera 15+, and microsoft edge */
::placeholder {color: rgb(117, 117, 117);}
:-moz-placeholder {/* placeholder text color for mozzilla firefox */
	color: rgb(165,165,165);
	opacity: 1;
}
::-moz-placeholder {/* placeholder text color for Mozilla Firefox 19+ */
	color: rgb(7,7,7);
	opacity: 1;
}
:-ms-input-placeholder {color: rgb(117, 117, 117);}/* placeholder text color for Internet Explorer 10-11 */
::-ms-input-placeholder {color: rgb(117, 117, 117);}/* placeholder text color for internet explorer 10 and 11 */
:focus {/* focus */
	outline-color: transparent;/* makes the input/textarea glow transparent for safari/chrome */
	outline-style: none;/* removes input/textarea glow for safari/chrome */
}
textarea {/* all textareas, img selectors */
    display: block;/* remove bottom margin from all textareas and pictures */
    margin: 0;/* remove bottom margin from all textareas */
    border-radius: 0;
    background-color: transparent;
}
a {/* all <a> selectors */
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
label, input, button, submit {/* remove default style */
    border-radius: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
.input {
	-webkit-appearance: none;
}


.about_body {
	background-color: rgb(255,255,255);
}
.guest_body {
	background-color: rgb(247,247,247);
/*  background-image: url('../../upload/image/layout/background4.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover; */
}
.user_body {
	background-color: rgb(238, 238, 238);
}
.page_blur_wrap {/* used to blur page */
	width: 100%;
	height: 100%;
	position: absolute;/* prevents fixed elements from moving */
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.page_wrap {
	min-height: 100%;
	position: relative;
	padding: 17px;
	padding-top: 68px;
	max-width: 610px;
	margin: 0 auto;
}
.mapper_page_wrap {
    min-height: 100%;
    position: relative;
    padding: 17px;
    padding-top: 60px;
    max-width: 407px;
    margin: 0 auto;
}
.index_header {
    position: fixed;
    height: 47px;
    width: 100%;
    top: 0;
    left: 0;
    background: white;
    z-index: 1;
    text-align: center;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	        box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
.index_sub_header {
    width: 100%;
    margin-bottom: 21px;
    background: white;
    z-index: 1;
    text-align: center;
    -webkit-box-shadow: 0px 2px 3px rgb(0 0 0 / 17%);
    -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0px 2px 3px rgb(0 0 0 / 17%);
    border-radius: 13px;
}
.guest_header {
	position: fixed;
	height: 55px;
	width: 100%;
	top: 0;
	left: 0;
	background: white;
	z-index: 1;
	text-align: center;
}
/* header logo */
.kmz_kings_logo_wrap2 {
	margin: 6px; 
	margin-left: 17px;
	float: left;
}
.kmz_kings_logo2 {
	max-width: 34px;
	max-height: 34px;
}
.kmz_kings_logo_wrap3 {
	margin-top: 14px;
	margin-left: 17px;
	float: left;
}
.kmz_kings_logo3 {
	max-width: 138px;
	max-height: 21px;
}
/* navigation bar */
.navigation_bar_wrap {
	background-color: #fff;
	margin: 0 auto;
	position: relative;
	padding: 17px;
	padding-bottom: 0;
}
.navigation_bar_list {
	display: table;
	width: 100%;
	table-layout: fixed;
	overflow: hidden;
	margin: 0 auto;
	border: solid 1px #0f69fa;
	border-radius: 7px;
}
.navigation_bar_item_wrap {display: table-cell;}
.navigation_bar_item_inner {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.navigation_bar_item {
	font-size: 13px;
	color: #0f69fa;
	cursor: pointer;
	padding: 8px;
	display: block;
	transition: all 377ms linear;
}
.navigation_bar_item.blue.active {
	color: white;
	background-color: #0f69fa;
}
.navigation_bar_item.blue2.active {
	color: #0A2439;
	border-bottom: solid 3px #0A2439;
}
.navigation_bar_item.green.active {
	color: #3aa56a;
	border-bottom: solid 3px #3aa56a;
}
.navigation_bar_item.green8.active {
	color: #279a86;
	border-bottom: solid 3px #279a86;
}
.navigation_bar_item.indigo.active {
	color: #6f6cee;
	border-bottom: solid 3px #6f6cee;
}
.navigation_bar_item.grey.active {
	color: #84919C;
	border-bottom: solid 3px #84919C;
}
.navigation_bar_item.yellow.active {
	color: #8daE33;
	border-bottom: solid 3px #8daE33;
}
/* gpsmapper box */
.convert_box {
	background-color: #fff;
	border-radius: 7px;
	margin: 10px auto;
	position: relative;
	padding: 28px;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
}
.report_box {
	background-color: #fff;
	border-radius: 7px;
	margin: 10px auto;
	position: relative;
	padding: 10px;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	        box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
.sub_info_text {
	color: rgb(134,134,134)
}
.transparent_form_input.input_error {
	border: solid 1px rgb(208,25,22);
	background-color: white;
}
.convert_textarea.error {
	border: solid 1px rgb(208,25,22);
}
.gpsmapper_header {
	position: fixed;
	height: 47px;
	width: 100%;
	top: 0;
	left: 0;
	background: white;
	z-index: 1;
	text-align: center;
	-webkit-box-shadow: 0px 1px 6px rgba(32, 33, 36, 0.28);
   	   -moz-box-shadow: 0px 1px 6px rgba(32, 33, 36, 0.28);
	    -ms-box-shadow: 0px 1px 6px rgba(32, 33, 36, 0.28);
	     -o-box-shadow: 0px 1px 6px rgba(32, 33, 36, 0.28);
	        box-shadow: 0px 1px 6px rgba(32, 33, 36, 0.28);
}
.logo_text {
	color: #3aa56a;
	font-size: 13px;
	font-weight: 400;
	margin-top: 15px;
	margin-left: 5px;
	float: left;
}
.copyright_title {
	text-align: center;
	font-weight: 400;
}
.kmz_kings_logo {
	max-width: 55px;
	max-height: 55px;
}
.kmz_kings_logo_wrap {
	margin: 34px;
}
.gpsmapper_content {
	margin-top: 47px;
	background-color: rgb(246,246,246);
	padding: 0 13px;
	overflow: hidden;
}
.feedback_link_wrap {
	text-align: center;
	margin: 10px;
}
.feedback_link {
	display: inline-block;
	cursor: pointer;
	font-size: 13px;
	color: rgb(117, 117, 117);
}
.feedback_link:hover {
	text-decoration: underline;
}
.site_description_box {
	display: none;
	max-width: 500px;
	margin: 0px auto;
	position: relative;
	margin-bottom: 17px;
	font-size: 13px;
	font-weight: 400;
}
.css_info_box {
	display: none;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
	margin-top: 17px;
	border-radius: 7px;
	background-color: white;
	font-size: 13px;
	font-weight: 400;
}
.copyright_text {
	font-size: 12px;
	font-weight: 400;
}
.disclaimer_text {

}
/* map coordinates button */
.map_coordinates_button {
	color: white;
	padding: 13px 13px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	font-size: 17px;
	font-weight: 400;
	background-color: #0f69fa;
	border-radius: 7px;
	width: 100%;
	margin-top: 13px;
}
.map_coordinates_button:hover {background-color: #437ed9;}
.map_coordinates_button:active {background-color: #3565ad;}
/* report coordinates button */
.report_coordinates_button {
	color: white;
	padding: 13px 13px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	font-size: 17px;
	font-weight: 400;
	background-color: #fc9b38;
	border-radius: 7px;
	width: 100%;
	margin-top: 13px;
}
.report_coordinates_button:hover {background-color: #e3aa39;}
.report_coordinates_button:active {background-color: #cc9933;}
/* header login button */
.login_button {
	padding: 13px 17px;
	cursor: pointer;
	font-size: 13px;
	color: white;
	background-color: #0f69fa;
	border-radius: 3px;
	float: right;
	margin-top: 6px;
	margin-right: 17px;
	font-weight: 400;
}
.created_by_sub_text {
	color: rgb(7,7,7);
}
.created_by_wrap {
	/* display: none; */
	margin: 10px;
	display: inline-block;
}





/* index -start- */
.all_social_icons {
	padding: 10px;
	display: block;
}
.all_social_icons.facebook_register_icon {
	font-size: 17px;
	color: white;
	background-color: rgb(59,89,152);
	cursor: pointer;
}
.all_social_icons.twitter_register_icon {
	font-size: 17px;
	color: white;
	background-color: rgb(85,172,238);
	cursor: pointer;
}
.all_social_icons.google_register_icon {
	font-size: 17px;
	color: white;
	background-color: rgb(214,45,32);
	cursor: pointer;
}
.index_form_social_list {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-radius: 7px;
	overflow: hidden;
	margin: 0 auto;
}
.index_form_social_list_item {display: table-cell;}
.index_form_social_list_item_inner {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.mode_box_divider {
	margin: 13px auto;
	height: 1px;
	border-bottom: solid 1px rgb(240, 240, 240);
}

.mode_box_header.blue {color: #0f69fa;}
.mode_box_header.blue2 {color: #0A2439;}
.mode_box_header.green {color: #3aa56a;}
.mode_box_header.yellow {color: #8daE33;}
.mode_box_header.green8 {color: #279a86;}
.mode_box_header.indigo {color: rgb(111,108,238);}
.mode_box_header.grey {color: #84919C;}
.form_label {
	margin-bottom: 8px;
	font-size: 13px;
	display: block;
	font-weight: 400;
	color: #0f69fa;
}
.form_label.blue {color: #0f69fa;}
.form_label.blue2 {color: #0A2439;}
.form_label.green {color: #3aa56a;}
.form_label.yellow {color: #8daE33;}
.form_label.green8 {color: #279a86;}
.form_label.indigo {color: rgb(111,108,238);}
.form_label.grey {color: #84919C;}
.reset_password_text {
	float: right;
	margin-top: 0px;
	font-size: 13px;
	color: rgb(117, 117, 117);
	cursor: pointer;
}
.reset_password_text:hover {text-decoration: underline;}
.login_policy_text {
	font-size: 13px;
	color: rgb(117, 117, 117);
}
.index_form_policy_text {
    color: #0f69fa;
}
/* index -end- */



.flip {

	-webkit-animation: rotateplane 1.2s infinite ease-in-out;
       -moz-animation: rotateplane 1.2s infinite ease-in-out;
        -ms-animation: rotateplane 1.2s infinite ease-in-out;
         -o-animation: rotateplane 1.2s infinite ease-in-out;
            animation: rotateplane 1.2s infinite ease-in-out;

}
/* loader animation */
@-webkit-keyframes rotateplane {
  0% {
	-webkit-transform: perspective(240px) rotateX(0deg) rotateY(0deg);
			transform: perspective(240px) rotateX(0deg) rotateY(0deg);
  }
  20% {
	/* background: #333; */
  }
  45% {
	/* background: #666; */
  }
  50% {
	-webkit-transform: perspective(240px) rotateX(-180.1deg) rotateY(0deg);
			transform: perspective(240px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
	-webkit-transform: perspective(240px) rotateX(-180deg) rotateY(-179.9deg);
			transform: perspective(240px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes rotateplane {
  0% {
	-webkit-transform: perspective(240px) rotateX(0deg) rotateY(0deg);
			transform: perspective(240px) rotateX(0deg) rotateY(0deg);
  }
  20% {
	/* background: #333; */
  }
  45% {
	/* background: #666; */
  }
  50% {
	-webkit-transform: perspective(240px) rotateX(-180.1deg) rotateY(0deg);
			transform: perspective(240px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
	-webkit-transform: perspective(240px) rotateX(-180deg) rotateY(-179.9deg);
			transform: perspective(240px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

.logo_text_design {
	color: black;
	margin: 89px auto;
	font-size: 144px;
}
/* circle loader */
.loaderQuart {
	width: 15px;
	height: 15px;
	display: block;
	position: relative;
	border-radius: 50px;
	border: 3px solid rgba(255,255,255,0.5);
	display: none;
}
.loaderQuart:after {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	bottom: -3px;
	right: -3px;
	border-radius: 50px;
	border: 3px solid transparent;
	border-top-color: #fff;

	-webkit-animation: spin .7s linear infinite;
       -moz-animation: spin .7s linear infinite;
        -ms-animation: spin .7s linear infinite;
         -o-animation: spin .7s linear infinite;
            animation: spin .7s linear infinite;

}

/* Animation */
@-webkit-keyframes spin {
	0% {

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

	-webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
	-webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
	}
	100% {
	-webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
	}
}

.mapped_today {
	display: none;
}

/* popup modal */
.modal_mask_wrapper {
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	display: none;
	z-index: 999;
	-webkit-overflow-scrolling: touch;
}
.modal_box_x_mark {
	/* style */
	background-color: white;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	padding: 4px;
	padding-top: 2px;
	text-align: center;
	font-size: 17px;
	color: rgb(134,134,134);
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.55);
   	   -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.55);
	    -ms-box-shadow: 0px 1px 2px rgba(0,0,0,0.55);
	     -o-box-shadow: 0px 1px 2px rgba(0,0,0,0.55);
	        box-shadow: 0px 1px 2px rgba(0,0,0,0.55);
	cursor: pointer;
	/* position */
	position: absolute;
	right: -17px;
	top: -17px;
}
.modal_box_x_mark:hover {
	color: rgb(208,25,22);
	-webkit-box-shadow: 0px 10px 20px rgba(208,25,22,0.19), 0px 6px 6px rgba(208,25,22,0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(208,25,22,0.19), 0px 6px 6px rgba(208,25,22,0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(208,25,22,0.19), 0px 6px 6px rgba(208,25,22,0.23);
	     -o-box-shadow: 0px 10px 20px rgba(208,25,22,0.19), 0px 6px 6px rgba(208,25,22,0.23);
	        box-shadow: 0px 10px 20px rgba(208,25,22,0.19), 0px 6px 6px rgba(208,25,22,0.23);
}
/* blue_modal_mask */
#blue_modal_mask {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	background-color: black;

	opacity: 0.5;
	filter: alpha(opacity=0.5);/* IE transparency */

	display:none;


}

/* blue_modal_window_two */
.blue_modal_window_two {
	border-radius: 7px;
	background: #fff;
	display: none;
	-webkit-box-shadow: 0px 15px 10px rgba(0,0,0,0.21);
   	   -moz-box-shadow: 0px 15px 10px rgba(0,0,0,0.21);
	    -ms-box-shadow: 0px 15px 10px rgba(0,0,0,0.21);
	     -o-box-shadow: 0px 15px 10px rgba(0,0,0,0.21);
	        box-shadow: 0px 15px 10px rgba(0,0,0,0.21);
	z-index: 10;
	font-size: 13px;
	position: fixed;
	width: 500px;
	left: 50%;
	top: 50px;
	margin-left: -309px; /* Half of the width */
	color: #0f69fa;
	display: none;
}
/* icon-x-mark */
.icon-x-mark {
	position: absolute;
	top: 0px;
	right: 0px;
	font-weight: 400;
	cursor: pointer;
	color: rgb(134,134,134);
	padding: 13px;
	font-size: 17px;
}
.icon-x-mark:hover{
	color: #0f69fa;
}
.showing_modal {
	overflow: hidden;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}
.modal_box { 
	max-width: 407px;
	margin: 34px auto;
	position: relative;
	z-index: 999;
	padding: 17px;
}

.modal_wrap { 
	padding: 34px;
}


/* transparent form */
.transparent_form_box {
	background-color: rgb(255, 255, 255);
	border-radius: 7px;
	margin: 10px auto;
	position: relative;
	padding: 28px;
	-webkit-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
   	   -moz-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	    -ms-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	     -o-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	        box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
}
.transparent_form_input {
	width: 100%;
	height: 36px;
	margin-bottom: 10px;
	padding: 8px;
	border: solid 1px rgb(222, 225, 229);
	background-color: rgb(241,241,241);
	font-size: 13px;
	border-radius: 7px;
	transition: all 377ms linear;
}
.transparent_form_button {
	color: white;
	padding: 8px 0;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	background-color: #0f69fa;
	border-radius: 7px;
	width: 100%;
}

/* about section */
.about_section {
	padding-top: 47px;
	background-color: white;
	min-height: 407px;
}
.about_section.baby_blue {
	background-color: #1fc8db;
	background-image: linear-gradient(141deg, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
}
.about_section.yellow {
background: #ffe259;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffa751, #ffe259);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffa751, #ffe259); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

/* textarea actions */
.textarea_actions_wrap {
	/* background-color: #fff; */
	/* border-radius: 7px; */
	margin: 22px auto;
	position: relative;
	/* padding: 13px 17px; */
	/* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
}
.textarea_actions_list {
	display: table;
	width: 100%;
	table-layout: fixed;
	overflow: hidden;
	margin: 0 auto;
}
.textarea_actions_item_wrap {
	display: table-cell;
	padding: 5px;
}
.textarea_actions_item_inner {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.textarea_actions_item {
	font-size: 13px;
	color: rgb(134,134,134);
	cursor: pointer;
	padding: 8px;
	display: block;
	transition: all 377ms linear;
	background-color: rgb(255, 255, 255);
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
   	   -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
	    -ms-box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
	     -o-box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
	        box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
	border-radius: 7px;
}


.map_action_buttons {
	max-width: 500px;
	margin: 0 auto;
	padding: 13px;
	position: relative;
	margin-top: 17px;
	border-radius: 7px;
	background-color: white;
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
   	   -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
	    -ms-box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
	     -o-box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
	        box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
	font-size: 13px;
	font-weight: 400;
}


.map_action_button {
	color: white;
	padding: 8px 0;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	font-size: 13px;
	background-color: white;
	border-radius: 7px;
	width: 100%;
	margin: 5px auto;
	font-weight: 400;
}
.map_action_button.indigo {
	color: #0f69fa;
	background-color: rgb(255, 255, 255);
	border: solid 1px #0f69fa;
}
.map_action_button.google {
	color: #3aa56a;
	background-color: rgb(255, 255, 255);
	border: solid 1px #3aa56a;
}
/* map info table */
.map_info_table {
	border-collapse: collapse;
	width: 100%;
	color: rgb(7,7,7);
	margin-bottom: 5px;
	background-color: rgb(241,241,241);
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
	font-size: 13px;
}
.map_info_table td, .map_info_table th {
	padding: 8px;
}
.map_info_table tr:nth-child(even){background-color: rgb(241,241,241);}
.map_info_table tr:hover {background-color: rgb(240, 240, 240);} 
/* feature section */
.feature_section_table {
	display: table;
	width: 100%;
	table-layout: fixed;
	padding: 21px;
	height: 233px;
}
.feature_section_table_item_wrap {
	display: table-cell;
	position: relative;
}
.feature_section_table_item {
	display: inline-block;
	margin: 0 auto;
}
.feature_section_table_video_item {
	display: block;
	margin: 0 auto;
}
.guest_section_wrap {
	width: 100%;
	padding-bottom: 68px;
	clear:both;
}
.guest_site_wrap {
	min-width: 1021px;
	max-width: 1021px;
	margin: 0 auto;
}
.modal_form_buttons_wrap {
	width: 100%;
	display: table;
	margin-top: 34px;
}
.modal_form_link {
	color: rgb(43, 146, 230);
	padding: 8px 0;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	float: left;
}
.modal_form_link2 {
	color: rgb(117, 117, 117);
	text-decoration: none;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	width: 100%;
}
.modal_form_submit_button {
	color: white;
	padding: 8px 17px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	background-color: rgb(43, 146, 230);
	border-radius: 7px;
	float: right;
}
.header_elements_wrap {
	float: right;
	margin-top: 7px;
	margin-right: 17px;
}
/* header avatar */
.header_avatar_wrap {
	float: left;
	cursor: pointer;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	position: relative;
}
.header_avatar_wrap:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 50%;
	content: '';
}
.header_avatar_wrap_img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.profile_popup_wrap {
	z-index: 2;
	position: absolute;
	right: 55px;
	top: 34px;
	background-color: white;
	border: solid 1px rgb(189, 189, 189);
	-webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
   	   -moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
	    -ms-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
	     -o-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
	        box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
	padding: 13px;
	display: none;
}
/* form */
.message_box_wrap {
	border-radius: 7px;
	color: white;
	font-size: 13px;
	background: linear-gradient(#FABC2D, #FE9C27);
	-webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	        box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	padding: 17px;
	margin: 10px auto;
	margin-bottom: 34px;
	position: relative;
	font-weight: 400;
}
.message_box_x_mark {
	-webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	        box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	background-color: white;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	text-align: center;
	font-size: 17px;
	color: rgb(254, 156, 49);
	cursor: pointer;
	padding: 4px;
	padding-top: 2px;
	position: absolute;
	right: -17px;
	top: -17px;
}
.map_box_wrap {
    margin: 17px auto;
    position: relative;
}
.map_box {
    background-color: rgb(255, 255, 255);
    border-radius: 17px;
    margin: 0px auto;
    margin-bottom: 17px;
    position: relative;
    padding: 34px;
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 0 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0 2px 3px rgba(0,0,0,0.17);
}
.map_form_title {
    color: rgb(7,7,7);
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin-top: 17px;
}
.map_form_title.pro {
    color: rgb(7,7,7);
    font-weight: 500;
}
.map_form_description {
    font-size: 13px;
    line-height: 13px;
    color: rgb(100,100,100);
    font-weight: 400;
    text-align: center;
    margin-top: 17px;
}
.map_form_description_left {
    font-size: 13px;
    line-height: 13px;
    color: rgb(134, 134, 134);
    font-weight: 400;
    text-align: left;
    margin-top: 13px;
}
.error_message_box {
    display: none;
    color: rgb(222, 19, 35);
    font-size: 14px;
    background-color: rgb(255, 255, 255);
    padding: 13px;
    margin: 22px auto;
    border-radius: 7px;
    -webkit-box-shadow: 0px 5px 7px rgba(222, 19, 35, 0.21), 0px 1px 1px rgb(222 19 35 / 34%);
   	   -moz-box-shadow: 0px 5px 7px rgba(222, 19, 35, 0.21), 0px 1px 1px rgb(222 19 35 / 34%);
	    -ms-box-shadow: 0px 5px 7px rgba(222, 19, 35, 0.21), 0px 1px 1px rgb(222 19 35 / 34%);
	     -o-box-shadow: 0px 5px 7px rgba(222, 19, 35, 0.21), 0px 1px 1px rgb(222 19 35 / 34%);
	        box-shadow: 0px 5px 7px rgba(222, 19, 35, 0.21), 0px 1px 1px rgb(222 19 35 / 34%);
}
.map_box_warning_box {
	display: none;
	color: #0f69fa;
	font-size: 13px;
	background-color: rgb(255, 255, 255);
	border: solid 1px #0f69fa;
	margin: 22px auto;
	border-radius: 7px;
}
.map_box_warning_text {
	margin: 13px;
}
.map_box_warning_gps {
	color: #0f69fa;
	font-size: 13px;
	padding: 13px;
	padding-top: 0;
	border-radius: 7px;
	white-space: pre-wrap;
}
.alert_message_box {
    display: none;
    background-color: white;
    font-size: 14px;
    border-radius: 7px;
    text-align: center;
    color: rgb(35, 162, 39);
    border: solid 1px rgba(35, 162, 39);
    padding: 10px;
    margin: 10px auto;
}
.map_input {
    width: 100%;
    margin-bottom: 13px;
    padding: 13px;
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
    background-color: rgb(241,241,241);
    font-size: 13px;
    border-radius: 7px;
    transition: all 377ms linear;
    margin-top: 7px;
}
.map_textarea {
    resize: none;
    min-height: 72px;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
    background-color: rgb(241,241,241);
    font-size: 13px;
    border-radius: 7px;
    overflow-y: auto;
    overflow-x: hidden;
    color: rgb(7,7,7);
    display: block;
}
.map_textarea.input_error {
	border: solid 1px rgb(222, 19, 35);
	background-color: rgb(255, 255, 255);
	color: rgb(222, 19, 35);
}
.input_error::-webkit-input-placeholder {/* WebKit, Blink, Edge */
	color: rgb(222, 19, 35);
}
.input_error:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
	color: rgb(222, 19, 35);
	opacity: 1;
}
.input_error::-moz-placeholder {/* Mozilla Firefox 19+ */
	color: rgb(222, 19, 35);
	opacity: 1;
}
.input_error:-ms-input-placeholder {/* Internet Explorer 10-11 */
	color: rgb(222, 19, 35);
}
/*--- map button style ---*/
.map_button {
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: white;
    text-align: center;
    border-radius: 7px;
    padding: 14px;
    background-color: #0f69fa;
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0,0,0,0);
    margin-top: 17px;
}
.map_button:hover {background-color: #0f69fa;}
.map_button.lit {
	-webkit-box-shadow: 0px 7px 17px rgba(15, 105, 250, 0.17), 0px 3px  7px rgb(15 105 255 / 34%);
   	   -moz-box-shadow: 0px 7px 17px rgba(15, 105, 250, 0.17), 0px 3px  7px rgb(15 105 255 / 34%);
	    -ms-box-shadow: 0px 7px 17px rgba(15, 105, 250, 0.17), 0px 3px  7px rgb(15 105 255 / 34%);
	     -o-box-shadow: 0px 7px 17px rgba(15, 105, 250, 0.17), 0px 3px  7px rgb(15 105 255 / 34%);
	        box-shadow: 0px 7px 17px rgba(15, 105, 250, 0.17), 0px 3px  7px rgb(15 105 255 / 34%);
	 border-bottom: solid 1px rgba(0,0,0,.12);
}
.map_button:active {
	background-color: #0f69fa;
    -webkit-box-shadow: inset 1px 1px 10px rgba(0,0,0,0.21);
   	   -moz-box-shadow: inset 1px 1px 10px rgba(0,0,0,0.21);
	    -ms-box-shadow: inset 1px 1px 10px rgba(0,0,0,0.21);
	     -o-box-shadow: inset 1px 1px 10px rgba(0,0,0,0.21);
	        box-shadow: inset 1px 1px 10px rgba(0,0,0,0.21);
}
/* cookie consent banner */
.cookie_consent_banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background-color: rgb(65, 180, 67);
	font-size: 13px;
}
.cookie_consent_banner_description_wrap {
	padding: 8px;
}
.cookie_consent_banner_description_text {
	color: white;
}
.cookie_consent_learn_more_text {
	color: white;
	text-decoration: underline;
	display: inline-block;
	cursor: pointer;
}
.cookie_consent_banner_button_wrap {
	padding: 8px;
	display: table;
	width: 100%;
}
.cookie_consent_banner_button {
	padding: 8px 17px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	border: solid 1px rgb(255, 255, 255);
	color: rgb(255, 255, 255);
	border-radius: 7px;
	float: right;
}
/* error messsage modal */
.error_message_modal_mask_wrapper {
	background-color: rgba(250, 188, 45, 0.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	display: none;
	z-index: 999;
	-webkit-overflow-scrolling: touch;
}
.error_message_modal_title {
	color: rgb(250, 188, 45);
	text-align: center;   
	font-size: 13px;
	font-weight: 400;
}
.error_message_modal_description {
    color: rgb(7,7,7);
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    padding: 21px;
}
.error_message_modal_box {
	background-color: rgb(255, 255, 255);
	border-radius: 10px;
	margin: 10px auto;
	position: relative;
	-webkit-box-shadow: 0 14px 28px rgba(0,0,0,0.21), 0 10px 10px rgba(0,0,0,0.13);
   	   -moz-box-shadow: 0 14px 28px rgba(0,0,0,0.21), 0 10px 10px rgba(0,0,0,0.13);
	    -ms-box-shadow: 0 14px 28px rgba(0,0,0,0.21), 0 10px 10px rgba(0,0,0,0.13);
	     -o-box-shadow: 0 14px 28px rgba(0,0,0,0.21), 0 10px 10px rgba(0,0,0,0.13);
	        box-shadow: 0 14px 28px rgba(0,0,0,0.21), 0 10px 10px rgba(0,0,0,0.13);
}
.error_message_modal_box_content {
	padding: 17px;
}
.error_message_modal_buttons_wrap {
    padding: 21px;
    width: 100%;
    display: table;
}

.error_message_modal_link {
    color: rgb(117, 117, 117);
    padding: 17px 34px;
    background-color: rgb(238,238,238);
    border: solid 1px rgb(198, 198, 198);
    border-radius: 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    float: left;
}
.error_message_modal_submit_button {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #0f69fa;
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0,0,0,.12);
    -webkit-box-shadow: 0px 7px 17px rgb(15 105 250 / 17%), 0px 3px 7px rgb(15 105 255 / 34%);
   	   -moz-box-shadow: 0px 7px 17px rgb(15 105 250 / 17%), 0px 3px 7px rgb(15 105 255 / 34%);
	    -ms-box-shadow: 0px 7px 17px rgb(15 105 250 / 17%), 0px 3px 7px rgb(15 105 255 / 34%);
	     -o-box-shadow: 0px 7px 17px rgb(15 105 250 / 17%), 0px 3px 7px rgb(15 105 255 / 34%);
	        box-shadow: 0px 7px 17px rgb(15 105 250 / 17%), 0px 3px 7px rgb(15 105 255 / 34%);
    border-radius: 34px;
    float: right;
}
.error_message_modal_tips_link {
	text-decoration: underline;
	cursor: pointer;
	color: rgb(117, 117, 117);
	font-size: 13px;
	margin: 17px;
	font-weight: 400;
	margin-top: 0;
}
.mapping_tips_wrap {
	display: none;
	color: rgb(7,7,7);
	font-size: 13px;
	margin: 17px;
	font-weight: 400;
	margin-top: 0;
}
.mapping_tips_picture_wrap {
	padding: 13px;
	margin-top: 17px;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
}
.mapping_tips_img {
	max-width: 100%;
	min-width: 100%;
}

/* usage statistics */
.box {
	background: linear-gradient(#0f69fa, #6E68F2);
	border-radius: 7px;
	margin: 22px auto;
	-webkit-box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.19), 0px 5px 5px rgba(15, 105, 250, 0.23);
   	   -moz-box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.19), 0px 5px 5px rgba(15, 105, 250, 0.23);
	    -ms-box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.19), 0px 5px 5px rgba(15, 105, 250, 0.23);
	     -o-box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.19), 0px 5px 5px rgba(15, 105, 250, 0.23);
	        box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.19), 0px 5px 5px rgba(15, 105, 250, 0.23);

}

.box__header {
	padding: 15px 28px;
	position: relative;
	text-align: center;
}

.box__header-title {
	color: #fff;
	font-size: 18px;
}

.box__body {
	padding: 0 28px;
}

/* STATS */

.stats {
	color: #fff;
	position: relative;
	padding-bottom: 28px;
}

.stats__amount {
	font-size: 42px;
	font-weight: 400;
	line-height: 1.2;
}

.stats__caption {
	font-size: 18px;

}

.stats__change {
	position: absolute;
	top: 10px;
	right: 0;
	text-align: right;
	color: #f0f0f0;
}

.stats__value {
	font-size: 18px;
}

.stats__period {
	font-size: 13px;
}

.stats__value--positive {
	color: #AEDC6F;
}

.stats__value--negative {
	color: #FB5055;
}

.stats--main .stats__amount {
	font-size: 34px;
}
/* end usage statistics */

.parsed_coordinates {
	white-space: pre-wrap;
	padding: 13px;
	margin-top: 13px;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
	border-radius: 7px;
	background-color: rgb(241,241,241);
}
/* about page */
.mission_statement {
	width: 50%;
	float: left;
}
.mission_statement_title_text {
	color: rgb(7,7,7);
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 17px;
}
.mission_statement_description_text {
	color: rgb(7,7,7);
	font-size: 17px;
	font-weight: 200;
	line-height: 1.4;
}
.feature_sec_2 {
	width: 50%;
	position: relative;
	margin: 0 auto;
	margin-top: 47px;
	float: left;
}


/* map box info button */
.map_box_info_button {
	font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
	background-color: white;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	text-align: center;
	font-size: 27px;
	color: rgb(117, 117, 117);
	cursor: pointer;
	padding-top: 5px;
	margin: 13px auto;
	font-style: italic;
	font-weight: 400;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
}



.subscribe_button {
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: white;
    text-align: center;
    border-radius: 7px;
    padding: 17px 13px;
    background-color: #0f69fa;
    width: 100%;
    margin-top: 17px;
}
.subscribe_button:hover {
	background-color: #0f69fa;
}
.subscribe_button:active {
	background-color: #0f69fa;
}
.feature_section_5 {
	float: left;
	width: 631px;
	position: relative;
	padding: 17px;
	margin: 0 auto;
}
.feature_section_wrap4 {
	margin-bottom: 55px;
	margin-top: 47px;
	border-radius: .3rem;
	overflow: hidden;
	background-color: white;
}
/* mission statement */
.mission_statement_wrap {
    margin-bottom: 34px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    background-color: white;
}
.mission_statement_inner {
    float: left;
    width: 391px;
    position: relative;
    padding: 21px;
    padding-top: 34px;
}
.mission_statement_content {
	width: 100%;
}
.mission_statement_title {
    color: rgb(7,7,7);
    font-size: 27px;
    font-weight: 400;
    margin-bottom: 17px;
}
.mission_statement_description {
	color: #202124;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
}
.mission_statement_media_wrap {
	float: left;
	width: 631px;
	position: relative;
	padding: 17px;
}
.mission_statement_img {
	width: 100%;
}
.mission_statement_note {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	width: 269px;
	margin: 22px auto;
	padding: 13px;
	background-color: rgb(255, 255, 255);
	color: rgb(89, 89, 89); 
	border: solid 2px rgb(200, 200, 200);
}
/* feature section */
.feature_section_wrap {
    display: inline-block;
    margin-bottom: 34px;
    background-color: rgb(2255,255,255);
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);

}
.feature_section_1 {
	float: left;
	width: 391px;
	position: relative;
	padding: 34px;
}
.feature_section_text_wrap {
	width: 100%;
}
.feature_section_title_text {
	color: #202124;
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 17px;
}
.feature_section_description_text {
	color: #202124;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
}
.feature_section_video_wrap {
	float: left;
	position: relative;
	border-radius: 7px;
	width: 631px;
	height: 391px;
}
.feature_section_video {
	width: 100%;
}
.feature_section_2 {
	float: left;
	width: 631px;
	position: relative;
	padding: 17px;
}
.feature_action_button1 {
	display: inline-block;
    padding: 14px 21px;
    cursor: pointer;
    font-size: 17px;
    color: white;
    background-color: #17A41A;
    border-radius: 34px;
    font-weight: 400;
    float: left;
    margin-top: 34px;
    border-bottom: solid 3px rgba(0,0,0,.13);
}
.feature_action_button {
	display: inline-block;
	padding: 14px 34px;
	cursor: pointer;
	font-size: 17px;
	color: white;
	background-color: #17A41A;
	border-radius: 34px;
	font-weight: 400;
	margin: 55px auto;
	border-bottom: solid 3px rgba(0,0,0,.13);
}
.feature_section_footer {
	display: table;
	/* background-color: #f6f6f6;
	-webkit-box-shadow: 0 1px 13px rgba(0,0,0,0.08), 0 5px 5px rgba(0,0,0,0.13);
	-moz-box-shadow: 0 1px 13px rgba(0,0,0,0.08), 0 5px 5px rgba(0,0,0,0.13);
	box-shadow: 0 1px 13px rgba(0,0,0,0.08), 0 5px 5px rgba(0,0,0,0.13); */
	/* background-image: linear-gradient(to bottom, #f7f7f7, transparent); 
	margin-bottom: 34px; 
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
	*/
	width: 100%;
	height: 500px;
	text-align: center;
}
.feature_section_footer_text {
    color: #202124;
    font-size: 28px;
    font-weight: 500;
    width: 100%;
    margin-top: 21px;
}
.feature_section_footer_logo {
	max-width: 55px;
	max-height: 55px;
}
.feature_section_footer_logo_wrap {
	margin-bottom: 34px;
}
/* --- feature panel --- */
.feature_panel_wrap {
    display: inline-block;
    margin-bottom: 34px;
    background-color: rgb(255,255,255);
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    border-radius: 10px;
    overflow: hidden;
}
.feature_panel_header {
    padding: 55px 34px;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    background-color: rgb(250,250,250);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: rgb(134,134,134);
}
.feature_panel {
    float: left;
    width: 340px;
    position: relative;
}
.feature_panel_inner {
    padding: 34px;
    border-radius: 0px;
    text-align: center;
}
.feature_panel_text_wrap {
    font-weight: 700;
    color: black;
    padding: 17px;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    border-radius: 7px;
    background-color: rgb(250,250,250);
}
.feature_panel_text_wrap.green {color: rgb(195, 207, 33);}
.feature_panel_text_wrap.light_green {color: rgb(93, 151, 50);}
.feature_panel_text_wrap.brown {color: rgb(137, 102, 50);}
.feature_panel_title {
    font-size: 27px;
}
.feature_panel_text {
    padding-top: 17px;
    font-weight: 500;
    font-size: 17px;
}
/* --- mobile phone mockup --- */
.mobile-phone {
    margin: auto;
    margin-top: 34px;
    padding: 10px 10px 10px;
    width: 252px;
    height: 502px;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
	        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    border-radius: 30px;
    background-color: white;
}
.screen {
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    border-radius: 30px;
    overflow: hidden;
}
.screen img {
    min-width: 100%;
    max-width: 100%;
    height: auto;
}
.brove {
    width: 100px;
    height: 17px;
    background: white;
    position: absolute;
    margin: 0 70px;
    border-radius: 0 0 20px 20px;
    text-align: center;
}
.speaker {
    width: 37px;
    height: 3px;
    background: #d2d2d2;
    display: block;
    margin: auto;
    margin-top: 5px;
    border-radius: 20px;
}


.site_footer_phone {
	padding: 8px 13px;
	font-size: 15px;
	width: 100%;
	float: left;
	margin-bottom: 13px;
}
.site_footer_phone_text {
	cursor: pointer;
}
.site_footer_phone_text:hover {
	text-decoration: underline;
}
.site_footer_list {
    display: block;
    font-size: 14px;
    float: left;
    font-weight: 400;
}
.site_footer_list_item {
	float: left;
	text-align: center;
	padding: 13px 13px;
	cursor: pointer; 
}
.site_footer_list_item:hover {
	text-decoration: underline;
}
.site_footer_logo_box {
	float: left;
	padding: 13px 13px;
}
.site_footer_logo_img_wrap {
	padding: 22px 17px;
	display: table;
}
.site_footer_logo_img {
    max-width: 21px;
    max-height: 21px;
    margin-right: 13px;
    float: left;
}
/* site message box */
.site_message_box_wrap {
	border-radius: 7px;
	color: white;
	font-size: 13px;
	background: linear-gradient(#FABC2D, #FE9C27);
	-webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	        box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	padding: 17px;
	margin: 10px auto;
	margin-bottom: 34px;
	position: relative;
	font-weight: 400;
}
.site_message_box_x_mark {
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	        box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	background-color: white;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	text-align: center;
	font-size: 17px;
	color: rgb(254, 156, 49);
	cursor: pointer;
	padding: 4px;
	padding-top: 2px;
	position: absolute;
	right: -17px;
	top: -17px;
}
/* site warning box */
.site_warning_box_wrap {
	border-radius: 7px;
	color: white;
	font-size: 13px;
	background: linear-gradient(#FABC2D, #FE9C27);
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	        box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	padding: 17px;
	margin: 10px auto;
	margin-bottom: 34px;
	position: relative;
	font-weight: 400;
}
.site_warning_box_x_mark {
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	        box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
	background-color: white;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	text-align: center;
	font-size: 17px;
	color: rgb(254, 156, 49);
	cursor: pointer;
	padding: 4px;
	padding-top: 2px;
	position: absolute;
	right: -17px;
	top: -17px;
}
/* site error box */
.ie_error_wrap {
	border-radius: 7px;
	color: #E10B17;
	font-size: 13px;
	background-color: white; 
    -webkit-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	        box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	padding: 17px;
	margin: 10px auto;
	margin-bottom: 34px;
	position: relative;
	font-weight: 400;
	display: none;
}
.ie_error_wrap7 {
	border-radius: 7px;
	color: #E10B17;
	font-size: 17px;
	background-color: white; 
    -webkit-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	        box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	padding: 17px;
	margin: 21px auto;
	margin-bottom: 34px;
	position: relative;
	font-weight: 400;
	display: none;
}
.ie_error_x_mark {
    -webkit-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
   	   -moz-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	    -ms-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	     -o-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	        box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
	background-color: white;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	text-align: center;
	font-size: 17px;
	color: rgb(225, 11, 23);
	cursor: pointer;
	padding: 4px;
	padding-top: 2px;
	position: absolute;
	right: -17px;
	top: -17px;
}
.ie_error_description_wrap {
	padding: 8px;
}
.ie_error_description_text {
	color: #E10B17;
}
.cookie_consent_learn_more_text {
	color: #E10B17;
	text-decoration: underline;
	display: inline-block;
	cursor: pointer;
}
.ie_error_button_wrap {
	padding: 8px;
	display: table;
	width: 100%;
}
.ie_error_button {
	padding: 8px 17px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	border: solid 1px #E10B17;
	color: #E10B17;
	border-radius: 7px;
	float: right;
}
/* mini footer */
.mini_footer {
    text-align: center;
    background-color: rgb(255, 255, 255);
    color: rgb(134,134,134);
    font-size: 13px;
    border-radius: 17px;
    margin: 0px auto;
    padding: 21px;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
.mini_footer_slogan {
    color: rgb(7,7,7);
    font-size: 14px;
    font-weight: 500;
}
.mini_footer_logo {
    margin: 7px 0px;
    margin-top: 21px;
}
.mini_footer_logo_img {
	max-width: 55px;
	max-height: 55px;
}

.tippyPrivacyPolicyFooter {
	margin-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.tippyPrivacyPolicyFooterCo {
    /* padding-left: 10px; */
    /* padding-right: 10px; */
    text-align: center;
    font-weight: 400;
    margin-top: 10px;
}
.tippyPrivacyPolicyFooterItem {
	color: rgb(134,134,134);
	font-size: 11px;
}
.tippyPrivacyPolicyFooterItem:hover {
	text-decoration: underline;
}
.tippyPrivacyPolicyFooterDot {
	color: rgb(117, 117, 117);
	font-size: 12px;    
}


.tippyPrivacyPolicyFooterItemCo {
    color: rgb(134,134,134);
    font-size: 12px;
}
/* disclaimer footer */
.disclaimer_footer {
	border-radius: 7px;
	background-color: rgb(255, 255, 255);
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
	color: rgb(7,7,7);
	font-size: 13px;
	word-wrap: break-word;
	padding: 25px;
	margin: 17px auto;
}
/* map error warning */
.map_error_warning_note {
	font-size: 13px;
	font-weight: 400;
	margin: 17px;
	padding: 13px;
	background-color: rgb(241,241,241);
	color: rgb(117, 117, 117); 
	border: solid 1px rgb(200, 200, 200);
}
/* form info box */
/* disclaimer footer */
.form_info_box {
    border-radius: 7px;
    background-color: rgb(255, 255, 255);
    color: rgb(7,7,7);
    font-size: 13px;
    word-wrap: break-word;
    padding: 28px;
    margin: 10px auto;
    margin-bottom: 17px;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	        box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
/* form_info_list*/
.form_info_list{
	list-style-type: none;
	margin: 10px;
	padding: 0px;
	background-color: white;
	text-align: left;
}
/* form_info_list_item */
.form_info_list_item {
    display: block;
    padding: 8px 0px;
    text-decoration: none;
    color: rgb(7,7,7);
    font-size: 14px;
    cursor: pointer;
}
.form_info_list_item:hover {
	/* background-color: rgb(26, 115, 232);
	color: white;
	border-radius: 3px; */
}
.form_info_bold_text {
	font-weight: 500;
}
.form_info_logo {
    max-width: 55px;
    max-height: 55px;
}
.form_info_logo_wrap {
	margin-bottom: 17px;
	text-align: center;
	width: 100%;
}

/* header menu icon */
.header_menu_icon_wrap {
	float: left;
	cursor: pointer;
	width: 44px;
	height: 44px;
	position: relative;
	margin-top: 5px;
}
.header_menu_icon_wrap:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	content: '';
	border: 1px solid rgba(0, 0, 0, .1);
}
.header_menu_icon_wrap_img {
	width: 100%;
	height: 100%;
}
/* about page */
.about_page_wrap {
    min-width: 1022px;
    max-width: 1022px;
    margin: 0 auto;
    /*---  stick footer to bottom ---*/
    min-height: 100%;/* equal to footer height */
  	margin-bottom: -50px;/* account for last child potential margin-bottom */
}
/* about header */
.about_header_content {
    padding: 17px 0px;
    display: table;
    width: 100%;
}
/* about header logo */
.about_header_site_logo {
    float: left;
}
.about_header_site_logo_img {
    max-width: 177px;
    max-height: 29px;
}
/* about header login button */
.about_header_login_button {
    padding: 7px 10px;
    cursor: pointer;
    font-size: 13px;
    color: #2290E9;
    background-color: white;
    border-radius: 34px;
    float: right;
    font-weight: 500;
    margin-left: 7px;
    -webkit-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
   	   -moz-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	    -ms-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	     -o-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	        box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
}
/* map box */
.map_box_header_logo_wrap {
    text-align: center;
    margin-bottom: 21px;
}
.map_box_header_logo {
    max-width: 169px;
    max-height: 21px;
}


/* page-header-icon-friend-request */
.page-header-icon-friend-request {
	float: left;
	margin-top: 3px;
	font-size: 24px;
	color: rgb(163,163,163);
	position: relative;
	cursor: pointer;
}
.page-header-icon-friend-request:hover {color: rgb(26, 115, 232);}
.page-header-icon-friend-request.clicked {color: rgb(26, 115, 232);}

/* white message box with blue glow and text */
/* form */
.blue_message_box_wrap {
	border-radius: 7px;
	color: rgb(7,7,7);
	font-size: 13px;
	background: white;
	padding: 17px;
	margin: 10px auto;
	margin-bottom: 34px;
	position: relative;
	line-height: 17px;
	font-weight: 400;
	padding: 28px;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
}
.blue_message_box_x_mark {
    -webkit-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
   	   -moz-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	    -ms-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	     -o-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	        box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	background-color: white;
	border-bottom: solid 1px #0f69fa;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	text-align: center;
	font-size: 17px;
	color: #0f69fa;
	cursor: pointer;
	padding: 4px;
	padding-top: 2px;
	position: absolute;
	right: -17px;
	top: -17px;
}
.blue_message_box_button_wrap {
	padding: 8px;
	display: table;
	width: 100%;
	margin-top: 13px;
}
.blue_message_box_button {
	padding: 8px 17px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	background-color: white;
	border: solid 1px #0f69fa;
	color: #0f69fa;
	border-radius: 7px;
	float: right;
}
/* plans */
.guest_site_wrap {
	min-width: 1017px;
	max-width: 1017px;
	margin: 0 auto;
	margin-top: 55px;
}
.element-hidden {
  display: none;
}

.plan-name, .plan-price, .plan-details, .button, .more-options, .best-choice {
  padding: 10px;
}

.plans {
  margin: 0 auto;
  max-width: 80%;
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.plans .plan-box {
  display: flex;
  width: 33.3333%;
  background: #FFFCEF;
  margin: 10px 0;
  min-height: 650px;
}
.plans .plan-box .best-choice {
  background: #D5FFFC;
  text-transform: uppercase;
  font-weight: 600;
  color: #437299;
    -webkit-box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);
   	   -moz-box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);
	    -ms-box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);
	     -o-box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);
	        box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);

  margin-top: auto;
}
.plans .plan-box:hover {
  margin-top: -15px;
  background: white;
}
@media all and (max-width: 700px) {
  .plans .plan-box:hover {
	margin-top: 10px;
  }
}
.plans .plan-box:hover .plan-name {
  color: black;
}
.plans .plan-box:hover .plan-price {
  background: #be1100;
    -webkit-box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);
   	   -moz-box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);
	    -ms-box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);
	     -o-box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);
	        box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);

  text-align: center;
}
.plans .plan-box:hover .more-options {
  display: block;
  padding: 20px;
  text-align: right;
  position: relative;
}
.plans .plan-box:hover .more-options .additional-options {
  position: relative;
  text-align: left;
  width: 100%;
  margin: 0;
}
.plans .plan-box:hover .more-options a {
  color: #9E2B20;
  text-decoration: none;
}
@media all and (max-width: 700px) {
  .plans .plan-box:first-child {
	margin-bottom: 20px;
  }
}
.plans .plan-box:nth-child(2) {
  margin-top: 0;
    -webkit-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
   	   -moz-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
	    -ms-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
	     -o-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
	        box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
  position: relative;
}
.plans .plan-box:nth-child(2):hover {
  margin-top: -35px;
}
@media all and (max-width: 700px) {
  .plans .plan-box:nth-child(2):hover {
	margin-top: 0px;
	marign-right: -30px;
  }
}
@media all and (max-width: 700px) {
  .plans .plan-box {
	width: 100%;
  }
}
.plans .plan-name {
  font: 300 32px Oswald, Arial, Helvetica, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}
.plans .plan-price {
  background: #9E2B20;
  color: white;
  display: flex;
  font: 24px Oswald, Arial, Helvetica, sans-serif;
  padding: 20px 10px;
  text-align: center;
}
.plans .plan-price strong {
	font-size: 34px;
	align-self: baseline;
	line-height: 1;
	font-weight: 400;
}
.plans .plan-options {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.plans .plan-options li {
	border-bottom: 1px solid #cdcdcd;
	padding: 5px 0;
	margin: 5px 0;
}
.plans .plan-options .button {
	margin-top: auto;
	display: block;
	background: #E0401C;
	color: white;
	text-align: center;
	font: 24px Oswald, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
.plans .plan-options .button:hover {
	background: #ed380f;
}

/* mode switch */
.mode_switch {/* mode switch wrap */
	position: relative;
	display: table;
	width: 144px;
	height: 29px;
	margin: 0px auto;
	margin-bottom: 13px;
	font-weight: 400;
	font-size: 13px;
}
.mode_switch input {display:none;}/* hidden input */
input:focus + .mode_switch_slider {
	-webkit-box-shadow: 0px 0px 1px #2196F3;
   	   -moz-box-shadow: 0px 0px 1px #2196F3;
	    -ms-box-shadow: 0px 0px 1px #2196F3;
	     -o-box-shadow: 0px 0px 1px #2196F3;
	        box-shadow: 0px 0px 1px #2196F3;
}
.mode_switch_slider {/* basic background */
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: 377ms;
	transition: 377ms;
	border-radius: 34px;
	background-color: rgb(255, 255, 255);
	border: solid 1px rgb(198, 198, 198);
}
.mode_switch_slider:active {/* basic background */}
.mode_switch_slider:before {/* basic circle */
	position: absolute;
	content: "";
	height: 17px;
	width: 17px;
	left: 3px;
	bottom: 2px;
	-webkit-transition: 377ms;
	transition: 377ms;
	border-radius: 50%;
	background-color: white;
	border: solid 1px rgb(198, 198, 198);
}
.mode_switch_slider:after {/* basic text */
	content: 'Basic';
	display: block;
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	color: rgb(180, 180, 180);
}
input:checked + .mode_switch_slider {/* advanced background */
	border: solid 1px #0f69fa;
	background-color: #0f69fa;
}
input:checked + .mode_switch_slider:before {/* advanced circle */
	-webkit-transform: translateX(36px);
	-ms-transform: translateX(36px);
	transform: translateX(113px);
	background-color: rgb(255, 255, 255);
	box-shadow: none;
	height: 17px;
	width: 17px;
	border: solid 1px rgb(255, 255, 255);
}
input:checked + .mode_switch_slider:after {/* advanced text */
	content: 'Expert';
	color: white;
}



/* pro map_form_wrap */
.pro_map_form_wrap8 {
	width: 100%;
	font-size: 13px;
	color: rgb(7,7,7);
	display: table;
	position: relative;
	margin: 0px auto;
	background-color: white;
	/* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
	border-radius: 7px;
}
.pro_map_form_content {
	padding: 13px;
}
.pro_map_form_title {
	color: #0f69fa;
	text-align: center;   
	font-size: 13px;
	font-weight: 400;
	padding: 8px;
}
.pro_map_form_divider {
	margin: 22px auto;
	margin-top: 13px;
	height: 1px;
	border-bottom: solid 1px rgb(222, 225, 229);
}
/* custom radio button */
.radio_button {
	margin-top: 1.5rem;
	color: rgb(117, 117, 117);
	font-size: 13px;
	font-weight: 400;
}
.radio_button input[type="radio"] {
	position: absolute;
	opacity: 0;
}
.radio_button input[type="radio"] + .radio_button-label:before {/* unselected radio button */
	content: '';
	border-radius: 100%;
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	position: relative;
	top: -0.2em;
	margin-right: 1em;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
	font-size: 13px;
	background-color: rgb(222, 225, 229);
	border: solid 1px rgb(222, 225, 229);
}
.radio_button input[type="radio"]:checked + .radio_button-label:before {/* selected radio button */
	background-color: #0f69fa;
	border: solid 1px #0f69fa;
	box-shadow: none;
}
.radio_button input[type="radio"]:focus + .radio_button-label:before {/* focused radio button */
	outline: none;
}
.radio_button input[type="radio"]:disabled + .radio_button-label:before {/* disabled radio button */
    -webkit-box-shadow: inset 0px 0px 0px 5px rgb(238, 238, 238);
   	   -moz-box-shadow: inset 0px 0px 0px 5px rgb(238, 238, 238);
	    -ms-box-shadow: inset 0px 0px 0px 5px rgb(238, 238, 238);
	     -o-box-shadow: inset 0px 0px 0px 5px rgb(238, 238, 238);
	        box-shadow: inset 0px 0px 0px 5px rgb(238, 238, 238);

	background: rgb(255, 255, 255);
}
.radio_button input[type="radio"] + .radio_button-label:empty:before {
	margin-right: 0;
}
/* pro map form feature box */
.post-container {
	margin: 0 auto;
	display: table;
	width: 100%;
	font-size: 13px;
	padding: 13px;
	background-color: rgb(241,241,241);
	border-radius: 7px;
	margin-bottom: 13px;
    -webkit-box-shadow: 0px 3px 6px rgba(0,0,0,0.16), 0px 3px 6px rgba(0,0,0,0.23);
   	   -moz-box-shadow: 0px 3px 6px rgba(0,0,0,0.16), 0px 3px 6px rgba(0,0,0,0.23);
	    -ms-box-shadow: 0px 3px 6px rgba(0,0,0,0.16), 0px 3px 6px rgba(0,0,0,0.23);
	     -o-box-shadow: 0px 3px 6px rgba(0,0,0,0.16), 0px 3px 6px rgba(0,0,0,0.23);
	        box-shadow: 0px 3px 6px rgba(0,0,0,0.16), 0px 3px 6px rgba(0,0,0,0.23);
}
.post-thumb {
	float: left
}
.post-thumb img {
	display: block;
	width: 55px;
	height: 55px;
}
.post-content {
	margin-left: 69px
}
.post-title {
	font-weight: 400;
	font-size: 15px;
}
.pipeline_product_result {
	/* border: solid 1px red; */
}
/* pro map form button */
.pro_map_form_button {
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	color: rgb(117, 117, 117);
	text-align: center;
	border-radius: 7px;
	padding: 13px;
	background-color: white;
	margin-bottom: 13px;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
	background-color: rgb(240, 240, 240);
}
.pipeline_data_wrap {
	display: none;
}
.placemark_data_wrap {
	display: none;
}
/* custom select menu */
.custom-select {
	position: relative;
	font-weight: 400;
	margin-bottom: 13px;
	font-size: 13px;
}
.custom-select select {/* default select menu */
	display: none;/* hide default select menu */
}
.select-selected {/* custom select menu selected item */
	border-radius: 7px;
	color: rgb(7,7,7);
	border: solid 1px rgb(198, 198, 198);
	background-color: rgb(255, 255, 255);
}
.select-selected:after {/* custom select down arrow */
	position: absolute;
	content: "";
	top: 20px;
	right: 17px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: rgb(7,7,7) transparent transparent transparent;/* custom select down arrow icon color */
}
.select-selected.select-arrow-active:after {/* custom select up arrow */
	border-color: transparent transparent rgb(7,7,7) transparent;/* custom select up arrow icon color */
	top: 13px;/* point arrow upwards when select box open */
}
.select-items div,.select-selected {/* all custom select menu options including the selected item */
	padding: 13px;
	cursor: pointer;
	user-select: none;
	padding-left: 17px;
}
.select-items {/* custom select menu result box */
	position: absolute;
	background-color: white;
	color: rgb(117, 117, 117);
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	border-radius: 7px;
	overflow: hidden;
	

    -webkit-box-shadow: 0px 13px 22px rgba(0,0,0, 0.21), 0px 5px 5px rgba(0,0,0, 0.23);
   	   -moz-box-shadow: 0px 13px 22px rgba(0,0,0, 0.21), 0px 5px 5px rgba(0,0,0, 0.23);
	    -ms-box-shadow: 0px 13px 22px rgba(0,0,0, 0.21), 0px 5px 5px rgba(0,0,0, 0.23);
	     -o-box-shadow: 0px 13px 22px rgba(0,0,0, 0.21), 0px 5px 5px rgba(0,0,0, 0.23);
	        box-shadow: 0px 13px 22px rgba(0,0,0, 0.21), 0px 5px 5px rgba(0,0,0, 0.23);

}
.select-hide {/* hide the items when the select box is closed */
	display: none;
}
.select-items div:hover, .same-as-selected {/* custom select menu result selected item */
	color: rgb(7,7,7);
	background-color: rgb(222, 225, 229);
}
.select-items div:not(.same-as-selected):hover {/* hover over nonselected items */
	color: rgb(7,7,7);
	background-color: rgb(240, 240, 240);
}
/* pro map */

.advanced_map_button {
	cursor: pointer;
	font-size: 15px;
	font-weight: 400;
	color: white;
	text-align: center;
	border-radius: 7px;
	padding: 13px;
	background-color: #609639;
	margin-top: 13px;
}
.advanced_map_button:hover {
	background-color: #609639;
}
.advanced_map_button:active {
	background-color: #609639;
}
/* pro map */
.pro_map_form_wrap9 {
	width: 100%;
	font-size: 13px;
	display: table;
	position: relative;
	margin: 0px auto;
	border-radius: 7px;
	margin-top: 13px;
	color: rgb(117, 117, 117);
	border: solid 1px rgb(222, 225, 229);
	background-color: rgb(255, 255, 255);
}
.pro_map_form_wrap2 {
	width: 100%;
	font-size: 13px;
	color: #0f69fa;
	display: table;
	position: relative;
	background-color: rgb(255, 255, 255);
	padding: 5px;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}
.pro_map_form_description {
	margin: 8px;
	font-weight: 400;
}
.pro_map_form_section_header_sub_text {
	color: rgb(180, 180, 180);
}
.pro_map_form_input {
	width: 100%;
	margin-bottom: 13px;
	padding: 13px;
	font-size: 13px;
	border-radius: 7px;
	transition: all 377ms linear;
	border: solid 1px rgba(0,0,0,.04);
    border-top: solid 1px rgba(0,0,0,.07);
	background-color: rgb(241,241,241);
}
.pro_map_form_input2 {
    width: 100%;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 5px;
    transition: all 377ms linear;
    border: solid 1px rgba(0,0,0,.04);
    border-top: solid 1px rgba(0,0,0,.10);
    display: block;
}
.ios_switch_button_wrap {
	background-color: white;
	display: table;
	width: 100%;
	padding: 8px 13px;
	border-bottom: solid 1px rgb(222, 225, 229);
}
.ios_switch_button {
	float: right;
}
.ios_switch_button_text2 {
	float: right;
	font-size: 13px;
	font-weight: 400;
	margin-top: 3px;
}
.pro_map_color_preview_box {
	height: 13px;
	width: 13px;

}
/* openlayers */
.map {
    height: 610px;
    width: 100%;
    border-radius: 0px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    overflow: hidden;
}

.open_exploration_map {
	position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}



.map_preview {
    display: none;
    margin-top: 17px;
}
/* fixed map preview */
.fixed_map_preview {
	background-color: rgb(255, 255, 255);
	border-radius: 7px;
	padding: 28px;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);

		position: fixed;
	/* center the element */
	right: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
	/* give it dimensions */
	width: 407px;
}
.pro_map_message_box {
	color: #0f69fa;
	font-size: 13px;
	background-color: #EAF4FD;
	border: solid 1px #0f69fa;
	padding: 13px;
	margin: 13px auto;
	border-radius: 7px;
}

.error_message_modal_buttons_wrap88 {
	padding-top: 3px;
	width: 100%;
	display: table;
}
.rotate-north {
	top: 75px;
	left: .5em;
}
.ol-custom-icon {
	font-size: .5em;
}
.ol-control {/* white outer part around map buttons */}
.ol-control button {/* blue inner part of map buttons*/}
/* pro map glued buttons */
.modal_action_buttons_list {
	display: table;
	width: 100%;
	table-layout: fixed;
	font-size: 13px;
	cursor: pointer;
}
.modal_action_buttons_list_item {
	display: table-cell;
}
.modal_action_buttons_list_item_inner {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 13px 8px;
    font-weight: 500;
    margin-right: 2px;
    border-radius: 7px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: solid 1px rgb(223, 223, 223);
    border-bottom: solid 1px rgb(203, 203, 203);
    color: rgb(7,7,7);
    background-color: white;
}
.modal_action_buttons_list_item_inner2 {
	display: block;
	text-align: center;
	margin: 0 auto;
	padding: 13px;
	font-weight: 500;
	color: white;
	margin-left: 2px; 
	border-radius: 7px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border: solid 1px rgb(223, 223, 223);
	border-bottom: solid 1px rgb(203, 203, 203);
	color: #0f69fa;
	background-color: white;
}
.modal_action_buttons_list_item_inner.red {
	color: #E10B17;
}
.modal_action_buttons_list_item_inner.green {
	color: #17A41A;
}


.profile_action_button0 {
	padding: 13px 0px;/* top, right, bottom, left */
	border-radius: 3px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
}
.profile_action_button_icon0 {
	margin-right: 5px;
	float: left;
}

/* ios toggle button */ 
.tgl {display: none;}
.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {box-sizing: border-box;}
.tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection {background: none;}
.tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {background: none;}
.tgl + .tgl-btn {
	outline: 0;
	display: block;
	width: 4em;
	height: 2em;
	position: relative;
	cursor: pointer;
   -webkit-user-select: none;
	  -moz-user-select: none;
	   -ms-user-select: none;
		   user-select: none;
}
.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
	position: relative;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
}
.tgl + .tgl-btn:after {left: 0;}
.tgl + .tgl-btn:before {display: none;}
.tgl:checked + .tgl-btn:after {left: 50%;}
.tgl-ios + .tgl-btn {
	background-color: rgb(241,241,241);
	border-radius: 2em;
	padding: 2px;
	transition: all 377ms ease;
	border: 1px solid rgb(222, 225, 229);
}
.tgl-ios + .tgl-btn:after {
	border-radius: 2em;
	background: white;
	transition: left 377ms cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 377ms ease, margin 377ms ease;
	-webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
   	   -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
	    -ms-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
	     -o-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
	        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
}
.tgl-ios + .tgl-btn:hover:after {
	will-change: padding;
}
.tgl-ios + .tgl-btn:active {
	

    -webkit-box-shadow: inset 0px 0px 0px 2em #e8eae9;
   	   -moz-box-shadow: inset 0px 0px 0px 2em #e8eae9;
	    -ms-box-shadow: inset 0px 0px 0px 2em #e8eae9;
	     -o-box-shadow: inset 0px 0px 0px 2em #e8eae9;
	        box-shadow: inset 0px 0px 0px 2em #e8eae9;

}
.tgl-ios + .tgl-btn:active:after {
	padding-right: .8em;
}
.tgl-ios:checked + .tgl-btn { 
	background: #0f69fa;
	border: 1px solid #0f69fa; 
}
.tgl-ios:checked + .tgl-btn:active {
	box-shadow: none;
}
.tgl-ios:checked + .tgl-btn:active:after {
	margin-left: -.8em;
}


/* ios toggle button 2 */
.ios_switch_button2 {float: right;}
.tgl2 {display: none;}
.tgl2::-moz-selection, .tgl2:after::-moz-selection, .tgl2:before::-moz-selection, .tgl2 *::-moz-selection, .tgl2 *:after::-moz-selection, .tgl2 *:before::-moz-selection, .tgl2 + .tgl-btn2::-moz-selection {background: none;}
.tgl2::selection, .tgl2:after::selection, .tgl2:before::selection, .tgl2 *::selection, .tgl2 *:after::selection, .tgl2 *:before::selection, .tgl2 + .tgl-btn2::selection {background: none;}
.tgl2 + .tgl-btn2 {
	outline: 0;
	display: block;
	width: 4em;
	height: 2em;
	position: relative;
	cursor: pointer;
   -webkit-user-select: none;
	  -moz-user-select: none;
	   -ms-user-select: none;
		   user-select: none;
}
.tgl2 + .tgl-btn2:after, .tgl2 + .tgl-btn2:before {
	position: relative;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
}
.tgl2 + .tgl-btn2:after {left: 0;}
.tgl2 + .tgl-btn2:before {display: none;}
.tgl2:checked + .tgl-btn2:after {left: 50%;}
.tgl-ios2 + .tgl-btn2 {
	background-color: rgb(241,241,241);
	border-radius: 2em;
	padding: 2px;
	transition: all 377ms ease;
	border: 1px solid rgb(222, 225, 229);
}
.tgl-ios2 + .tgl-btn2:after {
	border-radius: 2em;
	background: white;
	transition: left 377ms cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 377ms ease, margin 377ms ease;
	-webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
   	   -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
	    -ms-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
	     -o-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
	        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
}
.tgl-ios2 + .tgl-btn2:hover:after {
	will-change: padding;
}
.tgl-ios2 + .tgl-btn2:active {
	
	-webkit-box-shadow: inset 0px 0px 0px 2em #e8eae9;
   	   -moz-box-shadow: inset 0px 0px 0px 2em #e8eae9;
	    -ms-box-shadow: inset 0px 0px 0px 2em #e8eae9;
	     -o-box-shadow: inset 0px 0px 0px 2em #e8eae9;
	        box-shadow: inset 0px 0px 0px 2em #e8eae9;


}
.tgl-ios2 + .tgl-btn2:active:after {
	padding-right: .8em;
}
.tgl-ios2:checked + .tgl-btn2 { 
	background: #0f69fa;
	border: 1px solid #0f69fa; 
}
.tgl-ios2:checked + .tgl-btn2:active {
	box-shadow: none;
}
.tgl-ios2:checked + .tgl-btn2:active:after {
	margin-left: -.8em;
}

/* pro map form list */
/* menu-one */
.menu-one {
	float: left;
	margin-top: 10px;
	width: 192px;
}
/* menu-one-box */
.menu-one-box {
	border-radius: 3px;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
	margin-bottom: 10px;
	background-color: white;
	padding-top: 0;
	height: auto;
}
/* menu-one-hover */
.menu-one-hover:hover .menu-one-more {display : block;}
/* menu-one-header */
.menu-one-header {
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	background-color: rgb(241,241,241);
	color: rgb(26, 115, 232);
	text-align: left;
	
	font-size: 11px; 
	font-weight: 400;
	padding: 10px;
	border-bottom: solid 1px rgb(222, 225, 229);
	text-transform: uppercase;
}
/* menu-one-more */
.menu-one-more {
	
	float: right;
	font-size: 12px;
	cursor: pointer;
	text-transform: none;
}
.menu-one-more:hover {text-decoration:underline;}
.menu-one-more {display: none;}
/* menu-one-list */
.menu-one-list {
	list-style-type: none;
	background-color: white;
	/* overflow: hidden; */
	text-overflow: ellipsis;
	white-space: nowrap;
	display: table;
	width: 100%;
	border-radius: 7px;
}
/* menu-one-item */
.menu-one-item {
	width: 100%;
	display: table;
	text-decoration: none;
	color: rgb(7,7,7);
	text-align: left;
	font-size: 13px;
	/* overflow: hidden; */
	cursor: pointer;
	padding: 8px 13px;
	border-top: 1px solid rgb(222, 225, 229);
}
.menu-one-item.grey_background {   
	background-color: rgb(241,241,241);
}
.menu-one-item.darkgrey_background {   
	background-color: rgb(241,241,241);
}
.menu-one-item.first {   
	border-top: none;
}
.menu-one-item:hover {/* on hover do this */}
.menu-one-item.selected {
	background-color: rgb(26, 115, 232);
	color: white;
	border-radius: 3px;
}
.menu-one-item.selected > .menu-one-icon
{/* make the menu-one-icon white when we hover over a menu-one-item */
  color: white;
}

.menu-one-item:hover:not(.selected) > .menu-one-icon
{/* make the menu-one-icon white when we hover over a menu-one-item */
  color: white;
}
/* menu-one-picture */
.menu-one-picture {
	float: left;
	margin-right: 5px;
	width: 17px; 
	height: 17px;
	border-radius: 2px;
}
/* menu-one-icon */
.menu-one-icon {
	float: left;
	margin-right: 5px;
	border-radius: 3px;
	color: rgb(26, 115, 232);
	font-size: 16px;
}

.pro_map_extra_label_forms {
	display: none;
}
.menu-one-item23 {
	display: block;
	text-decoration: none;
	color: rgb(117, 117, 117);
	text-align: left;
	font-size: 13px; 
	overflow: hidden;
	cursor: pointer;
	padding: 8px 13px;
}

.small_stream_picture_wrap45 {
	float: right;
	width: 24px; 
	height: 24px;
	border-radius: 3px;
	position: relative;
}

/* pro form toggle */
/* kml mode switch */

/* flip radio button */
.mode_switch2 {/* mode switch wrap */
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    margin: 0 auto;
    text-transform: uppercase;
    width: 100%;
}
.tgl2 {display: none;}
.tgl2, .tgl2:after, .tgl2:before, .tgl2 *, .tgl2 *:after, .tgl2 *:before, .tgl2 + .tgl-btn2 {box-sizing: border-box;}
.tgl2::-moz-selection, .tgl2:after::-moz-selection, .tgl2:before::-moz-selection, .tgl2 *::-moz-selection, .tgl2 *:after::-moz-selection, .tgl2 *:before::-moz-selection, .tgl2 + .tgl-btn2::-moz-selection {background: none;}
.tgl2::selection, .tgl2:after::selection, .tgl2:before::selection, .tgl2 *::selection, .tgl2 *:after::selection, .tgl2 *:before::selection, .tgl2 + .tgl-btn2::selection {background: none;}
.tgl2 + .tgl-btn2 {
	outline: 0;
	display: block;
	width: 4em;
	height: 2em;
	position: relative;
	cursor: pointer;
   -webkit-user-select: none;
	  -moz-user-select: none;
	   -ms-user-select: none;
		   user-select: none;
}
.tgl2 + .tgl-btn2:after, .tgl2 + .tgl-btn2:before {
	position: relative;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
}
.tgl2 + .tgl-btn2:after {left: 0;}
.tgl2 + .tgl-btn2:before {display: none;}
.tgl2:checked + .tgl-btn2:after {left: 50%;}
.tgl-flip + .tgl-btn2 {
  padding: 3px;
  transition: all 377ms ease;
  -webkit-perspective: 100px;
		  perspective: 100px;
		  margin: 0 auto;
		  width: 8em;
}
.tgl-flip + .tgl-btn2:after, .tgl-flip + .tgl-btn2:before {
	display: inline-block;
	transition: all 377ms ease;
	width: 100%;
	text-align: center;
	position: absolute;
	line-height: 2em;
	font-weight: 500;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
  -webkit-backface-visibility: hidden;
		  backface-visibility: hidden;
  border-radius: 34px;
}
.tgl-flip + .tgl-btn2:after {/* in between flip */
  content: attr(data-tg-on);

	-webkit-transform: rotateY(-180deg);
       -moz-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
         -o-transform: rotateY(-180deg);
            transform: rotateY(-180deg);

}
.tgl-flip + .tgl-btn2:before {/* kml */
    background-color: rgb(255,255,255);
    color: rgb(134,134,134);
    

    -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.34);
   	   -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.34);
	    -ms-box-shadow: 0px 1px 2px rgba(0,0,0,0.34);
	     -o-box-shadow: 0px 1px 2px rgba(0,0,0,0.34);
	        box-shadow: 0px 1px 2px rgba(0,0,0,0.34);

    content: attr(data-tg-off);
}
.tgl-flip + .tgl-btn2:active:before {/* on basic click active */
	background-color: white;
	color: #17A41A;
	

	-webkit-box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
   	   -moz-box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
	    -ms-box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
	     -o-box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
	        box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);

}
.tgl-flip + .tgl-btn2:active:before {

	-webkit-transform: rotateY(-20deg);
       -moz-transform: rotateY(-20deg);
        -ms-transform: rotateY(-20deg);
         -o-transform: rotateY(-20deg);
            transform: rotateY(-20deg);

}
.tgl-flip:checked + .tgl-btn2:before {

	-webkit-transform: rotateY(180deg);
       -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
         -o-transform: rotateY(180deg);
            transform: rotateY(180deg);

}
.tgl-flip:checked + .tgl-btn2:after {/* kmz */

	-webkit-transform: rotateY(0);
       -moz-transform: rotateY(0);
        -ms-transform: rotateY(0);
         -o-transform: rotateY(0);
            transform: rotateY(0);

    left: 0;
    color: #0f69fa;
    -webkit-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
   	   -moz-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	    -ms-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	     -o-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
	        box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
}
.tgl-flip:checked + .tgl-btn2:active:after {/* on pro click active */
	background-color: white;
	color: rgb(7,7,7);
	-webkit-box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.21), 0px 5px 5px rgba(15, 105, 250, 0.23);
   	   -moz-box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.21), 0px 5px 5px rgba(15, 105, 250, 0.23);
	    -ms-box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.21), 0px 5px 5px rgba(15, 105, 250, 0.23);
	     -o-box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.21), 0px 5px 5px rgba(15, 105, 250, 0.23);
	        box-shadow: 0px 13px 22px rgba(15, 105, 250, 0.21), 0px 5px 5px rgba(15, 105, 250, 0.23);
}
.tgl-flip:checked + .tgl-btn2:active:after {
	-webkit-transform: rotateY(20deg);
       -moz-transform: rotateY(20deg);
        -ms-transform: rotateY(20deg);
         -o-transform: rotateY(20deg);
            transform: rotateY(20deg);

}
/* circular switch */
.whose {
	display: flex;
  padding: 17px;
  box-sizing: border-box;
  height: 100%;
  backface-visibility: hidden;
}
.switch{
  --uiSwitchSize: var(--switchSize, 64px);
  --uiSwitchBgColor: var(--switchBgColor, #f1f1f1);
  --uiSwitchBgColorActive: var(--switchBgColorActive, #4ed164);
  --uiSwitchBorderColorActive: var(--switchBorderColorActive, #fff);
  --uiSwitchBorderColorFocus: var(--switchBgColorFocus, #43b556);
  --uiSwitchButtonBgColor: var(--switchButtonBgColor, #fff);  
  
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.switch__label{
  display: block;
  width: 100%;
  height: 100%;
}

.switch__toggle{
  width: 0;
  height: 0;
  opacity: 0;
  
  position: absolute;
  top: 0;
  left: 0;
}

.switch__toggle:focus ~ .switch__label{
    -webkit-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
   	   -moz-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
	    -ms-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
	     -o-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
	        box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
}

.switch__toggle:checked:focus ~ .switch__label{
    -webkit-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
   	   -moz-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
	    -ms-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
	     -o-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
	        box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
}
.switch__label:before, .switch__label:after{
	content: "";
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
}
.switch__label:before{
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background-color: var(--uiSwitchBgColor);
}
.switch__label:after{
	top: 50%;
	z-index: 3;
	transition: -webkit-transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15);
	transition: transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15);
	transition: transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15), -webkit-transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15);
}
/* type 1 */
.switch_type1 {
	--uiSwitchBorderRadius: var(--switchBorderRadius, 60px);
	width: var(--uiSwitchSize);
	height: calc((var(--uiSwitchSize) / 2));
	border-radius: var(--uiSwitchBorderRadius);    
	background-color: var(--uiSwitchBgColorActive);
}
.switch_type1 .switch__label {
  	border-radius: var(--uiSwitchBorderRadius);    
}
.switch_type1 .switch__label:before {
	border-radius: var(--uiSwitchBorderRadius);
	transition: opacity .2s ease-out .1s, -webkit-transform .2s ease-out .1s;
	transition: opacity .2s ease-out .1s, transform .2s ease-out .1s;
	transition: opacity .2s ease-out .1s, transform .2s ease-out .1s, -webkit-transform .2s ease-out .1s;

	-webkit-transform: scale(1);
   	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
	opacity: 1;
}
.switch_type1 .switch__toggle:checked ~ .switch__label:before {

	-webkit-transform: scale(0);
   	   -moz-transform: scale(0);
	    -ms-transform: scale(0);
	     -o-transform: scale(0);
	        transform: scale(0);
  	opacity: .7;
}
.switch_type1 .switch__label:after {
	width: calc(var(--uiSwitchSize) / 2);
	height: calc(var(--uiSwitchSize) / 2);

	-webkit-transform: translate3d(0, -50%, 0);
   	   -moz-transform: translate3d(0, -50%, 0);
	    -ms-transform: translate3d(0, -50%, 0);
	     -o-transform: translate3d(0, -50%, 0);
	        transform: translate3d(0, -50%, 0);

	background-color: var(--uiSwitchButtonBgColor);
	border-radius: 100%;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
   	   -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
	    -ms-box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
	     -o-box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
	        box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}
.switch_type1 .switch__toggle:checked ~ .switch__label:after {

	-webkit-transform: translate3d(100%, -50%, 0);
   	   -moz-transform: translate3d(100%, -50%, 0);
	    -ms-transform: translate3d(100%, -50%, 0);
	     -o-transform: translate3d(100%, -50%, 0);
	        transform: translate3d(100%, -50%, 0);
}
.main-container {
	margin: 0px auto;
	margin-bottom: 13px;
	text-align: center;
}
/* image grid */
.thumbnails {
  	overflow: hidden;
}
.thumbnails li {
	float: left;
	width: 11.1%;
	position: relative;
	padding: 3px;
	min-height: 30px;
	background-color: #fff;
	border: 1px solid #ccc;
	overflow: hidden;
}
.thumbnails li img {
	max-width: 100%;
	display: block;
	position: absolute;
	max-height: 100px;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
}
/* glued radio buttons */
.pro_map_glued_toggle_buttons_list_item {
	display: flex;
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
}
.pro_map_glued_toggle_buttons_list_item input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}
.pro_map_glued_toggle_buttons_list_item label {
	background-color: rgb(240, 240, 240);
	color: rgb(117, 117, 117);
	border-bottom: solid 3px rgb(222, 225, 229);
}
.pro_map_glued_toggle_buttons_list_item label:hover {
	color: #0f69fa;
	border-bottom: solid 3px rgb(198, 198, 198);
	background-color: rgb(222, 225, 229);
}
.pro_map_glued_toggle_buttons_list_item input:checked + label {
	color: white;
	border-bottom: solid 3px #1F83D4;
	background-color: #0f69fa;
	box-shadow: none;
}
.pro_map_glued_toggle_buttons_list_item label:first-of-type {/* border-radius: 5px 0 0 4px; */}
.pro_map_glued_toggle_buttons_list_item label:last-of-type {/* border-radius: 0 4px 4px 0; */}
/* pro map glued buttons */
.pro_map_glued_toggle_buttons_list {
	display: table;
	width: 100%;
	table-layout: fixed;
	overflow: hidden;
	font-size: 13px;
	cursor: pointer;
	border-radius: 7px;
	transition: all 0.3s ease-in-out;
}
.pro_map_glued_toggle_buttons_list_item {display: table-cell;}
.pro_map_glued_toggle_buttons_list_item_inner {
	display: block;
	text-align: center;
	margin: 0 auto;
	padding: 13px 8px;
	font-weight: 400;
	color: white;
	background-color: #17A41A;
	transition: all 0.1s ease-in-out;
}
/* pro map modal */
.pro_map_modal_mask_wrapper {
	background-color: rgba(15, 105, 250, 0.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	display: none;
	z-index: 999;
	-webkit-overflow-scrolling: touch;
}
.pro_map_modal_title {
	color: rgb(250, 188, 45);
	text-align: center;   
	font-size: 13px;
	font-weight: 400;
}
.pro_map_modal_description {
	color: rgb(7,7,7);
	font-size: 13px;
	font-weight: 400;
}
.pro_map_modal_box {
	background-color: rgb(255, 255, 255);
	border-radius: 10px;
	margin: 10px auto;
	position: relative;
	-webkit-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
   	   -moz-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	    -ms-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	     -o-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	        box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
}
.pro_map_modal_box_content {
	padding: 17px;
}
.pro_map_modal_buttons_wrap {
	padding: 17px;
	width: 100%;
	display: table;
	background-color: rgb(240, 240, 240);
	border-top: solid 1px rgb(198, 198, 198);
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.pro_map_modal_link {
	color: rgb(117, 117, 117);
	padding: 8px 17px;
	background-color: rgb(255,255,255);
	border: solid 1px rgb(198, 198, 198);
	border-radius: 7px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	float: left;
}
.pro_map_modal_submit_button {
	color: white;
	padding: 8px 17px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	background-color: rgb(43, 146, 230);
	border-radius: 7px;
	float: right;
}
.pro_map_modal_tips_link {
	text-decoration: underline;
	cursor: pointer;
	color: rgb(117, 117, 117);
	font-size: 13px;
	margin: 17px;
	font-weight: 400;
	margin-top: 0;
}
/* menu select button */
.radio-toolbar {
	margin: 10px auto;
	text-align: center;
}
.radio-toolbar input[type="radio"] {
	opacity: 0;
	position: fixed;
	width: 0;
}
.radio-toolbar label {
	display: inline-block;
	background-color: white;
	padding-top: 11px;
	font-family: sans-serif, Arial;
	font-size: 13px;
	border-radius: 34px;
	margin: 0px 8px;
	width: 34px;
	height: 34px;
	color: rgb(117, 117, 117);
}
.radio-toolbar label:hover {
  	background-color: #dfd;
}
.radio-toolbar input[type="radio"]:focus + label {
	border: 2px dashed #444;
}
.radio-toolbar input[type="radio"]:checked + label {
	background-color: rgb(241,241,241);
	border-color: #4c4;
	color: rgb(117, 117, 117);
}
/* view mode close button */
.view_mode_close_button {
	cursor: pointer;
	font-size: 15px;
	font-weight: 400;
	color: white;
	text-align: center;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	padding: 13px;
	background-color: #0f69fa;
	margin-top: 5px;
}
.view_mode_close_button:hover {
	background-color: #0f69fa;
}
.view_mode_close_button:active {
	background-color: #0f69fa;
}
/* edit form select box */
.edit_map_select_box {
	width: 100%;
	padding: 10px;
	font-size: 13px;
	border-radius: 7px;
	transition: all 377ms linear;
	border: solid 1px rgb(222, 225, 229);
	border-bottom: solid 1px rgb(222, 225, 229);
	background-color: rgb(255, 255, 255);
	display: block;
	margin-bottom: 8px;
}
.mode_box_dividerv2 {
	margin: 0 auto;
	margin-bottom: 13px;
	height: 1px;
	border-bottom: solid 1px rgb(240, 240, 240);
}
.edit_form_color_grid li.white {background-color: white;}
.edit_form_color_grid li.black {background-color: black;}
.edit_form_color_grid li.pink {background-color: pink;}
.edit_form_color_grid li.purple {background-color: purple;}
.edit_form_color_grid li.red {background-color: red;}
.edit_form_color_grid li.orange {background-color: orange;}
.edit_form_color_grid li.yellow {background-color: yellow;}
.edit_form_color_grid li.green {background-color: green;}
.edit_form_color_grid li.blue {background-color: blue;}
.edit_form_color_grid li.indigo {background-color: indigo;}
.edit_form_color_grid li.violet {background-color: violet;}
/* color pickers span */
.color-pickers span {
	display: block;
	float: left;
	width: 10%;
	height: 1.25em;
	cursor: pointer;
}
/* color picker size */
/* to change the color picker size */
.color-picker {
	font-size: 20px;
}
/* to change the color picker control’s size */
.color-picker i {
	font-size: 15px;
}
/* range slider plugin */
.rangeSlider__handle:after {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/* background-image: linear-gradient(rgba(0,0,0,.13),hsla(0,0%,100%,0)); */
	border-radius: 50%;
	background: none;
}
.rangeSlider__handle {/* this is the slider ball handle */
	border: none;
	cursor: pointer;
	display: inline-block;
	width: 28px;
	height: 28px;
	position: absolute;
	/* background: #fff linear-gradient(hsla(0,0%,100%,0),rgba(0,0,0,.1)); */
	/* box-shadow: 0 0 8px rgba(0,0,0,.3); */
	background: none;
	border-radius: 50%;
	background-color: #0f69fa;
	box-shadow: none;

}
.rangeSlider__handle:active {/* slider circlr when clicked */
	background-color: #609639;
	/* add ocm logo to slider handle */
	background-image: url('../../upload/image/layout/logo/gpsmapper_logo_blue.png');
	background-repeat: no-repeat;
	background-size: cover;
}
.rangeSlider {/* right side of slider */
	position: relative;
	background-color: rgb(222,222,222);
	border: none;
	margin: 13px 0px;
}
.rangeSlider, .rangeSlider__fill {
	display: block;
	box-shadow: none;
	border-radius: 10px;
}
.rangeSlider__horizontal {/* changes total dimensions of slider */
	height: 3px;
	width: 100%;
}
.rangeSlider__handle__horizontal {/* positions the range slider ball */
	top: -14px;
}
.rangeSlider__fill {/* left side of slider */
	background-color: #0f69fa;
	border: none;
}
.rangeSlider__buffer {
	position: absolute;
	top: 3px;
	height: 14px;
	background: none;
	border-radius: 10px;
}
/* pushpin radio */
.pushpin_radio {display: none;}
.pushpin_radio_label {
	cursor: pointer;
	float: left;
	min-width: 34px;
	max-width: 34px;
	position: relative;
	padding: 5px;
	min-height: 34px;
	max-height: 34px;
	margin: 4px;
	overflow: hidden;
	border-radius: 7px;
	transition: all 377ms linear;
}
.pushpin_radio_label:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	border: 1px solid rgba(0,0,0,0.0);
	content: '';
	transition: all 377ms linear;
	border-radius: inherit;
}
.pushpin_radio:checked + .pushpin_radio_label:after {/* if psuedo belongs to checked */
    border: solid 1px rgba(0,0,0,.14);
    background-color: rgba(0,0,0,0.02);
}
.pushpin_radio:checked + label {/* style the pushpin container */
	
}
.pushpin_radio:checked + .pushpin_radio_label img {
	background-color: white;
}
.pushpin_radio_label img {
	max-width: 100%;
	display: block;
	position: absolute;
	max-height: 100px;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	padding: 7px;
	border-radius: 8px;
}
.pushpin_select_box {overflow: hidden;}
/* range slider buttons */
.rangea {
	width: 100%;
	margin: 0 auto;
	position: relative;
	display: table;
	font-size: 15px;
	color: #0f69fa;
	font-weight: 400;
	border-radius: 7px;
	border: solid 1px rgba(0,0,0,.04);
    border-top: solid 1px rgba(0,0,0,.07);
    background-color: rgb(255,255,255);
	/* stop element highlighting on click */
	-webkit-user-select: none;/* chrome/safari */        
	-moz-user-select: none;/* firefox */
	-ms-user-select: none;/* ie10+ */
	-o-user-select: none;
	user-select: none;
}
.rangec {
	display: table-cell;
	width: 14%;
	font-weight: 700px;
}
.ranged {text-align: right;}
.rangee {
	position: absolute;
	left: 50%;
	display: inline;
	width: auto;
	transform: translateX(-50%);
}




.range_button {
    padding: 10px;
    border-radius: 7px;
    background-color: rgb(247,247,247);
    text-align: center;
    cursor: pointer;
    margin: 4px;
    border: solid 1px rgba(0,0,0,.07);
    border-bottom: solid 1px rgba(0,0,0,.17);
}
.range_button.decrease {float: left;}
.range_button.increase {float: right;}
.picked_range_value {
	text-align: center;
    color: #0f69fa;
    font-size: 17px;
    line-height: 45px;
}
/* leaflet css */
.leaflet_button_icon {
	font-size: 15px;
}
/* leaflet map feature label */
.leaflet_label {
	background: none;
	color: white;
	font-weight: 400;
	border: none;
	box-shadow: none;
	padding: 0;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}
.leaflet-tooltip-left.leaflet_label::before {
	border: none;
}
.leaflet-tooltip-right.leaflet_label::before {
	border: none;
}

.leaflet-div-icon {
  /* background-image: url('../../upload/image/layout/leaflet/oil_well_marker_icon_x2_blue.png'); */
  background:red;
  border:5px solid rgba(255,255,255,0.5);
  color:blue;
  font-weight:bold;
  text-align:center;
  border-radius:50%;
  line-height:30px;
}

/* editor */
.editor_range_label_text {
	float: left;
	font-weight: 400;
	font-size: 13px;
	text-align: center;
	width: 100%;
}
.range_slider_wrap {
	background-color: white;
}
.map_info_wrap {
	display: none;
	margin-top: 3px;
}

.leaflet_button {
	cursor: pointer;
	font-size: 18px;
}


.leaflet_geolocate_icon {
 

    margin-left: -6px;
    margin-top: -6px;
    width: 12px;
    height: 12px;
    transform: translate3d(267px, 305px, 0px);
    z-index: 305;

     /* background-image: url('../../upload/image/layout/leaflet/oil_well_marker_icon_x2_blue.png'); */
  background:red;
  border:5px solid rgba(255,255,255,0.5);
  color:blue;
  font-weight:bold;
  text-align:center;
  border-radius:50%;
  line-height:30px;
}

.ui_leaflet_control_container {
	margin-top: 64px;
}


.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
}
.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
}

.leaflet-bar {
    box-shadow: 0 1px 5px rgba(0,0,0,0.65);
    border-radius: 34px;
}

.leaflet-control-layers {
    box-shadow: 0 1px 5px rgba(0,0,0,0.4);
    background: #fff;
    border-radius: 17px;
}



/* public message box */
.public_message_box_wrap {
	border-radius: 7px;
	color: rgb(7,7,7);
	font-size: 13px;
	background: white;
	padding: 17px;
	margin: 10px auto;
	margin-bottom: 34px;
	position: relative;
	font-weight: 400;
	padding: 17px;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
}
.public_message_box_x_mark {
	background-color: white;
	border: solid 1px rgba(0,0,0,.14);
    border-bottom: solid 1px rgba(0,0,0,.25);
	border-radius: 50%;
	color: rgb(7,7,7);
	font-size: 17px;
	text-align: center;
	cursor: pointer;
	width: 34px;
	height: 34px;
	padding: 4px;
	padding-top: 2px;
	position: absolute;
	right: -17px;
	top: -17px;
}
.public_message_box_logo {
	text-align: center;
	margin-bottom: 13px;
}
.public_message_box_logo_img {
	max-width: 34px;
	max-height: 34px;
}
.public_message_box_button_wrap {
	padding: 8px;
	display: table;
	width: 100%;
	margin-top: 13px;
}
.public_message_box_button {
	padding: 8px 17px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	background-color: white;
	border: solid 1px #0f69fa;
	color: #0f69fa;
	border-radius: 7px;
	float: right;
}

.blue_text {
	color: #0f69fa;
	font-weight: 400;
}
.black_text {
	color: rgb(17,17,17);
	font-weight: 400;
}
.verify_modal_credentials {
	color: rgb(7,7,7);
	font-size: 13px;
	background-color: rgb(255, 255, 255);
	border: solid 1px rgb(198, 198, 198);
	padding: 13px;
	margin: 22px auto;
	border-radius: 7px;
}


/* ... */
.map_feature_form_box {
	width: 100%;
	text-decoration: none;
	color: rgb(7,7,7);
	text-align: left;
	font-size: 13px;
	cursor: pointer;
	padding: 8px 13px;
	border-top: solid 1px rgb(222, 225, 229);
}




/* small stream picture */
.map_feature_picture_wrap {
	float: right;
	width: 34px;
	height: 34px;
	border-radius: 3px;
	position: relative;
	background-color: white;
	padding: 5px;
}
.map_feature_picture_wrap.black {
	background-color: rgb(89, 89, 89);
}
.map_feature_picture_wrap:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	border: 1px solid rgba(0,0,0,.21);
	border-radius: 7px;
	content: '';
}
.map_feature_picture_wrap img {
	width: 100%;
	height: 100%;
	border-radius: 3px;
}





/* map feature form */



.map_feature_grey_wrap {
	display: table;
	border: solid 1px rgb(222, 225, 229);
	border-radius: 7px;
	background-color: rgb(241,241,241);
	width: 100%;
}




.menu-one-item334 {
	width: 100%;
	display: table;
	text-decoration: none;
	color: rgb(7,7,7);
	text-align: left;
	font-size: 13px;
	/* overflow: hidden; */
	cursor: pointer;
	padding: 8px 13px;
	background-color: white;
}








/* advanced map feature wrap */
.map_feature_wrap {
	width: 100%;
	display: table;
	text-decoration: none;
	color: rgb(7,7,7);
	text-align: left;
	font-size: 13px;
	cursor: pointer;
	padding: 8px 13px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.map_feature_wrap.active {
	background-color: rgb(241,241,241);
}

.ios_switch_button_text {
	float: left;
	margin-top: 5px;
}


.map_feature_form_input_wrap {
	padding: 8px 13px;
}

.ios_switch_buttons_wrap {
	border-radius: 7px;
	display: table;
	width: 100%;
	border: solid 1px rgb(198, 198, 198);
	 color: rgb(7,7,7);
	 font-size: 13px;
	 margin-bottom: 13px;
}

.pro_map_form_wrap {
	width: 100%;
	display: table;
	position: relative;
	margin: 0px auto;
	margin-bottom: 17px;
}
.map_feature_button_text {
	float: left;
	font-size: 13px;
	margin-top: 8px;
}


/* small stream picture */
.small_stream_picture_wrap {
	float: right;
	width: 34px;
	height: 34px;
	border-radius: 3px;
	position: relative;
	background-color: white;
	padding: 5px;
}
.small_stream_picture_wrap.black {
	background-color: rgb(89, 89, 89);
}
.small_stream_picture_wrap:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 7px;
	content: '';
}
.small_stream_picture_img {
	width: 100%;
	height: 100%;
	border-radius: 3px;
}
.line_width_wrap {
	float: right;
	font-size: 18px;
	position: relative;
	padding: 5px;
}
.editor_range_label_text45 {
	float: left;
	font-size: 13px;
	margin-top: 8px;
}
.map_feature_form_input_wrap90 {
	padding-top: 13px;
}





























/* hz_ab_list */
.hz_ab_list_wrap {
	width: 100%;
	display: table;
	margin-bottom: 17px;/* add space on bottom */
}
.hz_ab_list {
	width: 100%;
	display: table;
	table-layout: fixed;
	cursor: pointer;
}
.hz_ab_list_item_wrap {
	display: table-cell;
	padding: 3px;/* addd spaces between list items */
}
.hz_ab_list_item {
	display: block;
	text-align: center;
	margin: 0 auto;
	padding-bottom: 50%;
}

/* cube_list */
.cube_list_wrap {/* cube_list_wrap */
	background-color: red;
	width: 100%;
	padding-bottom: 100%;
	position: relative;
}
.cube_list {/* cube_list */
	width: 100%;
	height: 50%;
	position: absolute;
}
.cube_list.one {
   top: 0;
   background-color: red;
}
.cube_list.two {
   bottom: 0;
   background-color: orange;
}
.cube_list_cube {/* cube_list_cube */
	width: 50%;
	height: 100%;
	position: absolute;
}
.cube_list_cube.one {
	top: 0;
	left: 0;
	background-color: red;
}
.cube_list_cube.two {
	top: 0;
	right: 0;
	background-color: orange;
}
.cube_list_cube.three {
	left: 0;
	bottom: 0;
	background-color: yellow;
}
.cube_list_cube.four {
	right: 0;
	bottom: 0;
	background-color: green;
}
.cube_list_cube_content {
	background-color: aliceblue;
	height: 100%;
	width: 100%;
	position: relative;
}
/* ... */



.hz_ab_list2_item_wrap_one {
	background-color: orange;
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
}
.hz_ab_list2_item_one {
	top: left;
	left: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	background-color: red;
	top: 0;
}
.hz_ab_list2_item_two {
	top: 0;
	right: 0;
	background-color: orange;
	width: 100%;
	height: 50%;
	position: absolute;
}
.hz_ab_list2_item_three {
	bottom: 0;
	left: 0;
	background-color: orange;
	width: 100%;
	height: 50%;
	position: absolute;
}
.hz_ab_list2_item_four {
	bottom: 0;
	right: 0;
	background-color: orange;
	width: 100%;
	height: 50%;
	position: absolute;
}





.checker {
  display: block;
  font-size: 20vmin;
  height: 1em;
  width: 2.5em;
  box-sizing: content-box;
  padding: 0.15em;
  border-radius: 0.25em;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease; 
  transition: transform .4s ease, -webkit-transform .4s ease;
  cursor: pointer;
}

.checkmark {
  width: 1em;
  height: 1em;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;

	-webkit-transform: translateX(-0.4em);
   	   -moz-transform: translateX(-0.4em);
	    -ms-transform: translateX(-0.4em);
	     -o-transform: translateX(-0.4em);
	        transform: translateX(-0.4em);

  z-index: 5;
}
.checkmark svg {
  display: block;
  background: #e5e5e5;


  	-webkit-transform: translateX(0.4em);
   	   -moz-transform: translateX(0.4em);
	    -ms-transform: translateX(0.4em);
	     -o-transform: translateX(0.4em);
	        transform: translateX(0.4em);
  border-radius: 0.15em;
  transition: background-color .4s ease, -webkit-transform calc(.4s * 1.5) ease;
  transition: background-color .4s ease, transform calc(.4s * 1.5) ease;
  transition: background-color .4s ease, transform calc(.4s * 1.5) ease, -webkit-transform calc(.4s * 1.5) ease;
}
.checkmark svg path {
  stroke-dasharray: 90 90;
  stroke-dashoffset: 90;
  transition: stroke-dashoffset calc(.4s / 3) linear calc(.4s / 3);
}

.checkbox {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  visibility: hidden;
}
.checkbox:checked ~ .checkmark {
	-webkit-transform: translate(1.9em);
   	   -moz-transform: translate(1.9em);
	    -ms-transform: translate(1.9em);
	     -o-transform: translate(1.9em);
	        transform: translate(1.9em);
}
.checkbox:checked ~ .checkmark svg {
  background: #77c44c;
	-webkit-transform: translate(-0.4em);
   	   -moz-transform: translate(-0.4em);
	    -ms-transform: translate(-0.4em);
	     -o-transform: translate(-0.4em);
	        transform: translate(-0.4em);

}
.checkbox:checked ~ .checkmark svg path {
  stroke-dashoffset: 0;
}

.check-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: white;
  z-index: 2;
}
.check-bg:before, .check-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
}
.check-bg:after {
  background: white;
}
.check-bg:before {
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  background: black;
  -webkit-filter: blur(0.25em);
          filter: blur(0.25em);
  opacity: 0.2;
  z-index: -1;
}

.checker.checker:active {


  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  transition-duration: calc(.4s / 2);
}
.checker.checker:active .check-bg::before {
  -webkit-transform: translateY(0) scale(0.8);
          transform: translateY(0) scale(0.8);
  opacity: 0.2;
}




/* ... */
.border {border: dotted 1px rgb(222, 225, 229);}
.red_bg {background-color: red;}
.orange_bg {background-color: orange;}
.yellow_bg {background-color: yellow;}
.green_bg {background-color: green;}
/* perfect box-shadow
	box-shadow: 0 13px 22px -8px rgba(15, 105, 250, 0.8);
	tipppy blue
	HEX: #0f69fa
	RGB: 15, 105, 250
*/



.map_action_buttons_wrap {/* horizontal list */
	width: 100%;
	display: table;

}




















/* active user count modal */


















/* map mode pick */
.map_mode_pick_wrap {
	position: relative;
	overflow: hidden;
	width: 77px;
	margin: 0 auto;
	margin-bottom: 17px;
    border-radius: 34px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.map_mode_pick_checkbox {display: none;}
.map_mode_pick_label {
	outline: 0;
	display: block;
	width: 100%;
	height: 2em;
	position: relative;
	cursor: pointer;
	font-size: 13px;
}
.map_mode_pick_checkbox + .map_mode_pick_label {
	padding: 3px;
	-webkit-transition: all .2s ease;
	        transition: all .2s ease;
	-webkit-perspective: 100px;
	        perspective: 100px;
}
.map_mode_pick_checkbox + .map_mode_pick_label:after, .map_mode_pick_checkbox + .map_mode_pick_label:before {
	display: inline-block;
	width: 100%;
	text-align: center;
	position: absolute;
	line-height: 2em;
	font-weight: 400;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .4s ease;
	        transition: all .4s ease;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.map_mode_pick_checkbox + .map_mode_pick_label:after {/* map mode transition style */
	content: attr(data-tg-on);
	background: #02C66F;
	-webkit-transform: rotateY(-180deg);
	        transform: rotateY(-180deg);
}
.map_mode_pick_checkbox + .map_mode_pick_label:before {/* map mode basic style */
	color: rgb(145,145,145);
    background-color: rgb(241,241,241);
	content: attr(data-tg-off);
}
.map_mode_pick_checkbox + .map_mode_pick_label:hover:before {
	color: rgb(7,7,7); 
}
.map_mode_pick_checkbox + .map_mode_pick_label:active:before {
	-webkit-transform: rotateY(-20deg);
	        transform: rotateY(-20deg);
}
.map_mode_pick_checkbox:checked + .map_mode_pick_label:before {
	-webkit-transform: rotateY(180deg);
	        transform: rotateY(180deg);
}
.map_mode_pick_checkbox:checked + .map_mode_pick_label:after {/* map mode pro style */
	left: 0;
	background-color: rgb(7,7,7);
	color: white;
	-webkit-transform: rotateY(0);
	        transform: rotateY(0);
}
.map_mode_pick_checkbox:checked + .map_mode_pick_label:active:after {
	-webkit-transform: rotateY(20deg);
	        transform: rotateY(20deg);
}




/* map feature pick */
.map_feature_pick_input {display: none;}
.map_feature_pick_wrap {
    display: none;
    margin-top: 21px;
    border-radius: 10px;
}
.map_feature_pick_list_wrap {
    background-color: rgb(255,255,255);
    border-radius: 7px;
    -webkit-box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
   	   -moz-box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
	    -ms-box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
	     -o-box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
	        box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);


}
.map_feature_pick_list {
	width: 100%;
	display: table;
	table-layout: fixed;
	cursor: pointer;
	overflow: hidden;
}
.map_feature_pick_list_item {display: table-cell;}
.map_feature_pick_list_item_inner {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.map_feature_pick_label {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    display: table;
    padding: 7px 0px;
    position: relative;
    color: rgb(7,7,7);
}
.map_feature_pick_input:checked + .map_feature_pick_label {/* checked toggle */
    color: #0f69fa;
    background-color: rgba(0,0,0,0.03);
}
.map_feature_pick_input:not(:checked) + .map_feature_pick_label {/* unchecked toggle */}
.map_feature_pick_input:not(:checked) + .map_feature_pick_label:hover {/* unchecked/hovered toggle */}
.map_feature_pick_icon {
    background-color: transparent;
    border: solid 1px transparent;
    font-size: 21px;
    margin: 7px auto;
    overflow: hidden;
    border-radius: 100%;
    height: 38px;
    width: 38px;
    padding: 7px 3px 0 3px;
    text-align: center;
    position: relative;
    color: rgb(7,7,7);
    border: 1px solid rgba(0,0,0,0);
}
.map_feature_pick_input:checked + .map_feature_pick_label .map_feature_pick_icon {/* checked icon */
    /* background-color: white; */
    color: #0f69fa;
    /* border: solid 1px; */
    /* box-shadow: 0px 1px 2px rgba(15, 105, 250, 0.34), 0px 2px 2px rgb(15 105 255 / 25%); */
}
.map_feature_pick_input:not(:checked) + .map_feature_pick_label .map_feature_pick_icon {/* unchecked icon */}
.map_feature_pick_input:not(:checked) + .map_feature_pick_label:hover .map_feature_pick_icon {/* unchecked/hovered icon */}
.map_feature_pick_label_text {/* label text */
    position: relative;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 7px;
}














/* map feature form */
.map_feature_form_wrap {
    width: 100%;
    display: none;
    margin-top: 10px;
}
.map_feature_form {
    width: 100%;
    background-color: rgba(0,0,0,0);
    border-radius: 7px;
    -webkit-box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
   	   -moz-box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
	    -ms-box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
	     -o-box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
	        box-shadow: 0px 5px 7px rgba(15, 105, 250, 0.21), 0px 1px 1px rgba(15, 105, 250, 0.34);
}
.map_feature_form_header {
    width: 100%;
    display: table;
    padding: 10px;
    color: #0f69fa;
    border-bottom: solid 1px rgba(0,0,0,.07);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background: rgba(0,0,0,0.02);
}
.map_feature_form_header_content {
    float: left;
    width: 100%;
}
.map_feature_form_header_icon {
    float: left;
    font-size: 21px;
    line-height: 30px;
    overflow: hidden;
    height: 30px;
    width: 30px;
    padding: 1px 0px 0px 1px;
    text-align: center;
    border-radius: 34px;
    margin-right: 7px;
    color: #0f69fa;
}
.map_feature_form_header_xmark {
    float: right;
    font-size: 17px;
    line-height: 30px;
    overflow: hidden;
    height: 30px;
    width: 30px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    color: rgb(177,177,177);
    background-color: rgba(0,0,0,0.03);
    border: solid 1px rgba(0,0,0,0);
    border-radius: 100%;
    /* background-color: rgb(255,255,255); */
    /* box-shadow: 0px 1px 2px rgba(15, 105, 250, 0.55), 0px 3px 3px rgb(15 105 250 / 21%); */
}
.map_feature_form_header_xmark:hover {
	color: rgb(7,7,7);
}
.map_feature_form_header_text {
    float: left;
    font-size: 11px;
    font-weight: 500;
    line-height: 34px;
    text-transform: uppercase;
}
.map_feature_form_item {
    width: 100%;
    padding: 14px;
    font-size: 11px;
    line-height: 15px;
    display: table;
    cursor: pointer;
    background-color: rgb(255,255,255);
}
.map_feature_form_item.first {border-radius: 0;}
.map_feature_form_item.middle {border-radius: 0;}
.map_feature_form_item.last {
    border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top: solid 1px rgba(0,0,0,.07);
}
.map_feature_form_item.child {
	border-radius: 0;
    border-top: solid 1px rgba(0,0,0,.07);
}
.map_feature_form_item.only {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.map_feature_form_inner_box {
	display: table;
    width: 100%;
    border-radius: 7px;
}
.map_feature_form_item_text {
	float: left;
	font-size: 13px;
    font-weight: 400;
	line-height: 30px;
}
.map_feature_form_item_text_right {
    float: right;
    font-size: 15px;
    display: table;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    line-height: 17px;
    padding: 5px;
    text-align: center;
    background-color: white;
   	border: solid 1px rgba(0,0,0,.14);
    color: rgb(7,7,7);
    font-weight: 400;
}







/* small stream picture */
.map_feature_picture_wrap2 {
    float: right;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    position: relative;
    background-color: white;
    padding: 7px;
}
.map_feature_picture_wrap2.black {background-color: rgb(89, 89, 89);}
.map_feature_picture_wrap2:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	border: solid 1px rgba(0,0,0,.14);
	border-radius: inherit;
	content: '';
}
.map_feature_picture_wrap2 img {
	width: 100%;
	height: 100%;
	border-radius: inherit;
}








/* modal popup */
.modal_default_frost {/* modal general frost */
	-webkit-filter: blur(17px);
	   -moz-filter: blur(17px);
		-ms-filter: blur(17px);
		 -o-filter: blur(17px);
	filter: url("data:image/svg+xml;utf8,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='-5%' y='-5%' width='110%' height='110%'><feGaussianBlur in='SourceGraphic' stdDeviation='5'/></filter></svg>#svgBlur");/* FF doesn't support blur filter, but SVG */
	filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius = '17');
	filter: blur(17px);
}
.popup_modal_general_mask {/* modal general mask */
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	display: none;
	background-color: rgba(0,0,0, 0.4);
	-webkit-overflow-scrolling: touch;
}
.full_screen_loader_mask {/* modal general mask */
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    background-color: rgba(255,255,255, .77);
    -webkit-overflow-scrolling: touch;
}
.popup_modal_general_box_wrap {/* modal general box */
	position: relative;
	z-index: 999;
	max-width: 441px;
	margin: 22px auto;
	padding: 0px 17px;
}
.popup_modal_general_box_header {/* modal general header */
	position: relative;
	padding: 17px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.popup_modal_general_xmark:hover {/* modal general x button hover */
	color: #0f69fa;
}
.popup_modal_general_back {/* modal general x button */
    position: absolute;
    left: 14px;
    top: 14px;
    cursor: pointer;
    font-size: 21px;
    line-height: 34px;
    overflow: hidden;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: rgba(0,0,0,0.07);
    border: solid 1px rgba(0,0,0,0);
    display: none;
}
.popup_modal_general_back:hover {/* modal general x button hover */
	color: #0f69fa;
}
.popup_modal_general_title {/* modal general title text */
    color: rgb(7,7,7);
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
}






















/* modal popup transparent */
.modal_transparent_frost {/* modal transparent frost */
	-webkit-filter: blur(22px);
	   -moz-filter: blur(22px);
		-ms-filter: blur(22px);
		 -o-filter: blur(22px);
	filter: url("data:image/svg+xml;utf21,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='-5%' y='-5%' width='110%' height='110%'><feGaussianBlur in='SourceGraphic' stdDeviation='5'/></filter></svg>#svgBlur");/* FF doesn't support blur filter, but SVG */
	filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius = '21');
	filter: blur(22px);
}
.modal_transparent_mask {/* modal transparent mask */
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	display: none;
	background-color: rgba(0,0,0, 0.4);
	-webkit-overflow-scrolling: touch;
	padding: 17px;
}
.modal_transparent_box {/* modal transparent box */
	position: relative;
	z-index: 999;
	max-width: 441px;
	margin: 17px auto;
	border-radius: 7px;
	background-color: rgba(0,0,0,.17);
}
.modal_transparent_box_header {/* modal transparent box header */
	position: relative;
	padding: 17px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background-color: rgba(0,0,0,.25);
}
.modal_transparent_box_header_text {/* modal transparent box header text */
	color: rgb(255,255,255);
	text-align: center;   
	font-size: 17px;
	font-weight: 400;
}
.modal_transparent_x_button {/* modal transparent x button */
	position: absolute;
    right: 14px;
    top: 14px;
    cursor: pointer;
    font-size: 11px;
    line-height: 34px;
    overflow: hidden;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    padding: 1px 0px 0px 0px;
    text-align: center;
   	color: rgb(255,255,255);
    background-color: rgba(255,255,255,.17);
    border: solid 1px rgba(0,0,0,0);
}
.modal_transparent_x_button:hover {/* modal transparent x button hover */
	color: #0f69fa;
}
.modal_transparent_button_wrap {/* modal transparent button wrap */
	padding: 17px;
	width: 100%;
	display: table;
	background-color: rgba(0,0,0,.25);
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
.modal_transparent_link_button {/* modal transparent link button */
	color: white;
	padding: 17px 25px;
	background-color: rgba(255,255,255,.17);
	border-radius: 7px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	float: left;
}
.modal_transparent_submit_button {/* modal transparent submit button */
	color: white;
	padding: 17px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	background-color: rgba(255,255,255,.17);
	border-radius: 7px;
	float: right;
}
.modal_transparent_box_content_wrap {/* modal transparent content wrap */}
















/* popup modal mask */


/* popup modal box */





/* popup modal content */
.popup_modal_general_img_wrap {
	padding: 14px;
	text-align: center;
}
.popup_modal_general_img {
	max-width: 77px; 
	max-height: 100px;
}
.popup_modal_general_description {
	color: rgb(7,7,7);
	font-size: 17px;
	font-weight: 400;
	padding: 0px 17px;
	text-align: center;
}
.popup_modal_general_box {
	background-color: rgb(255, 255, 255);
	border-radius: 21px;
	margin: 10px auto;
	padding: 21px;
	position: relative;
	-webkit-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
   	   -moz-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	    -ms-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	     -o-box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);
	        box-shadow: 0px 14px 28px rgba(0,0,0,0.21), 0px 10px 10px rgba(0,0,0,0.13);

}
.popup_modal_general_button_wrap {/* popup modal button wrap */
	padding: 13px;
	width: 100%;
	display: table;
	background-color: rgb(255,255,255);
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	text-align: center;
}
.popup_modal_general_buttons_wrap {/* popup modal multiple buttons wrap */
    padding: 17px;
    width: 100%;
    display: table;
    background-color: rgb(255,255,255);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.popup_modal_general_submit_button {
	color: white;
	padding: 14px;
	text-align: center;
	text-decoration: none;
	cursor: pointer; 
	font-size: 17px;
	font-weight: 400;
	background-color: #0f69fa;
	border-radius: 7px;
}
.popup_modal_general_submit_button_grey {
	color: rgb(117,117,117);
	padding: 14px;
	text-align: center;
	text-decoration: none;
	cursor: pointer; 
	font-size: 17px;
	font-weight: 400;
	background-color: rgb(247,247,247);
	border-radius: 7px;
}
.popup_modal_general_link {
	color: rgb(117, 117, 117);
	padding: 8px 17px;
	background-color: rgb(255,255,255);
	border: solid 1px rgb(198, 198, 198);
	border-radius: 7px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	float: left;
}
.popup_modal_general_tips_link {
	text-decoration: underline;
	cursor: pointer;
	color: rgb(117, 117, 117);
	font-size: 13px;
	margin: 17px;
	font-weight: 400;
	margin-top: 0;
}

/* stripe payment gateway */

/*
.StripeElement--complete
.StripeElement--empty
.StripeElement--focus
.StripeElement--invalid
.StripeElement--webkit-autofill (Chrome and Safari only)
*/


.StripeElement {
    box-sizing: border-box;
}
.StripeElement--focus {box-shadow: none;}
.StripeElement--invalid {border-color: #fa755a;}
.StripeElement--webkit-autofill {background-color: #fefde5 !important;}


.StripeElement--focus::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(117, 117, 117);
}
.StripeElement--focus:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(117, 117, 117);
    opacity: 1;
}
.StripeElement--focus::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(117, 117, 117);
    opacity: 1;
}
.StripeElement--focus:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(117, 117, 117);
}
.StripeElement--focus::placeholder {/* Internet Explorer 10-11 */
    color: rgb(117, 117, 117);
}
.stripe_update_stripe_customer_card_element {

}



.stripe_subscribe_user_input {
    font-size: 14px !important;
    padding: 14px !important;
    margin-bottom: 17px !important;
    transition: all 377ms linear !important;
    border-radius: 21px !important;
    background-color: rgb(245, 245, 245) !important;
    color: rgb(34, 34, 34) !important;
    border: solid 1px rgb(221, 221, 221) !important;
    border-top: solid 1px rgb(208, 208, 208) !important;
}
.stripe_update_card_element {
    font-size: 14px !important;
    padding: 14px !important;
    margin-bottom: 17px !important;
    transition: all 377ms linear !important;
    border-radius: 21px !important;
    background-color: rgb(245, 245, 245) !important;
    color: rgb(34, 34, 34) !important;
    border: solid 1px rgb(221, 221, 221) !important;
    border-top: solid 1px rgb(208, 208, 208) !important;
}
.stripe_update_card_error {
    display: none;
    font-size: 14px;
    font-weight: 500;
    color: rgb(222, 19, 35);
    padding: 14px;
    margin: 0px auto;
    border-radius: 21px;
    background-color: transparent;
    text-align: center;
    box-shadow: rgb(222, 19, 35, .3) 0px 2px 5px -1px, rgb(222, 19, 35, .4) 0px 1px 3px -1px;
}
/* solo class */
/* small stream picture */
.map_feature_picture_wrap2 {position: relative;}
.map_feature_picture_wrap2:after {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	border: 1px solid rgba(0,0,0,.17);
	border-radius: inherit;
	content: '';
}
.display_none {display: none;}
.flat_shadow {/* add long flat font shadow */
	background: #4099FF;
	color: white;
	text-shadow: 0px 0px 0 #0d7eff,1px 1px 0 #0d7eff,2px 2px 0 #0d7eff,3px 3px 0 #0d7eff,4px 4px 0 #0d7eff,5px 5px 0 #0d7eff,6px 6px 0 #0d7eff,7px 7px 0 #0d7eff,8px 8px 0 #0d7eff,9px 9px 0 #0d7eff,10px 10px 0 #0d7eff,11px 11px 0 #0d7eff,12px 12px 0 #0d7eff,13px 13px 0 #0d7eff,14px 14px 0 #0d7eff,15px 15px 0 #0d7eff,16px 16px 0 #0d7eff,17px 17px 0 #0d7eff,18px 18px 0 #0d7eff,19px 19px 0 #0d7eff,20px 20px 0 #0d7eff,22px 22px 0 #0d7eff,22px 22px 0 #0d7eff,23px 23px 0 #0d7eff,24px 24px 0 #0d7eff,25px 25px 0 #0d7eff,26px 26px 0 #0d7eff,27px 27px 0 #0d7eff,28px 28px 0 #0d7eff,29px 29px 0 #0d7eff,30px 30px 0 #0d7eff,31px 31px 0 #0d7eff,32px 32px 0 #0d7eff,33px 33px 0 #0d7eff,34px 34px 0 #0d7eff,35px 35px 0 #0d7eff,36px 36px 0 #0d7eff,37px 37px 0 #0d7eff,38px 38px 0 #0d7eff,39px 39px 0 #0d7eff,40px 40px 0 #0d7eff,41px 41px 0 #0d7eff,42px 42px 0 #0d7eff,43px 43px 0 #0d7eff,44px 44px 0 #0d7eff,45px 45px 0 #0d7eff,46px 46px 0 #0d7eff,47px 47px 0 #0d7eff,48px 48px 0 #0d7eff,49px 49px 0 #0d7eff,50px 50px 0 #0d7eff,51px 51px 0 #0d7eff,52px 52px 0 #0d7eff,53px 53px 0 #0d7eff,1px 1px 0 rgba(13, 126, 255, 0.98182),2px 2px 0 rgba(13, 126, 255, 0.96364),3px 3px 0 rgba(13, 126, 255, 0.94545),4px 4px 0 rgba(13, 126, 255, 0.92727),5px 5px 0 rgba(13, 126, 255, 0.90909),6px 6px 0 rgba(13, 126, 255, 0.89091),7px 7px 0 rgba(13, 126, 255, 0.87273),8px 8px 0 rgba(13, 126, 255, 0.85455),9px 9px 0 rgba(13, 126, 255, 0.83636),10px 10px 0 rgba(13, 126, 255, 0.81818),11px 11px 0 rgba(13, 126, 255, 0.8),12px 12px 0 rgba(13, 126, 255, 0.78182),13px 13px 0 rgba(13, 126, 255, 0.76364),14px 14px 0 rgba(13, 126, 255, 0.74545),15px 15px 0 rgba(13, 126, 255, 0.72727),16px 16px 0 rgba(13, 126, 255, 0.70909),17px 17px 0 rgba(13, 126, 255, 0.69091),18px 18px 0 rgba(13, 126, 255, 0.67273),19px 19px 0 rgba(13, 126, 255, 0.65455),20px 20px 0 rgba(13, 126, 255, 0.63636),22px 22px 0 rgba(13, 126, 255, 0.61818),22px 22px 0 rgba(13, 126, 255, 0.6),23px 23px 0 rgba(13, 126, 255, 0.58182),24px 24px 0 rgba(13, 126, 255, 0.56364),25px 25px 0 rgba(13, 126, 255, 0.54545),26px 26px 0 rgba(13, 126, 255, 0.52727),27px 27px 0 rgba(13, 126, 255, 0.50909),28px 28px 0 rgba(13, 126, 255, 0.49091),29px 29px 0 rgba(13, 126, 255, 0.47273),30px 30px 0 rgba(13, 126, 255, 0.45455),31px 31px 0 rgba(13, 126, 255, 0.43636),32px 32px 0 rgba(13, 126, 255, 0.41818),33px 33px 0 rgba(13, 126, 255, 0.4),34px 34px 0 rgba(13, 126, 255, 0.38182),35px 35px 0 rgba(13, 126, 255, 0.36364),36px 36px 0 rgba(13, 126, 255, 0.34545),37px 37px 0 rgba(13, 126, 255, 0.32727),38px 38px 0 rgba(13, 126, 255, 0.30909),39px 39px 0 rgba(13, 126, 255, 0.29091),40px 40px 0 rgba(13, 126, 255, 0.27273),41px 41px 0 rgba(13, 126, 255, 0.25455),42px 42px 0 rgba(13, 126, 255, 0.23636),43px 43px 0 rgba(13, 126, 255, 0.21818),44px 44px 0 rgba(13, 126, 255, 0.2),45px 45px 0 rgba(13, 126, 255, 0.18182),46px 46px 0 rgba(13, 126, 255, 0.16364),47px 47px 0 rgba(13, 126, 255, 0.14545),48px 48px 0 rgba(13, 126, 255, 0.12727),49px 49px 0 rgba(13, 126, 255, 0.10909),50px 50px 0 rgba(13, 126, 255, 0.09091),51px 51px 0 rgba(13, 126, 255, 0.07273),52px 52px 0 rgba(13, 126, 255, 0.05455),53px 53px 0 rgba(13, 126, 255, 0.03636),55px 55px 0 rgba(13, 126, 255, 0);
}
.disable_scroll {/* disable scroll & hide scrollbar */
	position: fixed;
	overflow: hidden;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}
.disable_select {/* disable double-click select */
	-webkit-user-select: none;/* chrome/safari */
	-moz-user-select: none;/* firefox */
	-ms-user-select: none;/* ie10+ */
	-o-user-select: none;/* opera */
	user-select: none;
}
/*
|--------|---------|-------------|
| color  | hex     | rgb         |
|--------|---------|-------------|
| red    | #e10b17 | 225,11,23   |
| orange | #fe9c27 | 254,156,39  |
| yellow | #fabc2d | 250,188,45  |
| green  | #17a41a | 20,143,22   |
| blue   | #0f69fa | 15,105,250  |
| indigo | #6e68f2 | 110,104,232 |
| violet | #ba40fb | 186,64,251  | */

/* form modal popup */
.form_modal_input {
    width: 100%;
    margin-bottom: 21px;
    padding: 14px;
    border: solid 3px rgba(0,0,0,.07);
    /* border-top: solid 1px rgba(0,0,0,.14); */
    background-color: rgba(0,0,0,0.0);
    font-size: 14px;
    border-radius: 7px;
    transition: all 377ms linear;
    font-weight: 500px;
}
.form_modal_submit_button {
	cursor: pointer;
	font-size: 17px; 
	font-weight: 400;
	color: white;
	text-align: center;
	border-radius: 7px;
	padding: 17px;
	background-color: #0f69fa;
	border-bottom: solid 4px rgba(0,0,0,.14);
	transition: all 377ms ease;
	/* box-shadow: 0 13px 22px -8px rgba(15, 105, 250, 0.8); */
}
.form_modal_submit_button:hover {
	background-color: #0f69fa;
}
.form_modal_submit_button:active {
	background-color: #0f69fa;
}
.form_modal_options_wrap {
    padding: 0px 34px;
    margin-top: 17px;
}
.form_modal_option {
	display: table;
    width: 100%;
    border-radius: 7px;
    cursor: pointer;
    margin-bottom: 17px;
    padding:  17px;
	color: rgb(17, 17, 17);
	background-color: #EDEDED;
}
.form_modal_option:hover {
	background-color: #EDEDED;
}
.form_modal_option:active {
	background-color: rgb(200,200,200);
}
.form_modal_option_content {
    float: left;
    width: 100%;
}
.form_modal_option_icon {
    float: left;
    font-size: 20px;
    line-height: 40px;
    overflow: hidden;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 2px 0px 0px 0px;
    text-align: center;
}
.form_modal_option_text {
	float: left;
    font-size: 15px;
    font-weight: 400;
   	line-height: 40px;
}
.form_modal_buttons_wrap {
    width: 100%;
    display: table;
    padding: 17px 0px;
}
.form_modal_link {
    color: rgb(34,34,34);
    padding: 14px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    float: left;
    color: rgb(7,7,7);
    border-radius: 34px;
}
.form_modal_link:hover {
	background-color: rgba(0,0,0,0.07);
}
.form_modal_link2 {
	color: rgb(117, 117, 117);
	text-decoration: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	padding: 8px 17px;
	width: 100%;
}
.form_modal_link2:hover {
	background-color: #EDEDED;
}
.form_modal_submit_button2 {
    color: white;
    padding: 14px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    background-color: #0f69fa;
    border-radius: 34px;
    transition: all 377ms ease;
    float: right;
}

.form_modal_description {
    font-size: 14px;
    color: rgb(77,77,77);
    font-weight: 400;
    text-align: center;
    padding: 17px;
}


.form_modal_link_bottom {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: rgb(77,77,77);
    font-weight: 400;
    text-align: center;
    padding: 27px;
    border-top: solid 1px rgb(233,233,233);
    border-radius: 0px;
    cursor: pointer;
}
.form_modal_link_bottom:hover {
	text-decoration: underline;
}

.form_modal_inputbw {
	width: 100%;
	margin-bottom: 21px;
	padding: 17px;
	border: solid 2px rgba(0,0,0,0);
	background-color: rgba(0,0,0,0);
	font-size: 14px;
	border-radius: 7px;
	transition: all 377ms linear;
	font-weight: 500px;
}





/*--- pricing plan ---*/
.container {
	margin: 0 auto;
	padding: 55px 21px;
	max-width: 960px;
	width: 100%;
}
.panel {
	background-color: #fff;
	padding: 15px 25px;
	position: relative;
	width: 100%;
	z-index: 10;
}


/*---  privacy policy / terms info page ---*/
.info_page_wrap {
    margin: 21px;
    border-radius: 10px;
    overflow: hidden;
    margin: 34px auto;
    padding: 34px;
    background-color: rgb(255,255,255);
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	        box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
.info_page_inner {
	float: left;
	width: 391px;
	position: relative;
	padding-top: 34px;
}
.info_page_content {
	width: 100%;
}
.info_page_title {
    color: #202124;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    padding-top: 21px;
}
.info_page_header {
    color: #202124;
    font-size: 22px;
    font-weight: 400;
    padding-top: 34px;
    width: 100%;
}
.info_page_description {
    color: #202124;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    padding-top: 4px;
}
.info_page_media_wrap {
	float: left;
	width: 631px;
	position: relative;
	padding: 17px;
}
.info_page_img {
	width: 100%;
}
.info_page_note {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	width: 269px;
	margin: 22px auto;
	padding: 13px;
	background-color: rgb(255, 255, 255);
	color: rgb(89, 89, 89); 
	border: solid 2px rgb(200, 200, 200);
}


.general_page_wrap {
    min-height: 100%;
    position: relative;
    padding: 17px;
    padding-top: 68px;
    max-width: 777px;
    margin: 0 auto;
}



.tippyPrivacyPolicyFooterItemCo777 {
    float: left;
    padding: 34px 21px;
}




/*--- nav bar user icon ---*/
.nav_bar_user_icon {/* nav bar user icon */
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    text-align: center;
    color: rgb(121,121,121);
    background-color: rgb(255,255,255);
    border: solid 1px rgba(0,0,0,0.17);
    text-transform: uppercase;
    float: right;
    margin-left: 7px;
}
.nav_bar_user_icon:hover {/* nav bar user icon on hover */
	color: #0f69fa;
}






























/*--- contact page ---*/
.contact_page_wrap {
    min-height: 100%;
    position: relative;
    max-width: 713px;
    margin: 0 auto;
    padding: 34px 21px;
}
.contact_wrap {
    background-color: rgb(255, 255, 255);
    border-radius: 7px;;
    margin: 0px auto;
    margin: 55px auto;
    position: relative;
    text-align: center;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	        box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    overflow: hidden;
    padding: 34px;
}
.contact_title_text {
    color: rgb(17,17,17);
    font-size: 27px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    padding-top: 21px;
}
.contact_description_text {
    text-align: center;
    padding-top: 14px;
    font-size: 17px;
}
.contact_input:focus ~ .contact_label, .contact_textarea:focus ~ .contact_label, .contact_input:valid ~ .contact_label, .contact_textarea:valid ~ .contact_label {
    font-size: 0.75em;
    color: #999;
    top: -5px;
    -webkit-transition: all 0.225s ease;
    transition: all 0.225s ease;
}
.contact_styled_input {
    float: left;
    width: 293px;
    margin: 7px 0;
    position: relative;
    border-radius: 7px;
}
@media only screen and (max-width: 768px){
    .contact_styled_input {
        width:100%;
    }
}
.contact_styled_input .contact_label {
    color: #999;
    padding: 1.3rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    pointer-events: none;
}
.contact_styled_input.wide { 
    width: 650px;
    max-width: 100%;
}
.contact_input,
.contact_textarea {
    padding: 30px;
    border: 0;
    width: 100%;
    font-size: 1rem;
    background-color: #2d2d2d;
    color: white;
    border-radius: 7px;;;
}
.contact_input:focus,
.contact_textarea:focus {
	outline: 0;
}
.contact_input:focus ~ span,
.contact_textarea:focus ~ span {
    width: 100%;
    -webkit-transition: all 0.075s ease;
    transition: all 0.075s ease;
}
.contact_textarea {
    width: 100%;
    min-height: 15em;
}
.contact_form_wrap {
    width: 650px;
    max-width: 100%;
    margin: 7px auto 0px auto;
}
.contact_form_submit_wrap {
    padding-top: 7px;
    display: block;
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.contact_form_submit_button {
    padding: 21px 55px;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    color: white;
    background-color: #17A41A;
    border-radius: 7px;
    font-weight: 400;
    border-bottom: solid 4px rgba(0,0,0,.14);
    margin: 0 auto;
}
.contact_form_submit_button:active {
    border-top: solid 4px rgba(0,0,0,.14);
    border-bottom: none;
}
.contact_form_submit_button:hover {
   background-color: #17A42A;
}
@media (max-width: 768px) {
    .contact_form_submit_button {
        width:100%;
        float: none;
        text-align:center;
    }
}
.contact_input[type=checkbox] + .contact_label {
  color: #ccc;
  font-style: italic;
} 
.contact_input[type=checkbox]:checked + .contact_label {
  color: #f00;
  font-style: normal;
}
/*-- gps map box --*/
.gps_map_box_logo {
    max-width: 89px;
    max-height: 89px;
    padding: 7px;
    background: white;
    border-radius: 100%;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
   	   -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
	    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
	     -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
	        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);

}
.gps_map_box_logo_wrap {
    text-align: center;
    width: 100%;
}

.gps_map_form_wrap {
    margin-top: 21px;
}



/*--- price plans ---*/
#pricing {
	margin: 100px auto;
	width: 100%;
	font-family: 'Open Sans', Helvetica;
}
.price_card {
    width: 300px;
    background: rgb(255, 255, 255);
    display: inline-table; 
    top: 0;
    border-radius: 17px;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	        box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    margin-bottom: 17px;
}
.price_card:not(:last-child) {margin-right: 40px;}
.header {
    color: rgb(255, 255, 255);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.alpha .header {
    background: rgb(250,250,250);
    color: rgb(225,11,23);
    border-bottom: solid 1px rgb(233,233,233);
}
.bravo .header {
    background: rgb(250,250,250);
    color: rgb(250, 188, 45);
    border-bottom: solid 1px rgb(233,233,233);
}
.charlie .header {
    background: rgb(250,250,250);
    color: rgb(23, 164, 26);
    border-bottom: solid 1px rgb(233,233,233);
}
.price {
    width: 100%;
    font-size: 34px;
    font-weight: 400;
    display: block;
    text-align: center;
    padding: 30px 0 17px;
}
.name {
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    display: block;
    text-align: center;
    padding: 0 0 30px;
}
.features {
    list-style: none;
    text-align: center;
    color: rgb(117,117,117);
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    padding: 0;
}
.features li {
    margin: 0 17px;
    padding: 17px 0px;
    border-radius: 0;
}
.features li:not(:last-child) {
    border: 1px solid rgb(244,244,244);
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
.plan_select_button {
    color: rgb(255, 255, 255);
    border: 0;
    border-radius: 7px;
    height: 44px;
    width: 233px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin: 17px auto 34px;
    cursor: pointer;
}
.alpha .plan_select_button {
	background: rgb(225, 11, 23);
	-webkit-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
   	   -moz-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
	    -ms-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
	     -o-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
	        box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
}
.bravo .plan_select_button {
	background: rgb(250, 188, 45);
	-webkit-box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
   	   -moz-box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
	    -ms-box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
	     -o-box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
	        box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
}
.charlie .plan_select_button {
	background: rgb(23, 164, 26);
	-webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
   	   -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
	    -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
	     -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
	        box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
}
/*--- stripe header ---*/
#stripes, #stripes span {
    position: absolute;
}

#stripes {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transform: skewY(-12deg);
    transform: skewY(-12deg);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    background: linear-gradient(150deg,#EAECEC 15%,#F4F5F5 70%,#ffffff 94%);
    z-index: -999;
}

#stripes span {
    height: 40px;
}

#stripes :first-child {
    width: 50%;
    left: 50%;
    top: 40px;
    background: #F5F5F5;
}

#stripes :nth-child(2) {
    width: 14%;
    right: 0;
    bottom: 40px;
    background: #F5F5F5;
}

#stripes :nth-child(3) {
    width: 25%;
    bottom: 0;
    right: 0;
    background: #e1e1e1;
}

@media (min-width: 670px) {
	header { 
		height: 600px;
	}
	
	#stripes span {
    height: 150px;
	}
	
	#stripes :first-child {
    top: 0;
    background: #F4F5F5;
	}
	
	#stripes :nth-child(2) {
    width: 16.66667%;
    top: 300px;
    bottom: auto;
    background: #F4F5F5;
	}
	
	#stripes :nth-child(3) {
    width: 33.33333%;
    right: auto;
    background: #EAECEC;
	}
}

@media (min-width: 880px) {
	header { 
		height: 760px;
	}
	
	#stripes span {
		height: 190px;
	}
	
	#stripes :first-child {
    width: 33.33333%;
    left: -16.66666%;
    background: #F5F5F5;
	}
	
	#stripes :nth-child(2) {
    width: 33.33333%;
    top: 0;
    left: 16.66666%;
    right: auto;
    background: #F5F5F5;
	}
	
	#stripes :nth-child(3) {
    width: 33.33333%;
    left: 49.99999%;
    bottom: auto;
    background: #F5F5F5;
	}
	
	#stripes :nth-child(4) {
    width: 33.33333%;
    top: 380px;
    right: -16.66666%;
    background: #F5F5F5;
	}
	
	#stripes :nth-child(5) {
    width: 33.33333%;
    bottom: 0;
    background: #F4F5F5;
	}
}


.sample_box_shadow {
	
    -webkit-box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0,0,0,.12);
   	   -moz-box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0,0,0,.12);
	    -ms-box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0,0,0,.12);
	     -o-box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0,0,0,.12);
	        box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0,0,0,.12);
}






/* --- nav bar option --- */
.nav_bar_option {
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    text-align: center;
    text-transform: uppercase;
    float: right;
    margin-left: 17px;
    color: rgb(7,7,7);
    background-color: rgba(0,0,0,0.07);
    border: solid 1px rgba(0,0,0,0);
}
.nav_bar_option:hover {/* nav bar option on hover */
	color: #0f69fa;
}
.nav_bar_option_letter {/* nav bar option letter */
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    text-align: center;
    text-transform: uppercase;
    float: right;
    margin-left: 12px;
    color: rgb(7,7,7);
    background-color: rgba(0,0,0,0.07);
    border: solid 1px rgba(0,0,0,0);
}
.nav_bar_option_icon_wrap {/* nav bar option icon wrap */
	cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    text-align: center;
    text-transform: uppercase;
    float: right;
    margin-left: 17px;
    color: rgb(7,7,7);
    background-color: rgba(0,0,0,0.07);
    border: solid 1px rgba(0,0,0,0);
}
.nav_bar_option_icon {/* nav bar option icon */
	font-size: 14px;
}
/*--- profile modal poopup ---*/
.profile_modal_items_wrap {
    padding: 13px;
}
.profile_modal_button {
	overflow: hidden;
    width: 100%;
    border-radius: 7px;
    cursor: pointer;
    margin-bottom: 4px;
    padding:  11px;
	color: rgb(17, 17, 17);
}
.profile_modal_button:hover {
	background-color: #EDEDED;
}
.profile_modal_button:active {
	background-color: rgb(200,200,200);
}


.profile_modal_button_red {
    overflow: hidden;
    width: 100%;
    border-radius: 7px;
    cursor: pointer;
    margin-top: 17px;
    padding: 11px;
    color: #de1323;
    border: solid 2px #de1323;
    background-color: white;
}

.profile_modal_item_wrap {
    overflow: hidden;
    width: 100%;
    border-radius: 7px;
    cursor: pointer;
    padding: 11px;
    color: rgb(17, 17, 17);
}
.profile_modal_item_content {
    float: left;
    width: 100%;
}
.profile_modal_button_icon {
    float: left;
    font-size: 27px;
    line-height: 40px;
    overflow: hidden;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 2px 0px 0px 0px;
    text-align: center;
}
.profile_modal_button_text {
	float: left;
    font-size: 15px;
    font-weight: 500;
    line-height: 40px;
}
.profile_modal_form_icon {
    font-size: 27px;
    line-height: 40px;
    overflow: hidden;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    margin: 0 auto;
}
.profile_modal_form_description {
    font-size: 15px;
    color: rgb(7,7,7);
    font-weight: 400;
    text-align: center;
    margin-top: 13px;
}
.profile_modal_form_icon_wrap {
    overflow: hidden;
    width: 100%;
}
.profile_modal_form_divider {
    margin: 17px auto;
    border-bottom: solid 1px rgb(240, 240, 240);
}















/*--- trusted by section ---*/
@-webkit-keyframes scroll {
  0% {
  	-webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
  	-webkit-transform: translateX(calc(-250px * 7));
       -moz-transform: translateX(calc(-250px * 7));
        -ms-transform: translateX(calc(-250px * 7));
         -o-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
    
  }
} 

@keyframes scroll {
  0% {
  	-webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
  	-webkit-transform: translateX(calc(-250px * 7));
       -moz-transform: translateX(calc(-250px * 7));
        -ms-transform: translateX(calc(-250px * 7));
         -o-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}
.slider {
    background: white;
    height: 100px;
    margin: 21px auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.slider::before, .slider::after {
	background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 100px;
	position: absolute;
	width: 200px;
	z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;

    -webkit-transform: rotateZ(180deg);
       -moz-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
         -o-transform: rotateZ(180deg);
            transform: rotateZ(180deg);

  
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
	-webkit-animation: scroll 40s linear infinite;
       -moz-animation: scroll 40s linear infinite;
        -ms-animation: scroll 40s linear infinite;
         -o-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;

  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}
.slider .slide img {
	min-width: 100%;
}
/*--- site footer ---*/
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}















/*--- site landing page ---*/


/*--- cool wiggly globe css loader ---*/
.fullscreen_loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);

    -webkit-animation: fullscreen_loader_animation 0.8s linear infinite;
       -moz-animation: fullscreen_loader_animation 0.8s linear infinite;
        -ms-animation: fullscreen_loader_animation 0.8s linear infinite;
         -o-animation: fullscreen_loader_animation 0.8s linear infinite;
            animation: fullscreen_loader_animation 0.8s linear infinite;
    margin: 50% auto;
}
@keyframes fullscreen_loader_animation
{
    0%
    {
        
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    }
    100%
    {

    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
    }
}
.fullscreen_loader span
{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
    -webkit-animation: fullscreen_loader_animation 0.8s linear infinite;
       -moz-animation: fullscreen_loader_animation 0.8s linear infinite;
        -ms-animation: fullscreen_loader_animation 0.8s linear infinite;
         -o-animation: fullscreen_loader_animation 0.8s linear infinite;
            animation: fullscreen_loader_animation 0.8s linear infinite;
}
.fullscreen_loader span:nth-child(1)
{
    filter: blur(5px);
}
.fullscreen_loader span:nth-child(2)
{
    filter: blur(10px);
}
.fullscreen_loader span:nth-child(3)
{
    filter: blur(25px);
}
.fullscreen_loader span:nth-child(4)
{
    filter: blur(50px);
}
.fullscreen_loader:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: transparent;
    border-radius: 50%;
}
/*--- oil price wrap ---*/
.oil_price_wrap1 {
    color: rgb(17,17,17);
    font-size: 14px;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}
.oil_price_wrap2 {
    background-color: rgb(255,255,255);
    border-bottom: solid 1px rgb(233,233,233);
    height: 24px;
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 34px;
    border-radius: 0;
}
.oil_price_wrap3 {
	color: rgb(17,17,17);
	text-decoration: none;
}
.oil_price_box {
    border-radius: 7px;
    background-color: rgb(255, 255, 255);
    color: rgb(7,7,7);
    font-size: 13px;
    word-wrap: break-word;
    padding: 25px;
    margin: 17px auto;
    max-width: 377px;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	        box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
/* --- trusted by section --- */
.trusted_by_text_wrap {
    width: 100%;
    text-align: center;
    padding: 17px;
    color: rgb(134,134,134);
    font-weight: 500;
    font-size: 15px;
}
.trusted_by_text {}



/* --- register popup modal --- */
.login_policy_text {
    display: table;
    font-size: 14px;
    color: rgb(134,134,134);
    margin: 0px auto;
    margin-bottom: 13px;
    line-height: 17px;
    text-align: center;
}
.login_policy_text3 {
    display: inline-block;
    font-size: 14px;
    color: rgb(77,77,77);
    font-weight: 400;
    margin: 0 auto;
    line-height: 17px;
}

/* --- device mockup --- */
div.screenshots {
    position: relative;
    width: 100%;
    height: 300px;
    margin: auto 0 auto;
}
.screenshot {
	border-radius: 12px;
	border: 4px solid white;
	padding: 0;
	margin: 0;
	height: auto;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
   	   -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	    -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	     -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.screenshot img {
    display: block;
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
.screenshot.desktop {
	position: absolute;
	width: 400px;
	height: auto;
	left: 0;
	bottom: 20px;
	border-top-width: 18px;
}
.screenshot.desktop img {
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}
.screenshot.tablet {
    position: absolute;
    width: 225px;
    height: auto;
    right: 50px;
    bottom: 10px;
    border-left-width: 22.4px;
    border-right-width: 22.4px;
    border-color: white;
}
.screenshot.phone {
	position: absolute;
	width: 80px;
	height: auto;
	left: 40px;
	bottom: 0px;
	border-top-width: 16px;
	border-bottom-width: 16px;
	border-color: white;
}

/*--- email verify form ---*/
.email_verify_form_box {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    margin: 17px auto;
    position: relative;
    padding: 34px;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
   	   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	     -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
	        box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
.email_verify_form_wrap {
	margin-top: 17px;
}
.email_verify_form_title {
    color: rgb(7,7,7);
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    margin-top: 17px;
}
.email_verify_form_description {
    font-size: 15px;
    color: rgb(134, 134, 134);
    font-weight: 400;
    text-align: left;
    margin-top: 13px;
}

.email_verify_form_description span {
	color: rgb(17,17,17);
	font-weight: 500;
}

.email_verify_form_input {
    width: 100%;
    margin-bottom: 10px;
    padding: 17px;
    border: solid 1px rgb(222, 225, 229);
    background-color: rgb(241,241,241);
    font-size: 14px;
    border-radius: 7px;
    transition: all 377ms linear;
}
.email_verify_form_input.white {
	background-color: rgb(255,255,255);
}


.email_verify_form_link2 {
    color: rgb(117, 117, 117);
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    margin-top: 17px;
}

.email_verify_form_link {
    color: rgb(7,7,7);
    padding: 17px 0;
    text-align: center;
    text-decoration: underline;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    margin-top: 17px;
}

.email_verify_form_buttons_wrap {
    width: 100%;
    margin-top: 7px;
}
.email_verify_form_submit_button {
    color: white;
    padding: 17px 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    background-color: #5D9732;
    border-radius: 7px;
    width: 100%;
}
.email_verify_form_submit_button.black {
	background-color: rgb(17,17,17);
}

.email_verify_form_submit_button.outline {
	background-color: rgb(255,255,255);
	color: rgb(17,17,17);
	border: solid 1px rgb(17,17,17);
	margin-top: 7px;
}
/*--- settings ---*/
/* if screen width is less than 1022px */ 
@media only screen and (max-width: 1022px) {
    /* about page */
    .about_page_wrap {
        min-width: initial;
        max-width: initial;
        padding: 21px;
        padding-top: 0px;
    }
    .guest_site_wrap {
        min-width: initial;
        max-width: initial;
        padding: 21px;
        padding-top: 47px;
    }
    .mission_statement_wrap {
        width: 100%;
        height: auto;
        padding-top: 21px;
    }
    .mission_statement_content {
        width: 100%;
        height: auto;
    }
	.mission_statement_note {
	    font-size: 14px;
	    font-weight: 400;
	    line-height: 1.4;
	    width: 269px;
	    margin: 22px auto;
	    padding: 13px;
	    background-color: rgb(255, 255, 255);
	    color: rgb(89, 89, 89);
	    border: solid 2px rgb(200, 200, 200);
	}
    .mission_statement_inner {
        width: 100%;
        height: auto;
    }
    .mission_statement_media_wrap {
        width: 100%;
        height: auto;
    }
    .feature_section_wrap {height: auto;}
    .feature_panel_wrap {height: auto;}
    .feature_section_text_wrap {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
    }
    .feature_section_1 {
        width: 100%;
        height: auto;
    }
    .feature_section_2 {
        width: 100%;
        height: auto;
    }
    .feature_sec_2 {
        width: 100%;
        height: auto;
    }
    .price_card {
	    width: 100%; 
	}
	.price_card:not(:last-child) {margin-right: 0px;}
	div.screenshots {width: 100%;}
	.screenshot.desktop {width: 100%;}
}
/* change animation plugin speed */
.animated {
	-webkit-animation-duration: 377ms;
	animation-duration: 377ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.magictime {
	-webkit-animation-duration: 377ms;
	animation-duration: 377ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;   
}

/*-- user feedback modal --*/
.user_feedback_modal_text_wrap {
	padding: 21px;
}
.user_feedback_modal_text {
    font-weight: 500;
    padding: 0px 17px;
}
.user_feedback_modal_logo_box {
    padding: 34px 13px;
    display: table;
    margin: 0 auto;
}
.user_feedback_modal_logo_img_wrap {
	padding: 0px 17px;
	display: table;
}
.user_feedback_modal_logo_img {
    max-width: 34px;
    max-height: 34px;
    margin-right: 13px;
    float: left;
}
.user_feedback_modal_textarea_wrap {
	padding: 21px;	
	padding: auto 34px;
}
.user_feedback_modal_textarea {
    resize: none;
    min-height: 72px;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
    background-color: rgb(241,241,241);
    font-size: 14px;
    border-radius: 7px;
    overflow-y: auto;
    overflow-x: hidden;
    color: rgb(7,7,7);
    display: block;
    font-weight: 500;
}
.user_feedback_modal_textarea.input_error {
	border: solid 1px rgb(222, 19, 35);
	background-color: rgb(255, 255, 255);
	color: rgb(222, 19, 35);
}


.user_feedback_modal_buttons_wrap {
    padding: 0px 21px;
    width: 100%;
    display: table;
}
.user_feedback_modal_submit_button {
    color: white;
    padding: 10px 21px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background-color: rgb(225, 11, 23);
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0,0,0,.12);
    -webkit-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
   	   -moz-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
	    -ms-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
	     -o-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
	        box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
    border-radius: 34px;
    float: right;
}

/*-- refer friend --*/
.refer_friend_wrap {
    text-align: center;
    background-color: rgb(255, 255, 255);
    color: rgb(134,134,134);
    font-size: 13px;
    border-radius: 10px;
    margin: 0px auto;
    margin-top: 17px;
    padding: 21px;
    -webkit-box-shadow: 0px 2px 3px rgb(23 164 26 / 17%), 0px 2px 3px rgb(23 164 26 / 34%);
    -moz-box-shadow: 0px 2px 3px rgba(23, 164, 26, 0.17), 0px 2px 3px rgba(23, 164, 26, 0.34);
    -ms-box-shadow: 0px 2px 3px rgba(23, 164, 26, 0.17), 0px 2px 3px rgba(23, 164, 26, 0.34);
    -o-box-shadow: 0px 2px 3px rgba(23, 164, 26, 0.17), 0px 2px 3px rgba(23, 164, 26, 0.34);
    box-shadow: 0px 2px 3px rgb(23 164 26 / 17%), 0px 2px 3px rgb(23 164 26 / 34%);
}
.refer_friend_buttons_wrap {
    padding: 0px 21px;
    width: 100%;
    display: table;
}
.refer_friend_button {
     color: white;
    padding: 10px 21px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background-color: rgb(23, 164, 26);
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0,0,0,.12);
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
   	   -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
	    -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
	     -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
	        box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
    border-radius: 34px;
    margin: 17px;
}
.refer_friend_text_1 {
    color: rgb(23, 164, 26);
    font-size: 14px;
    font-weight: 500;
}
.refer_friend_text_2 {
	color: rgb(23, 164, 26);
    font-size: 10px;
    font-weight: 500;
}
.refer_friend_icon_wrap {
    cursor: pointer;
    font-size: 21px;
    font-weight: 500;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 55px;
    width: 55px;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
    margin-top: 17px;
    color: rgb(255,255,255);
    background-color: rgba(23, 164, 26, 1);
    border: solid 1px rgba(23, 164, 26, 1);
    padding: 10px 0px 0px 0px;
}
.refer_friend_icon {
    font-size: 34px;
}
/*-- refer friend modal --*/



















/* ui css style */
.ui_global_input_style {
    -webkit-appearance: none;
}
.ui_global_input_style::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(134,134,134);
}
.ui_global_input_style:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_global_input_style::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_global_input_style:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_global_input_style::placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_global_input_style:focus {/* focus */
    outline-color: transparent;/* makes the input/textarea glow transparent for safari/chrome */
    outline-style: none;/* removes input/textarea glow for safari/chrome */
}
/* cordova style */
@media screen and (min-aspect-ratio: 1/1) and (min-width: 400px) {/* Landscape layout (with min-width) */
    .ui_window_container {
        background-position: left center;
        padding: 75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin: -90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}
.ui_window_event.ui_event_listening {display: block;}
.ui_window_event.ui_event_received {display: none;}
.ui_window_wrap.ui_device_ready .ui_window_event.ui_event_listening { display: none; }
.ui_window_wrap.ui_device_ready .ui_window_event.ui_event_received { display: block; }
.ui_window_wrap {}
.ui_view_wrap {
    position: fixed;
    left: 0px;
    right: 0px;
    top:  0px;
    bottom: 0px;
    display: none;
}
.ui_view_wrap.visiblized {
    display: block;
}
.ui_view_wrap.ui_view_slide_in_left {
    animation: slideInLeft; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_slide_in_right {
    animation: slideInRight; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_slide_out_left {
    animation: slideOutLeft; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_slide_out_right {
    animation: slideOutRight; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_bounce_in_up {
    animation: bounceInUp; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_bounce_out_down {
    animation: bounceOutDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_fade_in_up {
    animation: fadeInUp; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_fade_out_down {
    animation: fadeOutDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_fade_in {
    animation: fadeIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_fade_out {
    animation: fadeOut; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 377ms; /* don't forget to set a duration! */
}
.ui_view_wrap.ui_view_blurred {/* modal general frost */
    -webkit-filter: blur(17px);
       -moz-filter: blur(17px);
        -ms-filter: blur(17px);
         -o-filter: blur(17px);
    filter: url("data:image/svg+xml;utf17,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='-5%' y='-5%' width='110%' height='110%'><feGaussianBlur in='SourceGraphic' stdDeviation='5'/></filter></svg>#svgBlur");/* FF doesn't support blur filter, but SVG */
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius = '17');
    filter: blur(17px);
}
.ui_view_header_wrap {
    background-color: rgb(255, 255, 255);
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    text-align: center;
}
.ui_view_header_wrap.display_none {
    display: none;
}
.ui_view_header_wrap.ui_border_grey {
    border-bottom: solid 1px rgba(0, 0, 0, .21);
}
.ui_view_header_wrap.ui_border_shadow {
    border: none;
    box-shadow: rgb(148 148 148 / 30%) 0 2px 6px;
}
.ui_view_header_title_wrap {
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 4px;
}
.ui_view_header_title_text {/* modal general title text */
    color: rgb(7,7,7);
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
}
.ui_view_header_title_button_1 {
    position: absolute;
    left: 17px;
    bottom: 7px;
    cursor: pointer;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: rgb(240, 240, 240);
    display: none;
    font-weight: 500;
}
.ui_view_header_title_button_1:hover {color: #106afa;}
.ui_view_header_title_button_1.visiblized {display: block;}
.ui_view_header_title_button_2 {
    position: absolute;
    right: 25px;
    bottom: 7px;
    cursor: pointer;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: rgb(240, 240, 240);
    border: solid 1px rgba(0, 0, 0, 0);
    display: none;
    font-weight: 500;
}
.ui_view_header_title_button_2:hover {color: #106afa;}
.ui_view_header_title_button_2.visiblized {display: block;}
.ui_view_content {
    background-color: white;
    position: fixed;
    left: 0px;
    right: 0px;
    top:  0px;
    bottom: 0px;
    overflow: scroll;
    display: none;
}
.ui_view_content.visiblized {display: block;}
.ui_view_content.ui_modal_content {
    background-color: rgba(0,0,0, 0.7);
    top: 84px;
    bottom: 0px;
    padding: 34px;
}
.ui_view_content.ui_popup_content {
    background-color: rgba(0, 0, 0, 0.7);
    top: 84px;
    bottom: 0px;
}
.ui_view_content.grey_background {
    background-color: rgb(235, 235, 235);
}
.ui_view_content.grey_background_with_some_padding {
    background-color: rgb(235, 235, 235);
    padding: 34px;
}
.ui_view_content.grey_background_no_padding {
    background-color: rgb(235, 235, 235);
    padding: 0;
}
.ui_view_content.white_background {
    background-color: rgb(235, 235, 235);
}
.ui_view_content.grey_background_2_and_no_footer {
    background-color: rgb(235, 235, 235);
    top:  84px;
    bottom:  0px;
}
.ui_view_content.grey_background_and_header_and_no_footer {
    background-color: rgb(235, 235, 235);
    top:  84px;
    bottom:  0px;
    padding: 34px;
}
.ui_view_content.ui_grey_general_padded {
    background-color: rgb(235, 235, 235);
    top:  84px;
    bottom:  0px;
    padding: 34px;
}
.ui_view_content.ui_white_bg_with_header_without_footer_with_padding {
    background-color: rgb(255, 255, 255);
    top:  84px;
    bottom:  0px;
    padding: 34px;
}
.ui_view_content.ui_subscriber_view_content {
    background-color: rgb(235, 235, 235);
    top: 84px;
    bottom: 81px;
    padding: 34px;
}
.ui_view_content.ui_subscriber_view_content_with_padding {
    background-color: rgb(235, 235, 235);
    top:  84px;
    bottom:  81px;
    padding: 34px;
}
.ui_view_content.grey_background_and_header_and_no_footer_and_no_padding {
    background-color: rgb(235, 235, 235);
    top:  84px;
    bottom:  0px;
    padding: 0px;
}
.ui_view_content.grey_background_and_header_and_footer_and_no_padding {
    background-color: rgb(235, 235, 235);
    padding: 0px;
}
.ui_view_content.white_background_and_header_and_no_footer {
    background-color: rgb(255,255,255);
    top:  84px;
    bottom:  0px;
    padding: 0px;
}
.ui_view_content.white_background_and_header_and_no_footer_and_no_padding {
    background-color: rgb(255,255,255);
    top:  84px;
    bottom:  0px;
    padding: 0;
}
.ui_view_content.dark_background_and_header_and_no_footer {
    background-color: rgba(255, 255, 255, 0.9);
    top: 84px;
    bottom: 0px;
}
.ui_view_content.background_white_alpha_top_84_bottom_0 {
    background-color: rgba(255, 255, 255, 0.9);
    top: 84px;
    bottom: 0px;
    padding: 34px;
}
.ui_view_content.background_black_alpha_top_84_bottom_0 {
    background-color: rgba(0,0,0, 0.7);
    top: 84px;
    bottom: 0px;
    padding: 34px;
}
.ui_view_content.background_grey_alpha_top_84_bottom_0 {
    background-color: rgba(233, 233, 233, 0.9);
    top: 84px;
    bottom: 0px;
    padding: 34px;
}
.ui_view_content.background_grey_padding_21_top_84_bottom_0 {
    background-color: rgb(238, 238, 238);
    top: 84px;
    bottom: 0px;
    padding: 34px;
}
.ui_view_content.darker_background_and_header_and_no_footer {
    background-color: rgba(0, 0, 0, 0.9);
    top:  84px;
    bottom:  0px;
}
.ui_view_content.ui_custom_background_image {
    background-image: url('../../upload/image/layout/green_goo_subtle_background_dark.png');
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-size: cover;
    top:  0px;
    bottom:  0px;
    padding: 34px;
}
.ui_view_content.ui_background_image_smooth {
    background-image: url('../../upload/image/layout/smooth_gradient_background.png');
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-size: cover;
    top:  0px;
    bottom:  0px;
    padding: 34px;
}
.ui_view_content.ui_custom_gradient_background {
    background-image: linear-gradient(rgb(240, 240, 240), rgb(255, 255, 255));
    top:  0px;
    bottom:  0px;
    padding: 34px; 
    /* 
    background-image: url('../../upload/image/layout/green_goo_subtle_background_dark.png');
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-size: cover;
*/
}
.ui_view_content.ui_basic_full_view {
    background-color: rgb(255, 255, 255);
    top:  0px;
    bottom:  0px;
    padding: 34px; 
    /* 
    background-image: url('../../upload/image/layout/green_goo_subtle_background_dark.png');
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-size: cover;
*/
}
.ui_view_content.ui_start_screen_content {
    background-color: rgb(255, 255, 255);
    top: 0px;
    bottom: 0px;
    padding: 0px;
}
.ui_view_content.ui_mapper_tutorial_content {
    background-color: rgb(255, 255, 255);
    top: 84px;
    bottom: 0px;
    padding: 0px;
}
.ui_view_content.ui_tutorial_background_image {
    background-image: url('../../upload/image/layout/rosy_blue_background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    top: 0px;
    bottom: 0px;
    padding: 34px;
}
.ui_view_content.image_background_and_header_and_no_footer {
    background-image: url('../../upload/image/layout/welcome_bg.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    top: 84px;
    bottom: 0px;
}
.ui_view_content.image_background_and_no_header_and_no_footer {
    background-image: url('../../upload/image/layout/welcome_bg.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    top: 0px;
    bottom: 0px;
}
.ui_view_content_center_wrap {
    margin: 0 auto;
    max-width: 377px;
}
.ui_view_content_center_1022 {
    margin: 0 auto;
}
.ui_view_content_test_button {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #106afa;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
    
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100px;
}
.ui_view_content_test_element {
    padding: 100px; 
    background-color: rgb(255, 0, 0);
}
.ui_view_content_test_element_2 {
    padding-top: 7000px;
    border: solid 1px red;
}
.ui_view_header_title_text_7 {/* modal general title text */
    color: rgb(7,7,7);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}
.ui_view_header_title_wrap_7 {
    margin-bottom: 21px;
}
.ui_view_content_footer {
    width: 100%;
    overflow: hidden;
    color: rgb(117, 117, 117);
    margin: 17px auto;
    max-width: 377px;
}
.ui_view_content_footer_wrap {
    float: left;
    padding: 13px 13px;
}
.ui_view_content_footer_list {
    font-size: 13px;
    float: left;
}
.ui_view_content_footer_item {
    float: left;
    text-align: center;
    padding: 13px 13px;
    cursor: pointer;
}
.ui_view_content_footer_item:hover {text-decoration: underline;}
.ui_view_footer {
    background-color: rgb(255, 255, 255);
    border-top: solid 1px rgba(0, 0, 0, .17);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 81px;
}
.ui_view_footer_input {display: none;}
.ui_view_footer_list_wrap {background-color: transparent;}
.ui_view_footer_list {
    width: 100%;
    display: table;
    table-layout: fixed;
    cursor: pointer;
    overflow: hidden;
}
.ui_view_footer_list_item {display: table-cell;}
.ui_view_footer_list_item_inner {
    display: block;
    text-align: center;
    margin: 0 auto;
}
.ui_view_footer_label {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    display: table;
    position: relative;
    color: rgb(7,7,7);
}
.ui_view_footer_input:checked + .ui_view_footer_label {/* checked toggle */
	color: rgb(16, 106, 250);
    border-bottom: solid 3px rgb(16, 106, 250);
}
.ui_view_footer_input:not(:checked) + .ui_view_footer_label {/* unchecked toggle */}
.ui_view_footer_input:not(:checked) + .ui_view_footer_label:hover {/* unchecked/hovered toggle */}
.ui_view_footer_icon {
    background-color: transparent;
    border: solid 1px transparent;
    font-size: 21px;
    margin: 3px auto;
    margin-bottom: 0px;
    overflow: hidden;
    border-radius: 100%;
    height: 38px;
    width: 38px;
    padding: 7px 3px 0 3px;
    text-align: center;
    position: relative;
    color: rgb(7,7,7);
    border: 1px solid rgba(0, 0, 0, 0);
}
.ui_view_footer_input:checked + .ui_view_footer_label .ui_view_footer_icon {/* checked icon */}
.ui_view_footer_input:not(:checked) + .ui_view_footer_label .ui_view_footer_icon {/* unchecked icon */}
.ui_view_footer_input:not(:checked) + .ui_view_footer_label:hover .ui_view_footer_icon {/* unchecked/hovered icon */}
.ui_view_footer_label_text {/* label text */
    position: relative;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 17px;
}
.ui_form_content_wrap {
    /* margin-top: 13px; */
    /* padding: 7px; */
}
.ui_form_divider_line {
    margin: 34px auto;
    height: 1px;
    border-bottom: solid 1px rgba(0, 0, 0, .07);
    max-width: 377px;
}
.ui_form_box {
    padding: 34px;
    border-radius: 34px;
    background-color: white;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin: 0 auto;
    max-width: 377px;
}
.ui_form_bottom_box {
    padding: 21px;
    padding-top: 0px;
    padding-bottom: 0px;
}
.ui_form_header_wrap {
    width: 100%;
    margin-bottom: 17px;
    transition: all 377ms linear;
    text-align: center;
}
.ui_form_header_wrap_text_align_left {
    text-align: left;
    margin-bottom: 17px;
}
.ui_form_header_icon {
    font-size: 17px;
    line-height: 42px;
    overflow: hidden;
    height: 42px;
    width: 42px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    color: rgb(7, 7, 7);
    margin: 0px auto; 
    margin-bottom: 17px;
    border-radius: 34px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
}
.ui_form_header_icon_with_white_with_ring {
    font-size: 17px;
    line-height: 42px;
    overflow: hidden;
    height: 42px;
    width: 42px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    margin: 0px auto; 
    margin-bottom: 7px;
    border-radius: 34px;
    color: rgb(7, 7, 7);
    border: solid 1px rgba(0, 0, 0, .34);
    background-color: rgb(255, 255, 255);
}
.ui_form_header_icon_with_white_with_ring_blue {
    font-size: 17px;
    line-height: 42px;
    overflow: hidden;
    height: 42px;
    width: 42px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    margin: 0px auto; 
    margin-bottom: 7px;
    border-radius: 34px;
    color: rgb(16, 106, 250);
    background-color: rgb(235, 235, 235);
    border: solid 1px rgb(198, 198, 198);
}
.ui_form_header_text_title {
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    margin-bottom: 7px;
    color: rgb(7, 7, 7);
}
.ui_form_header_text_title_green {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    line-height: 32px;
    color: #17A41A;
}
.ui_form_header_text_title_black {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    color: rgb(7, 7, 7);
    margin-bottom: 7px;
}
.ui_form_header_text_title_blue {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    line-height: 21px;
    color: rgb(16, 106, 250);
}
.ui_form_header_text_title_super_blue {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    line-height: 32px;
    color: rgb(16, 106, 250);
}
.ui_form_header_text_description {
    color: rgb(134,134,134);
    font-size: 14px;
    font-weight: 500;
}

.ui_form_header_text_description_color_black {
    color: rgb(7,7,7);
    font-size: 14px;
}
.ui_form_header_text_description_color_grey {
    color: rgb(134,134,134);
    font-size: 14px;
    margin: 0 auto;
}
.ui_form_header_text_description_align_left {
    color: rgb(134,134,134);
    font-size: 14px;
    line-height: 1.4em;
    margin: 0 auto;
    text-align: left;
}
.form_submit_button_green_text_white {
    padding: 13px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    color: white;
    font-weight: 500;
    transition: all 377ms ease;
    width: 100%;
    border-radius: 34px;
    background-color: rgb(23, 164, 26);
    transition: all 377ms ease;
}
.ui_form_submit_button_grey_ring {
    padding: 13px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    color: white;
    font-weight: 500;
    transition: all 377ms ease;
    width: 100%;
    border-radius: 34px;
    background-color: rgb(16, 106, 250);
    transition: all 377ms ease;
}
.ui_form_submit_button_grey_ring.below {
    border-radius: 7px;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
}
.ui_form_submit_button_solid_grey {
    padding: 13px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 377ms ease;
    width: 100%;
    border-radius: 34px;
    transition: all 377ms ease;
    background-color: rgb(255, 255, 255);
    color: rgb(34, 34, 34);    
    -webkit-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
       -moz-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
        -ms-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
         -o-box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
            box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
.ui_form_submit_button_solid_grey.below {
    border-radius: 7px;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
}
.ui_form_submit_button_loader_dim {
    margin: 0 auto;
    width: 14px;
    height: 14px;
    display: block;
    position: relative;
    border-radius: 50px;
    border: 2px solid rgba(233, 233, 233, .5);
    display: none;
}
.ui_form_submit_button_loader_dim:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border-radius: 50px;
    border: 2px solid transparent;
    border-top-color: #fff;
    -webkit-animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
       -moz-animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
        -ms-animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
         -o-animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
            animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
}
.ui_form_submit_button_loader_lit {
    width: 14px;
    height: 14px;
    display: block;
    position: relative;
    border-radius: 50px;
    border: 3px solid rgba(255,255,255,0.5);
    margin: 0 auto;
    /* display: none; */
}
.ui_form_submit_button_loader_lit:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border-radius: 50px;
    border: 2px solid transparent;
    border-top-color: #fff;
    -webkit-animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
       -moz-animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
        -ms-animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
         -o-animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
            animation: ui_form_submit_button_loader_spin_animation .7s linear infinite;
}
@-webkit-keyframes ui_form_submit_button_loader_spin_animation {
    0% {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
    }
}
@keyframes ui_form_submit_button_loader_spin_animation {
    0% {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
    }
}
.ui_form_input_grey_border {
    float: left; 
    width: 100%;
    margin-bottom: 21px;
    border-radius: 21px;
    transition: all 377ms linear;
    padding: 3px auto;
    border: solid 1px rgba(0, 0, 0, .17);
    border-top: solid 1px rgba(0, 0, 0, .34);
    background-color: rgb(240, 240, 240);
}
.ui_form_input_with_error {
    color: rgba(208, 25, 22,.3);
    border: solid 1px;
}
.ui_form_input_with_error::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(222, 19, 35) !important;
}
.ui_form_input_with_error:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(222, 19, 35) !important;
    opacity: 1;
}
.ui_form_input_with_error::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(222, 19, 35) !important;
    opacity: 1;
}
.ui_form_input_with_error:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(222, 19, 35) !important;
}
.ui_form_input_with_error::placeholder {/* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(222, 19, 35) !important;
}
.ui_form_text_item {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: rgb(77,77,77);
    font-weight: 500;
    text-align: center;
    padding: 21px;
    border-top: solid 1px rgb(233,233,233);
    border-radius: 0px;
    cursor: pointer;
}
.ui_form_text_item:hover {
    text-decoration: underline;
}
.ui_form_box_contact_header_box {
    margin: 21px;
    border-radius: 34px;
    overflow: hidden;
    margin: 0px auto;
    padding: 34px;
    margin-bottom: 17px;
    background-color: rgb(255,255,255);
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.ui_form_input_light_grey {
    float: left;
    width: 100%;
    margin-bottom: 21px;
    border-radius: 17px;
    transition: all 377ms linear;
    background-color: rgb(235, 235, 235);
}
.ui_form_header_wrap_oil {
    width: 100%;
    padding: 11px;
    font-size: 17px;
    display: table;
    cursor: pointer;
    text-align: center;
}
.ui_form_header_icon_clear {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
    border: solid 2px rgb(7, 7, 7);
    background-color: transparent;
    color: rgb(7, 7, 7);
}
.ui_form_header_icon_clear.red {
    background-color: rgb(225,11,23);
    color: white;
}
.ui_form_header_icon_clear.orange {
    background-color: rgb(254,156,39);
    color: white;
}
.ui_form_header_icon_clear.yellow {
    background-color: rgb(250,188,45);
    color: white;
}
.ui_form_header_icon_clear.green {
    background-color: rgb(20,143,22);
    color: white;
}
.ui_form_header_icon_clear.blue {
    background-color: rgb(15,105,250);
    color: white;
}
.ui_form_header_icon_clear.indigo {
    background-color: rgb(110,104,232);
    color: white;
}
.ui_form_header_icon_clear.violet {
    background-color: rgb(186,64,251);
    color: white;
}
.ui_form_header_icon_color {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
    background-color: transparent;
    color: rgb(134,134,134);
    border:  solid 1px transparent;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
}
.ui_form_header_icon_color.red {
    background-color: rgb(225,11,23);
    color: white;
}
.ui_form_header_icon_color.orange {
    background-color: rgb(254,156,39);
    color: white;
}
.ui_form_header_icon_color.yellow {
    background-color: rgb(250,188,45);
    color: white;
}
.ui_form_header_icon_color.green {
    background-color: rgb(20,143,22);
    color: white;
}
.ui_form_header_icon_color.blue {
    background-color: rgb(15,105,250);
    color: white;
}
.ui_form_header_icon_color.indigo {
    background-color: rgb(110,104,232);
    color: white;
}
.ui_form_header_icon_color.violet {
    background-color: rgb(186,64,251);
    color: white;
}
.ui_form_error_box {
    display: none;
    font-size: 13px;
    font-weight: 500;
    color: rgb(222, 19, 35);
    padding: 17px;
    margin: 0px auto;
    margin-bottom: 17px;
    border-radius: 17px;
    background-color: transparent;
    text-align: center;
    box-shadow: rgb(222, 19, 35, .3) 0px 2px 5px -1px, rgb(222, 19, 35, .4) 0px 1px 3px -1px;
}
.ui_form_alert_box {
    display: none;
    font-size: 13px;
    font-weight: 500;
    color: rgb(35, 162, 39);
    padding: 17px;
    margin: 0px auto;
    margin-bottom: 17px;
    border-radius: 17px;
    background-color: transparent;
    text-align: center;
    box-shadow: rgb(35, 162, 39, .3) 0px 2px 5px -1px, rgb(35, 162, 39, .4) 0px 1px 3px -1px;
}
.ui_form_iconic_input_wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 17px;
    transition: all 377ms linear;
    color: rgb(7, 7, 7);
    border-radius: 21px;
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
    background-color: rgb(245, 245, 245);
    font-weight: 500;
    padding: 3px 9px;
}
.ui_form_iconic_input_wrap::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(134,134,134);
}
.ui_form_iconic_input_wrap:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_form_iconic_input_wrap::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_form_iconic_input_wrap:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_form_iconic_input_wrap::placeholder {/* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(134,134,134);
}
.ui_form_iconic_input_icon {
    height: 44px;
    line-height: 44px;
    font-size: 17px;
    padding-left: 7px;
    padding-top: 2px;
    position: absolute;
    color: rgb(134,134,134);
}
.ui_form_iconic_input {
    float: right;
    background-color: rgba(0, 0, 0, 0.0);
    font-size: 14px;
    transition: all 377ms linear;
    height: 44px;
    line-height: 44px;
    width: 100%;
    padding-left: 34px;
}
.ui_form_iconic_input::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(134,134,134);
}
.ui_form_iconic_input:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_form_iconic_input::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_form_iconic_input:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_form_iconic_input::placeholder {/* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(134,134,134);
}
.ui_form_iconic_textarea {
    resize: none;
    min-height: 72px;
    box-sizing: border-box;
    padding: 13px; 
    font-size: 14px;
    overflow-y: auto;
    overflow-x: hidden;
    color: rgb(7,7,7);
    display: block; 
    float: left;
    padding-left: 34px;
    width: 100%;
    border: none;
}
.ui_form_iconic_textarea::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(134,134,134);
}
.ui_form_iconic_textarea:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_form_iconic_textarea::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_form_iconic_textarea:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_form_iconic_textarea::placeholder {/* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(134,134,134);
}
.ui_form_submit_button_solid_black_pill {
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    color: white;
    padding: 21px;
    width: 100%;
    background-color: rgb(7,7,7);
    border-radius: 34px;
    transition: all 377ms ease;
}
.ui_form_box_link_grey {
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: rgb(134,134,134);
    margin: 34px auto;
    max-width: 377px;
}
.ui_form_box_sub_link_grey {
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: rgb(134,134,134);
    margin-top: 13px auto;
    max-width: 377px;
}
.ui_form_box_link_sub_text {
    font-weight: 700;
    color: rgb(7,7,7);
}
.ui_form_bottom_button_black {
    padding: 21px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    width: 377px;
    margin: 0px auto;
    max-width: 233px;
    border-radius: 34px;
    color: rgb(7, 7, 7);
    transition: all 377ms ease;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.ui_form_header_icon_white_background_grey_text {
    font-size: 17px;
    line-height: 47px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 14px;
    border-radius: 34px;
    color: rgb(134,134,134);
    border: solid 1px rgba(0,0,0,.07);
    background-color: rgb(245, 245, 245);
}
.ui_form_header_icon_background_black_text_white {
    font-size: 17px;
    line-height: 49px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 17px auto;
    border-radius: 34px;
    color: rgb(255, 255, 255);
    background-color: rgb(7, 7, 7);
}
.ui_form_header_icon_background_white_border_black {
    font-size: 17px;
    line-height: 49px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 17px auto;
    color: rgb(7, 7, 7);
    border: solid 1px rgba(0, 0, 0,0);
    border-radius: 34px;
    background-color: rgb(255, 255, 255);
}
.ui_form_header_icon_background_gold_text_white {
    font-size: 22px;
    line-height: 50px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 14px;
    border-radius: 34px;
    color: rgb(255, 255, 255);
    background-color: #fabc2d;
}
.ui_mapper_form_switch_wrap {/* mode switch wrap */
    text-align: center;
    margin: 17px auto;
    width: 100%;
}
.ui_mapper_form_switch_input {display: none;}
.ui_mapper_form_switch_input, .ui_mapper_form_switch_input:after, .ui_mapper_form_switch_input:before, .ui_mapper_form_switch_input *, .ui_mapper_form_switch_input *:after, .ui_mapper_form_switch_input *:before, .ui_mapper_form_switch_input + .ui_mapper_form_switch_label {box-sizing: border-box;}
.ui_mapper_form_switch_input::-moz-selection, .ui_mapper_form_switch_input:after::-moz-selection, .ui_mapper_form_switch_input:before::-moz-selection, .ui_mapper_form_switch_input *::-moz-selection, .ui_mapper_form_switch_input *:after::-moz-selection, .ui_mapper_form_switch_input *:before::-moz-selection, .ui_mapper_form_switch_input + .ui_mapper_form_switch_label::-moz-selection {background: none;}
.ui_mapper_form_switch_input::selection, .ui_mapper_form_switch_input:after::selection, .ui_mapper_form_switch_input:before::selection, .ui_mapper_form_switch_input *::selection, .ui_mapper_form_switch_input *:after::selection, .ui_mapper_form_switch_input *:before::selection, .ui_mapper_form_switch_input + .ui_mapper_form_switch_label::selection {background: none;}
.ui_mapper_form_switch_input + .ui_mapper_form_switch_label {
    outline: 0;
    display: block;
    width: 47px;
    height: 47px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ui_mapper_form_switch_input + .ui_mapper_form_switch_label:after, .ui_mapper_form_switch_input + .ui_mapper_form_switch_label:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}
.ui_mapper_form_switch_input + .ui_mapper_form_switch_label:after {left: 0;}
.ui_mapper_form_switch_input + .ui_mapper_form_switch_label:before {display: none;}
.ui_mapper_form_switch_input:checked + .ui_mapper_form_switch_label:after {left: 50%;}
.ui_mapper_form_switch_input_flip + .ui_mapper_form_switch_label {
    padding: 3px;
    transition: all 377ms ease;
    -webkit-perspective: 100px;
    perspective: 100px;
    margin: 0 auto;
    width: 47px;
}
.ui_mapper_form_switch_input_flip + .ui_mapper_form_switch_label:after, .ui_mapper_form_switch_input_flip + .ui_mapper_form_switch_label:before {
    display: inline-block;
    transition: all 377ms ease;
    width: 47px;
    height: 47px;
    text-align: center;
    position: absolute;
    line-height: 52px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 34px;
}
.ui_mapper_form_switch_input_flip + .ui_mapper_form_switch_label:after {/* in between flip */
    /* content: "\e0c5"; */
    content: "\e0c4";
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    font-size: 21px;
    line-height: 52px;
}
.ui_mapper_form_switch_input_flip + .ui_mapper_form_switch_label:before {
    /* background-color: rgb(255 255 255); */
    color: rgb(16 106 250);
    content: "\e0c5";
    /* content: "\e0c4"; */
    font-size: 21px;
    line-height: 52px;
    /* border: solid 1px rgb(16 106 250); */
    /* background-color: rgb(255 255 255); */
    box-shadow: rgb(148 189 255 / 49%) 0px 2px 5px -1px, rgb(71 141 253) 0px 2px 5px -1px;
}
.ui_mapper_form_switch_input_flip + .ui_mapper_form_switch_label:active:before {/* on basic click active */
    background-color: white;
    color: #17A41A;
    -webkit-box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
       -moz-box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
        -ms-box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
         -o-box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
            box-shadow: 0px 13px 22px rgba(23, 164, 26, 0.21), 0px 5px 5px rgba(23, 164, 26, 0.23);
}
.ui_mapper_form_switch_input_flip + .ui_mapper_form_switch_label:active:before {
    -webkit-transform: rotateY(-20deg);
       -moz-transform: rotateY(-20deg);
        -ms-transform: rotateY(-20deg);
         -o-transform: rotateY(-20deg);
            transform: rotateY(-20deg);
}
.ui_mapper_form_switch_input_flip:checked + .ui_mapper_form_switch_label:before {
    -webkit-transform: rotateY(180deg);
       -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
         -o-transform: rotateY(180deg);
            transform: rotateY(180deg);
}
.ui_mapper_form_switch_input_flip:checked + .ui_mapper_form_switch_label:after {/* kmz */
    background-color: rgb(16 106 250);
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    left: 0;
    color: #ffffff;
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
    box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
}
.ui_mapper_form_switch_input_flip:checked + .ui_mapper_form_switch_label:active:after {/* on pro click active */
    background-color: rgb(255, 255, 255);
    color: rgb(7,7,7);
    -webkit-box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.21), 0px 5px 5px rgba(16, 106, 250, 0.23);
       -moz-box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.21), 0px 5px 5px rgba(16, 106, 250, 0.23);
        -ms-box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.21), 0px 5px 5px rgba(16, 106, 250, 0.23);
         -o-box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.21), 0px 5px 5px rgba(16, 106, 250, 0.23);
            box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.21), 0px 5px 5px rgba(16, 106, 250, 0.23);
}
.ui_mapper_form_switch_input_flip:checked + .ui_mapper_form_switch_label:active:after {
    -webkit-transform: rotateY(20deg);
       -moz-transform: rotateY(20deg);
        -ms-transform: rotateY(20deg);
         -o-transform: rotateY(20deg);
            transform: rotateY(20deg);
}
.ui_mapper_form_wrap {}
.ui_mapper_form_box {
    padding: 34px;
    border-radius: 21px;
    background-color: white;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin: 0 auto;
    max-width: 377px;
}
.ui_mapper_form_header_wrap {
    width: 100%;
    margin-bottom: 17px;
    transition: all 377ms linear;
    text-align: center;
}
.ui_mapper_form_header_icon {
    font-size: 21px;
    line-height: 47px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 14px;
    border-radius: 34px;
    color: rgb(16, 106, 250);
    /* background-color: rgb(255, 255, 255); */
    /* border: solid 1px rgb(221, 221, 221); */
    /* box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px; */
    /* box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px; */
    /* box-shadow: rgb(67 71 85 / 27%) 0px 0px 0.25em, rgb(90 125 188 / 5%) 0px 0.25em 1em; */
    /* box-shadow: rgb(0 0 0 / 18%) 0px 2px 4px; */
    /* box-shadow: rgb(0 0 0 / 15%) 0px 2px 8px; */
    /* box-shadow: rgb(0 0 0 / 9%) 0px 2px 1px, rgb(0 0 0 / 9%) 0px 4px 2px, rgb(0 0 0 / 9%) 0px 8px 4px, rgb(0 0 0 / 9%) 0px 16px 8px, rgb(0 0 0 / 9%) 0px 32px 16px; */
    border: solid 1px rgba(0,0,0,.07);
    background-color: rgb(245, 245, 245);
}
.ui_mapper_form_header_text {
    color: rgb(16, 106, 250);
    text-align: center;
    font-size: 14px;
    margin-bottom: 7px;
    font-weight: 500;
}
.ui_mapper_form_header_text.pro {
    color: rgb(7,7,7);
}
.ui_mapper_form_description {
    font-size: 13px;
    color: rgb(134,134,134);
    text-align: center;
}
.ui_mapper_form_description_left {
    font-size: 14px;
    line-height: 14px;
    color: rgb(134,134,134);
    text-align: left;
    margin-top: 13px;
}
.ui_mapper_form_error_box {
    display: none;
    font-size: 13px;
    font-weight: 500;
    color: rgb(222, 19, 35);
    padding: 17px;
    margin: 0px auto;
    margin-bottom: 17px;
    border-radius: 13px;
    background-color: transparent;
    text-align: center;
    box-shadow: rgb(222, 19, 35, .3) 0px 2px 5px -1px, rgb(222, 19, 35, .4) 0px 1px 3px -1px;
}
.ui_mapper_form_alert_box {
    display: none;
    font-size: 13px;
    font-weight: 500;
    color: rgb(35, 162, 39);
    padding: 17px;
    margin: 0px auto;
    margin-bottom: 17px;
    border-radius: 17px;
    background-color: transparent;
    text-align: center;
    box-shadow: rgb(35, 162, 39, .3) 0px 2px 5px -1px, rgb(35, 162, 39, .4) 0px 1px 3px -1px;
}
.ui_mapper_form_input_og {
    float: left;
    width: 100%;
    margin-bottom: 17px;
    transition: all 377ms linear;
    border-radius: 7px;
    background-color: rgb(245, 245, 245);
    -webkit-box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    -moz-box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    -ms-box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    -o-box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    padding: 3px;
}
.ui_mapper_form_input_olderz {
    float: left;
    width: 100%;
    margin-bottom: 17px;
    transition: all 377ms linear;
    border-radius: 7px;
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
    background-color: rgb(245, 245, 245);
    padding: 3px;
}
.ui_mapper_form_iconic_input_wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 17px;
    transition: all 377ms linear;
    color: rgb(7, 7, 7);
    border-radius: 11px;
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
    background-color: rgb(247,247,247);
    padding: 3px 6px;
}
.ui_mapper_form_iconic_input_icon {
    float: left;
    line-height: 44px;
    font-size: 14px;
    padding-left: 11px;
    color: rgb(134,134,134);
    position: absolute;
}
.ui_mapper_form_iconic_input {
    float: right;
    background-color: rgba(0, 0, 0, 0.0);
    font-size: 14px;
    transition: all 377ms linear;
    height: 44px;
    line-height: 44px;
    width: 100%;
    padding-left: 34px;
}
.ui_mapper_form_iconic_input::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(134,134,134);
}
.ui_mapper_form_iconic_input:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_mapper_form_iconic_input::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_mapper_form_iconic_input:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_mapper_form_iconic_input::placeholder {/* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(134,134,134);
}
.ui_mapper_form_iconic_textarea {
    resize: none;
    min-height: 72px;
    box-sizing: border-box;
    padding: 13px;
    font-size: 14px;
    overflow-y: auto;
    overflow-x: hidden;
    color: rgb(7,7,7);
    display: block; 
    float: left;
    padding-left: 34px;
    width: 100%;
    border: none;
}
.ui_mapper_form_iconic_textarea::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(134,134,134);
}
.ui_mapper_form_iconic_textarea:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_mapper_form_iconic_textarea::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(134,134,134);
    opacity: 1;
}
.ui_mapper_form_iconic_textarea:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(134,134,134);
}
.ui_mapper_form_iconic_textarea::placeholder {/* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(134,134,134);
}
.ui_mapper_form_submit_button {
    text-align: center;
    text-decoration: none;
    display: table;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    padding: 17px;
    background-color: rgb(16, 106, 250);
    border-radius: 11px;
    transition: all 610ms;
    width: 100%;
}
.ui_mapper_form_submit_button.lit {
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
}
.ui_mapper_footer_box {
    text-align: center;
    background-color: rgb(255, 255, 255);
    color: rgb(134,134,134);
    font-size: 13px;
    border-radius: 17px;
    margin: 21px auto;
    max-width: 377px;
    padding: 34px 21px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.ui_mapper_footer_text {
    color: rgb(7, 7, 7);
    font-weight: 500;
    font-size: 14px;
}
.ui_mapper_footer_img_wrap {
    margin: 7px 0px;
    margin-top: 21px;
}
.ui_mapper_footer_img {
    max-width: 55px;
    max-height: 55px;
}
.ui_mapper_footer_below_text_wrap {
    text-align: center;
    margin: 0 auto;
    max-width: 377px;
    margin-top: 11px;
}
.ui_mapper_footer_below_text {
    color: rgb(134,134,134);
    font-size: 13px;
}
.ui_mapper_error_tip_box {
    display: none;
    color: #106afa;
    font-size: 13px;
    background-color: rgb(255, 255, 255);
    border: solid 1px #106afa;
    margin: 22px auto;
    border-radius: 17px;
}
.ui_mapper_error_tip_text {
    margin: 13px;
}
.ui_mapper_error_tip_gps {
    color: #106afa;
    font-size: 13px;
    padding: 13px;
    padding-top: 0;
    border-radius: 17px;
    white-space: pre-wrap;
}
.ui_mapper_feature_picture_wrap {
    float: right;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    position: relative;
    background-color: white;
    padding: 5px;
}
.ui_mapper_feature_picture_wrap.black {
    background-color: rgb(89, 89, 89);
}
.ui_mapper_feature_picture_wrap:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    border: 1px solid rgba(0, 0, 0, .21);
    border-radius: 17px;
    content: '';
}
.ui_mapper_feature_picture_wrap img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
}
.ui_mapper_feature_grey_wrap {
    display: table;
    border: solid 1px rgb(222, 225, 229);
    border-radius: 17px;
    background-color: rgb(241,241,241);
    width: 100%;
}
.ui_mapper_feature_wrap {
    width: 100%;
    display: table;
    text-decoration: none;
    color: rgb(7,7,7);
    text-align: left;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 13px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.ui_mapper_feature_wrap.active {
    background-color: rgb(241,241,241);
}
.ui_mapper_feature_form_input {
    padding: 8px 13px;
}
.ui_mapper_feature_button_text {
    float: left;
    font-size: 13px;
    margin-top: 8px;
}
.ui_mapper_feature_form_input90 {
    padding-top: 13px;
}
.ui_mapper_feature_pick_input {display: none;}
.ui_mapper_feature_pick_wrap {
    display: none;
    margin-top: 21px;
    border-radius: 10px;
}
.ui_mapper_feature_pick_list_wrap {
    background-color: rgb(255,255,255);
    margin-bottom: 17px;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
}
.ui_mapper_feature_pick_list {
    width: 100%;
    display: table;
    table-layout: fixed;
    cursor: pointer;
    overflow: hidden;
}
.ui_mapper_feature_pick_list_item {display: table-cell;}
.ui_mapper_feature_pick_list_item_inner {
    display: block;
    text-align: center;
    margin: 0 auto;
}
.ui_mapper_feature_pick_label {
    width: 100%;
    cursor: pointer;
    text-align: center;
    display: table;
    position: relative;
    color: rgb(134,134,134);
    font-weight: 500;
    padding: 3px;
}
.ui_mapper_feature_pick_input:checked + .ui_mapper_feature_pick_label {/* checked toggle */
    color: rgb(7,7,7);
    background-color: rgb(245, 245, 245);
}
.ui_mapper_feature_pick_input:not(:checked) + .ui_mapper_feature_pick_label {/* unchecked toggle */}
.ui_mapper_feature_pick_input:not(:checked) + .ui_mapper_feature_pick_label:hover {/* unchecked/hovered toggle */}
.ui_mapper_feature_pick_icon {
    background-color: transparent;
    border: solid 1px transparent;
    font-size: 21px;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    padding: 7px 0px 7px 0px;
    text-align: center;
    position: relative;
    /* color: rgb(99,99,99); */
    border: 1px solid rgba(0, 0, 0, 0);
}
.ui_mapper_feature_pick_input:checked + .ui_mapper_feature_pick_label .ui_mapper_feature_pick_icon {/* checked icon */
    color: rgb(7,7,7);
}
.ui_mapper_feature_pick_input:not(:checked) + .ui_mapper_feature_pick_label .ui_mapper_feature_pick_icon {/* unchecked icon */}
.ui_mapper_feature_pick_input:not(:checked) + .ui_mapper_feature_pick_label:hover .ui_mapper_feature_pick_icon {/* unchecked/hovered icon */}
.ui_mapper_feature_pick_label_text {/* label text */
    position: relative;
    font-size: 12px;
    margin-bottom: 7px;
}
.ui_mapper_feature_form_box {
    width: 100%;
    display: none;
    margin-bottom: 17px;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
}
.ui_mapper_feature_form {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    border-radius: 7px;
    -webkit-box-shadow: 0px 5px 7px rgb(16 106 250 / 21%), 0px 1px 1px rgb(16 106 250 / 34%);
    -moz-box-shadow: 0px 5px 7px rgba(16, 106, 250, 0.21), 0px 1px 1px rgba(16, 106, 250, 0.34);
    -ms-box-shadow: 0px 5px 7px rgba(16, 106, 250, 0.21), 0px 1px 1px rgba(16, 106, 250, 0.34);
    -o-box-shadow: 0px 5px 7px rgba(16, 106, 250, 0.21), 0px 1px 1px rgba(16, 106, 250, 0.34);
    box-shadow: 0px 5px 7px rgb(16 106 250 / 21%), 0px 1px 1px rgb(16 106 250 / 34%);
}
.ui_mapper_feature_form_header {
    width: 100%;
    display: table;
    padding: 11px 11px;
    color: rgb(7,7,7);
    border-bottom: solid 1px rgba(0, 0, 0, .07);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: rgb(250,250,250);
}
.ui_mapper_feature_form_header_content {
    float: left;
    width: 100%;
}
.ui_mapper_feature_form_header_icon {
    float: left;
    font-size: 21px;
    line-height: 30px;
    overflow: hidden;
    height: 30px;
    width: 30px;
    padding: 1px 0px 0px 1px;
    text-align: center;
    border-radius: 17px;
    margin-right: 7px;
    color: rgb(7,7,7);
}
.ui_mapper_feature_form_header_xmark {
    float: right;
    font-size: 11px;
    line-height: 30px;
    overflow: hidden;
    height: 30px;
    width: 30px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    color: rgb(177,177,177);
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 100%;
}
.ui_mapper_feature_form_header_xmark:hover {
    color: rgb(7,7,7);
}
.ui_mapper_feature_form_header_text {
    float: left;
    font-size: 13px;
    line-height: 34px;
    font-weight: 500;
}
.ui_mapper_feature_form_item_grey {
    width: 100%;
    padding: 13px;
    font-size: 11px;
    display: table;
    cursor: pointer;
    background-color: rgb(240, 240, 240);
    color: rgb(134,134,134);
}
.ui_mapper_feature_form_item {
    width: 100%;
    padding: 17px;
    font-size: 17px;
    font-weight: 500;
    display: table;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    color: rgb(89, 89, 89);
}
.ui_mapper_feature_form_item.first {border-radius: 0;}
.ui_mapper_feature_form_item.middle {
    border-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_mapper_feature_form_item.last {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_mapper_feature_form_item.child {
    border-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_mapper_feature_form_item.only {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui_mapper_feature_form_inner_box {
    display: table;
    width: 100%;
    border-radius: 17px;
}
.ui_mapper_feature_form_item_text {
    float: left;
    font-size: 13px;
    
    line-height: 30px;
}
.ui_mapper_feature_form_item_text_right {
    float: right;
    font-size: 14px;
    display: table;
    border-radius: 34px;
    height: 30px;
    width: 30px;
    line-height: 17px;
    padding: 5px;
    text-align: center;
    background-color: white;
    border: solid 1px rgba(0, 0, 0, .14);
    color: rgb(7,7,7);
}
.ui_mapper_feature_form_item_input {
    width: 100%;
    padding: 13px; 
    font-size: 13px;
    border-radius: 7px;
    transition: all 377ms linear;
    display: block;
    background-color: rgb(252, 252, 252);
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
}
/* small stream picture */
.ui_mapper_feature_form_item_preview {
    float: right;
    width: 30px;
    height: 30px;
    border-radius: 34px;
    position: relative;
    background-color: white;
    padding: 7px;
}
.ui_mapper_feature_form_item_preview.black {background-color: rgb(89, 89, 89);}
.ui_mapper_feature_form_item_preview:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    border: solid 1px rgba(0, 0, 0, .14);
    border-radius: inherit;
    content: '';
}
.ui_mapper_feature_form_item_preview img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.ui_mapper_feature_form_item_wrap_border {
    width: 100%;
    padding: 11px;
    font-size: 17px;
    display: table;
    cursor: pointer;
    background-color: transparent;
}

.ui_mapper_feature_picture_wrap2 {position: relative;}
.ui_mapper_feature_picture_wrap2:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    border: 1px solid rgba(0, 0, 0, .17);
    border-radius: inherit;
    content: '';
}
.ui_content_stream_page {
    margin: 0 auto;
    max-width: 610px;
}
.ui_content_stream_item {
    color: rgb(134,134,134);
    border-bottom: solid 1px rgba(0, 0, 0, .07);
    overflow: hidden;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 17px;
    margin: 0px auto;
    position: relative;
    padding: 21px;
    margin-bottom: 17px;
    font-size: 17px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.ui_content_stream_item_empty {
    color: rgb(134,134,134);
    border-bottom: solid 1px rgba(0, 0, 0, .07);
    overflow: hidden;
    width: 100%;
    text-align: center;
    background-color: rgb(255, 255, 255);
    border-radius: 17px;
    margin: 0px auto;
    max-width: 377px;
    position: relative;
    padding: 55px 21px;
    margin-bottom: 17px;
    font-size: 17px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.ui_content_stream_item_header_icon_1 {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    font-weight: 400;
    background-color: rgb(235, 235, 235);
    color: rgb(34, 34, 34);
    float: left; 
    font-size: 13px;
    margin-right: 7px;
}
.ui_content_stream_item_header_icon_2 {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    font-weight: 400;
    background-color: rgb(235, 235, 235);
    color: rgb(201, 201, 201);
    float: left; 
    font-size: 13px;
    margin-right: 7px;
}
.ui_content_stream_item_header_text {
    float: left;
    color: rgb(134,134,134);
    line-height: 21px;
}

.ui_content_stream_item_text {
    color: rgb(34, 34, 34);
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    float: left;
    line-height: 21px;
}
.ui_content_stream_item_title_sub_text {
    color: rgb(134,134,134);
    font-size: 14px;
    
    padding-top: 7px;
}
.ui_content_stream_item_text_2 {
    color: rgb(134,134,134);
    font-size: 14px;
    line-height: 21px;
    padding-top: 7px;
    width: 100%;
    float: left;
}
.ui_content_stream_item_text_3 {
    color: rgb(7, 7, 7);
    font-size: 14px;
    
    padding-top: 7px;
    width: 100%;
    float: left;
}
.ui_content_stream_item_button_wrap {
    padding-top: 17px;
    width: 100%;
    display: table;
}
.ui_content_stream_item_button_list {
    display: table;
    width: 100%;
    table-layout: fixed;
    font-size: 17px;
    cursor: pointer;
}
.ui_content_stream_item_button_item {display: table-cell;}
.ui_content_stream_item_button_inner {
    display: block;
    text-align: center;
    margin: 0 auto;
    
    margin-right: 2px;
    color: rgb(7,7,7);
    background-color: white;
}
.ui_content_stream_item_button_inner.red {color: #E10B17;}
.ui_content_stream_item_button_inner.green {color: #17A41A;}
.ui_content_stream_item_button_inner_2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    color: white;
    margin-left: 2px; 
    color: rgb(17,17,17);
    background-color: white;
}
.ui_content_stream_item_button_shadow {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 34px;
    display: block;
    margin: 0 auto;
    font-weight: 400;
    background-color: rgb(255, 255, 255);
    border: solid 2px transparent;
    color: rgb(7, 7, 7);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
}
.ui_content_stream_loader_wrap {
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            border-radius: 17px;
            overflow: hidden;
            margin: 0 auto;
            max-width: 377px;
}
.ui_content_stream_loader_box {
    background-color: rgb(255,255,255);
    position: relative;
    overflow: hidden;
    padding: 17px;
    /* min-height: 233px; */
}
.ui_content_stream_loader_header {
    overflow: hidden;
    margin: 10px;
}
.ui_content_stream_loader_header_content {
    height: auto;
    margin-bottom: 5px;
    overflow: hidden;
}
.ui_content_stream_loader_header_title {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    width: 34%;
    display: block;
    float: left;
    overflow: hidden;
    border-radius: 17px;
    animation: bar_animation_thirty_four .89s infinite linear;
}
.ui_content_stream_loader_header_detail_wrap {margin-top: 5px;}
.ui_content_stream_loader_header_detail {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    width: 21%;
    float: left;
    border-radius: 17px;
    animation: bar_animation_twenty_one .89s infinite linear;
}
.ui_content_stream_loader_header_detail:hover {text-decoration:underline;}
.ui_content_stream_loader_line_wrap {margin: 10px;}
.ui_content_stream_loader_line_1 {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    width: 89%;
    margin-bottom: 8px;
    border-radius: 17px;
    animation: bar_animation_eighty_nine .89s infinite linear;
}
.ui_content_stream_loader_line_2 {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    max-width: 55%;
    margin-bottom: 8px;
    border-radius: 17px;
    animation: bar_animation_fifty_five .89s infinite linear;
}
.ui_content_stream_loader_line_3 {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    max-width: 34%;
    margin-bottom: 8px;
    border-radius: 17px;
    animation: bar_animation_thirty_four .89s infinite linear;
}
.ui_modal_mask_wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    z-index: 999;
    -webkit-overflow-scrolling: touch;
}
.ui_modal_box_x_mark {
    background-color: white;
    width: 34px;
    height: 34px;
    border-radius: 34px;
    padding: 4px;
    padding-top: 2px;
    text-align: center;
    font-size: 17px;
    color: rgb(134,134,134);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.55);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.55);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.55);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.55);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    /* position */
    position: absolute;
    right: -17px;
    top: -17px;
}
.ui_modal_box_x_mark:hover {
    color: rgb(208,25,22);
    -webkit-box-shadow: 0px 10px 20px rgba(208, 25, 22, 0.19), 0px 6px 6px rgba(208, 25, 22, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(208, 25, 22, 0.19), 0px 6px 6px rgba(208, 25, 22, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(208, 25, 22, 0.19), 0px 6px 6px rgba(208, 25, 22, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(208, 25, 22, 0.19), 0px 6px 6px rgba(208, 25, 22, 0.23);
            box-shadow: 0px 10px 20px rgba(208, 25, 22, 0.19), 0px 6px 6px rgba(208, 25, 22, 0.23);
}
.ui_modal_box { 
    max-width: 407px;
    margin: 34px auto;
    position: relative;
    z-index: 999;
    padding: 17px;
}
.ui_modal_wrap {padding: 34px;}
.ui_modal_form_buttons_wrap {
    width: 100%;
    display: table;
    margin-top: 34px;
}
.ui_modal_form_link {
    color: rgb(43, 146, 230);
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    
    float: left;
}
.ui_modal_form_link2 {
    color: rgb(117, 117, 117);
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    
    width: 100%;
}
.ui_modal_form_submit_button {
    color: white;
    padding: 8px 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background-color: rgb(43, 146, 230);
    border-radius: 10px;
    float: right;
}
.ui_modal_alert_text {
    color: rgb(7,7,7);
    font-size: 14px;
    padding: 17px;
}
.ui_modal_alert_button_close {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #106afa;
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
    border-radius: 34px;
    width: 100%;
}
.ui_modal_action_buttons_list {
    display: table;
    width: 100%;
    table-layout: fixed;
    font-size: 13px;
    cursor: pointer;
}
.ui_modal_action_buttons_list_item {
    display: table-cell;
}
.ui_modal_action_buttons_list_item_inner {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 13px 8px;
    
    margin-right: 2px;
    border-radius: 17px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: solid 1px rgba(0, 0, 0, .17);
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    color: rgb(7,7,7);
    background-color: white;
}
.ui_modal_action_buttons_list_item_inner2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 13px;
    
    color: white;
    margin-left: 2px; 
    border-radius: 17px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border: solid 1px rgba(0, 0, 0, .17);
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    color: #106afa;
    background-color: white;
}
.ui_modal_action_buttons_list_item_inner.red {
    color: #E10B17;
}
.ui_modal_action_buttons_list_item_inner.green {
    color: #17A41A;
}
.ui_modal_clear_blur_frost {/* modal transparent frost */
    -webkit-filter: blur(22px);
       -moz-filter: blur(22px);
        -ms-filter: blur(22px);
         -o-filter: blur(22px);
    filter: url("data:image/svg+xml;utf21,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='-5%' y='-5%' width='110%' height='110%'><feGaussianBlur in='SourceGraphic' stdDeviation='5'/></filter></svg>#svgBlur");/* FF doesn't support blur filter, but SVG */
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius = '21');
    filter: blur(22px);
}
.ui_modal_clear_blur_mask {/* modal transparent mask */
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    background-color: rgba(0, 0, 0,  0.4);
    -webkit-overflow-scrolling: touch;
    padding: 17px;
}
.ui_modal_clear_blur_box {/* modal transparent box */
    position: relative;
    z-index: 999;
    max-width: 441px;
    margin: 17px auto;
    border-radius: 17px;
    background-color: rgba(0, 0, 0, .17);
}
.ui_modal_clear_blur_box_header {/* modal transparent box header */
    position: relative;
    padding: 17px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: rgba(0, 0, 0, .25);
}
.ui_modal_clear_blur_box_header_text {/* modal transparent box header text */
    color: rgb(255,255,255);
    text-align: center;   
    font-size: 17px;
    
}
.ui_modal_clear_blur_x_button {/* modal transparent x button */
    position: absolute;
    right: 14px;
    top: 14px;
    cursor: pointer;
    font-size: 11px;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    color: rgb(255,255,255);
    background-color: rgba(255,255,255,.17);
    border: solid 1px rgba(0, 0, 0, 0);
}
.ui_modal_clear_blur_x_button:hover {/* modal transparent x button hover */
    color: #106afa;
}
.ui_modal_clear_blur_button_wrap {/* modal transparent button wrap */
    padding: 17px;
    width: 100%;
    display: table;
    background-color: rgba(0, 0, 0, .25);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.ui_modal_clear_blur_link_button {/* modal transparent link button */
    color: white;
    padding: 17px 25px;
    background-color: rgba(255,255,255,.17);
    border-radius: 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    
    float: left;
}
.ui_modal_clear_blur_submit_button {/* modal transparent submit button */
    color: white;
    padding: 17px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background-color: rgba(255,255,255,.17);
    border-radius: 17px;
    float: right;
}
.ui_modal_clear_blur_box_content_wrap {/* modal transparent content wrap */}
.ui_information_box {
    padding: 34px;
    border-radius: 21px;
    background-color: white;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin: 0 auto;
    max-width: 377px;
}
.ui_information_inner {
    float: left;
    width: 391px;
    position: relative;
    padding-top: 34px;
}
.ui_information_content {
    width: 100%;
}
.ui_information_header_wrap {
    width: 100%;
    margin-bottom: 11px;
    transition: all 377ms linear;
    text-align: center;
}
.ui_information_header_icon {
    font-size: 17px;
    line-height: 47px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 14px;
    border-radius: 34px;
    color: rgb(134,134,134);
    border: solid 1px rgba(0,0,0,.07);
    background-color: rgb(245, 245, 245);
}
.ui_information_title {
    color: #202124;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    width: 100%;
    padding-top: 3px;
    padding-bottom: 21px;
}
.ui_information_header {
    color: #202124;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    padding-bottom: 4px;
}
.ui_information_description {
    color: #202124;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3em;
    margin-bottom: 13px;
}
.ui_information_media_wrap {
    float: left;
    width: 631px;
    position: relative;
    padding: 17px;
}
.ui_information_img {
    width: 100%;
}
.ui_information_note {
    font-size: 14px;
    
    line-height: 1.4;
    width: 269px;
    margin: 22px auto;
    padding: 13px;
    background-color: rgb(255, 255, 255);
    color: rgb(89, 89, 89); 
    border: solid 2px rgb(200, 200, 200);
}
.ui_oil_price_box {
    color: rgb(134,134,134);
    word-wrap: break-word;
    background-color: rgb(255, 255, 255);
    border-radius: 21px;
    margin: 0px auto;
    max-width: 377px;
    position: relative;
    padding: 21px;
    margin-bottom: 21px;
    font-size: 14px;
    text-align: center;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.ui_oil_price_header_wrap {
    width: 100%;
    margin-bottom: 17px;
    transition: all 377ms linear;
    text-align: center;
}
.ui_oil_price_header_text {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 7px;
    color: rgb(7, 7, 7);
}
.ui_oil_price_header_sub_text {
    color: rgb(134,134,134);
    font-size: 13px;
    margin: 0 auto;
}
.ui_oil_price_widget_wrap div {
    font-size: 13px !important;
    text-decoration: none !important;

}
.ui_oil_price_widget_wrap div span a {
    font-size: 13px !important;
    text-decoration: none !important;
}
.ui_oil_price_header_icon {
    font-size: 17px;
    line-height: 47px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 14px;
    border-radius: 34px;
    color: rgb(12 12 12);
    background-color: rgb(240 240 240);
}
.ui_map_info_table_container {
    display: block;
    margin-top: 3px;
}
.ui_map_info_table_wrap {
    border-collapse: collapse; width: 100%; color: rgb(55, 55, 55); background-color: rgb(250, 250, 250); border: solid 1px rgb(221, 221, 221); font-size: 13px;
}
.ui_map_info_table_body {}
.ui_map_info_table_row {}
.ui_map_info_table_body {}
.ui_map_info_table_detail {
    padding: 17px 14px;
    border: solid 1px rgb(221, 221, 221);
}
.ui_modal_content_box {
    margin: 17px auto;
    max-width: 377px;
    padding: 34px;
    background-color: rgb(255,255,255);
    color: rgb(134,134,134);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
    border-radius: 7px;
}
.ui_account_content_box {
    width: 100%;
    overflow: hidden;
    background-color: white;
    padding: 34px 21px 34px 21px;
    border-radius: 21px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin: 0 auto;
    max-width: 610px;
    margin-bottom: 21px;
}
.ui_account_menu_list_icon_grey_light { 
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden; 
    height: 34px;
    width: 34px;
    padding: 2px 0px 0px 0px; 
    text-align: center;
    margin-right: 11px;
    border-radius: 17px;
    background-color: rgb(235, 235, 235);
    color: rgb(134,134,134);
}
.ui_account_menu_list_icon_grey_light_ring { 
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px; 
    text-align: center;
    margin-right: 11px;
    border-radius: 17px;
    background-color: transparent;
    color: rgb(134,134,134);
    border: solid 2px rgb(134,134,134);
}
.ui_account_menu_list_icon_grey_dark_solid { 
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px; 
    text-align: center;
    margin-right: 11px;
    border-radius: 17px;
    background-color: rgb(134,134,134);
    color: rgb(255, 255, 255);
    border: solid 2px transparent;
}
.ui_account_info_text_wrap {
    float: left;
}
.ui_account_menu_list_icon_grey_box_shadow {
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden; 
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px; 
    text-align: center;
    background-color: transparent;
    color:  rgb(7, 7, 7);
    margin-right: 11px;
    border-radius: 34px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
}
.ui_account_menu_list_icon_box_shadow {
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden; 
    height: 34px;
    width: 34px;
    padding: 2px 0px 0px 0px; 
    text-align: center;
    background-color: rgb(255, 255, 255);
    color:  rgb(7, 7, 7);
    margin-right: 11px;
    border-radius: 34px;
    border: solid 1px transparent;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.ui_account_menu_list_divider {
    padding: 0px 34px;
    height: 1px;
    border-bottom: solid 1px rgba(0, 0, 0, .17);
}
.ui_account_menu_list_icon_color {
    float: left;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    text-align: center;
    background-color: rgb(134,134,134);
    color: rgb(255, 255, 255);
    margin-right: 11px;
    border-radius: 34px;
}
.ui_account_menu_list_icon_color.red {
    background-color: rgb(225,11,23);
    color: white;
}
.ui_account_menu_list_icon_color.orange {
    background-color: rgb(254,156,39);
    color: white;
}
.ui_account_menu_list_icon_color.yellow {
    background-color: rgb(250,188,45);
    color: white;
}
.ui_account_menu_list_icon_color.green {
    background-color: rgb(20,143,22);
    color: white;
}
.ui_account_menu_list_icon_color.blue {
    background-color: rgb(15,105,250);
    color: white;
}
.ui_account_menu_list_icon_color.indigo {
    background-color: rgb(110,104,232);
    color: white;
}
.ui_account_menu_list_icon_color.violet {
    background-color: rgb(186,64,251);
    color: white;
}
.ui_account_info_wrap {
    width: 100%;
    padding: 11px;
    font-size: 17px;
    display: table;
    cursor: pointer;
}
.ui_account_menu_list_item {
    width: 100%;
    padding: 11px;
    font-size: 17px;
    display: table;
    cursor: pointer;
    background-color: rgb(255,255,255);
}
.ui_account_menu_list_icon_color_left_side {
    float: left;
    font-size: 21px;
    line-height: 55px;
    overflow: hidden;
    height: 55px;
    width: 55px; 
    padding: 0px 0px 0px 0px;
    text-align: center;
    margin-right: 11px;
    border-radius: 34px;
    border:  solid 2px rgb(7, 7, 7);
    background-color: transparent;
    color: rgb(7, 7, 7);
}
.ui_account_menu_list_icon_color_left_side_text {
    float: left;
    font-size: 17px;
    font-weight: 500;
}
.ui_account_menu_list_icon_color_left_side_sub_text {/* modal general title text */
    color: rgb(134,134,134); 
    font-size: 14px;
    line-height: 21px;
    width: 100%;
}
.ui_account_header_wrap {
    width: 100%;
    padding: 11px;
    font-size: 17px;
    display: table;
    cursor: pointer;
}
.ui_account_header_icon {
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden; 
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px; 
    text-align: center;
    background-color: transparent;
    color:  rgb(7, 7, 7);
    margin-right: 11px;
    border-radius: 34px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
}
.ui_account_header_icon_black_ring {
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden; 
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px; 
    text-align: center;
    margin-right: 11px;
    border-radius: 34px;
    color: rgb(7, 7, 7);
    border: solid 1px rgba(0, 0, 0, .34);
    background-color: rgb(255, 255, 255);
}
.ui_account_header_text_wrap {
    float: left;
}
.ui_account_header_text_primary {
    float: left;
    font-size: 17px;
    font-weight: 500;
}
.ui_account_header_text_secondary {/* modal general title text */
    color: rgb(134,134,134); 
    font-size: 14px;
    line-height: 21px;
    width: 100%;
}
.ui_account_menu_item_grey {
    width: 100%;
    padding: 13px;
    font-size: 11px;
    display: table;
    cursor: pointer;
    background-color: rgb(240, 240, 240);
}
.ui_account_menu_item {
    width: 100%;
    padding: 11px;
    font-size: 17px;
    display: table;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
}
.ui_account_menu_item.first {border-radius: 0;}
.ui_account_menu_item.middle {
    border-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_account_menu_item.last {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_account_menu_item.child {
    border-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_account_menu_item.only {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui_account_menu_item_text_right {
    float: right;
    font-size: 14px;
    display: table;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    line-height: 17px;
    padding: 5px;
    text-align: center;
    background-color: white;
    border: solid 1px rgba(0, 0, 0, .14);
    color: rgb(7,7,7);
}
.ui_account_menu_item_text {
    float: left;
    font-size: 17px;
    line-height: 38px;
}
.ui_account_menu_item_text_grey_ring {
    float: left;
    font-size: 17px;
    color:  rgb(134,134,134);
    line-height: 38px;
    font-weight: 500;
}
.ui_account_menu_item_text_red {
    float: left;
    font-size: 14px;
    line-height: 38px;
    color: rgb(222, 19, 35);
}
.ui_account_menu_item_text_400 {
    float: left;
    font-size: 14px;
    line-height: 38px;
}

.ui_account_menu_admin_button_wrap {
    padding: 17px;
}
.ui_account_menu_admin_button {
    color: rgb(7, 7, 7);
    padding: 17px 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(238, 238, 238);
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 7px;
}
.ui_account_menu_list_icon_color_left_side_sub_icon_wrap {
    width: 100%;
    padding: 7px;
    font-size: 14px;
    display: table;
    cursor: pointer;
    background-color: transparent;
    border-radius: 34px;
    border: solid 1px rgb(233, 233, 233);
}

.ui_account_menu_list_icon_color_left_side_sub_icon {
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    background-color: rgb(134,134,134); 
    color: rgb(255, 255, 255); 
    border: solid 2px transparent; 
    margin-right: 7px;
    border-radius: 34px;
} 
.ui_account_menu_list_icon_color_left_side_sub_icon_text {
    float: left;
    font-size: 14px;
    color: rgb(134,134,134); 
    line-height: 34px;
}
.ui_account_menu_list_icon_clear {
    float: left;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    background-color: transparent;
    color: rgb(134,134,134);
    border: solid 2px;
    margin-right: 11px;
    border-radius: 34px;
}
.ui_account_menu_list_icon_clear.red {
    color: rgb(225,11,23);
}
.ui_account_menu_list_icon_clear.orange {
    color: rgb(254,156,39);
}
.ui_account_menu_list_icon_clear.yellow {
    color: rgb(250,188,45);
}
.ui_account_menu_list_icon_clear.green {
    color: rgb(20,143,22);
}
.ui_account_menu_list_icon_clear.blue {
    color: rgb(15,105,250);
}
.ui_account_menu_list_icon_clear.indigo {
    color: rgb(110,104,232);
}
.ui_account_menu_list_icon_clear.violet {
    color: rgb(186,64,251);
}
.ui_account_header_icon_clear {
    font-size: 21px;
    line-height: 44px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
    border:  solid 2px transparent;
    background-color: transparent;
    color: rgb(7, 7, 7);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
}
.ui_account_header_icon_clear.red {
    background-color: rgb(225,11,23);
    color: white;
}
.ui_account_header_icon_clear.orange {
    background-color: rgb(254,156,39);
    color: white;
}
.ui_account_header_icon_clear.yellow {
    background-color: rgb(250,188,45);
    color: white;
}
.ui_account_header_icon_clear.green {
    background-color: rgb(20,143,22);
    color: white;
}
.ui_account_header_icon_clear.blue {
    background-color: rgb(15,105,250);
    color: white;
}
.ui_account_header_icon_clear.indigo {
    background-color: rgb(110,104,232);
    color: white;
}
.ui_account_header_icon_clear.violet {
    background-color: rgb(186,64,251);
    color: white;
}
.ui_account_header_icon_black_background_grey {
    font-size: 21px;
    line-height: 44px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
    border:  solid 2px transparent;
    background-color: rgb(235, 235, 235);
    color: rgb(7, 7, 7);
}
.ui_account_header_icon_white_background_grey {
    font-size: 21px;
    line-height: 44px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
    border:  solid 2px transparent;
    background-color: rgb(134,134,134);
    color: rgb(255, 255, 255);
}
.ui_account_plan_divider_dot {
    color: rgb(134,134,134);
}
.ui_account_plan_text_green {
    color: rgb(23, 164, 26);
    font-size: 14px;
    font-weight: 500;
}
.ui_account_info_sub_item_wrap {
    color: rgb(7, 7, 7);
    padding: 11px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 377ms ease;
    width: 100%;
    background-color: transparent;
}
.ui_account_info_sub_item_wrap_icon {
    float: left;
    font-size: 17px;
    line-height: 21px;
    overflow: hidden;
    height: 30px;
    width: 30px;
    padding: 3px 0px 0px 1px;
    text-align: center;
    border-radius: 17px;
    margin-right: 3px;
}
.ui_account_info_sub_item_wrap_text {
    float: left;
    font-size: 14px;
    line-height: 30px;
    padding-right: 11px;
}
.ui_invite_friend_wrap {
    text-align: center;
    font-size: 13px;
    margin: 0px auto;
    display: none;
}
.ui_invite_friend_wrap.visiblized {
    display: block;
}
.ui_invite_friend_button {
    padding: 7px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 377ms ease;
    border-radius: 10px;
    margin: 17px;
    margin-bottom: 0px;
    color: #0e6afa;
    background-color: white;
    border: solid 1px;
}
.ui_invite_friend_button.phoenix {
    color: rgb(225, 11, 23);
    border:  solid 1px rgb(225, 11, 23);
    background-color: rgb(250, 188, 45);
}
.ui_invite_friend_button.received {
    color: rgb(23, 164, 26);
}
.ui_invite_friend_button_icon {
    float: left;
    font-size: 17px;
    line-height: 30px;
    overflow: hidden;
    height: 30px;
    width: 30px;
    padding: 3px 0px 0px 1px;
    text-align: center;
    border-radius: 34px;
    margin-right: 3px;
}
.ui_invite_friend_button_text {
    float: left;
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
    padding-right: 11px;
}
.ui_invite_friend_img_wrap {
    position: relative;
    margin: 0 auto;
    max-width: 233px;
}
.ui_invite_friend_img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}
.ui_modal_description_text_wrap {
    color: rgb(7,7,7);
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    padding: 21px;
}
.ui_modal_confirm_button_wrap {
    padding: 21px;
    width: 100%;
    display: table;
}
.ui_modal_confirm_button_no {
    color: rgb(117, 117, 117);
    padding: 17px 34px;
    background-color: rgb(235, 235, 235);
    border: solid 1px rgb(198, 198, 198);
    border-radius: 17px;
    text-align: center;
    text-decoration: none;
    display: none;
    font-size: 16px;
    cursor: pointer;
    font-size: 14px;
    float: left;
}
.ui_modal_confirm_button_yes {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: none;
    font-size: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #106afa;
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(15, 105, 255, 0.17), 0px 3px 7px rgba(15, 105, 255, 0.34);
    border-radius: 17px;
    float: right;
}
.ui_modal_confirm_button_no.visiblized {display: block;}
.ui_modal_confirm_button_yes.visiblized {display: block;}
.ui_modal_confirm_header_wrap {
    text-align: center;
    margin: 17px auto;
}
.ui_modal_confirm_wrap {
    margin: 13px auto;
    max-width: 377px;
    margin-bottom: 21px;
    padding: 17px;
    background-color: rgb(255,255,255);
    color: rgb(134,134,134);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
    border-radius: 21px;
}
.ui_modal_confirm_header_icon {
    font-size: 17px;
    line-height: 47px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 14px;
    border-radius: 34px;
    color: rgb(134,134,134);
    border: solid 1px rgba(0,0,0,.07);
    background-color: rgb(245, 245, 245);
}
.ui_modal_confirm_text {
    color: rgb(7,7,7);
    font-size: 14px;
    text-align: center;
    padding: 14px 0px;
}
.ui_modal_confirm_button_wrap {
    padding: 21px;
    width: 100%;
    display: table;
}
.ui_modal_confirm_button_blue {
    color: white;
    padding: 21px;
    text-align: center;
    text-decoration: none;
    display: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #106afa;
    transition: all 377ms ease;
    border-radius: 17px;
    float: right;
    width: 50%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.ui_modal_confirm_button_blue.visiblized {display: block;}
.ui_modal_confirm_button_grey {
    color: rgb(134,134,134);
    padding: 21px;
    background-color: rgb(233, 233, 233);
    border-radius: 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    float: left;
    width: 50%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.ui_content_loader_wrap  {
  animation: rotate 1s infinite;  
  height: 50px;
  width: 50px;
  margin: 0 auto;
  margin-top: 50%;
}

.ui_content_loader_wrap:before,
.ui_content_loader_wrap:after {   
  border-radius: 34px;
  content: '';
  display: block;
  height: 20px;  
  width: 20px;
}
.ui_content_loader_wrap:before {
  animation: ball1 1s infinite;  
  background-color: #7f5943;
  box-shadow: 30px 0 0 #becd2c;
  margin-bottom: 10px;
}
.ui_content_loader_wrap:after {
  animation: ball2 1s infinite; 
  background-color: #2b6d13;
  box-shadow: 30px 0 0 #519236;
}
.ui_modal_default_frost {/* modal general frost */
    -webkit-filter: blur(17px);
       -moz-filter: blur(17px);
        -ms-filter: blur(17px);
         -o-filter: blur(17px);
    filter: url("data:image/svg+xml;utf17,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='-5%' y='-5%' width='110%' height='110%'><feGaussianBlur in='SourceGraphic' stdDeviation='5'/></filter></svg>#svgBlur");/* FF doesn't support blur filter, but SVG */
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius = '17');
    filter: blur(17px);
}
.ui_custom_select_wrap {
    position: relative;
    
    margin-bottom: 17px;
    font-size: 13px;
}
.ui_custom_select_wrap select {/* default select menu */
    display: none;/* hide default select menu */
}
.ui_custom_select_menu {/* custom select menu selected item */
    border-radius: 17px;
    color: rgb(7,7,7);
    border: solid 1px rgb(198, 198, 198);
    background-color: rgb(255, 255, 255);
}
.ui_custom_select_menu:after {/* custom select down arrow */
    position: absolute;
    content: "";
    top: 20px;
    right: 17px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: rgb(7,7,7) transparent transparent transparent;/* custom select down arrow icon color */
}
.ui_custom_select_menu.select-arrow-active:after {/* custom select up arrow */
    border-color: transparent transparent rgb(7,7,7) transparent;/* custom select up arrow icon color */
    top: 13px;/* point arrow upwards when select box open */
}
.ui_custom_select_item div,.ui_custom_select_menu {/* all custom select menu options including the selected item */
    padding: 13px;
    cursor: pointer;
    user-select: none;
    padding-left: 17px;
}
.ui_custom_select_item {/* custom select menu result box */
    position: absolute;
    background-color: white;
    color: rgb(117, 117, 117);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 17px;
    overflow: hidden;
    

    -webkit-box-shadow: 0px 13px 22px rgba(0, 0, 0,  0.21), 0px 5px 5px rgba(0, 0, 0,  0.23);
       -moz-box-shadow: 0px 13px 22px rgba(0, 0, 0,  0.21), 0px 5px 5px rgba(0, 0, 0,  0.23);
        -ms-box-shadow: 0px 13px 22px rgba(0, 0, 0,  0.21), 0px 5px 5px rgba(0, 0, 0,  0.23);
         -o-box-shadow: 0px 13px 22px rgba(0, 0, 0,  0.21), 0px 5px 5px rgba(0, 0, 0,  0.23);
            box-shadow: 0px 13px 22px rgba(0, 0, 0,  0.21), 0px 5px 5px rgba(0, 0, 0,  0.23);

}
.ui_custom_select_hide {/* hide the items when the select box is closed */
    display: none;
}
.ui_custom_select_item div:hover, .same-as-selected {/* custom select menu result selected item */
    color: rgb(7,7,7);
    background-color: rgb(222, 225, 229);
}
.ui_custom_select_item div:not(.same-as-selected):hover {/* hover over nonselected items */
    color: rgb(7,7,7);
    background-color: rgb(235, 235, 235);
}
.ui_subscription_information_box {
	text-align: center;
    border-radius: 17px;
    background-color: rgb(255, 255, 255);
    color: rgb(7,7,7);
    font-size: 13px;
    word-wrap: break-word;
    padding: 17px;
    margin: 0px auto;
    max-width: 377px;
    margin-bottom: 17px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            border-radius: 17px;
}
.ui_subscription_information_list {
    list-style-type: none;
    margin: 10px;
    padding: 0px;
    background-color: white;
    text-align: left;
}
.ui_subscription_information_list_item {
    display: block;
    padding: 8px 0px;
    text-decoration: none;
    color: rgb(7,7,7);
    font-size: 14px;
    cursor: pointer;
}
.ui_subscription_information_bold_text {
    font-weight: 500;
}
.ui_subscription_coupon_input_wrap {
    width: 100%;
    margin-top: 17px;
    border-radius: 7px;
    transition: all 377ms linear;
    padding: 3px 7px;
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
    background-color: rgb(245, 245, 245);
    overflow: hidden;
}
.ui_subscription_coupon_input_icon {
    float: left;
    line-height: 44px;
    font-size: 14px;
    padding-left: 11px;
    color: rgb(134,134,134);
    position: absolute;
}
.ui_subscription_coupon_input {
    float: right;
    background-color: rgba(0, 0, 0, 0.0);
    font-size: 14px;
    transition: all 377ms linear;
    height: 44px;
    line-height: 44px;
    width: 100%;
    padding-left: 34px;
}
.ui_admin_data_item_wrap {
    word-wrap: break-word;
    background-color: rgb(255, 255, 255);
    border-radius: 17px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    max-width: 377px;
    margin-bottom: 21px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.ui_admin_data_header {
    width: 100%;
    display: table;
    padding: 17px;
    color: black;
    font-weight: 500;
    border-bottom: solid 1px rgba(0, 0, 0, .07);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background: rgb(250,250,250);
}
.ui_admin_data_header_inner {
    float: left;
    width: 100%;
}
.ui_admin_data_list_icon {
    float: left;
    font-size: 17px;
    line-height: 37px;
    height: 34px;
    width: 34px;
    background-color: rgb(233, 233, 233);
    text-align: center;
    border-radius: 17px;
    margin-right: 7px;
    color: rgb(7, 7, 7);
}
.ui_admin_data_list_header_text {
    float: left;
    font-size: 14px;
    line-height: 34px;
    
}
.ui_admin_data_item {
    width: 100%;
    padding: 17px 21px;
    font-size: 17px;
    display: table;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
}
.ui_admin_data_item.first {border-radius: 0;}
.ui_admin_data_item.middle {
    border-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_admin_data_item.last {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_admin_data_item.child {
    border-radius: 0;
    border-top: solid 1px rgba(0, 0, 0, .07);
}
.ui_admin_data_item.only {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui_admin_data_item_text_left {
    float: left;
    font-size: 14px;
    line-height: 34px;
}
.ui_admin_data_item_text_right {
    float: right;
    font-size: 14px;
    font-weight: 500;
    display: table;
    height: 34px;
    width: 34px;
    line-height: 34px;
    text-align: center;
    background-color: white;
    border: solid 1px rgba(0, 0, 0, 0);
    color: rgb(7,7,7);
}
.ui_coupon_used_wrap {
    display: none;
}
.ui_box_shadow_1 {
    box-shadow: 5px  5px 10px #000000,
                5px  5px 10px #000000,
               -5px -5px 10px blue;
}
.ui_box_shadow_2 {
    box-shadow: inset  5px  5px 10px #000000,
                inset  5px  5px 10px #000000,
                inset -5px -5px 10px blue;
}
.ui_gradient_background_image_1 {
    background-color: #111111;
    background-image: linear-gradient(to top, transparent, #b1b1b1 100%),
       gray repeating-linear-gradient(45deg,  transparent, transparent 35px, rgba(255, 255, 255, 0.5) 35px, rgba(255, 255, 255, 0.5) 70px);
}
.ui_gradient_background_image_2 {
    background-color: #111111;
    background-image: linear-gradient(#fff, #999) no-repeat border-box,
                      linear-gradient(#eee, #777) no-repeat border-box;
}
.ui_gradient_background_image_3 {
    background-color: #111111;
    background-image: linear-gradient(to bottom right, red, yellow);
}
.ui_gradient_background_with_pixel {
    background-color: #111111;
    background-image: linear-gradient(90deg, transparent 40px, #444 20px );
    background-size: 60px, 950px;
    background-position: 10px, 10px;
}
.ui_gradient_background_with_percent {
    background-color: #111111;
    background-image: linear-gradient(90deg, transparent 66.6667%, #444 33.3333%);
    background-size: 6.25%, 98.95833%;
    background-position: 1.04167%, 1.04167%;
}
.ui_view_content_wrap_frosty {
    margin: 13px 0px;
    margin-bottom: 21px;
    padding: 17px;
    color: rgb(134,134,134);
    border-radius: 34px;
    border: solid 1px rgba(255, 255, 255, .7);
    box-shadow: inset  5px  5px 10px rgba(255, 255, 255, 0.3),
                inset  5px  5px 10px rgba(255, 255, 255, 0.3),
                inset -5px -5px 10px rgba(255, 255, 255, 0.3);
    /* background-color: rgba(255, 255, 255, 0); */
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
                      linear-gradient(to top left, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0.3)),
                      radial-gradient(red, green, blue);
}
.ui_contact_form_message {
    display: none;    
}
.ui_modal_button_list_wrap {
    padding-top: 3px;
    width: 100%;
    display: table;
}
.ui_modal_button_list {
    display: table;
    width: 100%;
    table-layout: fixed;
    font-size: 13px;
    cursor: pointer;
}
.ui_modal_button_wrap {
     display: none;
}
.ui_modal_button_wrap.visiblized {
    display: table-cell;
}
.ui_modal_button_left {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 17px;
    font-weight: 500;
    margin-right: 2px;
    border-radius: 7px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: solid 1px rgb(223, 223, 223);
    border-bottom: solid 1px rgb(203, 203, 203);
    color: rgb(7,7,7);
    background-color: white;
}
.ui_modal_button_right {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 17px;
    font-weight: 500;
    color: white;
    margin-left: 2px; 
    border-radius: 7px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border: solid 1px rgb(223, 223, 223);
    border-bottom: solid 1px rgb(203, 203, 203);
    color: #0f8af9;
    background-color: white;
}
.ui_subscriber_welcome_img_wrap {
    margin: 17px auto;
    max-width: 233px;
}
.ui_subscriber_welcome_img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}
.ui_subscriber_welcome_text_wrap {
    text-align: center;
    color: rgb(7, 7, 7);
    font-size: 17px;
    font-weight: bold;
    font-family: Arial Condensed Bold, "Arial Condensed", Arial Bold, Arial, sans-serif;
    max-width: 377px;
    margin: 0 auto;
    margin-bottom: 17px;
}
.ui_subscriber_welcome_text {}
.ui_subscriber_welcome_text_2 {}
.ui_subscriber_welcome_coupon_text {}
.ui_header_text_description_text_bold {
    color: rgb(134, 134, 134);
    font-weight: bold;
}
.ui_about_page_price_table_container_wrap {}
.ui_about_page_price_table_wrap {
    background: rgb(255, 255, 255);
    margin-bottom: 17px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 17px;
    width: 30%;
    float: left;
}
.ui_about_page_price_table_wrap.grey_background {
    background: rgb(245, 245, 245);
    margin-bottom: 17px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 17px;
    width: 30%;
    float: left;
}
.ui_start_screen_carousel_container {
    position: relative;
    height: 70vh;
    min-height: 70vh;
    max-height: 70vh;
    padding-top: 10vh;
}
.ui_carousel_container {
    position: relative;
    height: 70vh;
    min-height: 70vh;
    max-height: 70vh;
    margin-bottom: 89px;
}
.ui_carousel_container_padded {
    position: relative;
        height: 70vh;
    min-height: 70vh;
    max-height: 70vh;
    padding-top: 10vh;
}
.ui_carousel_wrap {
    scroll-snap-type: x mandatory;  
    display: flex;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    /* hide horizontal scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
       scrollbar-width: none;  /* Firefox */
}
.ui_carousel_wrap::-webkit-scrollbar {/* hide horizontal scrollbar */
    background: transparent; /* Chrome/Safari/Webkit */
    display: none;
}
.ui_carousel_slide_indicators {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* height: 4vh; */
}
.ui_carousel_slide_indicator {
    cursor: pointer;
    height: 9px;
    width: 9px;
    margin: auto 3px;
    background-color: rgb(214 214 214);
    border-radius: 50%;
    display: inline-block;
    transition: all 377ms ease;
}
.ui_carousel_slide_indicator:hover {
    /* background-color: #0f8af9; */
}
.ui_carousel_slide_indicator_chosen {
    background-color: #0f8af9;
    background: linear-gradient(to right, #037bfe, #06b6ff);
    height: 9px;
    width: 21px;
    border-radius: 17px;
}
.ui_carousel_footer_wrap {
        height: 30vh;
    min-height: 30vh;
    max-height: 30vh;
}
.ui_carousel_footer_button_wrap {
    padding: 21px;
    /* background-color: rgb(240,240,240); */
    /* background: linear-gradient(to top right, rgb(240,240,240), #fbfbfb); */
    /* border-radius: 34px; */
    margin: 0px auto;
    max-width: 377px;
}
.ui_carousel_button_glow_green {
    color: rgb(23, 164, 26);
    padding: 21px 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    background-color: white;
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 17px;
     -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px  7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px  7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px  7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px  7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px  7px rgba(23, 164, 26, 0.34);
}
.ui_carousel_button_gradient_glow_green {
    color: rgb(255, 255, 255);
    padding: 21px 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 17px; 
    background-color: rgb(8, 144, 0);
    background: linear-gradient(to top right, rgb(8, 144, 0), rgb(31, 198, 0));
    -webkit-box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
    box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
}
.ui_carousel_button_gradient_glow_blue {
    color: rgb(255, 255, 255);
    padding: 21px 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    background-color: rgb(15, 138, 249);
    background: linear-gradient(to top right, rgb(0 111 255), rgb(0 189 255));
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 17px;
    -webkit-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
}
.ui_carousel_button_gradient_silver {
    color: rgb(134,134,134);
    padding: 21px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 17px;
    background-color: rgb(240, 240, 240);
    background: linear-gradient(to top right, rgb(224 224 224), rgb(248 248 248));
}
.ui_carousel_slide {
    min-width: 100%;
    height: 70vh;
    scroll-snap-align: start;
    text-align: center;
    position: relative;
    color: rgb(7, 7, 7);
}
.ui_carousel_above_wrap {
    height: 35vh;
    min-height: 35vh;
    max-height: 35vh;
}
.ui_carousel_below_wrap {
    height: 35vh;
    min-height: 35vh;
    max-height: 35vh;
}
.ui_carousel_img_wrap {
    width: 35vh;
    min-width: 35vh;
    max-width: 35vh;
    min-height: 35vh;
    max-height: 35vh;
    margin: 0 auto;
}
.ui_carousel_img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}
.ui_carousel_text_wrap {}
.ui_carousel_text {
    text-align: center;
    color: rgb(7, 7, 7);
    font-size: 21px;
    font-weight: bold;
    font-family: Arial Condensed Bold, "Arial Condensed", Arial Bold, Arial, sans-serif;
    max-width: 377px;
    margin: 0 auto;
    margin-bottom: 13px;
}
.ui_carousel_text_2 {
    color: rgb(134,134,134);
    font-size: 17px;
    line-height: 21px;
    max-width: 377px;
    margin: 0 auto;
    font-weight: 500;
}
.ui_start_screen_ocm_logo_img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    padding: 17px;
    background: white;
    border-radius: 100%;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
}
.ui_view_content_footer_button_above_wrap {
    height: 30%;
    min-height: 30%;
    max-height: 30%;
    position: relative;
    border-radius: 34px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background: linear-gradient(to right, #0f8af9, #17bbfe);
}
.ui_view_content_footer_button_below_wrap {
    height: 30%;
    min-height: 30%;
    max-height: 30%;
    position: relative;
    border-radius: 34px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: #0f8af9;
    background-color: rgb(240, 240, 240);
    margin-top: 7px;
}
.ui_view_content_footer_button_inner_wrap {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    height: 7vh;
    line-height: 7vh;
}
.ui_view_content_footer_button_4 {
    color: white;
    padding: 13px;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    border-radius: 34px;
    transition: all 377ms ease;
    background: linear-gradient(to right, #0f8af9, #17bbfe);
    margin-bottom: 11px;
}
.ui_view_content_footer_button_5 {
    color: rgb(7, 7, 7);
    padding: 13px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background-color: rgb(238, 238, 238);
    border-radius: 34px;
    transition: all 377ms ease;
}
.ui_view_content_footer_button_1 {
    color: #106afa;
    padding: 17px 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: white;
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 17px;
     -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
}
.ui_view_content_footer_button_2 {
    color: rgb(23, 164, 26);
    padding: 17px 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
     background-color: white;
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 7px;
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
}
.ui_view_content_footer_button_3 {
    color: white;
    padding: 17px 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: white;
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 17px;
     -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
             background: linear-gradient(to right, #0f8af9, #17bbfe);
}
#blue_modal_mask {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background-color: black;
    opacity: 0.5;
    filter: alpha(opacity=0.5);/* IE transparency */
    display:none;
}
/* blue_modal_window_two */
.blue_modal_window_two {
    border-radius: 17px;
    background: #fff;
    display: none;
    -webkit-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.21);
       -moz-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.21);
        -ms-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.21);
         -o-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.21);
            box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.21);
    z-index: 10;
    font-size: 13px;
    position: fixed;
    width: 500px;
    left: 50%;
    top: 50px;
    margin-left: -309px; /* Half of the width */
    color: #106afa;
    display: none;
}
/* icon-x-mark */
.icon-x-mark {
    position: absolute;
    top: 0px;
    right: 0px;
    
    cursor: pointer;
    color: rgb(134,134,134);
    padding: 13px;
    font-size: 17px;
}
.icon-x-mark:hover{color: #106afa;}
.showing_modal {
    overflow: hidden;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

/* transparent form */
.transparent_form_box {
    background-color: rgb(255, 255, 255);
    border-radius: 17px;
    margin: 10px auto;
    position: relative;
    padding: 28px;
    -webkit-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
       -moz-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
        -ms-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
         -o-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
            box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
}
.transparent_form_input {
    width: 100%;
    height: 36px;
    margin-bottom: 10px;
    padding: 8px;
    border: solid 1px rgb(222, 225, 229);
    background-color: rgb(241,241,241);
    font-size: 13px;
    border-radius: 10px;
    transition: all 377ms linear;
}
.transparent_form_button {
    color: white;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background-color: #106afa;
    border-radius: 10px;
    width: 100%;
}
/* about section */
.about_us {
    padding-top: 47px;
    background-color: white;
    min-height: 407px;
}
.about_us.baby_blue {
    background-color: #1fc8db;
    background-image: linear-gradient(141deg, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
}
.about_us.yellow {
    background: #ffe259;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ffa751, #ffe259);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ffa751, #ffe259); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/* textarea actions */
.textarea_actions_wrap {
    /* background-color: #fff; */
    /* border-radius: 17px; */
    margin: 22px auto;
    position: relative;
    /* padding: 13px 17px; */
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); */
}
.textarea_actions_list {
    display: table;
    width: 100%;
    table-layout: fixed;
    overflow: hidden;
    margin: 0 auto;
}
.textarea_actions_item_wrap {
    display: table-cell;
    padding: 5px;
}
.textarea_actions_item_inner {
    display: block;
    text-align: center;
    margin: 0 auto;
}
.textarea_actions_item {
    font-size: 13px;
    color: rgb(134,134,134);
    cursor: pointer;
    padding: 8px;
    display: block;
    transition: all 377ms linear;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
       -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
        -ms-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
         -o-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
            box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 17px;
}
.map_action_buttons {
    max-width: 500px;
    margin: 0 auto;
    padding: 13px;
    position: relative;
    margin-top: 17px;
    border-radius: 17px;
    background-color: white;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
       -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
        -ms-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
         -o-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
            box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
    font-size: 13px;
    
}
.map_action_button {
    color: white;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 13px;
    background-color: white;
    border-radius: 17px;
    width: 100%;
    margin: 5px auto;
    font-weight: 500;
}
.map_action_button.indigo {
    color: #106afa;
    background-color: rgb(255, 255, 255);
    border: solid 1px #106afa;
}
.map_action_button.google {
    color: #3aa56a;
    background-color: rgb(255, 255, 255);
    border: solid 1px #3aa56a;
}
/* map info table */
.map_info_table {
    border-collapse: collapse;
    width: 100%;
    color: rgb(7,7,7);
    margin-bottom: 5px;
    background-color: rgb(241,241,241);
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
    font-size: 13px;
}
.map_info_table td, .map_info_table th {
    padding: 8px;
}
.map_info_table tr:nth-child(even){background-color: rgb(241,241,241);}
.map_info_table tr:hover {background-color: rgb(235, 235, 235);} 
.mission_statement_wrap {
    margin-bottom: 34px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
       -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
        -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
         -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    background-color: white;
}
.mission_statement_inner {
    float: left;
    width: 391px;
    position: relative;
    padding: 21px;
    padding-top: 34px;
}
.mission_statement_content {
    width: 100%;
}
.mission_statement_title {
    color: rgb(7,7,7);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 17px;
}
.mission_statement_description {
    color: #202124;
    font-size: 14px;
}
.mission_statement_media_wrap {
    float: left;
    width: 631px;
    position: relative;
    padding: 17px;
}
.mission_statement_img {
    width: 100%;
}
.mission_statement_note {
    font-size: 14px;
    line-height: 1.4;
    width: 269px;
    margin: 22px auto;
    padding: 13px;
    background-color: rgb(255, 255, 255);
    color: rgb(89, 89, 89); 
    border: solid 2px rgb(200, 200, 200);
}
.guest_section_wrap {
    width: 100%;
    padding-bottom: 68px;
    clear:both;
}
.guest_site_wrap {
    min-width: 1021px;
    max-width: 1021px;
    margin: 0 auto;
}
.header_elements_wrap {
    float: right;
    margin-top: 7px;
    margin-right: 17px;
}
/* header avatar */
.header_avatar_wrap {
    float: left;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 34px;
    position: relative;
}
.header_avatar_wrap:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 34px;
    content: '';
}
.header_avatar_wrap_img {
    width: 100%;
    height: 100%;
    border-radius: 34px;
}
.profile_popup_wrap {
    z-index: 2;
    position: absolute;
    right: 55px;
    top: 34px;
    background-color: white;
    border: solid 1px rgb(189, 189, 189);
    -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
       -moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
        -ms-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
         -o-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
            box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.21);
    padding: 13px;
    display: none;
}
/* form */
.message_box_wrap {
    border-radius: 17px;
    color: white;
    font-size: 13px;
    background: linear-gradient(#FABC2D, #FE9C27);
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23); 
        -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
            box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
    padding: 17px;
    margin: 10px auto;
    margin-bottom: 34px;
    position: relative;
    
}
.message_box_x_mark {
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
            box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
    background-color: white;
    width: 34px;
    height: 34px;
    border-radius: 34px;
    text-align: center;
    font-size: 17px;
    color: rgb(254, 156, 49);
    cursor: pointer;
    padding: 4px;
    padding-top: 2px;
    position: absolute;
    right: -17px;
    top: -17px;
}


/* mini footer */



.error_message_box {
    display: none;
    font-size: 14px;
    color: rgb(255, 255, 255);
    padding: 13px;
    margin: 22px auto;
    border-radius: 17px;
    background-color: rgb(222, 19, 35);
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(222, 19, 35, 0.17), 0px 3px 7px rgba(222, 19, 35, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(222, 19, 35, 0.17), 0px 3px 7px rgba(222, 19, 35, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(222, 19, 35, 0.17), 0px 3px 7px rgba(222, 19, 35, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(222, 19, 35, 0.17), 0px 3px 7px rgba(222, 19, 35, 0.34);
    box-shadow: 0px 7px 17px rgba(222, 19, 35, 0.17), 0px 3px 7px rgba(222, 19, 35, 0.34);
}

.alert_message_box {
    display: none;
    background-color: white;
    font-size: 14px;
    border-radius: 17px;
    text-align: center;
    color: rgb(35, 162, 39);
    border: solid 1px rgba(35, 162, 39);
    padding: 10px;
    margin: 10px auto;
}
.map_input {
    width: 100%;
    margin-bottom: 17px;
    padding: 13px;
    border: solid 1px rgba(0, 0, 0, .07);
    border-top: solid 1px rgba(0, 0, 0, .17);
    background-color: rgb(241,241,241);
    font-size: 13px;
    border-radius: 17px;
    transition: all 377ms linear;
    margin-top: 7px;
}
.map_textarea {
    resize: none;
    min-height: 72px;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: solid 1px rgba(0, 0, 0, .07);
    border-top: solid 1px rgba(0, 0, 0, .17);
    background-color: rgb(241,241,241);
    font-size: 14px;
    border-radius: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    color: rgb(7,7,7);
    display: block;
}
.map_textarea.ui_form_input_with_error {
    border: solid 1px rgb(222, 19, 35);
    background-color: rgb(255, 255, 255);
    color: rgb(222, 19, 35);
}
/*--- map button style ---*/
.map_button {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 13px;
    background-color: #106afa;
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0, 0, 0, 0);
    margin-top: 17px;
}
.map_button:hover {background-color: #106afa;}
.map_button.lit {
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
     border-bottom: solid 1px rgba(0, 0, 0, .21);
}
.map_button:active {
    background-color: #106afa;
    -webkit-box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
       -moz-box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
        -ms-box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
         -o-box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
            box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
}
/* cookie consent banner */
.cookie_consent_banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(65, 180, 67);
    font-size: 13px;
}
.cookie_consent_banner_description_wrap {
    padding: 8px;
}
.cookie_consent_banner_description_text {
    color: white;
}
.cookie_consent_learn_more_text {
    color: white;
    text-decoration: underline;
    display: inline-block;
    cursor: pointer;
}
.cookie_consent_banner_button_wrap {
    padding: 8px;
    display: table;
    width: 100%;
}
.cookie_consent_banner_button {
    padding: 8px 17px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    border: solid 1px rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    border-radius: 10px;
    float: right;
}
/* error messsage modal */
.error_message_modal_mask_wrapper {
    background-color: rgba(250, 188, 45, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    z-index: 999;
    -webkit-overflow-scrolling: touch;
}
.error_message_modal_title {
    color: rgb(250, 188, 45);
    text-align: center;   
    font-size: 13px;
    
}






.error_message_modal_box {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    margin: 10px auto;
    position: relative;
    -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.21), 0 10px 10px rgba(0, 0, 0, 0.13);
       -moz-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.21), 0 10px 10px rgba(0, 0, 0, 0.13);
        -ms-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.21), 0 10px 10px rgba(0, 0, 0, 0.13);
         -o-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.21), 0 10px 10px rgba(0, 0, 0, 0.13);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.21), 0 10px 10px rgba(0, 0, 0, 0.13);
}
.error_message_modal_box_content {
    padding: 17px;
}
.error_message_modal_buttons_wrap {
    padding: 21px;
    width: 100%;
    display: table;
}

.error_message_modal_link {
    color: rgb(117, 117, 117);
    padding: 17px 34px;
    background-color: rgb(235, 235, 235);
    border: solid 1px rgb(198, 198, 198);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 14px;
    
    float: left;
}
.error_message_modal_tips_link {
    text-decoration: underline;
    cursor: pointer;
    color: rgb(117, 117, 117);
    font-size: 13px;
    margin: 17px;
    
    margin-top: 0;
}
.mapping_tips_wrap {
    display: none;
    color: rgb(7,7,7);
    font-size: 13px;
    margin: 17px;
    
    margin-top: 0;
}
.mapping_tips_picture_wrap {
    padding: 13px;
    margin-top: 17px;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
}
.mapping_tips_img {
    max-width: 100%;
    min-width: 100%;
}

/* usage statistics */
.box {
    background: linear-gradient(#106afa, #6E68F2);
    border-radius: 10px;
    margin: 22px auto;
    -webkit-box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.19), 0px 5px 5px rgba(16, 106, 250, 0.23);
       -moz-box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.19), 0px 5px 5px rgba(16, 106, 250, 0.23);
        -ms-box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.19), 0px 5px 5px rgba(16, 106, 250, 0.23);
         -o-box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.19), 0px 5px 5px rgba(16, 106, 250, 0.23);
            box-shadow: 0px 13px 22px rgba(16, 106, 250, 0.19), 0px 5px 5px rgba(16, 106, 250, 0.23);

}

.box__header {
    padding: 15px 28px;
    position: relative;
    text-align: center;
}

.box__header-title {
    color: #fff;
    font-size: 18px;
}

.box__body {
    padding: 0 28px;
}

/* STATS */

.stats {
    color: #fff;
    position: relative;
    padding-bottom: 28px;
}

.stats__amount {
    font-size: 42px;
    
    line-height: 1.2;
}

.stats__caption {
    font-size: 18px;

}

.stats__change {
    position: absolute;
    top: 10px;
    right: 0;
    text-align: right;
    color: #f0f0f0;
}

.stats__value {
    font-size: 18px;
}

.stats__period {
    font-size: 13px;
}

.stats__value--positive {
    color: #AEDC6F;
}

.stats__value--negative {
    color: #FB5055;
}

.stats--main .stats__amount {
    font-size: 34px;
}
/* end usage statistics */

.parsed_coordinates {
    white-space: pre-wrap;
    padding: 13px;
    margin-top: 13px;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
    border-radius: 10px;
    background-color: rgb(241,241,241);
}
/* about page */
.mission_statement {
    width: 50%;
    float: left;
}
.mission_statement_title_text {
    color: rgb(7,7,7);
    font-size: 30px;
    
    margin-bottom: 21px;
}
.mission_statement_description_text {
    color: rgb(7,7,7);
    font-size: 17px;
    font-weight: 200;
    line-height: 1.4;
}
.feature_sec_2 {
    width: 50%;
    position: relative;
    margin: 0 auto;
    margin-top: 47px;
    float: left;
}


/* map box info button */
.map_box_info_button {
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    background-color: white;
    width: 44px;
    height: 44px;
    border-radius: 34px;
    text-align: center;
    font-size: 21px;
    color: rgb(117, 117, 117);
    cursor: pointer;
    padding-top: 5px;
    margin: 13px auto;
    font-style: italic;
    font-weight: 500;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
}



.subscribe_button {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 17px 13px;
    background-color: #106afa;
    width: 100%;
    margin-top: 17px;
}
.subscribe_button:hover {
    background-color: #106afa;
}
.subscribe_button:active {
    background-color: #106afa;
}

.feature_action_button1 {
    display: inline-block;
    padding: 14px 21px;
    cursor: pointer;
    font-size: 17px;
    color: white;
    background-color: #17A41A;
    border-radius: 17px;
    
    float: left;
    margin-top: 34px;
    border-bottom: solid 3px rgba(0, 0, 0, .13);
}
.feature_action_button {
    display: inline-block;
    padding: 14px 34px;
    cursor: pointer;
    font-size: 17px;
    color: white;
    background-color: #17A41A;
    border-radius: 17px;
    font-weight: 500;
    margin: 55px auto;
    border-bottom: solid 3px rgba(0, 0, 0, .13);
}


/* --- feature panel --- */
.feature_panel_wrap {
    display: inline-block;
    margin-bottom: 34px;
    background-color: rgb(255,255,255);
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
       -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
        -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
         -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    border-radius: 10px;
    overflow: hidden;
}
.feature_panel_header {
    padding: 55px 34px;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    background-color: rgb(250,250,250);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: rgb(134,134,134);
}
.feature_panel {
    float: left;
    width: 340px;
    position: relative;
}
.feature_panel_inner {
    padding: 34px;
    border-radius: 0px;
    text-align: center;
}
.feature_panel_text_wrap {
    font-size: 17px;
    color: black;
    padding: 17px;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
       -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
        -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
         -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    border-radius: 17px;
    background-color: rgb(250,250,250);
}
.feature_panel_text_wrap.green {color: rgb(195, 207, 33);}
.feature_panel_text_wrap.light_green {color: rgb(93, 151, 50);}
.feature_panel_text_wrap.brown {color: rgb(137, 102, 50);}
.feature_panel_title {
    font-size: 17px;
    font-weight: 500;
}
.feature_panel_text {
    padding-top: 17px;
    
    font-size: 17px;
}
/* --- mobile phone mockup --- */
.mobile-phone {
    margin: auto;
    margin-top: 34px;
    padding: 10px 10px 10px;
    width: 252px;
    height: 502px;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
       -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
        -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
         -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    border-radius: 30px;
    background-color: white;
}
.screen {
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    border-radius: 30px;
    overflow: hidden;
}
.screen img {
    min-width: 100%;
    max-width: 100%;
    height: auto;
}
.brove {
    width: 100px;
    height: 17px;
    background: white;
    position: absolute;
    margin: 0 70px;
    border-radius: 0 0 20px 20px;
    text-align: center;
}
.speaker {
    width: 37px;
    height: 3px;
    background: #d2d2d2;
    display: block;
    margin: auto;
    margin-top: 5px;
    border-radius: 20px;
}

/* site footer */
.site_footer {
    width: 100%;
    border-top: solid 1px rgb(227,227,227);
    display: table;
    
    color: rgb(117, 117, 117);
    margin-top: 17px;
    padding-bottom: 55px;
}
.site_footer_phone {
    padding: 8px 13px;
    font-size: 14px;
    width: 100%;
    float: left;
    margin-bottom: 17px;
}
.site_footer_phone_text {
    cursor: pointer;
}
.site_footer_phone_text:hover {
    text-decoration: underline;
}
.site_footer_list {
    display: block;
    font-size: 14px;
    float: left;
    
}
.site_footer_list_item {
    float: left;
    text-align: center;
    padding: 13px 13px;
    cursor: pointer; 
}
.site_footer_list_item:hover {
    text-decoration: underline;
}
.site_footer_logo_box {
    float: left;
    padding: 13px 13px;
}
.site_footer_logo_img_wrap {
    padding: 21px 0px;
    display: table;
}
.site_footer_logo_img {
    max-width: 21px;
    max-height: 21px;
    margin-right: 13px;
    float: left;
}
/* site message box */
.site_message_box_wrap {
    border-radius: 17px;
    color: white;
    font-size: 13px;
    background: linear-gradient(#FABC2D, #FE9C27);
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
            box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
    padding: 17px;
    margin: 10px auto;
    margin-bottom: 34px;
    position: relative;
    
}
.site_message_box_x_mark {
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
            box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
    background-color: white;
    width: 34px;
    height: 34px;
    border-radius: 34px;
    text-align: center;
    font-size: 17px;
    color: rgb(254, 156, 49);
    cursor: pointer;
    padding: 4px;
    padding-top: 2px;
    position: absolute;
    right: -17px;
    top: -17px;
}
/* site warning box */
.site_warning_box_wrap {
    border-radius: 17px;
    color: white;
    font-size: 13px;
    background: linear-gradient(#FABC2D, #FE9C27);
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
            box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
    padding: 17px;
    margin: 10px auto;
    margin-bottom: 34px;
    position: relative;
    
}
.site_warning_box_x_mark {
    -webkit-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
            box-shadow: 0px 10px 20px rgba(254, 156, 49, 0.19), 0px 6px 6px rgba(254, 156, 49, 0.23);
    background-color: white;
    width: 34px;
    height: 34px;
    border-radius: 34px;
    text-align: center;
    font-size: 17px;
    color: rgb(254, 156, 49);
    cursor: pointer;
    padding: 4px;
    padding-top: 2px;
    position: absolute;
    right: -17px;
    top: -17px;
}
/* site error box */
.ie_error_wrap {
    border-radius: 17px;
    color: #E10B17;
    font-size: 13px;
    background-color: white; 
    -webkit-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
            box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
    padding: 17px;
    margin: 10px auto;
    margin-bottom: 34px;
    position: relative;
    
    display: none;
}
.ie_error_wrap7 {
    border-radius: 17px;
    color: #E10B17;
    font-size: 17px;
    background-color: white; 
    -webkit-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
            box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
    padding: 17px;
    margin: 21px auto;
    margin-bottom: 34px;
    position: relative;
    
    display: none;
}
.ie_error_x_mark {
    -webkit-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
       -moz-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
        -ms-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
         -o-box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
            box-shadow: 0px 10px 20px rgba(225, 11, 23, 0.19), 0px 6px 6px rgba(225, 11, 23, 0.23);
    background-color: white;
    width: 34px;
    height: 34px;
    border-radius: 34px;
    text-align: center;
    font-size: 17px;
    color: rgb(225, 11, 23);
    cursor: pointer;
    padding: 4px;
    padding-top: 2px;
    position: absolute;
    right: -17px;
    top: -17px;
}
.ie_error_description_wrap {
    padding: 8px;
}
.ie_error_description_text {
    color: #E10B17;
}
.cookie_consent_learn_more_text {
    color: #E10B17;
    text-decoration: underline;
    display: inline-block;
    cursor: pointer;
}
.ie_error_button_wrap {
    padding: 8px;
    display: table;
    width: 100%;
}
.ie_error_button {
    padding: 8px 17px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    border: solid 1px #E10B17;
    color: #E10B17;
    border-radius: 17px;
    float: right;
}

.tippyPrivacyPolicyFooter {
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.tippyPrivacyPolicyFooterCo {
    /* padding-left: 10px; */
    /* padding-right: 10px; */
    text-align: center;
    margin: 0 auto;
    max-width: 377px;
    margin-top: 11px;
}
.tippyPrivacyPolicyFooterItem {
    color: rgb(134,134,134);
    font-size: 13px;
}
.tippyPrivacyPolicyFooterItem:hover {
    text-decoration: underline;
}
.tippyPrivacyPolicyFooterDot {
    color: rgb(117, 117, 117);
    font-size: 12px;    
}
.tippyPrivacyPolicyFooterItemCo {
    color: rgb(134,134,134);
    font-size: 13px;
}
/* disclaimer footer */
.disclaimer_footer {
    border-radius: 17px;
    background-color: rgb(255, 255, 255);
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
    color: rgb(7,7,7);
    font-size: 13px;
    word-wrap: break-word;
    padding: 25px;
    margin: 17px auto;
}
/* map error warning */
.map_error_warning_note {
    font-size: 13px;
    
    margin: 17px;
    padding: 13px;
    background-color: rgb(241,241,241);
    color: rgb(117, 117, 117); 
    border: solid 1px rgba(0, 0, 0, .17);
}
/* form info box */
/* disclaimer footer */


/* header menu icon */
.header_menu_icon_wrap {
    float: left;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    margin-top: 5px;
}
.header_menu_icon_wrap:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    content: '';
    border: 1px solid rgba(0, 0, 0, .1);
}
.header_menu_icon_wrap_img {
    width: 100%;
    height: 100%;
}
/* about page */
.about_page_wrap {
    min-width: 1022px;
    max-width: 1022px;
    margin: 0 auto;
    /*---  stick footer to bottom ---*/
    min-height: 100%;/* equal to footer height */
    margin-bottom: -50px;/* account for last child potential margin-bottom */
}
/* about header */
.about_header_content {
    padding: 17px 0px;
    display: table;
    width: 100%;
}
/* about header logo */
.about_header_site_logo {
    float: left;
}
.about_header_site_logo_img {
    max-width: 177px;
    max-height: 29px;
}
/* about header login button */
.about_header_login_button {
    padding: 7px 10px;
    cursor: pointer;
    font-size: 13px;
    color: #2290E9;
    background-color: white;
    border-radius: 34px;
    float: right;
    font-weight: 500;
    margin-left: 7px;
    -webkit-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
    -moz-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
    -ms-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
    -o-box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
    box-shadow: 0px 1px 1px rgba(15, 105, 250, 0.55), 0px 1px 3px rgba(15, 105, 250, 0.34);
    width: 34px;
    height: 34px;
}
/* map box */
.map_box_header_logo_wrap {
    text-align: center;
    margin-bottom: 21px;
}
.map_box_header_logo {
    max-width: 169px;
    max-height: 21px;
}


/* page-header-icon-friend-request */
.page-header-icon-friend-request {
    float: left;
    margin-top: 3px;
    font-size: 24px;
    color: rgb(163,163,163);
    position: relative;
    cursor: pointer;
}
.page-header-icon-friend-request:hover {color: rgb(26, 115, 232);}
.page-header-icon-friend-request.clicked {color: rgb(26, 115, 232);}

/* white message box with blue glow and text */
/* form */
.blue_message_box_wrap {
    border-radius: 17px;
    color: rgb(7,7,7);
    font-size: 13px;
    background: white;
    padding: 17px;
    margin: 10px auto;
    margin-bottom: 34px;
    position: relative;
    line-height: 17px;
    
    padding: 28px;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
}
.blue_message_box_x_mark {
    -webkit-box-shadow: 0px 1px 1px rgba(16, 106, 250, 0.55), 0px 1px 3px rgba(16, 106, 250, 0.34);
       -moz-box-shadow: 0px 1px 1px rgba(16, 106, 250, 0.55), 0px 1px 3px rgba(16, 106, 250, 0.34);
        -ms-box-shadow: 0px 1px 1px rgba(16, 106, 250, 0.55), 0px 1px 3px rgba(16, 106, 250, 0.34);
         -o-box-shadow: 0px 1px 1px rgba(16, 106, 250, 0.55), 0px 1px 3px rgba(16, 106, 250, 0.34);
            box-shadow: 0px 1px 1px rgba(16, 106, 250, 0.55), 0px 1px 3px rgba(16, 106, 250, 0.34);
    background-color: white;
    border-bottom: solid 1px #106afa;
    width: 34px;
    height: 34px;
    border-radius: 34px;
    text-align: center;
    font-size: 17px;
    color: #106afa;
    cursor: pointer;
    padding: 4px;
    padding-top: 2px;
    position: absolute;
    right: -17px;
    top: -17px;
}
.blue_message_box_button_wrap {
    padding: 8px;
    display: table;
    width: 100%;
    margin-top: 13px;
}
.blue_message_box_button {
    padding: 8px 17px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background-color: white;
    border: solid 1px #106afa;
    color: #106afa;
    border-radius: 17px;
    float: right;
}
/* plans */
.guest_site_wrap {
    min-width: 1017px;
    max-width: 1017px;
    margin: 0 auto;
    margin-top: 55px;
}
.element-hidden {
  display: none;
}

.plan-name, .plan-price, .plan-details, .button, .more-options, .best-choice {
  padding: 10px;
}

.plans {
  margin: 0 auto;
  max-width: 80%;
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.plans .plan-box {
  display: flex;
  width: 33.3333%;
  background: #FFFCEF;
  margin: 10px 0;
  min-height: 650px;
}
.plans .plan-box .best-choice {
  background: #D5FFFC;
  
  font-weight: 600;
  color: #437299;
    -webkit-box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);
         -o-box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.15), inset 0px 2px 3px rgba(0, 0, 0, 0.15);

  margin-top: auto;
}
.plans .plan-box:hover {
  margin-top: -15px;
  background: white;
}
@media all and (max-width: 700px) {
  .plans .plan-box:hover {
    margin-top: 10px;
  }
}
.plans .plan-box:hover .plan-name {
  color: black;
}
.plans .plan-box:hover .plan-price {
  background: #be1100;
    -webkit-box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);
         -o-box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0px -4px 3px rgba(0, 0, 0, 0.15), inset 0px 4px 3px rgba(0, 0, 0, 0.15);

  text-align: center;
}
.plans .plan-box:hover .more-options {
  display: block;
  padding: 20px;
  text-align: right;
  position: relative;
}
.plans .plan-box:hover .more-options .additional-options {
  position: relative;
  text-align: left;
  width: 100%;
  margin: 0;
}
.plans .plan-box:hover .more-options a {
  color: #9E2B20;
  text-decoration: none;
}
@media all and (max-width: 700px) {
  .plans .plan-box:first-child {
    margin-bottom: 20px;
  }
}
.plans .plan-box:nth-child(2) {
  margin-top: 0;
    -webkit-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
         -o-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
            box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15), 3px 0 3px rgba(0, 0, 0, 0.15);
  position: relative;
}
.plans .plan-box:nth-child(2):hover {
  margin-top: -35px;
}
@media all and (max-width: 700px) {
  .plans .plan-box:nth-child(2):hover {
    margin-top: 0px;
    marign-right: -30px;
  }
}
@media all and (max-width: 700px) {
  .plans .plan-box {
    width: 100%;
  }
}
.plans .plan-name {
  font: 300 32px Oswald, Arial, Helvetica, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}
.plans .plan-price {
  background: #9E2B20;
  color: white;
  display: flex;
  font: 24px Oswald, Arial, Helvetica, sans-serif;
  padding: 20px 10px;
  text-align: center;
}
.plans .plan-price strong {
    font-size: 34px;
    align-self: baseline;
    line-height: 1;
    
}
.plans .plan-options {
    display: flex;
    flex-flow: column;
    width: 100%;
}
.plans .plan-options li {
    border-bottom: 1px solid #cdcdcd;
    padding: 5px 0;
    margin: 5px 0;
}
.plans .plan-options .button {
    margin-top: auto;
    display: block;
    background: #E0401C;
    color: white;
    text-align: center;
    font: 24px Oswald, Arial, Helvetica, sans-serif;
    text-decoration: none;
}
.plans .plan-options .button:hover {
    background: #ed380f;
}

/* mode switch */
.mode_switch {/* mode switch wrap */
    position: relative;
    display: table;
    width: 144px;
    height: 29px;
    margin: 0px auto;
    margin-bottom: 17px;
    
    font-size: 13px;
}
.mode_switch input {display:none;}/* hidden input */
input:focus + .mode_switch_slider {
    -webkit-box-shadow: 0px 0px 1px #2196F3;
       -moz-box-shadow: 0px 0px 1px #2196F3;
        -ms-box-shadow: 0px 0px 1px #2196F3;
         -o-box-shadow: 0px 0px 1px #2196F3;
            box-shadow: 0px 0px 1px #2196F3;
}
.mode_switch_slider {/* basic background */
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 377ms;
    transition: 377ms;
    border-radius: 17px;
    background-color: rgb(255, 255, 255);
    border: solid 1px rgb(198, 198, 198);
}
.mode_switch_slider:active {/* basic background */}
.mode_switch_slider:before {/* basic circle */
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 3px;
    bottom: 2px;
    -webkit-transition: 377ms;
    transition: 377ms;
    border-radius: 34px;
    background-color: white;
    border: solid 1px rgb(198, 198, 198);
}
.mode_switch_slider:after {/* basic text */
    content: 'Basic';
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    color: rgb(134,134,134);
}
input:checked + .mode_switch_slider {/* advanced background */
    border: solid 1px #106afa;
    background-color: #106afa;
}
input:checked + .mode_switch_slider:before {/* advanced circle */
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36px);
    transform: translateX(113px);
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    height: 17px;
    width: 17px;
    border: solid 1px rgb(255, 255, 255);
}
input:checked + .mode_switch_slider:after {/* advanced text */
    content: 'Expert';
    color: white;
}



/* pro map_form_box */
.pro_map_form_box8 {
    width: 100%;
    font-size: 13px;
    color: rgb(7,7,7);
    display: table;
    position: relative;
    margin: 0px auto;
    background-color: white;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); */
    border-radius: 17px;
}
.pro_map_form_content {
    padding: 13px;
}
.pro_map_form_title {
    color: #106afa;
    text-align: center;   
    font-size: 14px;
    
    padding: 8px;
}
.pro_map_form_divider {
    margin: 22px auto;
    margin-top: 13px;
    height: 1px;
    border-bottom: solid 1px rgb(222, 225, 229);
}
/* custom radio button */
.radio_button {
    margin-top: 1.5rem;
    color: rgb(117, 117, 117);
    font-size: 13px;
    font-weight: 500;
}
.radio_button input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.radio_button input[type="radio"] + .radio_button-label:before {/* unselected radio button */
    content: '';
    border-radius: 100%;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
    font-size: 13px;
    background-color: rgb(222, 225, 229);
    border: solid 1px rgb(222, 225, 229);
}
.radio_button input[type="radio"]:checked + .radio_button-label:before {/* selected radio button */
    background-color: #106afa;
    border: solid 1px #106afa;
    box-shadow: none;
}
.radio_button input[type="radio"]:focus + .radio_button-label:before {/* focused radio button */
    outline: none;
}
.radio_button input[type="radio"]:disabled + .radio_button-label:before {/* disabled radio button */
    -webkit-box-shadow: inset 0px 0px 0px 5px rgb(235, 235, 235);
       -moz-box-shadow: inset 0px 0px 0px 5px rgb(235, 235, 235);
        -ms-box-shadow: inset 0px 0px 0px 5px rgb(235, 235, 235);
         -o-box-shadow: inset 0px 0px 0px 5px rgb(235, 235, 235);
            box-shadow: inset 0px 0px 0px 5px rgb(235, 235, 235);

    background: rgb(255, 255, 255);
}
.radio_button input[type="radio"] + .radio_button-label:empty:before {
    margin-right: 0;
}
/* pro map form feature box */
.post-container {
    margin: 0 auto;
    display: table;
    width: 100%;
    font-size: 13px;
    padding: 13px;
    background-color: rgb(241,241,241);
    border-radius: 17px;
    margin-bottom: 17px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
       -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
        -ms-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
         -o-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
}
.post-thumb {
    float: left
}
.post-thumb img {
    display: block;
    width: 55px;
    height: 55px;
}
.post-content {
    margin-left: 69px
}
.post-title {
    
    font-size: 14px;
}
.pipeline_product_result {
    /* border: solid 1px red; */
}
/* pro map form button */
.pro_map_form_button {
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: rgb(117, 117, 117);
    text-align: center;
    border-radius: 17px;
    padding: 13px;
    background-color: white;
    margin-bottom: 17px;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
    background-color: rgb(235, 235, 235);
}
.pipeline_data_wrap {
    display: none;
}
.placemark_data_wrap {
    display: none;
}

/* pro map */

.advanced_map_button {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-align: center;
    border-radius: 17px;
    padding: 13px;
    background-color: #609639;
    margin-top: 13px;
}
.advanced_map_button:hover {
    background-color: #609639;
}
.advanced_map_button:active {
    background-color: #609639;
}
/* pro map */
.pro_map_form_box9 {
    width: 100%;
    font-size: 13px;
    display: table;
    position: relative;
    margin: 0px auto;
    border-radius: 17px;
    margin-top: 13px;
    color: rgb(117, 117, 117);
    border: solid 1px rgb(222, 225, 229);
    background-color: rgb(255, 255, 255);
}
.pro_map_form_box2 {
    width: 100%;
    font-size: 13px;
    color: #106afa;
    display: table;
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 5px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.pro_map_form_description {
    margin: 7px;
    margin-bottom: 17px;
}
.pro_map_form_section_header_sub_text {
    color: rgb(134,134,134);
}
.pro_map_form_input {
    width: 100%;
    margin-bottom: 17px;
    padding: 13px;
    font-size: 13px;
    border-radius: 17px;
    transition: all 377ms linear;
    border: solid 1px rgba(0, 0, 0, .04);
    border-top: solid 1px rgba(0, 0, 0, .07);
    background-color: rgb(241,241,241);
}
.pro_map_form_input2 {
    width: 100%;
    padding: 13px;
    font-size: 13px;
    border-radius: 7px;
    transition: all 377ms linear;
    display: block;
    background-color: rgb(252, 252, 252);
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
}
.ios_switch_button_wrap {
    background-color: white;
    display: table;
    width: 100%;
    padding: 8px 13px;
    border-bottom: solid 1px rgb(222, 225, 229);
}
.ios_switch_button {
    float: right;
}
.ios_switch_button_text2 {
    float: right;
    font-size: 13px;
    
    margin-top: 3px;
}
.pro_map_color_preview_box {
    height: 13px;
    width: 13px;

}
/* openlayers */
.map_preview {
    display: none;
}
/* fixed map preview */
.fixed_map_preview {
    background-color: rgb(255, 255, 255);
    border-radius: 17px;
    padding: 28px;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);

        position: fixed;
    /* center the element */
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    /* give it dimensions */
    width: 407px;
}
.pro_map_message_box {
    color: #106afa;
    font-size: 13px;
    background-color: #EAF4FD;
    border: solid 1px #106afa;
    padding: 13px;
    margin: 13px auto;
    border-radius: 17px;
}

.error_message_modal_buttons_wrap88 {
    padding-top: 3px;
    width: 100%;
    display: table;
}
.rotate-north {
    top: 75px;
    left: .5em;
}
.ol-custom-icon {
    font-size: .5em;
}
.ol-control {/* white outer part around map buttons */}
.ol-control button {/* blue inner part of map buttons*/}
/* pro map glued buttons */


.profile_action_button0 {
    padding: 13px 0px;/* top, right, bottom, left */
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}
.profile_action_button_icon0 {
    margin-right: 5px;
    float: left;
}

/* ios toggle button */ 
.tgl {display: none;}
.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {box-sizing: border-box;}
.tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection {background: none;}
.tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {background: none;}
.tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 4em;
    height: 2em;
    position: relative;
    cursor: pointer;
   -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
}
.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}
.tgl + .tgl-btn:after {left: 0;}
.tgl + .tgl-btn:before {display: none;}
.tgl:checked + .tgl-btn:after {left: 50%;}
.tgl-ios + .tgl-btn {
    background-color: rgb(241,241,241);
    border-radius: 2em;
    padding: 2px;
    transition: all 377ms ease;
    border: 1px solid rgb(222, 225, 229);
}
.tgl-ios + .tgl-btn:after {
    border-radius: 2em;
    background: white;
    transition: left 377ms cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 377ms ease, margin 377ms ease;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
       -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
        -ms-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
         -o-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
}
.tgl-ios + .tgl-btn:hover:after {
    will-change: padding;
}
.tgl-ios + .tgl-btn:active {
    

    -webkit-box-shadow: inset 0px 0px 0px 2em #e8eae9;
       -moz-box-shadow: inset 0px 0px 0px 2em #e8eae9;
        -ms-box-shadow: inset 0px 0px 0px 2em #e8eae9;
         -o-box-shadow: inset 0px 0px 0px 2em #e8eae9;
            box-shadow: inset 0px 0px 0px 2em #e8eae9;

}
.tgl-ios + .tgl-btn:active:after {
    padding-right: .8em;
}
.tgl-ios:checked + .tgl-btn { 
    background: #106afa;
    border: 1px solid #106afa; 
}
.tgl-ios:checked + .tgl-btn:active {
    box-shadow: none;
}
.tgl-ios:checked + .tgl-btn:active:after {
    margin-left: -.8em;
}


/* ios toggle button 2 */
.ios_switch_button2 {float: right;}
.tgl2 {display: none;}
.tgl2::-moz-selection, .tgl2:after::-moz-selection, .tgl2:before::-moz-selection, .tgl2 *::-moz-selection, .tgl2 *:after::-moz-selection, .tgl2 *:before::-moz-selection, .tgl2 + .tgl-btn2::-moz-selection {background: none;}
.tgl2::selection, .tgl2:after::selection, .tgl2:before::selection, .tgl2 *::selection, .tgl2 *:after::selection, .tgl2 *:before::selection, .tgl2 + .tgl-btn2::selection {background: none;}
.tgl2 + .tgl-btn2 {
    outline: 0;
    display: block;
    width: 4em;
    height: 2em;
    position: relative;
    cursor: pointer;
   -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
}
.tgl2 + .tgl-btn2:after, .tgl2 + .tgl-btn2:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}
.tgl2 + .tgl-btn2:after {left: 0;}
.tgl2 + .tgl-btn2:before {display: none;}
.tgl2:checked + .tgl-btn2:after {left: 50%;}
.tgl-ios2 + .tgl-btn2 {
    background-color: rgb(241,241,241);
    border-radius: 2em;
    padding: 2px;
    transition: all 377ms ease;
    border: 1px solid rgb(222, 225, 229);
}
.tgl-ios2 + .tgl-btn2:after {
    border-radius: 2em;
    background: white;
    transition: left 377ms cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 377ms ease, margin 377ms ease;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
       -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
        -ms-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
         -o-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 0px rgba(0, 0, 0, 0.08);
}
.tgl-ios2 + .tgl-btn2:hover:after {
    will-change: padding;
}
.tgl-ios2 + .tgl-btn2:active {
    
    -webkit-box-shadow: inset 0px 0px 0px 2em #e8eae9;
       -moz-box-shadow: inset 0px 0px 0px 2em #e8eae9;
        -ms-box-shadow: inset 0px 0px 0px 2em #e8eae9;
         -o-box-shadow: inset 0px 0px 0px 2em #e8eae9;
            box-shadow: inset 0px 0px 0px 2em #e8eae9;


}
.tgl-ios2 + .tgl-btn2:active:after {
    padding-right: .8em;
}
.tgl-ios2:checked + .tgl-btn2 { 
    background: #106afa;
    border: 1px solid #106afa; 
}
.tgl-ios2:checked + .tgl-btn2:active {
    box-shadow: none;
}
.tgl-ios2:checked + .tgl-btn2:active:after {
    margin-left: -.8em;
}

/* pro map form list */
/* menu-one */
.menu-one {
    float: left;
    margin-top: 10px;
    width: 192px;
}
/* menu-one-box */
.menu-one-box {
    border-radius: 3px;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
    margin-bottom: 10px;
    background-color: white;
    padding-top: 0;
    height: auto;
}
/* menu-one-hover */
.menu-one-hover:hover .menu-one-more {display : block;}
/* menu-one-header */
.menu-one-header {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    background-color: rgb(241,241,241);
    color: rgb(26, 115, 232);
    text-align: left;
    
    font-size: 11px; 
    
    padding: 10px;
    border-bottom: solid 1px rgb(222, 225, 229);
    
}
/* menu-one-more */
.menu-one-more {
    
    float: right;
    font-size: 12px;
    cursor: pointer;
    text-transform: none;
}
.menu-one-more:hover {text-decoration:underline;}
.menu-one-more {display: none;}
/* menu-one-list */
.menu-one-list {
    list-style-type: none;
    background-color: white;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
    display: table;
    width: 100%;
    border-radius: 17px;
}
/* menu-one-item */
.menu-one-item {
    width: 100%;
    display: table;
    text-decoration: none;
    color: rgb(7,7,7);
    text-align: left;
    font-size: 13px;
    /* overflow: hidden; */
    cursor: pointer;
    padding: 8px 13px;
    border-top: 1px solid rgb(222, 225, 229);
}
.menu-one-item.grey_background {   
    background-color: rgb(241,241,241);
}
.menu-one-item.dark_grey_background {   
    background-color: rgb(241,241,241);
}
.menu-one-item.first {   
    border-top: none;
}
.menu-one-item:hover {/* on hover do this */}
.menu-one-item.selected {
    background-color: rgb(26, 115, 232);
    color: white;
    border-radius: 3px;
}
.menu-one-item.selected > .menu-one-icon
{/* make the menu-one-icon white when we hover over a menu-one-item */
  color: white;
}

.menu-one-item:hover:not(.selected) > .menu-one-icon
{/* make the menu-one-icon white when we hover over a menu-one-item */
  color: white;
}
/* menu-one-picture */
.menu-one-picture {
    float: left;
    margin-right: 5px;
    width: 17px; 
    height: 17px;
    border-radius: 2px;
}
/* menu-one-icon */
.menu-one-icon {
    float: left;
    margin-right: 5px;
    border-radius: 3px;
    color: rgb(26, 115, 232);
    font-size: 16px;
}

.pro_map_extra_label_forms {
    display: none;
}
.menu-one-item23 {
    display: block;
    text-decoration: none;
    color: rgb(117, 117, 117);
    text-align: left;
    font-size: 13px; 
    overflow: hidden;
    cursor: pointer;
    padding: 8px 13px;
}

.small_stream_picture_wrap45 {
    float: right;
    width: 24px; 
    height: 24px;
    border-radius: 3px;
    position: relative;
}

/* pro form toggle */
/* kml mode switch */




/* circular switch */
.whose {
    display: flex;
  padding: 17px;
  box-sizing: border-box;
  height: 100%;
  backface-visibility: hidden;
}
.switch{
  --uiSwitchSize: var(--switchSize, 64px);
  --uiSwitchBgColor: var(--switchBgColor, #f1f1f1);
  --uiSwitchBgColorActive: var(--switchBgColorActive, #4ed164);
  --uiSwitchBorderColorActive: var(--switchBorderColorActive, #fff);
  --uiSwitchBorderColorFocus: var(--switchBgColorFocus, #43b556);
  --uiSwitchButtonBgColor: var(--switchButtonBgColor, #fff);  
  
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.switch__label{
  display: block;
  width: 100%;
  height: 100%;
}

.switch__toggle{
  width: 0;
  height: 0;
  opacity: 0;
  
  position: absolute;
  top: 0;
  left: 0;
}

.switch__toggle:focus ~ .switch__label{
    -webkit-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
       -moz-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
        -ms-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
         -o-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
            box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorFocus);
}

.switch__toggle:checked:focus ~ .switch__label{
    -webkit-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
       -moz-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
        -ms-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
         -o-box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
            box-shadow: 0px 0px 0px var(--uiSwitchThickFocus, 4px) var(--uiSwitchBorderColorActive);
}
.switch__label:before, .switch__label:after{
    content: "";
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
}
.switch__label:before{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: var(--uiSwitchBgColor);
}
.switch__label:after{
    top: 50%;
    z-index: 3;
    transition: -webkit-transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15);
    transition: transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15);
    transition: transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15), -webkit-transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15);
}
/* type 1 */
.switch_type1 {
    --uiSwitchBorderRadius: var(--switchBorderRadius, 60px);
    width: var(--uiSwitchSize);
    height: calc((var(--uiSwitchSize) / 2));
    border-radius: var(--uiSwitchBorderRadius);    
    background-color: var(--uiSwitchBgColorActive);
}
.switch_type1 .switch__label {
    border-radius: var(--uiSwitchBorderRadius);    
}
.switch_type1 .switch__label:before {
    border-radius: var(--uiSwitchBorderRadius);
    transition: opacity .2s ease-out .1s, -webkit-transform .2s ease-out .1s;
    transition: opacity .2s ease-out .1s, transform .2s ease-out .1s;
    transition: opacity .2s ease-out .1s, transform .2s ease-out .1s, -webkit-transform .2s ease-out .1s;

    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1;
}
.switch_type1 .switch__toggle:checked ~ .switch__label:before {

    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
    opacity: .7;
}
.switch_type1 .switch__label:after {
    width: calc(var(--uiSwitchSize) / 2);
    height: calc(var(--uiSwitchSize) / 2);

    -webkit-transform: translate3d(0, -50%, 0);
       -moz-transform: translate3d(0, -50%, 0);
        -ms-transform: translate3d(0, -50%, 0);
         -o-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);

    background-color: var(--uiSwitchButtonBgColor);
    border-radius: 100%;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
       -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
        -ms-box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
         -o-box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
            box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}
.switch_type1 .switch__toggle:checked ~ .switch__label:after {

    -webkit-transform: translate3d(100%, -50%, 0);
       -moz-transform: translate3d(100%, -50%, 0);
        -ms-transform: translate3d(100%, -50%, 0);
         -o-transform: translate3d(100%, -50%, 0);
            transform: translate3d(100%, -50%, 0);
}
.main-container {
    margin: 0px auto;
    margin-bottom: 17px;
    text-align: center;
}
/* image grid */
.thumbnails {
    overflow: hidden;
}
.thumbnails li {
    float: left;
    width: 11.1%;
    position: relative;
    padding: 3px;
    min-height: 30px;
    background-color: #fff;
    border: 1px solid #ccc;
    overflow: hidden;
}
.thumbnails li img {
    max-width: 100%;
    display: block;
    position: absolute;
    max-height: 100px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
/* glued radio buttons */
.pro_map_glued_toggle_buttons_list_item {
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}
.pro_map_glued_toggle_buttons_list_item input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}
.pro_map_glued_toggle_buttons_list_item label {
    background-color: rgb(235, 235, 235);
    color: rgb(117, 117, 117);
    border-bottom: solid 3px rgb(222, 225, 229);
}
.pro_map_glued_toggle_buttons_list_item label:hover {
    color: #106afa;
    border-bottom: solid 3px rgb(198, 198, 198);
    background-color: rgb(222, 225, 229);
}
.pro_map_glued_toggle_buttons_list_item input:checked + label {
    color: white;
    border-bottom: solid 3px #1F83D4;
    background-color: #106afa;
    box-shadow: none;
}
.pro_map_glued_toggle_buttons_list_item label:first-of-type {/* border-radius: 5px 0 0 4px; */}
.pro_map_glued_toggle_buttons_list_item label:last-of-type {/* border-radius: 0 4px 4px 0; */}
/* pro map glued buttons */
.pro_map_glued_toggle_buttons_list {
    display: table;
    width: 100%;
    table-layout: fixed;
    overflow: hidden;
    font-size: 13px;
    cursor: pointer;
    border-radius: 17px;
    transition: all 0.3s ease-in-out;
}
.pro_map_glued_toggle_buttons_list_item {display: table-cell;}
.pro_map_glued_toggle_buttons_list_item_inner {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 13px 8px;
    
    color: white;
    background-color: #17A41A;
    transition: all 0.1s ease-in-out;
}
/* pro map modal */
.pro_map_modal_mask_wrapper {
    background-color: rgba(16, 106, 250, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    z-index: 999;
    -webkit-overflow-scrolling: touch;
}
.pro_map_modal_title {
    color: rgb(250, 188, 45);
    text-align: center;   
    font-size: 13px;
    
}
.pro_map_modal_description {
    color: rgb(7,7,7);
    font-size: 13px;
    
}
.pro_map_modal_box {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    margin: 10px auto;
    position: relative;
    -webkit-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
       -moz-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
        -ms-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
         -o-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
            box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
}
.pro_map_modal_box_content {
    padding: 17px;
}
.pro_map_modal_buttons_wrap {
    padding: 17px;
    width: 100%;
    display: table;
    background-color: rgb(235, 235, 235);
    border-top: solid 1px rgb(198, 198, 198);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pro_map_modal_link {
    color: rgb(117, 117, 117);
    padding: 8px 17px;
    background-color: rgb(255,255,255);
    border: solid 1px rgb(198, 198, 198);
    border-radius: 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    
    float: left;
}
.pro_map_modal_submit_button {
    color: white;
    padding: 8px 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background-color: rgb(43, 146, 230);
    border-radius: 17px;
    float: right;
}
.pro_map_modal_tips_link {
    text-decoration: underline;
    cursor: pointer;
    color: rgb(117, 117, 117);
    font-size: 13px;
    margin: 17px;
    
    margin-top: 0;
}
/* menu select button */
.radio-toolbar {
    margin: 10px auto;
    text-align: center;
}
.radio-toolbar input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}
.radio-toolbar label {
    display: inline-block;
    background-color: white;
    padding-top: 11px;
    font-family: sans-serif, Arial;
    font-size: 13px;
    border-radius: 17px;
    margin: 0px 8px;
    width: 34px;
    height: 34px;
    color: rgb(117, 117, 117);
}
.radio-toolbar label:hover {
    background-color: #dfd;
}
.radio-toolbar input[type="radio"]:focus + label {
    border: 2px dashed #444;
}
.radio-toolbar input[type="radio"]:checked + label {
    background-color: rgb(241,241,241);
    border-color: #4c4;
    color: rgb(117, 117, 117);
}
/* view mode close button */
.view_mode_close_button {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-align: center;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 13px;
    background-color: #106afa;
    margin-top: 5px;
}
.view_mode_close_button:hover {
    background-color: #106afa;
}
.view_mode_close_button:active {
    background-color: #106afa;
}
/* edit form select box */
.edit_map_select_box {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border-radius: 17px;
    transition: all 377ms linear;
    border: solid 1px rgb(222, 225, 229);
    border-bottom: solid 1px rgb(222, 225, 229);
    background-color: rgb(255, 255, 255);
    display: block;
    margin-bottom: 8px;
}
.mode_box_dividerv2 {
    margin: 0 auto;
    margin-bottom: 17px;
    height: 1px;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
}
.edit_form_color_grid li.white {background-color: white;}
.edit_form_color_grid li.black {background-color: black;}
.edit_form_color_grid li.pink {background-color: pink;}
.edit_form_color_grid li.purple {background-color: purple;}
.edit_form_color_grid li.red {background-color: red;}
.edit_form_color_grid li.orange {background-color: orange;}
.edit_form_color_grid li.yellow {background-color: yellow;}
.edit_form_color_grid li.green {background-color: green;}
.edit_form_color_grid li.blue {background-color: blue;}
.edit_form_color_grid li.indigo {background-color: indigo;}
.edit_form_color_grid li.violet {background-color: violet;}
/* color pickers span */
.color-pickers span {
    display: block;
    float: left;
    width: 10%;
    height: 1.25em;
    cursor: pointer;
}
/* color picker size */
/* to change the color picker size */
.color-picker {
    font-size: 20px;
}
/* to change the color picker control’s size */
.color-picker i {
    font-size: 14px;
}
/* range slider plugin */
.rangeSlider__handle:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-image: linear-gradient(rgba(0, 0, 0, .13),hsla(0,0%,100%,0)); */
    border-radius: 34px;
    background: none;
}
.rangeSlider__handle {/* this is the slider ball handle */
    border: none;
    cursor: pointer;
    display: inline-block;
    width: 28px;
    height: 28px;
    position: absolute;
    /* background: #fff linear-gradient(hsla(0,0%,100%,0),rgba(0, 0, 0, .1)); */
    /* box-shadow: 0 0 8px rgba(0, 0, 0, .3); */
    background: none;
    border-radius: 34px;
    background-color: #106afa;
    box-shadow: none;

}
.rangeSlider__handle:active {/* slider circlr when clicked */
    background-color: #609639;
    /* add ocm logo to slider handle */
    background-image: url('../../upload/image/layout/logo/gpsmapper_logo_blue.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.rangeSlider {/* right side of slider */
    position: relative;
    background-color: rgb(222,222,222);
    border: none;
    margin: 13px 0px;
}
.rangeSlider, .rangeSlider__fill {
    display: block;
    box-shadow: none;
    border-radius: 10px;
}
.rangeSlider__horizontal {/* changes total dimensions of slider */
    height: 3px;
    width: 100%;
}
.rangeSlider__handle__horizontal {/* positions the range slider ball */
    top: -14px;
}
.rangeSlider__fill {/* left side of slider */
    background-color: #106afa;
    border: none;
}
.rangeSlider__buffer {
    position: absolute;
    top: 3px;
    height: 14px;
    background: none;
    border-radius: 10px;
}
/* pushpin radio */
.pushpin_radio {display: none;}
.pushpin_radio_label {
    cursor: pointer;
    float: left;
    min-width: 34px;
    max-width: 34px;
    position: relative;
    padding: 5px;
    min-height: 34px;
    max-height: 34px;
    margin: 4px;
    overflow: hidden;
    border-radius: 17px;
    transition: all 377ms linear;
}
.pushpin_radio_label:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.0);
    content: '';
    transition: all 377ms linear;
    border-radius: inherit;
}
.pushpin_radio:checked + .pushpin_radio_label:after {/* if psuedo belongs to checked */
    border: solid 1px rgba(0, 0, 0, .14);
    background-color: rgba(0, 0, 0, 0.02);
}
.pushpin_radio:checked + label {/* style the pushpin container */
    
}
.pushpin_radio:checked + .pushpin_radio_label img {
    background-color: white;
}
.pushpin_radio_label img {
    max-width: 100%;
    display: block;
    position: absolute;
    max-height: 100px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    padding: 7px;
    border-radius: 8px;
}
.pushpin_select_box {overflow: hidden;}
/* range slider buttons */
.rangea {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: table;
    font-size: 14px;
    color: #106afa;
    
    border-radius: 17px;
    border: solid 1px rgba(0, 0, 0, .04);
    border-top: solid 1px rgba(0, 0, 0, .07);
    background-color: rgb(255,255,255);
    /* stop element highlighting on click */
    -webkit-user-select: none;/* chrome/safari */        
    -moz-user-select: none;/* firefox */
    -ms-user-select: none;/* ie10+ */
    -o-user-select: none;
    user-select: none;
}
.rangec {
    display: table-cell;
    width: 14%;
    font-weight: 400px;
}
.ranged {text-align: right;}
.rangee {
    position: absolute;
    left: 50%;
    display: inline;
    width: auto;
    transform: translateX(-50%);
}
.range_button {
    padding: 7px 10px;
    border-radius: 17px;
    background-color: rgb(247,247,247);
    text-align: center;
    cursor: pointer;
    margin: 4px;
    border: solid 1px rgba(0, 0, 0, .07);
    border-bottom: solid 1px rgba(0, 0, 0, .21);
}
.range_button.decrease {float: left;}
.range_button.increase {float: right;}
.picked_range_value {
    text-align: center;
    color: #106afa;
    font-size: 17px;
    line-height: 45px;
}
/* leaflet css */
.leaflet_button_icon {
    font-size: 14px;
}
/* leaflet map feature label */
.leaflet_label {
    background: none;
    color: white;
    
    border: none;
    box-shadow: none;
    padding: 0;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}
.leaflet-tooltip-left.leaflet_label::before {
    border: none;
}
.leaflet-tooltip-right.leaflet_label::before {
    border: none;
}
/* editor */
.editor_range_label_text {
    float: left;
    
    font-size: 13px;
    text-align: center;
    width: 100%;
}
.range_slider_wrap {
    background-color: white;
}



.leaflet_button {
    cursor: pointer;
    font-size: 18px;
}
/* public message box */
.public_message_box_wrap {
    border-radius: 17px;
    color: rgb(7,7,7);
    font-size: 13px;
    background: white;
    padding: 17px;
    margin: 10px auto;
    margin-bottom: 34px;
    position: relative;
    
    padding: 17px;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
}
.public_message_box_x_mark {
    background-color: white;
    border: solid 1px rgba(0, 0, 0, .14);
    border-bottom: solid 1px rgba(0, 0, 0, .25);
    border-radius: 34px;
    color: rgb(7,7,7);
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    width: 34px;
    height: 34px;
    padding: 4px;
    padding-top: 2px;
    position: absolute;
    right: -17px;
    top: -17px;
}
.public_message_box_logo {
    text-align: center;
    margin-bottom: 17px;
}
.public_message_box_logo_img {
    max-width: 34px;
    max-height: 34px;
}
.public_message_box_button_wrap {
    padding: 8px;
    display: table;
    width: 100%;
    margin-top: 13px;
}
.public_message_box_button {
    padding: 8px 17px;
    cursor: pointer;
    font-size: 13px;
    
    background-color: white;
    border: solid 1px #106afa;
    color: #106afa;
    border-radius: 17px;
    float: right;
}

.blue_text {
    color: #106afa;
    
}
.black_text {
    color: rgb(17,17,17);
    
}
.verify_modal_credentials {
    color: rgb(7,7,7);
    font-size: 13px;
    background-color: rgb(255, 255, 255);
    border: solid 1px rgb(198, 198, 198);
    padding: 13px;
    margin: 22px auto;
    border-radius: 17px;
}







.ios_switch_button_text {
    float: left;
    margin-top: 5px;
}



.ios_switch_buttons_wrap {
    border-radius: 17px;
    display: table;
    width: 100%;
    border: solid 1px rgb(198, 198, 198);
     color: rgb(7,7,7);
     font-size: 13px;
     margin-bottom: 17px;
}

.pro_map_form_box {
    width: 100%;
    display: table;
    position: relative;
    margin: 0px auto;
    margin-bottom: 21px;
}


/* small stream picture */
.small_stream_picture_wrap {
    float: right;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    position: relative;
    background-color: white;
    padding: 5px;
}
.small_stream_picture_wrap.black {
    background-color: rgb(89, 89, 89);
}
.small_stream_picture_wrap:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 17px;
    content: '';
}
.small_stream_picture_img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
}
.line_width_wrap {
    float: right;
    font-size: 18px;
    position: relative;
    padding: 5px;
}
.editor_range_label_text45 {
    float: left;
    font-size: 13px;
    margin-top: 8px;
}





























/* hz_ab_list */
.hz_ab_list_wrap {
    width: 100%;
    display: table;
    margin-bottom: 21px;/* add space on bottom */
}
.hz_ab_list {
    width: 100%;
    display: table;
    table-layout: fixed;
    cursor: pointer;
}
.hz_ab_list_item_wrap {
    display: table-cell;
    padding: 3px;/* addd spaces between list items */
}
.hz_ab_list_item {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 50%;
}

/* cube_list */
.cube_list_wrap {/* cube_list_wrap */
    background-color: red;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}
.cube_list {/* cube_list */
    width: 100%;
    height: 50%;
    position: absolute;
}
.cube_list.one {
   top: 0;
   background-color: red;
}
.cube_list.two {
   bottom: 0;
   background-color: orange;
}
.cube_list_cube {/* cube_list_cube */
    width: 50%;
    height: 100%;
    position: absolute;
}
.cube_list_cube.one {
    top: 0;
    left: 0;
    background-color: red;
}
.cube_list_cube.two {
    top: 0;
    right: 0;
    background-color: orange;
}
.cube_list_cube.three {
    left: 0;
    bottom: 0;
    background-color: yellow;
}
.cube_list_cube.four {
    right: 0;
    bottom: 0;
    background-color: green;
}
.cube_list_cube_content {
    background-color: aliceblue;
    height: 100%;
    width: 100%;
    position: relative;
}
/* ... */



.hz_ab_list2_item_wrap_one {
    background-color: orange;
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
}
.hz_ab_list2_item_one {
    top: left;
    left: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    background-color: red;
    top: 0;
}
.hz_ab_list2_item_two {
    top: 0;
    right: 0;
    background-color: orange;
    width: 100%;
    height: 50%;
    position: absolute;
}
.hz_ab_list2_item_three {
    bottom: 0;
    left: 0;
    background-color: orange;
    width: 100%;
    height: 50%;
    position: absolute;
}
.hz_ab_list2_item_four {
    bottom: 0;
    right: 0;
    background-color: orange;
    width: 100%;
    height: 50%;
    position: absolute;
}





.checker {
  display: block;
  font-size: 20vmin;
  height: 1em;
  width: 2.5em;
  box-sizing: content-box;
  padding: 0.15em;
  border-radius: 0.25em;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease; 
  transition: transform .4s ease, -webkit-transform .4s ease;
  cursor: pointer;
}

.checkmark {
  width: 1em;
  height: 1em;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;

    -webkit-transform: translateX(-0.4em);
       -moz-transform: translateX(-0.4em);
        -ms-transform: translateX(-0.4em);
         -o-transform: translateX(-0.4em);
            transform: translateX(-0.4em);

  z-index: 5;
}
.checkmark svg {
  display: block;
  background: #e5e5e5;


    -webkit-transform: translateX(0.4em);
       -moz-transform: translateX(0.4em);
        -ms-transform: translateX(0.4em);
         -o-transform: translateX(0.4em);
            transform: translateX(0.4em);
  border-radius: 0.15em;
  transition: background-color .4s ease, -webkit-transform calc(.4s * 1.5) ease;
  transition: background-color .4s ease, transform calc(.4s * 1.5) ease;
  transition: background-color .4s ease, transform calc(.4s * 1.5) ease, -webkit-transform calc(.4s * 1.5) ease;
}
.checkmark svg path {
  stroke-dasharray: 90 90;
  stroke-dashoffset: 90;
  transition: stroke-dashoffset calc(.4s / 3) linear calc(.4s / 3);
}

.checkbox {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  visibility: hidden;
}
.checkbox:checked ~ .checkmark {
    -webkit-transform: translate(1.9em);
       -moz-transform: translate(1.9em);
        -ms-transform: translate(1.9em);
         -o-transform: translate(1.9em);
            transform: translate(1.9em);
}
.checkbox:checked ~ .checkmark svg {
  background: #77c44c;
    -webkit-transform: translate(-0.4em);
       -moz-transform: translate(-0.4em);
        -ms-transform: translate(-0.4em);
         -o-transform: translate(-0.4em);
            transform: translate(-0.4em);

}
.checkbox:checked ~ .checkmark svg path {
  stroke-dashoffset: 0;
}

.check-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: white;
  z-index: 2;
}
.check-bg:before, .check-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
}
.check-bg:after {
  background: white;
}
.check-bg:before {
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  background: black;
  -webkit-filter: blur(0.25em);
          filter: blur(0.25em);
  opacity: 0.2;
  z-index: -1;
}

.checker.checker:active {


  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  transition-duration: calc(.4s / 2);
}
.checker.checker:active .check-bg::before {
  -webkit-transform: translateY(0) scale(0.8);
          transform: translateY(0) scale(0.8);
  opacity: 0.2;
}




/* ... */
.border {border: dotted 1px rgb(222, 225, 229);}
.red_bg {background-color: red;}
.orange_bg {background-color: orange;}
.yellow_bg {background-color: yellow;}
.green_bg {background-color: green;}
/* perfect box-shadow
    box-shadow: 0 13px 22px -8px rgba(16, 106, 250, 0.8);
    tipppy blue
    HEX: #106afa
    RGB: 16, 106, 250
*/



.map_action_buttons_wrap {/* horizontal list */
    width: 100%;
    display: table;

}




















/* active user count modal */


















/* map mode pick */
.map_mode_pick_wrap {
    position: relative;
    overflow: hidden;
    width: 77px;
    margin: 0 auto;
    margin-bottom: 21px;
    border-radius: 17px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.map_mode_pick_checkbox {display: none;}
.map_mode_pick_label {
    outline: 0;
    display: block;
    width: 100%;
    height: 2em;
    position: relative;
    cursor: pointer;
    font-size: 13px;
}
.map_mode_pick_checkbox + .map_mode_pick_label {
    padding: 3px;
    -webkit-transition: all .2s ease;
            transition: all .2s ease;
    -webkit-perspective: 100px;
            perspective: 100px;
}
.map_mode_pick_checkbox + .map_mode_pick_label:after, .map_mode_pick_checkbox + .map_mode_pick_label:before {
    display: inline-block;
    width: 100%;
    text-align: center;
    position: absolute;
    line-height: 2em;
    
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .4s ease;
            transition: all .4s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.map_mode_pick_checkbox + .map_mode_pick_label:after {/* map mode transition style */
    content: attr(data-tg-on);
    background: #02C66F;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
}
.map_mode_pick_checkbox + .map_mode_pick_label:before {/* map mode basic style */
    color: rgb(145,145,145);
    background-color: rgb(241,241,241);
    content: attr(data-tg-off);
}
.map_mode_pick_checkbox + .map_mode_pick_label:hover:before {
    color: rgb(7,7,7); 
}
.map_mode_pick_checkbox + .map_mode_pick_label:active:before {
    -webkit-transform: rotateY(-20deg);
            transform: rotateY(-20deg);
}
.map_mode_pick_checkbox:checked + .map_mode_pick_label:before {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}
.map_mode_pick_checkbox:checked + .map_mode_pick_label:after {/* map mode pro style */
    left: 0;
    background-color: rgb(7,7,7);
    color: white;
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
}
.map_mode_pick_checkbox:checked + .map_mode_pick_label:active:after {
    -webkit-transform: rotateY(20deg);
            transform: rotateY(20deg);
}




/* map feature pick */






















.popup_modal_general_mask {/* modal general mask */
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    background-color: rgba(0, 0, 0,  0.4);
    -webkit-overflow-scrolling: touch;
}
.popup_modal_form_mask_grey {/* modal general mask */
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    background-color: rgba(238,238,238, 0.7);
    -webkit-overflow-scrolling: touch;
}
.full_screen_loader_mask {/* modal general mask */
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    background-color: rgba(255,255,255, .77);
    -webkit-overflow-scrolling: touch;
}
.popup_modal_general_box_wrap {/* modal general box */
    position: relative;
    z-index: 999;
    max-width: 610px;
    margin: 22px auto;
    padding: 0px 17px;
}
.popup_modal_general_box_header {/* modal general header */
    position: relative;
    padding: 17px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.popup_modal_general_xmark {
    position: absolute;
    right: 14px;
    top: 14px;
    cursor: pointer;
    font-size: 13px;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.popup_modal_general_xmark:hover {/* modal general x button hover */
    color: #106afa;
}
.popup_modal_general_back {/* modal general x button */
    position: absolute;
    left: 14px;
    top: 14px;
    cursor: pointer;
    font-size: 13px;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
    display: none;
}
.popup_modal_general_back:hover {/* modal general x button hover */
    color: #106afa;
}
.popup_modal_general_title {/* modal general title text */
    color: rgb(7,7,7);
    text-align: center;
    font-size: 17px;
    
    line-height: 34px;
}






















/* modal popup transparent */
















/* popup modal mask */


/* popup modal box */





/* popup modal content */
.popup_modal_general_img_wrap {
    padding: 13px;
    text-align: center;
}
.popup_modal_general_img {
    max-width: 77px; 
    max-height: 100px;
}
.popup_modal_general_description {
    color: rgb(7,7,7);
    font-size: 17px;
    
    padding: 0px 17px;
    text-align: center;
}

.popup_modal_general_button_wrap {/* popup modal button wrap */
    padding: 13px;
    width: 100%;
    display: table;
    background-color: rgb(255,255,255);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: center;
}
.popup_modal_general_buttons_wrap {/* popup modal multiple buttons wrap */
    padding: 17px;
    width: 100%;
    display: table;
    background-color: rgb(255,255,255);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.popup_modal_general_submit_button {
    color: white;
    padding: 13px;
    text-align: center;
    text-decoration: none;
    cursor: pointer; 
    font-size: 17px;
    font-weight: 500;
    background-color: #106afa;
    border-radius: 17px;
}
.popup_modal_general_submit_button_grey {
    color: rgb(117,117,117);
    padding: 13px;
    text-align: center;
    text-decoration: none;
    cursor: pointer; 
    font-size: 17px;
    
    background-color: rgb(247,247,247);
    border-radius: 17px;
}
.popup_modal_general_link {
    color: rgb(117, 117, 117);
    padding: 8px 17px;
    background-color: rgb(255,255,255);
    border: solid 1px rgb(198, 198, 198);
    border-radius: 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    
    float: left;
}
.popup_modal_general_tips_link {
    text-decoration: underline;
    cursor: pointer;
    color: rgb(117, 117, 117);
    font-size: 13px;
    margin: 17px;
    
    margin-top: 0;
}

/* stripe payment gateway */

/*
.StripeElement--complete
.StripeElement--empty
.StripeElement--focus
.StripeElement--invalid
.StripeElement--webkit-autofill (Chrome and Safari only)
*/


.StripeElement {
    box-sizing: border-box;
}
.StripeElement--focus {box-shadow: none;}
.StripeElement--invalid {border-color: #fa755a;}
.StripeElement--webkit-autofill {background-color: #fefde5 !important;}


.StripeElement--focus::-webkit-input-placeholder {/* WebKit, Blink, Edge */
    color: rgb(117, 117, 117);
}
.StripeElement--focus:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: rgb(117, 117, 117);
    opacity: 1;
}
.StripeElement--focus::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: rgb(117, 117, 117);
    opacity: 1;
}
.StripeElement--focus:-ms-input-placeholder {/* Internet Explorer 10-11 */
    color: rgb(117, 117, 117);
}
.StripeElement--focus::placeholder {/* Internet Explorer 10-11 */
    color: rgb(117, 117, 117);
}
.stripe_update_stripe_customer_card_element {

}



.stripe_subscribe_user_input {
    font-size: 14px !important;
    padding: 14px !important;
    margin-bottom: 17px !important;
    transition: all 377ms linear !important;
    border-radius: 21px !important;
    background-color: rgb(245, 245, 245) !important;
    color: rgb(34, 34, 34) !important;
    border: solid 1px rgb(221, 221, 221) !important;
    border-top: solid 1px rgb(208, 208, 208) !important;
}
.stripe_update_card_element {
    font-size: 14px !important;
    padding: 14px !important;
    margin-bottom: 17px !important;
    transition: all 377ms linear !important;
    border-radius: 21px !important;
    background-color: rgb(245, 245, 245) !important;
    color: rgb(34, 34, 34) !important;
    border: solid 1px rgb(221, 221, 221) !important;
    border-top: solid 1px rgb(208, 208, 208) !important;
}
.stripe_update_card_error {
    display: none;
    font-size: 14px;
    font-weight: 500;
    color: rgb(222, 19, 35);
    padding: 14px;
    margin: 0px auto;
    border-radius: 21px;
    background-color: transparent;
    text-align: center;
    box-shadow: rgb(222, 19, 35, .3) 0px 2px 5px -1px, rgb(222, 19, 35, .4) 0px 1px 3px -1px;
}
/* form modal popup */
.form_modal_input {
    float: right;
    background-color: rgba(0, 0, 0, 0.0);
    font-size: 14px;
    transition: all 377ms linear;
    height: 44px;
    width: 100%;
    padding-left: 34px;
}
.form_modal_input_wrap {
    float: left;
    width: 100%;
    margin-bottom: 21px;
    border-radius: 17px;
    transition: all 377ms linear;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.form_modal_input_wrap_discount {
    float: left;
    width: 100%;
    margin-bottom: 21px;
    border-radius: 17px;
    transition: all 377ms linear;
    
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    display: none;
}
.form_modal_input_wrap_inverted_shadow {
    float: left;
    width: 100%;
    margin-bottom: 21px;
    border-radius: 17px;
    transition: all 377ms linear;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}
.form_modal_input_wrap_classic {
    float: left;
    width: 100%;
    margin-bottom: 21px;
    transition: all 377ms linear;
    border-radius: 17px;
    background-color: rgb(235, 235, 235);
      border: solid 1px rgba(0, 0, 0, .07);
    border-top: solid 1px rgba(0, 0, 0, .13);
    background-color: rgb(241,241,241);
}
.form_modal_input_wrap_curvy {
    float: left;
    width: 100%;
    margin-bottom: 21px;
    border-radius: 17px;
    transition: all 377ms linear;
    border: solid 1px rgba(0, 0, 0, .07);
    border-top: solid 1px rgba(0, 0, 0, .13);
    background-color: rgb(241,241,241);
}

.map_form_input_shadow {
    float: left;
    width: 100%;
    margin-bottom: 21px;
    border-radius: 17px;
    transition: all 377ms linear;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
}



.map_form_input_grey_border {
    float: left; 
    width: 100%;
    margin-bottom: 21px;
    border-radius: 34px;
    transition: all 377ms linear;
    padding: 3px auto;
    border: solid 1px rgba(0, 0, 0, .07);
    border-top: solid 1px rgba(0, 0, 0, .34);
    background-color: rgb(240, 240, 240);
}
.map_form_input_white_border {
    /* float: left; */
    width: 100%;
    margin-top: 17px;
    border-radius: 7px;
    transition: all 377ms linear;
    /* background-color: rgb(255, 255, 255); */
    /* border: solid 1px rgb(207, 207, 207); */
    padding: 3px 7px;
    border: solid 1px rgba(0,0,0,.07);
    border-top: solid 1px rgba(0,0,0,.17);
    background-color: rgb(245, 245, 245);
    overflow: hidden;
}
.form_modal_submit_button {
    cursor: pointer;
    font-size: 17px; 
    font-weight: 500;
    color: white;
    text-align: center;
    border-radius: 17px;
    padding: 17px;
    background-color: #106afa;
    border-bottom: solid 4px rgba(0, 0, 0, .14);
    transition: all 377ms ease;
    /* box-shadow: 0 13px 22px -8px rgba(16, 106, 250, 0.8); */
}
.form_modal_submit_button:hover {
    background-color: #106afa;
}
.form_modal_submit_button:active {
    background-color: #106afa;
}
.form_modal_options_wrap {
    padding: 0px 34px;
    margin-top: 17px;
}
.form_modal_option {
    display: table;
    width: 100%;
    border-radius: 17px;
    cursor: pointer;
    margin-bottom: 21px;
    padding:  17px;
    color: rgb(7, 7, 7);
    background-color: #EDEDED;
}
.form_modal_option:hover {
    background-color: #EDEDED;
}
.form_modal_option:active {
    background-color: rgb(200,200,200);
}
.form_modal_option_content {
    float: left;
    width: 100%;
}
.form_modal_option_icon {
    float: left;
    font-size: 20px;
    line-height: 40px;
    overflow: hidden;
    border-radius: 34px;
    height: 40px;
    width: 40px;
    padding: 2px 0px 0px 0px;
    text-align: center;
}
.form_modal_option_text {
    float: left;
    font-size: 14px;
    
    line-height: 40px;
}
.form_modal_buttons_wrap {
    width: 100%;
    display: table;
    padding: 17px 0px;
}
.form_modal_link {
    color: rgb(34,34,34);
    padding: 14px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    
    float: left;
    color: rgb(7,7,7);
    border-radius: 17px;
}
.form_modal_link:hover {
    background-color: rgba(0, 0, 0, 0.07);
}
.form_modal_link2 {
    color: rgb(117, 117, 117);
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    
    padding: 8px 17px;
    width: 100%;
}
.form_modal_link2:hover {
    background-color: #EDEDED;
}
.form_modal_submit_button2 {
    color: white;
    padding: 14px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    
    background-color: #106afa;
    border-radius: 17px;
    transition: all 377ms ease;
    float: right;
}

.form_modal_description {
    font-size: 14px;
    color: rgb(77,77,77);
    
    text-align: center;
    padding: 17px;
}




.form_modal_inputbw {
    width: 100%;
    margin-bottom: 21px;
    padding: 17px;
    border: solid 2px rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    font-size: 14px;
    border-radius: 17px;
    transition: all 377ms linear;
    
}





/*--- pricing plan ---*/

.container {
    margin: 0 auto;
    padding: 55px 21px;
    max-width: 960px;
    width: 100%;
}
.panel {
    background-color: #fff;
    padding: 15px 25px;
    position: relative;
    width: 100%;
    z-index: 10;
}


/*---  privacy policy / terms info page ---*/





.general_page_wrap {
    min-height: 100%;
    position: relative;
    padding: 17px;
    padding-top: 68px;
    max-width: 777px;
    margin: 0 auto;
}



.tippyPrivacyPolicyFooterItemCo777 {
    float: left;
    padding: 34px 21px;
}




/*--- nav bar user icon ---*/
.nav_bar_user_icon {/* nav bar user icon */
    cursor: pointer;
    font-size: 17px;
    
    line-height: 34px;
    overflow: hidden;
    border-radius: 17px;
    height: 34px;
    width: 34px;
    text-align: center;
    color: rgb(121,121,121);
    background-color: rgb(255,255,255);
    border: solid 1px rgba(0, 0, 0, 0.17);
    
    float: right;
    margin-left: 7px;
}
.nav_bar_user_icon:hover {/* nav bar user icon on hover */
    color: #106afa;
}






























/*--- contact page ---*/
.contact_page_wrap {
    min-height: 100%;
    position: relative;
    max-width: 713px;
    margin: 0 auto;
    padding: 34px 21px;
}

.contact_title_text {
    color: rgb(17,17,17);
    font-size: 21px;
    
    text-align: center;
    width: 100%;
    padding-top: 21px;
}
.contact_description_text {
    text-align: center;
    padding-top: 14px;
    font-size: 17px;
}
.contact_input:focus ~ .contact_label, .contact_textarea:focus ~ .contact_label, .contact_input:valid ~ .contact_label, .contact_textarea:valid ~ .contact_label {
    font-size: 0.75em;
    color: #999;
    top: -5px;
    -webkit-transition: all 0.225s ease;
    transition: all 0.225s ease;
}
.contact_styled_input {
    float: left;
    width: 293px;
    margin: 7px 0;
    position: relative;
    border-radius: 17px;
}
@media only screen and (max-width: 768px){
    .contact_styled_input {
        width:100%;
    }
}
.contact_styled_input .contact_label {
    color: #999;
    padding: 1.3rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    pointer-events: none;
}
.contact_styled_input.wide { 
    width: 650px;
    max-width: 100%;
}
.contact_input,
.contact_textarea {
    padding: 30px;
    border: 0;
    width: 100%;
    font-size: 1rem;
    background-color: #2d2d2d;
    color: white;
    border-radius: 17px;
}
.contact_input:focus,
.contact_textarea:focus {
    outline: 0;
}
.contact_input:focus ~ span,
.contact_textarea:focus ~ span {
    width: 100%;
    -webkit-transition: all 0.075s ease;
    transition: all 0.075s ease;
}
.contact_textarea {
    width: 100%;
    min-height: 15em;
}
.contact_form_box {
    width: 650px;
    max-width: 100%;
    margin: 7px auto 0px auto;
}
.contact_form_submit_wrap {
    padding-top: 7px;
    display: block;
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.contact_form_submit_button {
    padding: 21px 55px;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    color: white;
    background-color: #17A41A;
    border-radius: 17px;
    font-weight: 500;
    border-bottom: solid 4px rgba(0, 0, 0, .14);
    margin: 0 auto;
}
.contact_form_submit_button:active {
    border-top: solid 4px rgba(0, 0, 0, .14);
    border-bottom: none;
}
.contact_form_submit_button:hover {
   background-color: #17A42A;
}
@media (max-width: 768px) {
    .contact_form_submit_button {
        width:100%;
        float: none;
        text-align:center;
    }
}
.contact_input[type=checkbox] + .contact_label {
  color: #ccc;
  font-style: italic;
} 
.contact_input[type=checkbox]:checked + .contact_label {
  color: #f00;
  font-style: normal;
}
/*-- gps map box --*/
.gps_map_box_logo_wrap {
    text-align: center;
    width: 100%;
}

.gps_map_box_logo_2 {
    max-width: 44px;
    max-height: 44px;
    border-radius: 100%;
}
.gps_map_box_logo_wrap_2 {
    text-align: center;
    width: 100%;
    margin: 0px auto;
    padding-bottom: 11px;
}


.plan_select_button {
    color: rgb(255, 255, 255);
    border: 0;
    border-radius: 17px;
    height: 44px;
    width: 233px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    
    margin: 17px auto 34px;
    cursor: pointer;
}
.alpha .plan_select_button {
    background: rgb(225, 11, 23);
    -webkit-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
            box-shadow: 0px 7px 17px rgba(225, 11, 23, 0.17), 0px 3px 7px rgba(225, 11, 23, 0.34);
}
.bravo .plan_select_button {
    background: rgb(250, 188, 45);
    -webkit-box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
            box-shadow: 0px 7px 17px rgba(250, 188, 45, 0.17), 0px 3px 7px rgba(250, 188, 45, 0.34);
}
.charlie .plan_select_button {
    background: rgb(23, 164, 26);
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
}
/*--- stripe header ---*/
#stripes, #stripes span {
    position: absolute;
}

#stripes {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transform: skewY(-12deg);
    transform: skewY(-12deg);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    background: linear-gradient(150deg,#EAECEC 15%,#F4F5F5 70%,#ffffff 94%);
    z-index: -999;
}

#stripes span {
    height: 40px;
}

#stripes :first-child {
    width: 50%;
    left: 50%;
    top: 40px;
    background: rgb(240, 240, 240);
}

#stripes :nth-child(2) {
    width: 14%;
    right: 0;
    bottom: 40px;
    background: rgb(240, 240, 240);
}

#stripes :nth-child(3) {
    width: 25%;
    bottom: 0;
    right: 0;
    background: #e1e1e1;
}

@media (min-width: 670px) {
    header { 
        height: 600px;
    }
    
    #stripes span {
    height: 150px;
    }
    
    #stripes :first-child {
    top: 0;
    background: #F4F5F5;
    }
    
    #stripes :nth-child(2) {
    width: 16.66667%;
    top: 300px;
    bottom: auto;
    background: #F4F5F5;
    }
    
    #stripes :nth-child(3) {
    width: 33.33333%;
    right: auto;
    background: #EAECEC;
    }
}

@media (min-width: 880px) {
    header { 
        height: 760px;
    }
    
    #stripes span {
        height: 190px;
    }
    
    #stripes :first-child {
    width: 33.33333%;
    left: -16.66666%;
    background: rgb(240, 240, 240);
    }
    
    #stripes :nth-child(2) {
    width: 33.33333%;
    top: 0;
    left: 16.66666%;
    right: auto;
    background: rgb(240, 240, 240);
    }
    
    #stripes :nth-child(3) {
    width: 33.33333%;
    left: 49.99999%;
    bottom: auto;
    background: rgb(240, 240, 240);
    }
    
    #stripes :nth-child(4) {
    width: 33.33333%;
    top: 380px;
    right: -16.66666%;
    background: rgb(240, 240, 240);
    }
    
    #stripes :nth-child(5) {
    width: 33.33333%;
    bottom: 0;
    background: #F4F5F5;
    }
}


.sample_box_shadow {
    
    -webkit-box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0, 0, 0, .12);
       -moz-box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0, 0, 0, .12);
        -ms-box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0, 0, 0, .12);
         -o-box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0, 0, 0, .12);
            box-shadow: 0px 2px 5px 0px rgba(60,66,87,.08), 0px 1px 1px 0px rgba(0, 0, 0, .12);
}






/* --- nav bar option --- */
.nav_bar_option {
    cursor: pointer;
    font-size: 17px;
    
    line-height: 34px;
    overflow: hidden;
    border-radius: 17px;
    height: 34px;
    width: 34px;
    text-align: center;
    
    float: right;
    margin-left: 17px;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.nav_bar_option:hover {/* nav bar option on hover */
    color: #106afa;
}
.nav_bar_option_letter {/* nav bar option letter */
    cursor: pointer;
    font-size: 17px;
    
    line-height: 34px;
    overflow: hidden;
    border-radius: 17px;
    height: 34px;
    width: 34px;
    text-align: center;
    
    float: right;
    margin-left: 12px;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.nav_bar_option_icon_wrap {/* nav bar option icon wrap */
    cursor: pointer;
    font-size: 17px;
    
    line-height: 34px;
    overflow: hidden;
    border-radius: 17px;
    height: 34px;
    width: 34px;
    text-align: center;
    
    float: right;
    margin-left: 17px;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}


.ui_nav_bar_option_icon_wrap {
    cursor: pointer;
    font-size: 17px;
    line-height: 47px;
    overflow: hidden;
    border-radius: 34px;
    height: 47px;
    width: 47px;
    text-align: center;
    float: right;
    margin-left: 17px;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.nav_bar_option_icon {/* nav bar option icon */
    font-size: 14px;
}
/*--- profile modal poopup ---*/
.profile_modal_items_wrap {
    padding: 13px;
}
.profile_modal_button {
    overflow: hidden;
    width: 100%;
    border-radius: 17px;
    cursor: pointer;
    margin-bottom: 4px;
    padding:  11px;
    color: rgb(7, 7, 7);
}
.profile_modal_button:hover {
    background-color: #EDEDED;
}
.profile_modal_button:active {
    background-color: rgb(200,200,200);
}


.profile_modal_button_red {
    overflow: hidden;
    width: 100%;
    border-radius: 17px;
    cursor: pointer;
    margin-top: 17px;
    padding: 11px;
    color: #de1323;
    border: solid 2px #de1323;
    background-color: white;
}

.profile_modal_item_wrap {
    width: 100%;
    cursor: pointer;
    color: rgb(7, 7, 7);
    margin-top: 17px;
}
.profile_modal_item_content {
    float: left;
    width: 100%;
}
.profile_modal_button_icon {
    float: left;
    font-size: 21px;
    line-height: 40px;
    overflow: hidden;
    border-radius: 34px;
    height: 40px;
    width: 40px;
    padding: 2px 0px 0px 0px;
    text-align: center;
}


.profile_modal_form_icon {
    font-size: 21px;
    line-height: 40px;
    overflow: hidden;
    border-radius: 34px;
    height: 40px;
    width: 40px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    margin: 0 auto;
}
.profile_modal_form_description {
    font-size: 14px;
    color: rgb(7,7,7);
    text-align: center;
    margin-top: 13px;
}
.profile_modal_form_icon_wrap {
    overflow: hidden;
    width: 100%;
}
.profile_modal_form_divider {
    margin: 17px auto;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
}
.content_account_list_sub_text {
    color:  rgb(134,134,134);
}













/*--- trusted by section ---*/
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
       -moz-transform: translateX(calc(-250px * 7));
        -ms-transform: translateX(calc(-250px * 7));
         -o-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
    
  }
} 

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
       -moz-transform: translateX(calc(-250px * 7));
        -ms-transform: translateX(calc(-250px * 7));
         -o-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}



/*--- site footer ---*/
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 14px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 34px;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}















/*--- site landing page ---*/


/*--- cool wiggly globe css loader ---*/
.fullscreen_loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 34px;
    background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);

    -webkit-animation: fullscreen_loader_animation 0.8s linear infinite;
       -moz-animation: fullscreen_loader_animation 0.8s linear infinite;
        -ms-animation: fullscreen_loader_animation 0.8s linear infinite;
         -o-animation: fullscreen_loader_animation 0.8s linear infinite;
            animation: fullscreen_loader_animation 0.8s linear infinite;
    margin: 50% auto;
}
@keyframes fullscreen_loader_animation
{
    0%
    {
        
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    }
    100%
    {

    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
    }
}
.fullscreen_loader span
{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 34px;
    background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
    -webkit-animation: fullscreen_loader_animation 0.8s linear infinite;
       -moz-animation: fullscreen_loader_animation 0.8s linear infinite;
        -ms-animation: fullscreen_loader_animation 0.8s linear infinite;
         -o-animation: fullscreen_loader_animation 0.8s linear infinite;
            animation: fullscreen_loader_animation 0.8s linear infinite;
}
.fullscreen_loader span:nth-child(1)
{
    filter: blur(5px);
}
.fullscreen_loader span:nth-child(2)
{
    filter: blur(10px);
}
.fullscreen_loader span:nth-child(3)
{
    filter: blur(25px);
}
.fullscreen_loader span:nth-child(4)
{
    filter: blur(50px);
}
.fullscreen_loader:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: transparent;
    border-radius: 34px;
}


/* --- trusted by section --- */

/* --- register popup modal --- */
.login_policy_text {
    display: table;
    font-size: 14px;
    color: rgb(134,134,134);
    margin: 0px auto;
    margin-bottom: 17px;
    line-height: 17px;
    text-align: center;
}
.form_sign_up_disclaimer_text {
    display: inline-block;
    font-size: 14px;
    color: rgb(134,134,134);
    margin: 0px auto;
}

/* --- device mockup --- */
div.screenshots {
    position: relative;
    width: 100%;
    height: 300px;
    margin: auto 0 auto;
}
.screenshot {
    border-radius: 12px;
    border: 4px solid white;
    padding: 0;
    margin: 0;
    height: auto;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
       -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
         -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.screenshot img {
    display: block;
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
.screenshot.desktop {
    position: absolute;
    width: 400px;
    height: auto;
    left: 0;
    bottom: 20px;
    border-top-width: 18px;
}
.screenshot.desktop img {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.screenshot.tablet {
    position: absolute;
    width: 225px;
    height: auto;
    right: 50px;
    bottom: 10px;
    border-left-width: 22.4px;
    border-right-width: 22.4px;
    border-color: white;
}
.screenshot.phone {
    position: absolute;
    width: 80px;
    height: auto;
    left: 40px;
    bottom: 0px;
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-color: white;
}

/*--- email verify form ---*/
.email_verify_form_box {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    margin: 17px auto;
    position: relative;
    padding: 34px; 
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.email_verify_form_box {}
.email_verify_form_title {
    color: rgb(7,7,7);
    text-align: center;
    font-size: 17px;
    
    margin-top: 17px;
}
.email_verify_form_description {
    font-size: 14px;
    color: rgb(134,134,134);
    
    text-align: left;
    margin-top: 13px;
}
.email_verify_form_description span {
    color: rgb(17,17,17);
    
}
.email_verify_form_input {
    width: 100%;
    margin-bottom: 10px;
    padding: 17px;
    border: solid 1px rgb(222, 225, 229);
    background-color: rgb(241,241,241);
    font-size: 14px;
    border-radius: 17px;
    transition: all 377ms linear;
}
.email_verify_form_input.white {
    background-color: rgb(255,255,255);
}
.email_verify_form_link2 {
    color: rgb(117, 117, 117);
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
    text-align: center;
    margin-top: 17px;
}
.email_verify_form_link {
    color: rgb(7,7,7);
    padding: 17px 0;
    text-align: center;
    text-decoration: underline;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
    margin-top: 17px;
}
.email_verify_form_buttons_wrap {
    width: 100%;
    margin-top: 34px;
}
.email_verify_form_submit_button {
    color: white;
    padding: 17px 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #5D9732;
    border-radius: 17px;
    width: 100%;
}
.email_verify_form_submit_button.black {
    background-color: rgb(17,17,17);
}
.email_verify_form_submit_button.outline {
    background-color: rgb(255,255,255);
    color: rgb(17,17,17);
    border: solid 1px rgb(17,17,17);
    margin-top: 7px;
}
.ui_about_us_feature_table {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding: 21px;
    height: 233px;
}
.ui_about_us_feature_table_item_wrap {
    display: table-cell;
    position: relative;
}
.ui_about_us_feature_table_item {
    display: inline-block;
    margin: 0 auto;
}
.ui_about_us_feature_table_video_item {
    display: block;
    margin: 0 auto;
}
.ui_about_us_feature_5 {
    float: left;
    width: 631px;
    position: relative;
    padding: 17px;
    margin: 0 auto;
}
.ui_about_us_feature_wrap4 {
    margin-bottom: 55px;
    margin-top: 47px;
    border-radius: .3rem;
    overflow: hidden;
    background-color: white;
}
.ui_about_us_feature_wrap {
    display: inline-block;
    margin-bottom: 34px;
    background-color: rgb(2255,255,255);
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
       -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
        -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
         -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
}
.ui_about_us_feature_1 {
    float: left;
    width: 391px;
    position: relative;
    padding: 34px;
}
.ui_about_us_feature_text_wrap {
    width: 100%;
}
.ui_about_us_feature_title_text {
    color: #202124;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 7px;
}
.ui_about_us_feature_description_text {
    color: #202124;
    font-size: 14px;
}
.ui_about_us_feature_video_wrap {
    float: left;
    position: relative;
    border-radius: 17px;
    width: 631px;
    height: 391px;
}
.ui_about_us_feature_video {
    width: 100%;
}
.ui_about_us_feature_2 {
    float: left;
    width: 631px;
    position: relative;
    padding: 17px;
}
.ui_about_us_feature_footer_button_wrap {
    border-radius: 34px;
    margin: 17px auto;
    max-width: 377px;
}
.ui_about_us_feature_footer_button_gradient_glow_blue {
    color: rgb(255, 255, 255);
    padding: 21px 17px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    background-color: rgb(15, 138, 249);
    background: linear-gradient(to top right, rgb(0 111 255), rgb(0 189 255));
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
    -webkit-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
}
.ui_about_us_content_footer {
    width: 100%;
    overflow: hidden;
    color: rgb(117, 117, 117);
}
.ui_about_us_footer_inner_wrap {
    margin: 0px auto;
    max-width: 377px;
    overflow: hidden;
}
.ui_about_us_content_footer_wrap {
    padding: 13px 13px;
    width: 100%;
    overflow: hidden;
}
.ui_about_us_content_footer_list {
    font-size: 13px;
    width: 100%;
    overflow: hidden;
}
.ui_about_us_content_footer_item {
    float: left;
    text-align: center;
    padding: 13px 13px;
    cursor: pointer;
}
.ui_about_us_content_footer_item:hover {text-decoration: underline;}
.ui_about_us_price_table_wrap {
    margin: 0px auto;
    padding-bottom: 89px;
    max-width: 1022px;
    overflow: hidden;
}
.ui_about_us_price_table_item_wrap {
    width: 33.33%;
    float: left;
}
.ui_about_us_price_table_item_wrap.phoenix {
    padding: 0px 21px;
}
.ui_about_us_price_table_item_wrap.bravo {
    padding: 0px;
}
.ui_about_us_price_table_item_wrap.charlie {
    padding: 0px 21px;
}
.ui_about_us_price_table_item {
    width: 100%;
    background: rgb(255, 255, 255);
    overflow: hidden;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 34px;
}
.ui_about_us_price_table_item:not(:last-child) {/* margin-right: 40px; */}
.ui_about_us_price_table_button_wrap {
    padding: 34px;
    padding-top: 0px;
}
.ui_about_us_price_table_button {
    color: rgb(255, 255, 255);
    padding: 21px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    background-color: rgb(15, 138, 249);
    border-radius: 34px;
    transition: all 377ms ease;
    width: 100%;
}
.ui_about_us_price_table_button.gradient_glow_red {
    color: rgb(255, 255, 255);
    background-color: rgb(193, 20, 20);
    background: linear-gradient(to top right, rgb(193, 20, 20), rgb(254, 39, 14));
    -webkit-box-shadow: 0px 7px 17px rgba(254, 39, 14, 0.17), 0px 3px  7px rgba(254, 39, 14, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(254, 39, 14, 0.17), 0px 3px  7px rgba(254, 39, 14, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(254, 39, 14, 0.17), 0px 3px  7px rgba(254, 39, 14, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(254, 39, 14, 0.17), 0px 3px  7px rgba(254, 39, 14, 0.34);
    box-shadow: 0px 7px 17px rgba(254, 39, 14, 0.17), 0px 3px  7px rgba(254, 39, 14, 0.34);
}
.ui_about_us_price_table_button.gradient_glow_yellow {
    color: rgb(255, 255, 255);
    background-color: rgb(255, 187, 0);
    background: linear-gradient(to top right, rgb(255, 187, 0), rgb(225, 221, 26));
    -webkit-box-shadow: 0px 7px 17px rgba(225, 221, 26, 0.17), 0px 3px  7px rgba(225, 221, 26, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(225, 221, 26, 0.17), 0px 3px  7px rgba(225, 221, 26, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(225, 221, 26, 0.17), 0px 3px  7px rgba(225, 221, 26, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(225, 221, 26, 0.17), 0px 3px  7px rgba(225, 221, 26, 0.34);
    box-shadow: 0px 7px 17px rgba(225, 221, 26, 0.17), 0px 3px  7px rgba(225, 221, 26, 0.34);
}
.ui_about_us_price_table_button.gradient_glow_green {
    color: rgb(255, 255, 255);
    background-color: rgb(8, 144, 0);
    background: linear-gradient(to top right, rgb(8, 144, 0), rgb(31, 198, 0));
    -webkit-box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
    box-shadow: 0px 7px 17px rgba(31, 198, 0, 0.17), 0px 3px  7px rgba(31, 198, 0, 0.34);
}
.ui_about_us_price_table_button.gradient_glow_blue {
    color: rgb(255, 255, 255);
    background-color: rgb(15, 138, 249);
    background: linear-gradient(to top right, rgb(0, 111, 255), rgb(0, 189, 255));
    -webkit-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -moz-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
    box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px  7px rgba(15, 138, 249, 0.34);
}
.ui_about_us_price_table_button.background_white_blue_shadow {
    color: rgb(15, 138, 249);
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: rgb(15 138 249 / 17%) 0px 2px 5px -1px, rgb(15 138 249 / 34%) 0px 1px 3px -1px;
    -moz-box-shadow: rgb(15 138 249 / 17%) 0px 2px 5px -1px, rgb(15 138 249 / 34%) 0px 1px 3px -1px;
    -ms-box-shadow: rgb(15 138 249 / 17%) 0px 2px 5px -1px, rgb(15 138 249 / 34%) 0px 1px 3px -1px;
    -o-box-shadow: rgb(15 138 249 / 17%) 0px 2px 5px -1px, rgb(15 138 249 / 34%) 0px 1px 3px -1px;
    box-shadow: rgb(15 138 249 / 17%) 0px 2px 5px -1px, rgb(15 138 249 / 34%) 0px 1px 3px -1px;
    box-shadow: rgb(15 138 249 / 34%) 0px 2px 5px -1px, rgb(15 138 249 / 89%) 0px 1px 3px -1px;
}
.ui_about_us_price_table_item_header {
    color: rgb(15, 138, 249);
    border-bottom: 1px solid rgb(233, 233, 233);
    background-color: rgb(250, 250, 250);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    font-weight: 500;
    padding: 34px;
}
.ui_about_us_price_table_item_header.phoenix {
    /* background: linear-gradient(to top right, rgb(255, 187, 0), rgb(225, 221, 26)); */
}
.ui_about_us_price_table_item_header.alpha {
    /* background: linear-gradient(to top right, rgb(193, 20, 20), rgb(254, 39, 14)); */
}
.ui_about_us_price_table_item_header.bravo {
    /* background: linear-gradient(to top right, rgb(8, 144, 0), rgb(31, 198, 0)); */
}
.ui_about_us_price_table_item_header.charlie {
    color: rgb(16 139 249);
    background-color: #fafafa;
}
.ui_about_us_price_table_item_header_icon {
    font-size: 21px;
    line-height: 65px;
    overflow: hidden;
    height: 59px;
    width: 59px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 21px;
    border-radius: 100px;
    color: rgb(16 139 249);
    background-color: rgb(255 255 255);
    box-shadow: rgb(15 138 249 / 34%) 0px 2px 5px -1px, rgb(15 138 249 / 89%) 0px 1px 3px -1px;
}
.ui_about_us_price_table_item_header_icon.ui_blue {
    color: rgb(255, 255, 255);
    background-color: rgb(15, 138, 249);
    background: linear-gradient(to top right, rgb(0, 111, 255), rgb(0, 189, 255));
    -webkit-box-shadow: 0px 7px 17px rgb(15 138 249 / 17%), 0px 3px 7px rgb(15 138 249 / 34%);
    -moz-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px 7px rgba(15, 138, 249, 0.34);
    -ms-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px 7px rgba(15, 138, 249, 0.34);
    -o-box-shadow: 0px 7px 17px rgba(15, 138, 249, 0.17), 0px 3px 7px rgba(15, 138, 249, 0.34);
    box-shadow: 0px 7px 17px rgb(15 138 249 / 17%), 0px 3px 7px rgb(15 138 249 / 34%);
}
.ui_about_us_price_table_item_price {
    width: 100%;
    font-size: 30px;
    display: block;
    text-align: center;
    margin-bottom: 7px;
}
.ui_about_us_price_table_item_name {
    width: 100%;
    font-size: 17px;
    display: block;
    text-align: center;
}
.ui_about_us_price_table_feature_content {
    list-style: none;
    text-align: center;
    color: rgb(117,117,117);
    font-size: 14px;
    margin: 0;
    padding: 14px;
}
.ui_about_us_price_table_feature_content li {
    margin: 0 17px;
    padding: 17px 0px;
    border-radius: 0;
}
.ui_about_us_price_table_feature_content li:not(:last-child) {
    border: 1px solid rgb(244,244,244);
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
.ui_about_us_price_table_feature_wrap {
    width: 100%;
    padding: 7px;
    color: rgb(190, 190, 190);
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
}
.ui_about_us_price_table_feature_wrap.ui_feature_included {
    color: rgb(18, 140, 248);
}
.ui_about_us_price_table_feature_icon {
    float: left;
    font-size: 17px;
    line-height: 37px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    text-align: center;
    background-color: transparent;
    margin-right: 7px;
}
.ui_about_us_price_table_feature_text {
    float: left;
    line-height: 38px;
}
.ui_about_us_feature_footer {
    display: table;
    width: 100%;
    text-align: center;
}
.ui_about_us_feature_footer_img_wrap {
    width: 233px;
    min-width: 233px;
    max-width: 233px;
    min-height: 233px;
    max-height: 233px;
    margin: 0px auto;
}
.ui_about_us_feature_footer_img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}
.ui_about_us_feature_footer_text {
    text-align: center;
    color: rgb(7, 7, 7);
    font-size: 21px;
    font-weight: 500;
    margin: 0 auto;
    margin-bottom: 144px;
}
.ui_about_us_auto_slider_wrap {
    background: white;
    height: 100px;
    margin: 0px auto;
    margin-bottom: 55px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.ui_about_us_auto_slider_wrap::before, .ui_about_us_auto_slider_wrap::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.ui_about_us_auto_slider_wrap::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
       -moz-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
         -o-transform: rotateZ(180deg);
            transform: rotateZ(180deg);
}
.ui_about_us_auto_slider_wrap::before {
  left: 0;
  top: 0;
}
.ui_about_us_auto_slider_wrap .ui_about_us_auto_slide_wrap {
    -webkit-animation: scroll 40s linear infinite;
       -moz-animation: scroll 40s linear infinite;
        -ms-animation: scroll 40s linear infinite;
         -o-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.ui_about_us_auto_slider_wrap .ui_about_us_auto_slide {
  height: 100px;
  width: 250px;
}
.ui_about_us_auto_slider_wrap .ui_about_us_auto_slide img {
    min-width: 100%;
}
.ui_about_us_auto_slide_text_wrap {
    width: 100%;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 34px;
    color: rgb(134,134,134);
    overflow: hidden;
    font-size: 14px;
}
.ui_about_us_auto_slide_text {
    color: rgb(144 144 144);
    font-weight: bold;
}
@media only screen and (max-width: 1022px) {/* if screen width is less than 1022px then */
    .ui_about_us_price_table_item_wrap {
        width: 100%;
        padding: 17px;
        margin-bottom: 17px;
    }
    /* about page */
    .about_page_wrap {
        min-width: initial;
        max-width: initial;
        padding: 21px;
        padding-top: 0px;
    }
    .guest_site_wrap {
        min-width: initial;
        max-width: initial;
        padding: 21px;
        padding-top: 47px;
    }
    .mission_statement_wrap {
        width: 100%;
        height: auto;
        padding-top: 21px;
    }
    .mission_statement_content {
        width: 100%;
        height: auto;
    }
    .mission_statement_note {
        font-size: 14px;
        width: 269px;
        margin: 22px auto;
        padding: 13px;
        background-color: rgb(255, 255, 255);
        color: rgb(89, 89, 89);
        border: solid 2px rgb(134,134,134);
    }
    .mission_statement_inner {
        width: 100%;
        height: auto;
    }
    .mission_statement_media_wrap {
        width: 100%;
        height: auto;
    }
    .ui_about_us_feature_wrap {height: auto; width: 100%;}
    .feature_panel_wrap {height: auto; width: 100%;}
    .ui_about_us_feature_text_wrap {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
    }
    .ui_about_us_feature_1 {
        width: 100%;
        height: auto;
    }
    .ui_about_us_feature_2 {
        width: 100%;
        height: auto;
    }
    .feature_sec_2 {
        width: 100%;
        height: auto;
    }
    .ui_about_us_price_table_item {
        width: 100%; 
    }
    .ui_about_us_price_table_item:not(:last-child) {margin-right: 0px;}
    .ui_view_content_center_1022 {
        margin: 0 auto;
        max-width: 377px;
    }
    div.screenshots {width: 100%;}
    .screenshot.desktop {width: 100%;}
}
/* change animation plugin speed */
.animated {
    -webkit-animation-duration: 377ms;
    animation-duration: 377ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.magictime {
    -webkit-animation-duration: 377ms;
    animation-duration: 377ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;   
}
.welcome_button_wrap {
    margin: 17px;
    margin-top: 34px;
    margin-bottom: 0px;
}
.welcome_button_1 {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #106afa;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 21px;
}
.welcome_button_2 {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(23, 164, 26);
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 21px;
}

.welcome_button_3 {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #106afa;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
    
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 21px;
}
.welcome_button_4 {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(23, 164, 26);
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 21px;
}

.form_button_7 {
    color: rgb(23, 164, 26);
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(255, 255, 255);
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
    transition: all 377ms ease;
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 21px;
}

.form_button_1 {
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;

    color: white;
    padding: 13px;
    background-color: #106afa;
    
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
}

.form_button_1_black {
    padding: 14px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    

    color: white;
    background-color: black;
    font-weight: 500;
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
}
 
.form_submit_button_box_shadow {
    padding: 13px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    color: white;

    font-weight: 500;
    transition: all 377ms ease;
    width: 100%;
    border-radius: 17px;
    background-color: rgb(23, 164, 26);
    transition: all 377ms ease;
}



.form_button_light_grey_with_shadow {
    padding: 14px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    color: rgb(134,134,134);
    background-color: rgb(255, 255, 255);
    font-weight: 500;
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
       -moz-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        -ms-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
         -o-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
            box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.form_button_1_blue {
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;

    color: white;
    padding: 13px;
    background-color: #106afa;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
    
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
}





.form_button_1_classic_blue {
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: white;
    padding: 13px;
    background-color: #106afa;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
    
    border-radius: 11px;
    transition: all 377ms ease;
    width: 100%;
}
.form_button_1_classic_blue:hover {background-color: #106afa;}
.form_button_1_classic_blue.lit {
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
     border-bottom: solid 1px rgba(0, 0, 0, .12);
}
.form_button_1_classic_blue:active {
    background-color: #106afa;
    -webkit-box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
       -moz-box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
        -ms-box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
         -o-box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
            box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.21);
}

.form_toggle_button_with_shadow {
    color: black;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(255, 255, 255);
    transition: all 377ms ease;
    border-radius: 17px;
    transition: all 377ms ease;
    width: 100%;
    margin: 34px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.form_toggle_button_green_with_shadow {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 377ms ease;
    border-radius: 34px;
    transition: all 377ms ease; 
    width: 100%;
    margin: 17px 0px;
    background-color: rgb(23, 164, 26);
    transition: all 377ms ease;
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
}

.form_toggle_button_green_individual {
    color: rgb(23, 164, 26);
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 377ms ease;
    border-radius: 17px;
    transition: all 377ms ease; 
    width: 100%;
    background-color: rgb(255, 255, 255);
    transition: all 377ms ease;
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
}
.app_welcome_content_inner {
    margin-top: 34px;
    border-radius: 21px;
    padding: 17px;
    background-color: white;
    -webkit-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
    -ms-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
    -o-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
}
.app_about_content_inner {
    margin-top: 70px;
    border-radius: 21px;
    padding: 17px;
    background-color: white;
    -webkit-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
    -ms-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
    -o-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
}
.content_inner_wrap {
    border-radius: 17px;
    padding: 34px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.app_register_content_inner {
    border-radius: 21px;
    padding: 21px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin: 0px auto;
    max-width: 377px;
    margin-bottom: 17px;
}
.app_welcome_title_text {
    color: white;
    font-size: 21px;
    text-align: center;
    width: 100%;
    margin-top: 55px;
    font-weight: 500;
}
.app_welcome_title_text_small {
    color: white;
    font-size: 17px;
    text-align: center;
    width: 100%;
    margin-top: 7px;
    font-weight: 500;
    margin-bottom: 17px;
}
.view_divider {
    margin: 13px auto;
    height: 1px;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
}
.app_welcome_options_wrap {
    margin-top: 21px;
}
.view_wrap_content_maps_item {
    margin: 17px auto;
    max-width: 377px;
    padding: 34px;
    background-color: rgb(255,255,255);
    color: rgb(134,134,134);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
    border-radius: 7px;
}
.view_wrap_content_maps_item_text {
    color: rgb(7,7,7);
    text-align: center;
    font-size: 17px;
    
    line-height: 34px;
    margin-bottom: 21px;
}

.map_info_wrap {
    display: none;
    margin-top: 3px;
}
.tippy-menu-white-button007 {
    width: auto;
    height: 28px;
    padding: 5px 13px;
    font-size: 13px;
    color: rgb(134,134,134);
}
.tippy-menu-white-button007:hover {background-color: rgb(233,233,233);}
.tippy-menu-white-button007:active {background-color: rgb(221, 221, 221);}
.tippy-menu-white-button007_text {
    float: left;
    color: rgb(134,134,134);
    line-height: 21px;
}
/* tippy-menu-white-button-icon */
.tippy-menu-white-button-icon {
    float: left; 
    font-size: 14px;
    margin-right: 7px;
}


/* pro map glued buttons */
.maps_map_box_button_list {
    display: table;
    width: 100%;
    table-layout: fixed;
    font-size: 13px;
    cursor: pointer;
}
.maps_map_box_button_list_item {
    display: table-cell;
}
.maps_map_box_button_list_item_inner {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 13px 8px;
    margin-right: 2px;
    border-radius: 17px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: solid 1px rgba(0, 0, 0, .17);
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    color: rgb(7,7,7);
    background-color: white;
}
.maps_map_box_button_list_item_inner2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 13px;
    color: white;
    margin-left: 2px; 
    border-radius: 17px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border: solid 1px rgba(0, 0, 0, .17);
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    color: #106afa;
    background-color: white;
}
.maps_map_box_button_list_item_inner.red {
    color: #E10B17;
}
.maps_map_box_button_list_item_inner.green {
    color: #17A41A;
}
.maps_account_item_wrap {
    overflow: hidden;
    width: 100%;
    border-radius: 17px;
    cursor: pointer;

    color: rgb(7, 7, 7);

    border-radius: 17px;
    padding: 21px;
    margin-bottom: 21px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.maps_account_item_wrap:hover {
    background-color: #EDEDED;
}
.maps_account_item_wrap:active {
    background-color: rgb(200,200,200);
}
.maps_account_item_wrap_inner {
    overflow: hidden;
    width: 100%;
    border-radius: 17px;
    cursor: pointer;
    color: rgb(7, 7, 7);
}
.tippy_truncate_string {
    width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tippy_truncate_string_90 {
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content_account_inner {
    width: 100%;
    overflow: hidden;
    background-color: white;
}
.content_account_inner_shadow_17 {
    width: 100%;
    overflow: hidden;
    background-color: white;
    border-radius: 17px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            margin-bottom: 21px;
}
.content_account_inner_shadow_37 {
    width: 100%;
    overflow: hidden;
    background-color: rgb(240, 240, 240);
    border-radius: 17px;
}
.view_wrap_content_inner {
    padding: 17px;
}
.content_account_inner_header_wrap {
    padding: 17px 0px;
}
.content_account_form_header {
    width: 100%;
    display: table;
    padding: 11px;
    color: black;
    border-bottom: solid 1px rgba(0, 0, 0, .07);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background: rgb(247,247,247);
}
.content_account_form_header_bordered {
    width: 100%;
    display: table;
    padding: 7px;
    color: black;
    border: solid 1px rgb(207, 207, 207);
    background: rgb(247,247,247);
}
.form_top_text_wrap {
    overflow: hidden;
    color: rgb(134,134,134);
    text-align: center;
}
.form_top_text_wrap_inner {
    width: 100%;
}
.form_top_text_icon {
    float: left;
    font-size: 17px;
    line-height: 21px;
    overflow: hidden;
    height: 30px;
    width: 30px;
    padding: 1px 0px 0px 1px;
    text-align: center;
    border-radius: 17px;
    margin-right: 7px;
    border:  solid 1px rgb(207,207,207);
    color: rgb(180,180,180);
}
.form_top_text_value {
    float: left;
    font-size: 11px;
    
    line-height: 34px;
    
}
.content_account_form_header_inner {
    float: left;
    width: 100%;
}
.content_account_form_header_7 {
    width: 100%;
    display: block; 
    height: 34px;
    border-top: solid 1px rgba(0, 0, 0, .07);
    border-bottom: solid 1px rgba(0, 0, 0, .07);
    background: rgb(235, 235, 235);
}
.content_account_list_icon {
    float: left;
    font-size: 17px;
    line-height: 21px;
  
    height: 30px;
    width: 30px;
    padding: 1px 0px 0px 1px;
    background-color: transparent;
    text-align: center;
    border-radius: 17px;
    margin-right: 7px;
    color: rgb(7, 7, 7);

    border:  solid 1px transparent;
}
.content_account_list_header_text {
    float: left;
    font-size: 13px;
    
    line-height: 34px;
    
}




.content_header_form_box {
    text-align: center;
    margin-bottom: 17px;
}

.oil_price_info_text_wrap {
    width: 100%;
}
.oil_price_info_text_wrap_title {
    font-size: 14px; 
    font-weight: 500;
    width: 100%;
    line-height: 17px;
}

.oil_price_menu_list_icon_grey_box_shadow {
    font-size: 21px;
    line-height: 44px;
    overflow: hidden; 
    height: 44px;
    width: 44px;
    padding: 1px 0px 0px 0px; 
    text-align: center;
    background-color: rgb(235, 235, 235);
    color:  rgb(7, 7, 7);
    margin: 0px auto;
    margin-bottom: 7px;
    border-radius: 34px;
    border: solid 1px transparent;
}








.header_title_icon_wrap {
    font-size: 17px;
    line-height: 42px;
    overflow: hidden;
    height: 42px;
    width: 42px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    color: rgb(7, 7, 7);
    margin: 0px auto; 
    margin-bottom: 17px;
    border-radius: 34px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
}
.header_title_icon_grey {
    font-size: 17px;
    line-height: 42px;
    overflow: hidden;
    height: 42px;
    width: 42px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    background-color: rgb(235, 235, 235);
    color: rgb(201, 201, 201);
    margin: 0px auto; 
    margin-bottom: 17px;
    border-radius: 34px;
}





.view_header_wrap_back_button {
    position: absolute;
    left: 17px;
    bottom: 7px;
    cursor: pointer;
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    border-radius: 34px;
    height: 34px;
    width: 34px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: rgb(255, 255, 255);
    border: solid 1px rgba(0, 0, 0, 0);
    display: none;
    font-weight: 500;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
}
.view_header_wrap_back_button:hover {/* modal general x button hover */
    color: #106afa;
}
.view_header_wrap_back_button.visiblized {
    display: block;
}
.content_mapper_map_preview {
    margin-top: 17px;
}
.content_form_list_value {
    float: right;
    font-size: 14px;
    display: table;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    line-height: 17px;
    padding: 5px;
    text-align: center;
    background-color: white;
    border: solid 1px rgba(0, 0, 0, 0);
    color: rgb(7,7,7);
    
}

.form_textarea_with_icon {
    resize: none;
    min-height: 72px;
    box-sizing: border-box;
    padding: 13px;
    font-size: 14px;
    overflow-y: auto;
    overflow-x: hidden;
    color: rgb(7,7,7);
    display: block; 
    float: left;
    padding-left: 34px;
    width: 100%;
}
.content_form_description_2 {
    padding: 17px;
    font-size: 13px;
    color: rgb(134,134,134);
}


.content_form_description {
    font-size: 14px;
    color: rgb(134,134,134);
    
    text-align: center;
    padding-bottom: 7px;
    
}

.content_form_header_icon_wrap {
    overflow: hidden;
    width: 100%;
    color: rgb(134,134,134);
}
.content_form_header_icon {
     font-size: 21px;
    line-height: 40px;
    overflow: hidden;
    border-radius: 34px;
    height: 40px;
    width: 40px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    margin: 0 auto;
    margin-top: 17px;
}


/* gpsmapper app css */


.rangea_17 {
    width: 50%;
    margin: 0 auto;
    position: relative;
    display: table;
    font-size: 14px;
    color: black;
    
    border-radius: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.rangec_17 {
    display: table-cell;
    width: 14%;
}
.ranged_17 {text-align: right;}
.rangee_17 {
    position: absolute;
    left: 50%;
    display: inline;
    width: auto;
    transform: translateX(-50%);
}
.range_button_17 {
    padding: 10px 13px;
    border-radius: 17px;
    background-color: rgb(255,255,255);
    text-align: center;
    cursor: pointer;
    margin: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.range_button_17.decrease {float: left;}
.range_button_17.increase {float: right;}



















/* loaderPostBox */
@-webkit-keyframes pulsate {
    0%   { box-shadow: 0 2px 13px rgba(14,138,226, .6); }
    50%  { box-shadow: 0 2px 21px rgba(14,138,226, .6); }
    100% { box-shadow: 0 2px 13px rgba(14,138,226, .6); }
}

@-webkit-keyframes pulsate_text {
    0%   {text-shadow: 0 2px 13px rgba(14,138,226, .6);}
    50%  {text-shadow: 0 2px 21px rgba(14,138,226, .6);}
    100% {text-shadow: 0 2px 13px rgba(14,138,226, .6); }
}
@-webkit-keyframes bar_animation {
    0%   {width: 0%;}
    50%  {width: 100%;}
    100% {width: 0%;}
}
@-webkit-keyframes bar_animation_twenty_one {
    0%   {width: 0%;}
    50%  {width: 21%;}
    100% {width: 0%;}
}
@-webkit-keyframes bar_animation_thirty_four {
    0%   {width: 0%;}
    50%  {width: 34%;}
    100% {width: 0%;}
}
@-webkit-keyframes bar_animation_fifty_five {
    0%   {width: 0%;}
    50%  {width: 55%;}
    100% {width: 0%;}
}
@-webkit-keyframes bar_animation_eighty_nine {
    0%   {width: 0%;}
    50%  {width: 89%;}
    100% {width: 0%;}
}
.loaderPostBox {
    background-color: rgb(255,255,255);
    position: relative;
    overflow: hidden;
    padding: 17px;
    /* min-height: 233px; */
}
/* loaderPostBoxHeader */
.loaderPostBoxHeader {
    overflow: hidden;
    margin: 10px;
}
/* loaderPostBoxAvatar */
.loaderPostBoxAvatar {
    width: 44px; 
    height: 44px;
    float: left;
    margin-right: 8px;
    background-color: rgb(233, 233, 233);
}
/* loaderPostBoxHeaderInfo */
.loaderPostBoxHeaderInfo {
    height: auto;
    margin-bottom: 5px;
    overflow: hidden;
}
/* loaderPostBoxHeaderName */
.loaderPostBoxHeaderName {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    width: 34%;
    display: block;
    float: left;
    overflow: hidden;
    border-radius: 17px;
    animation: bar_animation_thirty_four .89s infinite linear;
}
/* loaderPostHeaderDetailsWrap */
.loaderPostHeaderDetailsWrap {margin-top: 5px;}
/* loaderPostHeaderDetailsTime */
.loaderPostHeaderDetailsTime {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    width: 21%;
    float: left;
    border-radius: 17px;
    animation: bar_animation_twenty_one .89s infinite linear;
}
.loaderPostHeaderDetailsTime:hover {text-decoration:underline;}
.loaderPostBoxTextWrap {
    margin: 10px;
}
.loaderPostTextLine {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    width: 89%;
    margin-bottom: 8px;
    border-radius: 17px;
    animation: bar_animation_eighty_nine .89s infinite linear;
}
.loaderPostTextLine2 {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    max-width: 55%;
    margin-bottom: 8px;
    border-radius: 17px;
    animation: bar_animation_fifty_five .89s infinite linear;
}
.loaderPostTextLine3 {
    height: 8px; 
    background-color: rgb(233, 233, 233);
    max-width: 34%;
    margin-bottom: 8px;
    border-radius: 17px;
    animation: bar_animation_thirty_four .89s infinite linear;
}














.app_footer_single_icon_wrap {
    text-align: center;
    width: 100%;
}
.app_footer_single_icon {
    font-size: 17px;
    line-height: 45px;
    overflow: hidden;
    height: 45px;
    width: 45px;
    padding: 1px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    background-color: white;
    text-align: center;
    border-radius: 17px;
    color: rgb(17,17,17);
    margin: 0 auto;
}










@keyframes rotate {
  0% { 
    -webkit-transform: rotate(0deg) scale(0.8); 
    -moz-transform: rotate(0deg) scale(0.8);
  }
  50% { 
    -webkit-transform: rotate(360deg) scale(1.2); 
    -moz-transform: rotate(360deg) scale(1.2);
  }
  100% { 
    -webkit-transform: rotate(720deg) scale(0.8); 
    -moz-transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #becd2c;
  }
  50% {
    box-shadow: 0 0 0 #becd2c;
    margin-bottom: 0;
    -webkit-transform: translate(15px,15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #becd2c;
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #519236;
  }
  50% {
    box-shadow: 0 0 0 #519236;
    margin-top: -20px;
    -webkit-transform: translate(15px,15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #519236;
    margin-top: 0;
  }
}

.view_wrap_content_loader {
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
       -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
         -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            border-radius: 17px;
            overflow: hidden;
            margin: 0 auto;
            max-width: 377px;
}

/*-- refer friend modal --*/
/*-- refer friend --*/
.invite_friend_box_wrap {
    text-align: center;
    background-color: rgb(255, 255, 255);
    color: rgb(134,134,134);
    font-size: 13px;
    border-radius: 17px;
    margin: 21px auto;
    max-width: 377px;
    padding: 34px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}






.invite_friend_text_box_wrap {
    font-size: 13px;
    width: 100%;
    overflow: hidden;
    display: none;
    background-color: white;
    padding: 17px;
    border-radius: 17px;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin: 0 auto;
    margin-bottom: 21px;
    margin-bottom: 17px;
    max-width: 377px;
}
.invite_friend_text_box_wrap.visiblized {
    display: block;
}


.invite_friend_buttons_wrap {
    padding: 0px 21px;
    width: 100%;
    display: table;
}
.invite_friend_button_og {
    color: white;
    background-color: #fabc2d;
    padding: 3px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    transition: all 377ms ease;
    border-radius: 7px;
    margin: 17px;
    margin-bottom: 7px;
    -webkit-box-shadow: 0px 7px 17px rgb(250 188 45 / 30%);
    -moz-box-shadow: 0px 7px 17px rgb(250 188 45 / 30%);
    -ms-box-shadow: 0px 7px 17px rgb(250 188 45 / 30%);
    -o-box-shadow: 0px 7px 17px rgb(250 188 45 / 30%);
    box-shadow: 0px 7px 17px rgb(250 188 45 / 30%);
}
.invite_friend_text_1 {
    color: rgb(7, 7, 7);
    font-size: 14px;
}
.invite_friend_bottom_text {
    color: rgb(144,144, 144);
    font-size: 10px;
}
.invite_friend_button_icon_wrap {
    float: left;
}

.invite_friend_header_text {
    font-size: 17px;
    font-weight: 500;
    width: 100%;
}
.invite_friend_message_wrap {
    border-radius: 34px;
    padding: 21px;
    color: rgb(0 40 62);
    background-color: #00b4ff;
    border: solid 4px rgb(0 63 89);
    margin: 0 auto;
    margin-bottom: 21px;
    max-width: 377px;
    font-weight: 700;
    overflow: hidden;
}
.invite_friend_message_text {
    font-size: 17px;
    
    line-height: 1.4;
}
.invite_friend_message_text.received {
    font-size: 14px;
    
    line-height: 1.4;
    padding-bottom: 7px;
}
.invite_friend_description_text_2 {
    color: rgb(23, 164, 26);
    font-size: 14px;
    
    line-height: 1.4;
    padding-bottom: 7px;
}
.invite_friend_coupon_wrap {
    color: rgb(7, 7, 7);
    font-size: 13px;
    margin: 0 auto;
    max-width: 377px;
}
.invite_friend_coupon_code {
    /* width: auto; */
    font-size: 34px;
    padding: 34px 0px;
    color: rgb(0 0 0);
    background-color: rgb(255 255 255);
    border-radius: 21px;
    text-align: center;
    font-weight: 700;
    /* border: solid 5px; */
    -webkit-box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
    -moz-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -ms-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -o-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
}

.mapper_textarea_clear_button {
    text-align: center;
    position: fixed;
    bottom: 17px;
    left: 17px;
    font-weight: 500;
}
.mapper_textarea_clear_button_icon {
    font-size: 17px;
    line-height: 45px;
    overflow: hidden;
    height: 45px;
    width: 45px;
    padding: 1px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    background-color: white;
    text-align: center;
    border-radius: 17px;
    color: rgb(17,17,17);
    margin: 0 auto;
}
.content_stream_icon_button_black_and_white {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    margin: 0 auto;
    font-weight: 400;
    background-color: rgb(255, 255, 255);
    border:  solid 2px rgb(7, 7, 7);
    color: rgb(7, 7, 7);

}
.content_stream_icon_button_white_shadow {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 34px;
    display: block;
    margin: 0 auto;
    font-weight: 400;
    background-color: rgb(255, 255, 255);
    border: solid 2px transparent;
    color: rgb(7, 7, 7);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.34);
}
.content_stream_icon_button_black_and_white_ring {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    margin: 0 auto;
    font-weight: 400;
    background-color: rgb(255, 255, 255);
    border:  solid 2px rgb(134,134,134);
    color: rgb(134,134,134);
}
.content_stream_icon_button {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    margin: 0 auto;
    font-weight: 400;
    background-color: rgb(255, 255, 255);
    border:  solid 2px rgb(7, 7, 7);
    color: rgb(7, 7, 7);
}



.content_view_map_icon {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    margin: 0 auto;

    background-color: rgb(235, 235, 235);
    color: rgb(20, 143, 22);
}
.content_download_map_icon {
    font-size: 17px;
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    margin: 0 auto;

    background-color: rgb(235, 235, 235);
    color: rgb(16, 106, 250);
}








.gps_map_box_logo_wrap_17 {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 11px;
    margin-bottom: 7px;
}

.content_account_list_icon_17 {
    font-size: 21px;
    line-height: 44px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    margin: 0 auto;


    background-color: rgb(235, 235, 235);
    color: rgb(134,134,134);
}
.content_account_list_icon_17_blue {
    font-size: 21px;
    line-height: 44px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    margin: 0 auto;


    background-color: rgb(15,105,250);
    color: rgb(255, 255, 255);
    border:  solid 1px rgb(255, 255, 255);
}
.content_account_list_icon_17.red {
    background-color: rgb(225,11,23);
    color: white;
}
.content_account_list_icon_17.orange {
    background-color: rgb(254,156,39);
    color: white;
}
.content_account_list_icon_17.yellow {
    background-color: rgb(250,188,45);
    color: white;
}
.content_account_list_icon_17.green {
    background-color: rgb(20,143,22);
    color: white;
}
.content_account_list_icon_17.blue {
    background-color: rgb(15,105,250);
    color: white;
}
.content_account_list_icon_17.indigo {
    background-color: rgb(110,104,232);
    color: white;
}
.content_account_list_icon_17.violet {
    background-color: rgb(186,64,251);
    color: white;
}




 

/* tippy-menu-white-button-icon */
.tippy-menu-white-button-icon_177 {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;

    font-weight: 400;
    background-color: rgb(235, 235, 235);
    color: rgb(7, 7, 7);

     float: left; 
    font-size: 13px;
    margin-right: 7px;
}

/* tippy-menu-white-button-icon */
.content_stream_box_header_icon_top {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    font-weight: 400;
    background-color: rgb(235, 235, 235);
    color: rgb(34, 34, 34);
    float: left; 
    font-size: 13px;
    margin-right: 7px;
}

.content_stream_box_header_icon_grey {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 2px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    font-weight: 400;
    background-color: rgb(235, 235, 235);
    color: rgb(201, 201, 201);
    float: left; 
    font-size: 13px;
    margin-right: 7px;
}


.content_stream_box_header_icon_grey_ring {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;

    font-weight: 400;


     float: left; 
    font-size: 13px;
    margin-right: 7px;

    background-color: rgb(240, 240, 240);
    color: rgb(134,134,134);
    border: solid 1px rgb(134,134,134);
}

.content_stream_box_header_icon {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    font-weight: 400;
    background-color: rgb(255, 255, 255); 
    color: rgb(7, 7, 7);
    float: left; 
    font-size: 10px;
    margin-right: 7px;
    border:  solid 1px rgb(7, 7, 7);
} 

.content_stream_box_header_icon_white_shadow {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    font-weight: 400;
    background-color: rgb(255, 255, 255);
    color: rgb(134,134,134);
    float: left; 
    font-size: 11px;
    margin-right: 7px;
    border:  solid 1px transparent;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
       -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
        -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
         -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30);
} 

.content_stream_box_header_icon_white_shadow_ring {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    font-weight: 400;
    background-color: rgb(255, 255, 255);
    color: rgb(7, 7, 7);
    float: left; 
    font-size: 11px;
    margin-right: 7px;
    border:  solid 1px rgb(7, 7, 7);
} 


.stream_box_header_icon_white_with_black_background {
    line-height: 21px;
    overflow: hidden;
    height: 21px;
    width: 21px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;
    font-weight: 400;
    background-color: rgb(7, 7, 7);
    color: rgb(255, 255, 255);
    float: left; 
    font-size: 11px;
    margin-right: 7px;
    border:  solid 1px transparent;
} 





.stream_box_header_icon_grey_with_grey_ring {
    line-height: 34px;
    overflow: hidden;
    height: 34px;
    width: 34px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 17px;
    display: block;

    font-weight: 400;
    background-color: transparent;
    color: rgb(7, 7, 7);
    border:  solid 2px rgb(7, 7, 7);
    float: left; 
    font-size: 17px;
    margin-right: 7px;
}










/* style of communication from behind the veil */































.app_index_header_text_primary {
    color: white;
    font-size: 25px;
    text-align: center;
    width: 100%;
    margin-top: 55px;
    font-weight: 500;
}
.app_index_header_text_secondary {
    color: white;
    font-size: 17px;
    text-align: center;
    width: 100%;
    margin-top: 7px;
    font-weight: 500;
    margin-bottom: 17px;
}
.app_index_content_wrap {
    margin-top: 34px;
    border-radius: 34px;
    padding: 34px;
    background-color: white;
    -webkit-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
       -moz-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
        -ms-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
         -o-box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
            box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.21), 0px 10px 10px rgba(0, 0, 0, 0.13);
}
.app_index_form_box {
    margin-top: 21px;
}
.app_index_logo_img_wrap {
    text-align: center;
    width: 100%;
}
.app_index_form_button_wrap {
    margin: 17px;
    margin-top: 34px;
    margin-bottom: 0px;
}
.app_index_form_button_blue {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #106afa;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
            box-shadow: 0px 7px 17px rgba(16, 106, 250, 0.17), 0px 3px  7px rgba(15, 105, 255, 0.34);
    border-radius: 7px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    transition: all 377ms ease;
    width: 100%;
    margin-bottom: 7px;
}
.app_index_form_button_green {
    color: white;
    padding: 17px 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(23, 164, 26);
    transition: all 377ms ease;
    border-bottom: solid 1px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
       -moz-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
        -ms-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
         -o-box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
            box-shadow: 0px 7px 17px rgba(23, 164, 26, 0.17), 0px 3px 7px rgba(23, 164, 26, 0.34);
    border-radius: 7px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    transition: all 377ms ease;
    width: 100%;
}
.app_about_us_logo_img_wrap {
    text-align: center;
    width: 100%;
}
/* oil price button style */
.thumbs {
    margin: 17px 0px 17px 0px !important;
    font-size: 14px !important;
}
.thumbs a {
    /* 
    .thumbs a {
        border: 1px solid rgb(45, 106, 180);
        width: 40px;
        height: 20px;
        margin: 0px 4px;
        padding: 2px 5px;
        background-color: rgb(230, 242, 250);
        font-size: 14px;
        font-weight: 500;
        color: rgb(0, 0, 0);
        text-decoration: none; 
    }
    .thumbs a active {
        border: 1px solid rgb(45, 106, 180);
        width: 40px;
        height: 20px;
        margin: 0px 4px;
        padding: 2px 5px;
        background-color: rgb(45, 106, 180);
        font-size: 14px;
        font-weight: 500;
        color: rgb(255, 255, 255);
        text-decoration: none;
    }
    */
    border: solid 1px transparent !important;
    border-radius: 17px !important;
    padding: 7px 7px !important;
}

.user_card_last_4_span {
    font-weight: 500;
    color: rgb(34, 34, 34);
}







.view_oil_price_chart_wrap {
    background-color: rgb(240, 240, 240);
    border-radius: 34px;
    padding: 17px;
}












/* The fast, new way! */
.fast-transition {
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgb(34, 34, 34);
    padding: 13px;
    background-color: rgb(240, 240, 240);
    border-radius: 7px;
    width: 100%;
    margin-top: 21px;
    /* Position the pseudo-element. */
    position: relative;
    transition: all 89ms;

}
.fast-transition::before {
    /* Create the box shadow at expanded size. */
    transition: all 610ms;
    background-color: rgb(233, 233, 233);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    /* Position the pseudo-element. */
    content: ' ';
    position: absolute; 
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.fast-transition:hover::before {
    /* transition the pseudo-element on hover. */
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    transition: all 89ms;
    
}






.subscriber_welcome_wrap {
    padding: 3px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 377ms ease;
    border-radius: 34px;
    margin: 17px auto;
    margin-bottom: 7px;
    color: rgb(225, 11, 23);
    border:  solid 1px rgb(225, 11, 23);
    background-color: rgb(250, 188, 45);
}
.subscriber_welcome_wrap_icon_wrap {
    float: left;
}
.subscriber_welcome_wrap_icon {
    float: left;
    font-size: 17px;
    line-height: 30px;
    overflow: hidden;
    height: 30px;
    width: 30px;
    padding: 3px 0px 0px 1px;
    text-align: center;
    border-radius: 34px;
    margin-right: 3px;
}
.make_invisible {
    opacity: 0;
}
.display_none {display: none;}
.flat_shadow {/* add long flat font shadow */
    background: #4099FF;
    color: white;
    text-shadow: 0px 0px 0 #0d7eff,1px 1px 0 #0d7eff,2px 2px 0 #0d7eff,3px 3px 0 #0d7eff,4px 4px 0 #0d7eff,5px 5px 0 #0d7eff,6px 6px 0 #0d7eff,7px 7px 0 #0d7eff,8px 8px 0 #0d7eff,9px 9px 0 #0d7eff,10px 10px 0 #0d7eff,11px 11px 0 #0d7eff,12px 12px 0 #0d7eff,13px 13px 0 #0d7eff,14px 14px 0 #0d7eff,15px 15px 0 #0d7eff,16px 16px 0 #0d7eff,17px 17px 0 #0d7eff,18px 18px 0 #0d7eff,19px 19px 0 #0d7eff,20px 20px 0 #0d7eff,22px 22px 0 #0d7eff,22px 22px 0 #0d7eff,23px 23px 0 #0d7eff,24px 24px 0 #0d7eff,25px 25px 0 #0d7eff,26px 26px 0 #0d7eff,21px 21px 0 #0d7eff,28px 28px 0 #0d7eff,29px 29px 0 #0d7eff,30px 30px 0 #0d7eff,31px 31px 0 #0d7eff,32px 32px 0 #0d7eff,33px 33px 0 #0d7eff,34px 34px 0 #0d7eff,35px 35px 0 #0d7eff,36px 36px 0 #0d7eff,37px 37px 0 #0d7eff,38px 38px 0 #0d7eff,39px 39px 0 #0d7eff,40px 40px 0 #0d7eff,41px 41px 0 #0d7eff,42px 42px 0 #0d7eff,43px 43px 0 #0d7eff,44px 44px 0 #0d7eff,45px 45px 0 #0d7eff,46px 46px 0 #0d7eff,47px 47px 0 #0d7eff,48px 48px 0 #0d7eff,49px 49px 0 #0d7eff,50px 50px 0 #0d7eff,51px 51px 0 #0d7eff,52px 52px 0 #0d7eff,53px 53px 0 #0d7eff,1px 1px 0 rgba(13, 126, 255, 0.98182),2px 2px 0 rgba(13, 126, 255, 0.96364),3px 3px 0 rgba(13, 126, 255, 0.94545),4px 4px 0 rgba(13, 126, 255, 0.92727),5px 5px 0 rgba(13, 126, 255, 0.90909),6px 6px 0 rgba(13, 126, 255, 0.89091),7px 7px 0 rgba(13, 126, 255, 0.87273),8px 8px 0 rgba(13, 126, 255, 0.85455),9px 9px 0 rgba(13, 126, 255, 0.83636),10px 10px 0 rgba(13, 126, 255, 0.81818),11px 11px 0 rgba(13, 126, 255, 0.8),12px 12px 0 rgba(13, 126, 255, 0.78182),13px 13px 0 rgba(13, 126, 255, 0.76364),14px 14px 0 rgba(13, 126, 255, 0.74545),15px 15px 0 rgba(13, 126, 255, 0.72727),16px 16px 0 rgba(13, 126, 255, 0.70909),17px 17px 0 rgba(13, 126, 255, 0.69091),18px 18px 0 rgba(13, 126, 255, 0.67273),19px 19px 0 rgba(13, 126, 255, 0.65455),20px 20px 0 rgba(13, 126, 255, 0.63636),22px 22px 0 rgba(13, 126, 255, 0.61818),22px 22px 0 rgba(13, 126, 255, 0.6),23px 23px 0 rgba(13, 126, 255, 0.58182),24px 24px 0 rgba(13, 126, 255, 0.56364),25px 25px 0 rgba(13, 126, 255, 0.54545),26px 26px 0 rgba(13, 126, 255, 0.52727),21px 21px 0 rgba(13, 126, 255, 0.50909),28px 28px 0 rgba(13, 126, 255, 0.49091),29px 29px 0 rgba(13, 126, 255, 0.47273),30px 30px 0 rgba(13, 126, 255, 0.45455),31px 31px 0 rgba(13, 126, 255, 0.43636),32px 32px 0 rgba(13, 126, 255, 0.41818),33px 33px 0 rgba(13, 126, 255, 0.4),34px 34px 0 rgba(13, 126, 255, 0.38182),35px 35px 0 rgba(13, 126, 255, 0.36364),36px 36px 0 rgba(13, 126, 255, 0.34545),37px 37px 0 rgba(13, 126, 255, 0.32727),38px 38px 0 rgba(13, 126, 255, 0.30909),39px 39px 0 rgba(13, 126, 255, 0.29091),40px 40px 0 rgba(13, 126, 255, 0.27273),41px 41px 0 rgba(13, 126, 255, 0.25455),42px 42px 0 rgba(13, 126, 255, 0.23636),43px 43px 0 rgba(13, 126, 255, 0.21818),44px 44px 0 rgba(13, 126, 255, 0.2),45px 45px 0 rgba(13, 126, 255, 0.18182),46px 46px 0 rgba(13, 126, 255, 0.16364),47px 47px 0 rgba(13, 126, 255, 0.14545),48px 48px 0 rgba(13, 126, 255, 0.12727),49px 49px 0 rgba(13, 126, 255, 0.10909),50px 50px 0 rgba(13, 126, 255, 0.09091),51px 51px 0 rgba(13, 126, 255, 0.07273),52px 52px 0 rgba(13, 126, 255, 0.05455),53px 53px 0 rgba(13, 126, 255, 0.03636),55px 55px 0 rgba(13, 126, 255, 0);
}
.disable_scroll {/* disable scroll & hide scrollbar */
    position: fixed;
    overflow: hidden;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.disable_select {/* disable double-click select */
    -webkit-user-select: none;/* chrome/safari */
    -moz-user-select: none;/* firefox */
    -ms-user-select: none;/* ie10+ */
    -o-user-select: none;/* opera */
    user-select: none;
}

/*
|--------|---------|-------------|
| color  | hex     | rgb         |
|--------|---------|-------------|
| red    | #e10b17 | 225,11,23   |
| orange | #fe9c27 | 254,156,39  |
| yellow | #fabc2d | 250,188,45  |
| green  | #17a41a | 20,143,22   |
| blue   | #106afa | 15,105,250  |
| indigo | #6e68f2 | 110,104,232 |
| violet | #ba40fb | 186,64,251  | */


/* pricing table css  */
.pricing-table {
	margin: 100px auto;
	width: 100%;
	font-family: 'Open Sans', Helvetica;

	    -webkit-box-shadow: 0px 2px 3px rgb(0 0 0 / 17%);
    -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0px 2px 3px rgb(0 0 0 / 17%);
}

.pricing-table .ptable-item {
  width: 33.33%;
  padding: 0 15px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .pricing-table .ptable-item {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .pricing-table .ptable-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .pricing-table .ptable-item {
    width: 100%;
  }
}

.pricing-table .ptable-single {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.pricing-table .ptable-status ,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
  position: relative;
  width: 100%;
  text-align: center;
}

.pricing-table .ptable-single {
  background: #f6f8fa;
}

.pricing-table .ptable-single:hover {
  box-shadow: 0 0 10px #999999;
}

.pricing-table .ptable-header {
  margin: 0 30px;
  padding: 30px 0 45px 0;
  width: auto;
  background: #2A293E;
}

.pricing-table .ptable-header::before,
.pricing-table .ptable-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 100px solid #f6f8fa;
}

.pricing-table .ptable-header::before {
  right: 50%;
  border-right: 250px solid transparent;
}

.pricing-table .ptable-header::after {
  left: 50%;
  border-left: 250px solid transparent;
}

.pricing-table .ptable-item.featured-item .ptable-header {
  background: #FF6F61;
}

.pricing-table .ptable-status {
  margin-top: -30px;
}

.pricing-table .ptable-status span {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  padding: 5px 0;
  text-align: center;
  color: #FF6F61;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  background: #2A293E;
}

.pricing-table .ptable-status span::before,
.pricing-table .ptable-status span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 10px solid #FF6F61;
}

.pricing-table .ptable-status span::before {
  right: 50%;
  border-right: 25px solid transparent;
}

.pricing-table .ptable-status span::after {
  left: 50%;
  border-left: 25px solid transparent;
}

.pricing-table .ptable-title h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
}

.pricing-table .ptable-price h2 {
  margin: 0;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  margin-left: 15px;
}

.pricing-table .ptable-price h2 small {
  position: absolute;
  font-size: 18px;
  font-weight: 300;
  margin-top: 16px;
  margin-left: -15px;
}

.pricing-table .ptable-price h2 span {
  margin-left: 3px;
  font-size: 16px;
  font-weight: 300;
}

.pricing-table .ptable-body {
  padding: 20px 0;
}

.pricing-table .ptable-description ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-table .ptable-description ul li {
  color: #2A293E;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 7px;
  border-bottom: 1px solid #dedede;
}

.pricing-table .ptable-description ul li:last-child {
  border: none;
}

.pricing-table .ptable-footer {
  padding-bottom: 30px;
}

.pricing-table .ptable-action a {
  display: inline-block;
  padding: 10px 20px;
  color: #FF6F61;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  background: #2A293E;
}

.pricing-table .ptable-action a:hover {
  color: #2A293E;
  background: #FF6F61;
}

.pricing-table .ptable-item.featured-item .ptable-action a {
  color: #2A293E;
  background: #FF6F61;
}

.pricing-table .ptable-item.featured-item .ptable-action a:hover {
  color: #FF6F61;
  background: #2A293E;
}

.ui_subscription_information_button {
  display: inline-block;
  padding: 14px 34px;
  cursor: pointer;
  font-size: 17px;
  color: white;
  background-color: #17A41A;
  background-color: #111111;
  background-image: linear-gradient(to top, #286df6, #52baf9 100%), gray repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.5) 35px, rgba(255, 255, 255, 0.5) 70px);
  border-radius: 34px;
  font-weight: bold;
  margin: 17px auto;
  border-bottom: solid 3px rgba(0,0,0,.13);
  text-align: center;
  background-image: linear-gradient(to right, red , yellow);
}





/*  */
.leaflet_mapper_page_wrap {
    display: none;
    min-height: 100%;
    /* position: relative; */
    /* padding: 17px; */
    padding-top: 68px;
    max-width: 100%;
    margin: 0 auto;
}
.leaflet_mapper_page_wrap_2 {
	min-height: 100%;
	position: relative;
	padding: 17px;
	padding-top: 68px;
	max-width: 100%;
	margin: 0 auto;
}
.leaflet_mapper_map_button {
    margin: 0;
    padding: 0;
    font-weight: 400;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    transform-origin: 0 100%;
    position: fixed;
    bottom: 17px;
    right: 17px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.leaflet_mapper_map_button_header {
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    margin: 0;
    font-weight: 400;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: rgb(241,241,241);
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom: solid 1px rgb(227,227,227);
    width: 100%;
    padding: 3px;
}
.leaflet_mapper_map_button_icon {
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    margin: 0;
    font-weight: 400;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 100%;
    padding: 7px 10px;
    color: rgb(17,17,17);
}



/* page-content */
.page-content {
	min-width: 1022px;
    max-width: 1022px;
    margin: 0 auto;
}
.policy_stream {
    width: 692px;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    padding-bottom: 89px;
}

.about_page_mission_statement {
    text-align: center;
    font-family: Gotham, "Arial Rounded MT Bold", Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: rgb(17,17,17);
    margin-top: 34px;
    font-weight: 500;
}

.about_page_fading_border {
    height: 1px;
    margin-top: 34px;   
    margin-bottom: 13px;   
    background-color: rgb(221, 221, 221);
   	background: -webkit-gradient(linear, 0 0, 100% 0, from(white), to(white), color-stop(50%, rgb(221, 221, 221))); 
}
.about_page_description_text {
	text-align: center;
    font-size: 18px;
    color: rgb(97,97,97);
}
/* donations */
.donor_box_wrap {
    box-shadow: 0 2px 5px rgba(0,0,0,0.28);
    margin: 21px auto;
    max-width: 407px;
    border-radius: 13px;
    overflow: hidden;
}
/* message-popup-inbox */
.message-popup-inbox {}

.message-popup-inbox-header333 {
    background-color: white;
    width: 100%;
    padding: 13px;
    font-size: 14px;

    border-bottom: solid 1px rgb(230,230,230);
    text-align: center;
    font-weight: 500;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

/* message-popup-inbox-scroll */
.message-popup-inbox-scroll { 
    height: 411px;
    background-color: rgb(241,241,241);
    overflow: hidden;
    position: relative;
}

/* message-popup-inbox-list */
.message-popup-inbox-list {
    list-style-type: none;
    margin: 0;
    padding: 0px;
    width: 100%;
    background-color: rgb(241,241,241);
}
/* message-popup-inbox-item */
.message-popup-inbox-item {
    background-color: white;
    display: block;
    padding: 8px 0 8px 10px;
    text-decoration: none;
    color: rgb(17,17,17);
    text-align: left;
    
    font-size: 13px; 
    min-height: 69px;
    border-bottom: solid 1px rgb(230,230,230);
    cursor: pointer;
}
.message-popup-inbox-item:hover {
    background-color: rgb(241,241,241);
}
.message-popup-inbox-item.active {
    border-left: solid 5px rgb(26, 115, 232);
    background-color: rgb(241,241,241);
}

.message-popup-inbox-avatar333 {
    float: left;
    margin-right: 5px;
    width: 50px;
    height: 50px;
    border-radius: 11px;
}
/* message-popup-inbox-content */
.message-popup-inbox-content {
    margin-left: 60px;
    margin-right: 10px;
    word-wrap: break-word;   
    position: relative;
}
.message-popup-inbox-name {
    color: rgb(17,17,17);
    font-weight: 500;
    float: left;
}

.message-popup-inbox-time {
    float: right;
    color: rgb(97,97,97);
}

.message-popup-inbox-text333 {
    color: rgb(97,97,97);
    display: block;
    display: -webkit-box;
    max-width: 100%;
    line-height: 16px;
    max-height: 32px;
    -webkit-line-clamp: 2;
    -webkit-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 19px;
    margin-right: 13px;
    position: absolute;
}
.message-popup-inbox-footer {
    background-color: white;
    color: rgb(97,97,97);
    padding: 8px;
    width: 100%;
    border-top: solid 1px rgb(230,230,230);
    text-align: center;
    bottom: 0;
    position: absolute;
    
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}
.message-popup-inbox-footer:hover {text-decoration: underline;}

.modal_action_buttons_list00 {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.modal_action_buttons_list_item00 {
	display: table-cell;
	padding: 3px;
}
.modal_action_buttons_list_item_inner00 {
    display: block;
    text-align: center;
    margin: 0 auto;
}
.donation_amount_number {
    width: 100%; 
    padding: 8px;
    border: solid 1px rgb(221, 221, 221);
    border-top: solid 1px rgb(208, 208, 208);
    background-color: rgb(241,241,241); 
    font-size: 17px;
    border-radius: 4px;
    transition: all 0.3s linear;
}
.donation_amount_number:hover {
    border-top: solid 1px rgb(163,163,163); 
    border: solid 1px rgb(97,97,97);
}
.donation_amount_number:focus {
    border: solid 1px rgb(26, 115, 232);
    background-color: white;
}
.donation_amount_number:active {
    border: solid 1px rgb(26, 115, 232);
    background-color: white;
}
.donation_amount_number.error {/* this class adds a border to the post compose textarea for autocomplete suggestions */
    border: solid 1px #de1323;
}

.modal_action_buttons_list_item00 {
	display: table-cell;
	padding: 3px;
}
.modal_action_buttons_list_item_inner00 {
    display: block;
    text-align: center;
    margin: 0 auto;
}
.donate_button_icon {
	margin-right: 3px;
}

.donor_box_donate_button {
    color: white;
    padding: 8px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
    background-color: #0d3f92;
    border-radius: 4px;
    width: 100%;
    transition: all 610ms;
}
.donor_box_donate_button:hover {
	background-color: #0a67a9;
    transition: all 89ms;
}
.donor_box_donate_button:active {
	background-color: #074571;
    transition: all 89ms;
}
.donor_box_donate_button_paypal_blue {
    color: rgb(26, 115, 232);
    padding: 8px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    background-color: rgb(255, 255, 255);
    border: solid 2px rgb(26, 115, 232);
    border-radius: 34px;
    width: 50%;
    transition: all 610ms;
}
.donor_box_donate_button_paypal_blue:hover {
	color: rgb(0, 91, 198);
	background-color: rgb(255, 255, 255);
    transition: all 89ms;
}
.donor_box_donate_button_paypal_blue:active {
	color: rgb(255, 255, 255);
	background-color: rgb(26, 115, 232);
    transition: all 89ms;
}
.mission_statement_inner_donate {
    width: 100%;
    position: relative;
    padding: 21px;
    padding-top: 34px;
}


.refreshButton {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px;
  z-index: 400;
}



.ui_locate_detail_div {
	display: none;
}

.ui_leaflet_locate_button {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    display: block;
    /* text-align: center; */
    text-decoration: none;
    color: black;
    font-size: 14px;
    border-radius: 7px;
}




.ui_leaflet_button_spin_class {
    /* width: 34px; */
    line-height: 0;
    display: inline-block;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 987ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 987ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 987ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 987ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}





/* popup modal content */
.cookie_consent_modal_general_title {/* modal general title text */
    color: rgb(7,7,7);
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 34px;
}


.cookie_consent_modal_general_img_wrap {
    padding: 13px;
    text-align: center;
}
.cookie_consent_modal_general_img {
  max-width: 233px;
}

.cookie_consent_modal_general_description {
    color: rgb(7,7,7);
    font-size: 13px;
    font-weight: 500;
    padding: 0px 17px;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
}
.cookie_consent_modal_general_description_sub {
    color: rgb(7,7,7);
    font-size: 13px;
    font-weight: 500;
    padding: 0px 17px;
    line-height: 1.3;
    text-transform: uppercase;
}

.cookie_consent_modal_general_button_wrap {/* popup modal button wrap */
    padding: 13px;
    width: 100%;
    display: table;
    background-color: rgb(255,255,255);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: center;
}
.cookie_consent_modal_general_button_wrap_2 {/* popup modal multiple buttons wrap */
    padding: 17px;
    width: 100%;
    display: table;
    background-color: rgb(255,255,255);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}



.cookie_consent_modal_general_submit_button {
	color: white;
	padding: 17px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	font-size: 17px;
	font-weight: 500;
	background-color: #106afa;
	border-radius: 34px;
}







/* popup modal content */
.public_anouncement_modal_general_title {/* modal general title text */
    color: rgb(7,7,7);
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 34px;
}


.public_anouncement_modal_general_img_wrap {
    padding: 13px;
    text-align: center;
}
.public_anouncement_modal_general_img {
    max-width: 100%;
}

.public_anouncement_modal_general_description {
    color: rgb(7,7,7);
    font-size: 13px;
    font-weight: 500;
    padding: 0px 17px;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
}
.public_anouncement_modal_general_description_sub {
    color: rgb(7,7,7);
    font-size: 13px;
    font-weight: 500;
    padding: 0px 17px;
    line-height: 1.3;
    text-transform: uppercase;
}

.public_anouncement_modal_general_button_wrap {/* popup modal button wrap */
    padding: 13px;
    width: 100%;
    display: table;
    background-color: rgb(255,255,255);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: center;
}
.public_anouncement_modal_general_button_wrap_2 {/* popup modal multiple buttons wrap */
    padding: 17px;
    width: 100%;
    display: table;
    background-color: rgb(255,255,255);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}



.public_anouncement_modal_general_submit_button {
	color: white;
	padding: 14px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	background-color: #106afa;
	border-radius: 34px;
}
/* ui_thrice_navigation_bar */
.ui_thrice_navigation_bar {
    position: fixed;
    height: 52px;
    width: 100%;
    top: 0;
    left: 0;
    background: white;
    z-index: 9999;
    text-align: center;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
.ui_thrice_navigation_bar_curved {
    position: fixed;
    background: white;
    z-index: 9999;
    text-align: center;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    margin: 13px;
    padding: 7px 0px 7px 0px;
    border-radius: 13px;
}
.ui_thrice_navigation_bar_left {
    float:left;
    width: 25%
}
.ui_thrice_navigation_bar_right {
    float:right;
    width: 25%;
    text-align: right;
}
.ui_thrice_navigation_bar_center {
    float: left;
    width: 50%;
    text-align: center;
    line-height: 100%;
}
.ui_thrice_navigation_bar_left_icon {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: left;
    margin-left: 19px;
    margin-top: 9px;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.ui_thrice_navigation_bar_right_icon {
    cursor: pointer;
    font-size: 21px;
    line-height: 52px;
    overflow: hidden;
    /* border-radius: 34px; */
    height: 52px;
    width: 52px;
    text-align: center;
    float: right;
    /* margin-right: 19px; */
    /* margin-top: 7px; */
    color: rgb(134,134,134);
    background-color: rgb(250,250,250);
    /* border: solid 1px transparent; */
    /* background-color: white; */
    /* box-shadow: rgb(50 50 93 / 30%) 0px 2px 5px -1px, rgb(0 0 0 / 50%) 0px 1px 3px -1px; */
}
.ui_thrice_navigation_bar_right_icon_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: right;
    margin-right: 10px;
    margin-top: 7px;
    color: rgb(7,7,7);
    background-color: rgb(245, 245, 245);
}
.ui_thrice_navigation_bar_right_icon_curved_2 {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: right;
    margin-right: 5px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgb(245, 245, 245);
}
.ui_thrice_navigation_bar_mode_pick_list_wrap {
    /* background-color: rgb(250,250,250); */
    overflow: hidden;
    /* background-color: rgb(245, 245, 245); */
    /* border-radius: 34px; */
    /* border: solid 1px rgba(0, 0, 0, .10); */
    /* background-color: rgb(250,250,250); */
    /* border: solid 1px rgba(0, 0, 0, .2); */
    /* background-color: white; */
    /* padding: 0px 3px 0px 3px; */
    /* background-color: white; */
    /* box-shadow: rgb(50 50 93 / 30%) 0px 2px 5px -1px, rgb(0 0 0 / 50%) 0px 1px 3px -1px; */
}
.ui_thrice_navigation_bar_mode_pick_list_wrap_curved {
    overflow: hidden;
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
}
.ui_thrice_navigation_bar_mode_pick_list {
    width: 100%;
    display: table;
    table-layout: fixed;
    cursor: pointer;
    overflow: hidden;
    /* padding: 3px; */
}
.ui_thrice_navigation_bar_mode_pick_list_item {display: table-cell;}

.ui_thrice_navigation_bar_mode_pick_list_item_inner {
    display: block;
    text-align: center;
    margin: 0px auto;
}
.ui_thrice_navigation_bar_mode_pick_label {
    width: 100%;
    cursor: pointer;
    text-align: center;
    display: table;
    position: relative;
    color: rgb(134,134,134);
    font-weight: 400;
    /* border-radius: 34px; */
    /* padding: 7px 0px 3px 0px; */
    /* border: solid 1px rgb(7, 7, 7); */
    border-bottom: solid 2px transparent;
    height: 52px;
    padding: 7px 0px 7px 0px;
    line-height: 100%;
}
.ui_thrice_navigation_bar_mode_pick_label.active {
    color: rgb(16 106 250);
    /* background-color: rgb(247,247,247); */
    /* border-radius: 0px; */
    /* border-left: solid 1px rgba(0, 0, 0, .2); */
    /* border-right: solid 1px rgba(0, 0, 0, .2); */
    border-bottom: solid 2px;
    /* font-weight: 500; */
}
.ui_thrice_navigation_bar_mode_pick_label:hover {
    color: rgb(7, 7, 7);
}
.ui_thrice_navigation_bar_mode_pick_input:checked + .ui_thrice_navigation_bar_mode_pick_label {/* checked toggle */
    color: rgb(7,7,7);
    background-color: rgb(245, 245, 245);
}
.ui_thrice_navigation_bar_mode_pick_input:not(:checked) + .ui_thrice_navigation_bar_mode_pick_label {/* unchecked toggle */}
.ui_thrice_navigation_bar_mode_pick_input:not(:checked) + .ui_thrice_navigation_bar_mode_pick_label:hover {/* unchecked/hovered toggle */
	
}
.ui_thrice_navigation_bar_mode_pick_icon {
    background-color: transparent;
    font-size: 17px;
    margin: 0px auto;
    /* overflow: hidden; */
    /* border-radius: 34px; */
    width: 38px;
    /* padding: 7px 3px 0 3px; */
    text-align: center;
    position: relative;
    /* color: rgb(7, 7, 7); */
    /* border: 2px solid rgba(0, 0, 0, 0); */
}
.ui_thrice_navigation_bar_mode_pick_icon.active {/* checked icon */}
.ui_thrice_navigation_bar_mode_pick_input:checked + .ui_thrice_navigation_bar_mode_pick_label .ui_thrice_navigation_bar_mode_pick_icon {/* checked icon */
    color: rgb(7,7,7);
}
.ui_thrice_navigation_bar_mode_pick_input:not(:checked) + .ui_thrice_navigation_bar_mode_pick_label .ui_thrice_navigation_bar_mode_pick_icon {/* unchecked icon */}
.ui_thrice_navigation_bar_mode_pick_input:not(:checked) + .ui_thrice_navigation_bar_mode_pick_label:hover .ui_thrice_navigation_bar_mode_pick_icon {/* unchecked/hovered icon */}
.ui_thrice_navigation_bar_mode_pick_label_text {
    position: relative;
    font-size: 11px;
    /* margin-bottom: 5px; */
}
.ui_thrice_navigation_bar_mode_pick_img {
    cursor: pointer;
    font-size: 17px;
    line-height: 52px;
    overflow: hidden;
    /* border-radius: 34px; */
    height: 52px;
    width: 52px;
    text-align: center;
    float: left;
    /* margin-left: 19px; */
    /* margin-top: 7px; */
    /* color: rgb(7,7,7); */
    background-color: rgb(250 250 250);
    /* border: solid 1px rgba(0, 0, 0, 0); */
    padding: 7px;
}

.ui_thrice_navigation_bar_mode_pick_img_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: left;
    margin-left: 10px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.ui_thrice_navigation_footer_bar {
    width: 300px;
    /* height: 50px; */
    /* background: gray; */
    /* border: 1px solid black; */
    /* border-radius: 10px 10px 0px 0px; */
    text-align: center;
    /* padding: 5px; */
    position: fixed;
    top: 74px;
    left: 50%;
    margin-left: -150px;
    z-index: 9999;
}

.ui_thrice_navigation_footer_bar_icon_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    /* float: right; */
    margin-right: 10px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgb(245, 245, 245);
    margin: 10px auto;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.ui_thrice_navigation_footer_bar_icon {/* nav bar option icon */
    font-size: 14px;
}
/* ui_gpsmapper_rounded_navigation_bar */
.ui_gpsmapper_rounded_navigation_bar {
    position: fixed;
    height: 52px;
    width: 100%;
    top: 0;
    left: 0;
    background: white;
    z-index: 9999;
    text-align: center;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
.ui_gpsmapper_rounded_navigation_bar_curved {
    position: fixed;
    /* background: white; */
    z-index: 1;
    /* text-align: center; */
    /* -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17); */
    /* box-shadow: 0px 2px 3px rgba(0,0,0,0.17); */
    /* margin: 13px 55px 13px 55px; */
    /* padding: 55px; */
    /* border-radius: 13px; */
    /* overflow: hidden; */
    /* margin-left: 50px; */
    /* margin-right: 50px; */
    /* padding-right: 55px; */
    top: 10px;
    left: 10px;
    right: 50px;
}
.ui_gpsmapper_rounded_navigation_bar_left {
    float:left;
    width: 25%
}
.ui_gpsmapper_rounded_navigation_bar_right {
    float:right;
    width: 25%;
    text-align: right;
}
.ui_gpsmapper_rounded_navigation_bar_center {
    float: left;
    width: 50%;
    text-align: center;
    line-height: 100%;
}
.ui_gpsmapper_rounded_navigation_bar_left_icon {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: left;
    margin-left: 19px;
    margin-top: 9px;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.ui_gpsmapper_rounded_navigation_bar_right_icon {
    cursor: pointer;
    font-size: 21px;
    line-height: 52px;
    overflow: hidden;
    /* border-radius: 34px; */
    height: 52px;
    width: 52px;
    text-align: center;
    float: right;
    /* margin-right: 19px; */
    /* margin-top: 7px; */
    color: rgb(134,134,134);
    background-color: rgb(250,250,250);
    /* border: solid 1px transparent; */
    /* background-color: white; */
    /* box-shadow: rgb(50 50 93 / 30%) 0px 2px 5px -1px, rgb(0 0 0 / 50%) 0px 1px 3px -1px; */
}
.ui_gpsmapper_rounded_navigation_bar_right_icon_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: right;
    margin-right: 10px;
    margin-top: 7px;
    color: rgb(7,7,7);
    background-color: rgb(245, 245, 245);
}
.ui_gpsmapper_rounded_navigation_bar_right_icon_curved_2 {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: right;
    margin-right: 5px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgb(245, 245, 245);
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_list_wrap {
    /* background-color: rgb(250,250,250); */
    overflow: hidden;
    /* background-color: rgb(245, 245, 245); */
    /* border-radius: 34px; */
    /* border: solid 1px rgba(0, 0, 0, .10); */
    /* background-color: rgb(250,250,250); */
    /* border: solid 1px rgba(0, 0, 0, .2); */
    /* background-color: white; */
    /* padding: 0px 3px 0px 3px; */
    /* background-color: white; */
    /* box-shadow: rgb(50 50 93 / 30%) 0px 2px 5px -1px, rgb(0 0 0 / 50%) 0px 1px 3px -1px; */
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_list_wrap_curved {
    overflow: hidden;
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_list {
    width: 100%;
    display: table;
    table-layout: fixed;
    cursor: pointer;
    overflow: hidden;
    /* padding: 3px; */
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_list_item {display: table-cell;}

.ui_gpsmapper_rounded_navigation_bar_mode_pick_list_item_inner {
    display: block;
    text-align: center;
    margin: 0px auto;
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_label {
    width: 100%;
    cursor: pointer;
    text-align: center;
    display: table;
    position: relative;
    color: rgb(134,134,134);
    font-weight: 400;
    /* border-radius: 34px; */
    /* padding: 7px 0px 3px 0px; */
    /* border: solid 1px rgb(7, 7, 7); */
    border-bottom: solid 2px transparent;
    height: 52px;
    padding: 7px 0px 7px 0px;
    line-height: 100%;
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_label.active {
    color: rgb(16 106 250);
    /* background-color: rgb(247,247,247); */
    /* border-radius: 0px; */
    /* border-left: solid 1px rgba(0, 0, 0, .2); */
    /* border-right: solid 1px rgba(0, 0, 0, .2); */
    border-bottom: solid 2px;
    /* font-weight: 500; */
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_label:hover {
    color: rgb(7, 7, 7);
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_input:checked + .ui_gpsmapper_rounded_navigation_bar_mode_pick_label {/* checked toggle */
    color: rgb(7,7,7);
    background-color: rgb(245, 245, 245);
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_input:not(:checked) + .ui_gpsmapper_rounded_navigation_bar_mode_pick_label {/* unchecked toggle */}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_input:not(:checked) + .ui_gpsmapper_rounded_navigation_bar_mode_pick_label:hover {/* unchecked/hovered toggle */
	
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_icon {
    background-color: transparent;
    font-size: 17px;
    margin: 0px auto;
    /* overflow: hidden; */
    /* border-radius: 34px; */
    width: 38px;
    /* padding: 7px 3px 0 3px; */
    text-align: center;
    position: relative;
    /* color: rgb(7, 7, 7); */
    /* border: 2px solid rgba(0, 0, 0, 0); */
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_icon.active {/* checked icon */}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_input:checked + .ui_gpsmapper_rounded_navigation_bar_mode_pick_label .ui_gpsmapper_rounded_navigation_bar_mode_pick_icon {/* checked icon */
    color: rgb(7,7,7);
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_input:not(:checked) + .ui_gpsmapper_rounded_navigation_bar_mode_pick_label .ui_gpsmapper_rounded_navigation_bar_mode_pick_icon {/* unchecked icon */}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_input:not(:checked) + .ui_gpsmapper_rounded_navigation_bar_mode_pick_label:hover .ui_gpsmapper_rounded_navigation_bar_mode_pick_icon {/* unchecked/hovered icon */}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_label_text {
    position: relative;
    font-size: 11px;
    /* margin-bottom: 5px; */
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_img {
    cursor: pointer;
    font-size: 17px;
    line-height: 52px;
    overflow: hidden;
    /* border-radius: 34px; */
    height: 52px;
    width: 52px;
    text-align: center;
    float: left;
    /* margin-left: 19px; */
    /* margin-top: 7px; */
    /* color: rgb(7,7,7); */
    background-color: rgb(250 250 250);
    /* border: solid 1px rgba(0, 0, 0, 0); */
    padding: 7px;
}
.ui_gpsmapper_rounded_navigation_bar_mode_pick_img_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: left;
    margin-left: 10px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.ui_gpsmapper_rounded_navigation_footer_bar {
    width: 300px;
    /* height: 50px; */
    /* background: gray; */
    /* border: 1px solid black; */
    /* border-radius: 10px 10px 0px 0px; */
    text-align: center;
    /* padding: 5px; */
    position: fixed;
    top: 74px;
    left: 50%;
    margin-left: -150px;
    z-index: 9999;
}
.ui_gpsmapper_rounded_navigation_footer_bar_icon_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    /* float: right; */
    margin-right: 10px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgb(245, 245, 245);
    margin: 10px auto;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}
.ui_gpsmapper_rounded_navigation_footer_bar_icon {/* nav bar option icon */
    font-size: 14px;
}
.ui_gpsmapper_rounded_navigation_bar_wrap {}
.ui_gpsmapper_rounded_navigation_bar_above {
  width: 100%;
}
.ui_gpsmapper_rounded_navigation_bar_below {
    /* background-color: #333; */
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 10px;
}
.ui_gpsmapper_rounded_navigation_bar_below a {
    display: inline-block;
    color: #202124;
    text-align: center;
    text-decoration: none;
    background-color: blue;
    border-radius: 34px;
    background: #fff;
    border: 0;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    margin-right: 10px;
    padding: 0px 13px 0px 13px;
    height: 34px;
    line-height: 34px;
    font-size: 13px;
    font-weight: 500;
}
.ui_gpsmapper_rounded_navigation_bar_below a:hover {
  background-color: rgb(233,233,233);
}
.ui_gpsmapper_rounded_navigation_bar_below_icon {
	margin-right: 3px;
}
.ui_gps_mapper_basemap_wrap {
	display: none;
}
.map_box_outer {
    /* position: fixed; */
    /* z-index: 9999; */
    width: 350px;
    /* margin: 0 auto; */
    margin: 94px auto;
    left: 50%;
    /* margin-left: -175px; */
}
.map_box_outer_2 {
    overflow: hidden;
    border: solid 1px red;
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    height: 100%;
}
/* maplibre css */
.maplibregl-ctrl-top-right {
    right: 0;
    top: 68px;
}
.maplibregl-ctrl-group {
    background: #fff;
    border-radius: 34px;
}
.maplibre_toggle_menu {
    background: #fff;
    position: absolute;
    z-index: 3;
    top: 90px;
    right: 10px;
    border-radius: 3px;
    width: 120px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-family: 'Open Sans', sans-serif;
}
.maplibre_toggle_menu a {
    font-size: 13px;
    color: #404040;
    display: block;
    margin: 0;
    padding: 0;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    text-align: center;
}
.maplibre_toggle_menu a:last-child {
    border: none;
}
.maplibre_toggle_menu a:hover {
    background-color: #f8f8f8;
    color: #404040;
}
.maplibre_toggle_menu a.active {
    background-color: #3887be;
    color: #ffffff;
}
.maplibre_toggle_menu a.active:hover {
    background: #3074a4;
}
/* maplibre gl toggle feature menu button */
.maplibre_toggle_button_icon {
    background-position: 50%;
    background-repeat: no-repeat;
    display: block;
    height: 100%;
    width: 100%;
    padding-top: 7px;
}
.maplibre_toggle_menu {
    display: none;
}
.maplibre_toggle_button:hover + .maplibre_toggle_menu {
    display: block;
}
.maplibre_button_wrap {
    /* display: inline-block; */
    position: absolute;
    top: 113px;
    left: 10px;
    z-index: 1;
}
/* maplibre_layer_control_wrap menu sample  */
.maplibre_layer_control_wrap {
    /* position: relative; */
    /* display: inline-block; */
    /* position: absolute; */
    /* top: 70px; */
    /* left: 10px; */
    z-index: 1;
    margin-bottom: 13px;
}
.maplibre_layer_control_button {
    /* position: absolute; */
    /* left: 0px; */
    /* top: 70px; */
    cursor: pointer;
    font-size: 13px;
    line-height: 29px;
    overflow: hidden;
    border-radius: 4px;
    height: 29px;
    width: 29px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
    /* z-index: 1; */
}
.maplibre_layer_control_button:hover {/* modal general x button hover */}
.maplibre_add_button {
    /* position: absolute; */
    /* left: 0px; */
    /* top: 113px; */
    cursor: pointer;
    font-size: 13px;
    line-height: 29px;
    overflow: hidden;
    border-radius: 4px;
    height: 29px;
    width: 29px;
    padding: 1px 0px 0px 0px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
    /* z-index: 1; */
    margin-bottom: 13px;
}
.maplibre_add_button:hover {/* modal general x button hover */}
.maplibre_add_button_long {
    /* position: absolute; */
    /* left: 0px; */
    /* top: 113px; */
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 29px;
    overflow: hidden;
    border-radius: 4px;
    height: 29px;
    width: auto;
    padding: 1px 13px 0px 13px;
    text-align: center;
    color: rgb(7,7,7);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
    /* z-index: 1; */
    margin-bottom: 13px;
}
.maplibre_add_button_long:hover {/* modal general x button hover */}
.maplibre_layer_control_menu {
    display: none;
    position: absolute;
    background-color: white;
    /* z-index: 9999; */
    padding: 29px;
    border-radius: 4px;
    left: 0px;
    top: 0px;
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
    min-width: 350px;
    line-height: 34px;
}
.maplibre_layer_control_menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.maplibre_layer_control_menu a.active {
    background-color: rgb(233, 233, 233);
    color: blue;
}
.maplibre_layer_control_menu a:hover {background-color: #ddd;}
.maplibre_layer_control_wrap:hover .maplibre_layer_control_menu {display: block;}
.maplibre_layer_control_wrap:hover .maplibre_layer_control_button {background-color: #3e8e41;}
.maplibre_layer_control_divider {
	margin: 13px auto;
	height: 1px;
	border-bottom: solid 1px rgb(200,200,200);
}
.maplibregl-popup {
    max-width: 400px;
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.marker {
    display: block;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}
.coordinates {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    bottom: 40px;
    left: 10px;
    padding: 5px 10px;
    margin: 0;
    font-size: 11px;
    line-height: 18px;
    border-radius: 3px;
    display: none;
}

.maplibre_gl_drop_btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.maplibre_gl_drop_down {
  position: relative;
  display: inline-block;
}

.maplibre_gl_drop_down-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.maplibre_gl_drop_down-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.maplibre_gl_drop_down-content a:hover {background-color: #ddd;}

.maplibre_gl_drop_down:hover .maplibre_gl_drop_down-content {display: block;}

.maplibre_gl_drop_down:hover .maplibre_gl_drop_btn {background-color: #3e8e41;}


#marker {
    background-size: cover;
    width: 144px;
    height: 144px;
    border-radius: 50%;
    cursor: pointer;
}

#marker_2 {
    background-size: cover;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
}

.marker {
    background-image: url('../../upload/image/layout/compass/crosshair_2.png');
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}


.maplibregl-popup {
    max-width: 200px;
}



.round {
  width: 100%;
  border-radius: 15px;
  border: 1px #000 solid;
  padding: 5px 5px 5px 25px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.corner {
  position: absolute;
  top: 3px;
  right: 5px;
  height: 20px;
  width: 20px;
  z-index: 10;
  border-radius: 10px;
  border: none;
  background: #000;
  /* Set the bg image here. with "no-repeat" */
}
.ui_gpsmapper_rounded_navigation_bar_search_input {
    position: relative;
    width: 100%;
    height: 38px;
    /* padding: 15px; */
    /* font-size: 15px; */
    border: 1px solid grey;
    float: left;
    /* width: 80%; */
    /* background: rgb(244,244,244); */
    border-radius: 34px;
    padding: 15px;
    font-size: 15px;
    border: solid 1px rgb(223,223,223);
    border-top: solid 1px rgb(207,207,207);
    background-color: rgb(241,241,241);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0;
    border-right: none;
}
.ui_gpsmapper_rounded_navigation_bar_search_submit_button {
	float: left;
	width: 20%;
	padding: 10px;
	background: #2196F3;
	color: white;
	font-size: 17px;
	border: 1px solid grey;
	border-left: none;
	cursor: pointer;
}
.ui_gpsmapper_rounded_navigation_bar_search_submit_button:hover {
  background: #0b7dda;
}

.ui_gpsmapper_rounded_navigation_bar_search_form::after {
  content: "";
  clear: both;
  display: table;
}
.linear_gradient_left_to_right_fade {
  mask-image: linear-gradient( to right, transparent,
      black 20%,
      black 80%,
      transparent 100%);
  -webkit-mask-image: linear-gradient( to right,transparent,
      black 20%,
      black 80%,
      transparent 100%);
      
}
.linear_gradient_left_to_right_fade::-webkit-scrollbar {
  display: none;
}
.linear_gradient_to_right_fade {
  mask-image: linear-gradient( to right, transparent,
      black 0%,
      black 80%,
      transparent 100%);
  -webkit-mask-image: linear-gradient( to right,transparent,
      black 0%,
      black 80%,
      transparent 100%);
      
}
.linear_gradient_to_right_fade::-webkit-scrollbar {
  display: none;
}


.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}

.marker {
    display: block;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}

.distance-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.distance-container > * {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    display: block;
    margin: 0;
    padding: 5px 10px;
    border-radius: 3px;
}



.maplibre_metadata_wrap {
	    position: absolute;
    top: 10px; 
    left: 10px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    display: block;
    margin: 0;
    padding: 5px 10px;
    border-radius: 3px;
}
.maplibre_metadata_wrap:hover {
  background-color: rgb(233,233,233);
}
.maplibre_metadata_icon {
	margin-right: 3px;
}
.maplibre_metadata_text {
}


.ui_maplibre_gl_marker_img_wrap {
    text-align: center;
}

.ui_maplibre_gl_marker_img {
    text-align: center;
    margin: 0;
    font-family: "Lato", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "asktippy", sans-serif;
    box-sizing: border-box;
    max-width: 55px;
    max-height: 55px;
    padding: 5px;
    background: white;
    border-radius: 100%;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
}



/* maplibre_gl_popup container - can be anything you want */
.maplibre_gl_popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual maplibre_gl_popup */
.maplibre_gl_popup .maplibre_gl_popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute; 
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* maplibre_gl_popup arrow */
.maplibre_gl_popup .maplibre_gl_popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the maplibre_gl_popup */
.maplibre_gl_popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the maplibre_gl_popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

/* maplibre gl get clicked feature style */
#features {
    position: absolute;
    left: 13px;
    bottom: 13px;
    height: 20%;
    width: 39%;
    overflow: auto;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    text-align: center;
    font-size: 13px;
}
#map canvas {
    cursor: crosshair;
}
.maplibregl-popup {
	max-width: 400px;
	font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

.maplibregl_control_interface_img {
    max-width: 34px;
    max-height: 34px;
    padding: 7px;
    /* background: white; */
    /* border-radius: 100%; */
    /* -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21); */
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    /* box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21); */
}
.maplibregl_control_interface_img_wrap {
	cursor: pointer;
    max-width: 34px;
    max-height: 34px;
    background: white;
    border-radius: 100%;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
}
.maplibregl_control_interface_img_2 {
    max-width: 38px;
    max-height: 38px;
    /* padding: 7px; */
    /* background: white; */
    /* border: solid 1px rgb(227, 227, 227); */
    /* border-top: solid 1px rgb(207, 207, 207); */
    /* background-color: rgb(241,241,241); */
    /* border-radius: 100%; */
    /* border-top-left-radius: 0px; */
    /* border-bottom-left-radius: 0px; */
    /* -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21); */
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    /* box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21); */
    /* border: solid 1px rgb(227, 227, 227); */
    /* border-top: solid 1px rgb(207, 207, 207); */
    /* background-color: rgb(241,241,241); */
}
.maplibregl_control_interface_img_wrap_2 {
    cursor: pointer;
    max-width: 38px;
    max-height: 38px;
    background: white;
    border-radius: 100%;
    /* -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21); */
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21);
    /* box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.21); */
    float: left;
    /* border: solid 1px; */
    border: solid 1px rgb(227, 227, 227);
    border-top: solid 1px rgb(207, 207, 207);
    background-color: rgb(241,241,241);
    border-radius: 100%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: none;
}


/* horizontal left right arrow scrollk  */
.ui_gpsmapper_rounded_navigation_bar_pill_wrap {
    position: fixed;
    width: 100%;
    z-index: 3;
    padding: 13px;
}
.ui_gpsmapper_rounded_navigation_bar_pill {
    height: 55px;
    background: white;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    border-radius: 34px;
    padding: 8px;
}
.ui_gpsmapper_rounded_navigation_bar_pill_img_left {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: left;
    margin-right: 9px;
    /* margin-top: 7px; */
    color: rgb(7, 7, 7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
    /* float: left; */
}
.ui_gpsmapper_rounded_navigation_bar_pill_img_right {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: right;
    /* margin-right: 9px; */
    /* margin-top: 7px; */
    color: rgb(7, 7, 7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
    /* float: left; */
}
.ui_gpsmapper_rounded_navigation_bar_search_form {
    /* float: left; */
    /* background: #f3f3f3; */
    width: 100%;
    /* width: 376px; */
    /* max-width: 376px; */
    /* height: 75px; */
    /* outline: 1px dotted gray; */
    box-sizing: border-box;
    /* border-radius: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-wrapper {
    position: relative;
    /* width: 500px; */
    /* height: 100px; */
    margin: 0 auto;
    /* border: 1px solid black; */
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    /* padding: 0 20px; */
    box-sizing: border-box;
    z-index: 1;
}
ul {
  list-style: none; /* Hide unordered list bullet. */
}

.menu {
  /* height: 120px; */
  /* background: #f3f3f3; */
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  position: relative; /* Required for animation. */
  display: flex;
  align-items: center;
  gap: 20px;  /* Flexbox space between menu items must match the left/right padding of menu wrapper. */
}

.menu .item {
  background: #f3f3f3;  /* Weird - Visible items inherit this from .menu but not hidden items# 6-8 when they slide in and can be seen. */
  width: 75px;
  /* height: 75px; */
  outline: 1px dotted gray;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;            /* Needed to center number in middle of menu item, solution # 1 of 3. */
  align-items: center;      /* Needed to vertically center number in middle of menu item, solution # 2 of 3. */
  justify-content: center;  /* Needed to horizontally center number in middle of menu item, solution # 3 of 3. */
}

.arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  /* width: 3em; Excluding width means that arrow div will only be as wide as it needs to be to contain the < or > characters. */
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

.hidden {
  display: none;
}

.print {
  margin: auto;
  max-width: 500px;
}

.print span {
  display: inline-block;
  width: 100px;
}


/* gpsmapper perfecy css  */
.ui_gpsmapper_perfect_navigation_bar {
    position: fixed;
    height: 52px;
    width: 100%;
    top: 0;
    left: 0;
    background: white;
    z-index: 9999;
    text-align: center;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
}
.ui_gpsmapper_perfect_navigation_bar_curved {
    position: fixed;
    /* background: white; */
    z-index: 1;
    /* text-align: center; */
    /* -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17); */
    /* box-shadow: 0px 2px 3px rgba(0,0,0,0.17); */
    /* margin: 13px 55px 13px 55px; */
    /* padding: 55px; */
    /* border-radius: 13px; */
    /* overflow: hidden; */
    /* margin-left: 50px; */
    /* margin-right: 50px; */
    /* padding-right: 55px; */
    top: 10px;
    left: 10px;
    right: 50px;
}
.ui_gpsmapper_perfect_navigation_bar_left {
    float:left;
    width: 25%
}
.ui_gpsmapper_perfect_navigation_bar_right {
    float:right;
    width: 25%;
    text-align: right;
}
.ui_gpsmapper_perfect_navigation_bar_center {
    float: left;
    width: 50%;
    text-align: center;
    line-height: 100%;
}
.ui_gpsmapper_perfect_navigation_bar_left_icon {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: left;
    margin-left: 19px;
    margin-top: 9px;
    color: rgb(7,7,7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.ui_gpsmapper_perfect_navigation_bar_right_icon {
    cursor: pointer;
    font-size: 21px;
    line-height: 52px;
    overflow: hidden;
    /* border-radius: 34px; */
    height: 52px;
    width: 52px;
    text-align: center;
    float: right;
    /* margin-right: 19px; */
    /* margin-top: 7px; */
    color: rgb(134,134,134);
    background-color: rgb(250,250,250);
    /* border: solid 1px transparent; */
    /* background-color: white; */
    /* box-shadow: rgb(50 50 93 / 30%) 0px 2px 5px -1px, rgb(0 0 0 / 50%) 0px 1px 3px -1px; */
}
.ui_gpsmapper_perfect_navigation_bar_right_icon_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: right;
    margin-right: 10px;
    margin-top: 7px;
    color: rgb(7,7,7);
    background-color: rgb(245, 245, 245);
}
.ui_gpsmapper_perfect_navigation_bar_right_icon_curved_2 {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: right;
    margin-right: 5px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgb(245, 245, 245);
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_list_wrap {
    /* background-color: rgb(250,250,250); */
    overflow: hidden;
    /* background-color: rgb(245, 245, 245); */
    /* border-radius: 34px; */
    /* border: solid 1px rgba(0, 0, 0, .10); */
    /* background-color: rgb(250,250,250); */
    /* border: solid 1px rgba(0, 0, 0, .2); */
    /* background-color: white; */
    /* padding: 0px 3px 0px 3px; */
    /* background-color: white; */
    /* box-shadow: rgb(50 50 93 / 30%) 0px 2px 5px -1px, rgb(0 0 0 / 50%) 0px 1px 3px -1px; */
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_list_wrap_curved {
    overflow: hidden;
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_list {
    width: 100%;
    display: table;
    table-layout: fixed;
    cursor: pointer;
    overflow: hidden;
    /* padding: 3px; */
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_list_item {display: table-cell;}

.ui_gpsmapper_perfect_navigation_bar_mode_pick_list_item_inner {
    display: block;
    text-align: center;
    margin: 0px auto;
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_label {
    width: 100%;
    cursor: pointer;
    text-align: center;
    display: table;
    position: relative;
    color: rgb(134,134,134);
    font-weight: 400;
    /* border-radius: 34px; */
    /* padding: 7px 0px 3px 0px; */
    /* border: solid 1px rgb(7, 7, 7); */
    border-bottom: solid 2px transparent;
    height: 52px;
    padding: 7px 0px 7px 0px;
    line-height: 100%;
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_label.active {
    color: rgb(16 106 250);
    /* background-color: rgb(247,247,247); */
    /* border-radius: 0px; */
    /* border-left: solid 1px rgba(0, 0, 0, .2); */
    /* border-right: solid 1px rgba(0, 0, 0, .2); */
    border-bottom: solid 2px;
    /* font-weight: 500; */
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_label:hover {
    color: rgb(7, 7, 7);
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_input:checked + .ui_gpsmapper_perfect_navigation_bar_mode_pick_label {/* checked toggle */
    color: rgb(7,7,7);
    background-color: rgb(245, 245, 245);
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_input:not(:checked) + .ui_gpsmapper_perfect_navigation_bar_mode_pick_label {/* unchecked toggle */}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_input:not(:checked) + .ui_gpsmapper_perfect_navigation_bar_mode_pick_label:hover {/* unchecked/hovered toggle */
	
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_icon {
    background-color: transparent;
    font-size: 17px;
    margin: 0px auto;
    /* overflow: hidden; */
    /* border-radius: 34px; */
    width: 38px;
    /* padding: 7px 3px 0 3px; */
    text-align: center;
    position: relative;
    /* color: rgb(7, 7, 7); */
    /* border: 2px solid rgba(0, 0, 0, 0); */
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_icon.active {/* checked icon */}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_input:checked + .ui_gpsmapper_perfect_navigation_bar_mode_pick_label .ui_gpsmapper_perfect_navigation_bar_mode_pick_icon {/* checked icon */
    color: rgb(7,7,7);
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_input:not(:checked) + .ui_gpsmapper_perfect_navigation_bar_mode_pick_label .ui_gpsmapper_perfect_navigation_bar_mode_pick_icon {/* unchecked icon */}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_input:not(:checked) + .ui_gpsmapper_perfect_navigation_bar_mode_pick_label:hover .ui_gpsmapper_perfect_navigation_bar_mode_pick_icon {/* unchecked/hovered icon */}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_label_text {
    position: relative;
    font-size: 11px;
    /* margin-bottom: 5px; */
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_img {
    cursor: pointer;
    font-size: 17px;
    line-height: 52px;
    overflow: hidden;
    /* border-radius: 34px; */
    height: 52px;
    width: 52px;
    text-align: center;
    float: left;
    /* margin-left: 19px; */
    /* margin-top: 7px; */
    /* color: rgb(7,7,7); */
    background-color: rgb(250 250 250);
    /* border: solid 1px rgba(0, 0, 0, 0); */
    padding: 7px;
}
.ui_gpsmapper_perfect_navigation_bar_mode_pick_img_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: left;
    margin-left: 10px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
}
.ui_gpsmapper_perfect_navigation_footer_bar {
    width: 300px;
    /* height: 50px; */
    /* background: gray; */
    /* border: 1px solid black; */
    /* border-radius: 10px 10px 0px 0px; */
    text-align: center;
    /* padding: 5px; */
    position: fixed;
    top: 74px;
    left: 50%;
    margin-left: -150px;
    z-index: 9999;
}
.ui_gpsmapper_perfect_navigation_footer_bar_icon_curved {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    /* float: right; */
    margin-right: 10px;
    margin-top: 7px;
    color: rgb(7, 7, 7);
    background-color: rgb(245, 245, 245);
    margin: 10px auto;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}
.ui_gpsmapper_perfect_navigation_footer_bar_icon {/* nav bar option icon */
    font-size: 14px;
}
.ui_gpsmapper_perfect_navigation_bar_wrap {}
.ui_gpsmapper_perfect_navigation_bar_above {
  width: 100%;
}
.ui_gpsmapper_perfect_navigation_bar_below {
    /* background-color: #333; */
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 10px;
}
.ui_gpsmapper_perfect_navigation_bar_below a {
    display: inline-block;
    color: #202124;
    text-align: center;
    text-decoration: none;
    background-color: blue;
    border-radius: 34px;
    background: #fff;
    border: 0;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    margin-right: 10px;
    padding: 0px 13px 0px 13px;
    height: 34px;
    line-height: 34px;
    font-size: 13px;
    font-weight: 500;
}
.ui_gpsmapper_perfect_navigation_bar_below a:hover {
  background-color: rgb(233,233,233);
}
.ui_gpsmapper_perfect_navigation_bar_below_icon {
	margin-right: 3px;
}

.ui_gpsmapper_perfect_navigation_bar_search_input {
    position: relative;
    /* width: 100%; */
    height: 38px;
    /* padding: 15px; */
    /* font-size: 15px; */
    border: 1px solid grey;
    float: left;
    width: 80%;
    /* background: rgb(244,244,244); */
    border-radius: 34px;
    padding: 15px;
    font-size: 15px;
    border: solid 1px rgb(223,223,223);
    border-top: solid 1px rgb(207,207,207);
    background-color: rgb(241,241,241);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0;
    border-right: none;
}
.ui_gpsmapper_perfect_navigation_bar_search_submit_button {
    float: left;
    width: 20%;
    padding: 10px;
    background: #2196F3;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none;
    cursor: pointer;
}
.ui_gpsmapper_perfect_navigation_bar_search_submit_button:hover {
  background: #0b7dda;
}

.ui_gpsmapper_perfect_navigation_bar_search_form::after {
  content: "";
  clear: both;
  display: table;
}

/* horizontal left right arrow scrollk  */
.ui_gpsmapper_perfect_navigation_bar_pill_wrap {
    position: fixed;
    width: 100%;
    z-index: 3;
    padding: 13px;
}
.ui_gpsmapper_perfect_navigation_bar_pill {
    height: 55px;
    background: white;
    -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    -o-box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    box-shadow: 0px 2px 3px rgba(0,0,0,0.17);
    border-radius: 34px;
    padding: 8px;
}
.ui_gpsmapper_perfect_navigation_bar_pill_img_left {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: left;
    margin-right: 9px;
    /* margin-top: 7px; */
    color: rgb(7, 7, 7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
    /* float: left; */
}
.ui_gpsmapper_perfect_navigation_bar_pill_img_right {
    cursor: pointer;
    font-size: 17px;
    line-height: 38px;
    overflow: hidden;
    border-radius: 34px;
    height: 38px;
    width: 38px;
    text-align: center;
    float: right;
    /* margin-right: 9px; */
    /* margin-top: 7px; */
    color: rgb(7, 7, 7);
    background-color: rgba(0, 0, 0, 0.07);
    border: solid 1px rgba(0, 0, 0, 0);
    /* float: left; */
}
.ui_gpsmapper_perfect_navigation_bar_search_form {
    /* float: left; */
    /* background: #f3f3f3; */
    /* width: 100%; */
    /* width: 80%; */
    max-width: 376px;
    /* height: 75px; */
    /* outline: 1px dotted gray; */
    /* box-sizing: border-box; */
    /* border-radius: 5px; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* text-align: center; */
    margin: 0 auto;
}
.ui_gpsmapper_perfect_navigation_bar_search_form_inner {
    /* background: white; */
    /* -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17); */
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    /* box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17); */
    /* border-radius: 34px; */
    /* padding: 8px; */
    /* float: left; */
    /* margin: 0 auto; */
    display: inline-block;
    height: 55px;
    background: white;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    border-radius: 34px;
    padding: 8px;
}