
.alignLeft {
	/* padding-left: 1em; */
	text-align: left;
}

.alignRight {
	/* padding-right: 2em; */
	text-align: right;
}

html {
	overflow-y: scroll;
	overflow-x: none;
	margin-right: 10px;
	margin-left: 10px;
}

.big_font {
	font-size: 2em;
	font-weight: normal;
}

.box-shadow {
	box-shadow: 2px 2px 10px #8e8e8e;
}

body {
	background-color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 2em;
	display: none;
	width: 99%;
	text-align: left;
	min-width: 30px;
}

.buttonTableCell {
	text-align: right;
}

.buttonTableCell .btn {
	margin: 3px;
	font-size: 125% !important;
	padding: 2px 5px;
}

.contenteditable {
	border: solid lightgray 1px;
	border-radius: 2px;
	min-height: 15em;
	padding: .5em;
	
}

#account_type {
	/* font-size: 100%; */
	/* max-width: 12em; */
	margin: 0 .5em 0 0;
	/* padding: 2px;
	border-radius: 5px;	*/
	display: inline;
}

.account_type_toggle {
	color: #eee;
}

.account_type_toggle:hover {
	cursor: hand;
	cursor: pointer;
	opacity: .8;
	color: white;;
}

.basic_table {
	width: 100%;
	margin: 5px;	
}

.closex {
	font-size: 2em;
	margin: 3px 3px 0 0;
	float: right;
	/* padding: 0 5px !important; */
	/* border: 1px solid black; */
}

.closex:hover {
	cursor: hand;
	cursor: pointer;
}

.close_service_request_modal:hover {
	color: gray;
}

/* The emerging W3C standard
   that is currently Firefox-only */
.dark_scrollbar {
	scrollbar-width: 20px;
	/* scrollbar-color: gray black; */
	scrollbar-color: #eee white;
}

/* Works on Chrome/Edge/Safari */
.dark_scrollbar::-webkit-scrollbar {
	width: 12px;
}
.dark_scrollbar::-webkit-scrollbar-track {
	/* background: gray; */
	background: #eee;
}
.dark_scrollbar::-webkit-scrollbar-thumb {
	/* background-color: black; */
	background-color: white;
	border-radius: 5px;
	border: 1px solid gray;
}

.editable_div {
	min-height: 5em;
	text-align: left;
	padding: .5em;
	background-color: white;	
	width: 100%;
	font-size: 14px;
	line-height: 1.42857143;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-transition: all .30s ease-in-out !important;
	   -moz-transition: all .30s ease-in-out !important;
		-ms-transition: all .30s ease-in-out !important;
		 -o-transition: all .30s ease-in-out !important;
	outline: none !important;
	color: black !important;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
		  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	   -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
		  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.editable_div:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.editable_div_disabled {
	background-color: #eee !important;
}

.error {
	background-color: #ffe4e1 !important;
	border: solid red 1px !important;
}

.error-message {
	color: red;
	font-size: 1em;
}

#footer {
	position: relative;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 80%;	
	min-height: 4em;
	padding: .5em;
}

.grabbable {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

 /* (Optional) Apply a "closed-hand" cursor during drag operation. */
.grabbable:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

#hamburger_links_div {
	text-align: right !important;
	margin: auto;
	display: none;
	height: 0px;
	padding-right: 1em;
	padding-top: 5px;
}

.hamburger_icon {
	margin: 5px 10px 0 0;
}

.hamburger_icon:hover {
	cursor: hand;
	cursor: pointer;
}

.help_div {
	display:none;
}

/* The "Please Wait" animation */
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

.loggedin_fullname {
	font-size: 80%;
	display: inline-block;
}

.mainContent, .optionsContent {
	padding: 1em 1em;
	min-height: 87vh; /* will cover the 100% of viewport */
	/* overflow: hidden;*/
	display: block;
	position: relative;
	
}

.mainContentTop {
	background-image: url('/img/header_bg3.jpg');
	background-size: 100%;
	background-repeat: no-repeat;
	width: 100%;
	min-height: 1vw;
	display: flex;
	justify-content: center;
	align-items: center; 
	border-radius: 5px;
	padding: .5em;
}

.mainContentTopText {	
	color: white;
	font-size: 4vw;	
}

.main_notification_list_header {
	background-color: #eee;
	border-bottom: solid black;
	border-width: 1px 0 1px 1px;
	color: black;
}

.main_notification_parent {
	display: inline-block;
	visibility: hidden;
	margin-right: 1em;
	vertical-align: top;
}

.mainHeader {
	margin-top: .25em;
}

.mainHeader .btn1 {
	margin: .5em;
	width: 10em;
}

.mainHeaderContent {
	display: inline-block;
	margin: 1.5em 1em;
	
}

.mainHeaderRightContent {
	margin-right: .5em;
	text-align: right;
	float: right;
}

.mainHeaderLogo {
	max-height:100px;
	max-width: 70%;
	display: inline-block;
	padding-left: 1em;
	float; left;
}

.mainLogoDiv {
	width: 60%;
}

#map {
	height: 200px;
	border: 1px solid black;
	border-radius: 5px;
}

.message_left_image {
	float: left;
	width: 20%;
}

.message_left_image img {
	width: 100%;
}

.message_center {
	text-align: left;
	float: left;
	width: 60%;
	padding: 5px;
	word-wrap: break-word;
	font-size: .9em;
}

.message_right_image {
	float: right;
	width: 20%;
}

.message_right_image img {
	width: 100%;	
}


.modal-open[style] {
	padding-right: 0px !important;
}

.notification {
  text-decoration: none;
  position: relative;
  display: inline-block;
	margin: .5em
}

.notification .bellsize {
	font-size: 24px;
}

.notification:hover {
  cursor: hand;
  cursor: pointer;
}

.notification .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 2px 5px;
  border-radius: 50%;
  background: red;
  color: white;
}

.notification_list_messages_count {
	text-align: center;
	vertical-align: top;
	margin-top: 5px;
	margin-left: 10px;
	font-size: 1.25em;
	color: black;
}
.notification_list_min_height {
	min-height: 20em;
	/* background-color: black !important; */
	background-color: white !important;
}

.notification_list {
	visibility: hidden;
	/* display: inline-block; */
	margin-right: 0em;
	z-index: 9999999;
	/* background-color: gray; /* #f8f8ff; */ 
	background-color: white;
	font-size: .7em;
	width: 24em;	
	overflow-y: scroll;
	border: 1px solid black;
	text-align: left;
	border-radius: 5px;
	box-shadow: 2px 2px 10px #8e8e8e;
	opacity: .95;
}

.notification_message {
	background-color: white;
	border: 1px black ridge;
	margin: 1em;
}

.notification_header {	
	background-color: #337ab7;
	color: white;
	padding: .5em;
}

.notification_body {
	color: black;
	padding: .5em;
}
	

/* Hack to get outlined text - Swish */
.outlinedText {
	text-shadow: rgb(0, 0, 0) 3px 0px 0px, rgb(0, 0, 0) 2.83487px 0.981584px 0px, rgb(0, 0, 0) 2.35766px 1.85511px 0px, rgb(0, 0, 0) 1.62091px 2.52441px 0px, rgb(0, 0, 0) 0.705713px 2.91581px 0px, rgb(0, 0, 0) -0.287171px 2.98622px 0px, rgb(0, 0, 0) -1.24844px 2.72789px 0px, rgb(0, 0, 0) -2.07227px 2.16926px 0px, rgb(0, 0, 0) -2.66798px 1.37182px 0px, rgb(0, 0, 0) -2.96998px 0.42336px 0px, rgb(0, 0, 0) -2.94502px -0.571704px 0px, rgb(0, 0, 0) -2.59586px -1.50383px 0px, rgb(0, 0, 0) -1.96093px -2.27041px 0px, rgb(0, 0, 0) -1.11013px -2.78704px 0px, rgb(0, 0, 0) -0.137119px -2.99686px 0px, rgb(0, 0, 0) 0.850987px -2.87677px 0px, rgb(0, 0, 0) 1.74541px -2.43999px 0px, rgb(0, 0, 0) 2.44769px -1.73459px 0px, rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

.paddingLeft {
	padding-left: 1em;	
}

.pillContainer {	
	border: 1px solid black;
	border-radius: 5px;
	padding: 2em;
	margin: 1em;
	box-shadow: 2px 2px 10px #8e8e8e;
}

.responsiveButton {
	/* font-size: 60%; */
}

.responsiveText2vw {
	/* font-size: 2vw; */
	font-size: 24px; 
}

select.responsiveText2vw  {
	padding: 0px !important;
}

.responsiveText3vw {
	/* font-size: 3vw; */
	font-size: 32px; 
}

.wait {
	cursor: wait !important;
}

.service_request_package_list_item {
	padding: 5px 10px;
	font-size: 1.4em;
	border-radius: 2px;
}

.service_request_package_list_item:hover {
	background-color: #eee;
}

.service_request_selected_div {
	padding: 10px;
	font-size: 1.4em;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #337ab7;
}

input:disabled + .slider {
  background-color: #ccc;
}


input:focus + .slider {
  box-shadow: 0 0 1px #337ab7;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@media(hover: hover) and (pointer: fine) {
	.hamburger_icon:hover {	
		color: black;
	}
	
	
	.notification:hover {
		color: red;
	}
	
	
}

/*
@media screen and (max-width: 600px) {
	
	#service_request_modal .pillContainer {
		
		
	}
	
	#service_request_modal {
		width: 100%;
		padding: 2px;
	}
}
*/

@media screen and (max-width: 1000px) {
	.responsiveText2vw {
		font-size: 14px; 
		/* font-size: 1em; */
	}
	.responsiveText3vw {
		font-size: 24px;
	}
	
	.mainContent, .optionsContent {
		padding: 1em 3em;
	}
		
	.responsiveButton {
		/* font-size: 75%; */
	}
	
	#account_type {
		font-size: 80%;
	}
	
}

