body {
	/*box-sizing: border-box; */
	background-color: white;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #999;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #999;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #999;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #999;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #999;
}
a:link {
	color: rgb(0, 115, 170);
	text-decoration: none;
}
a:hover {
	color: rgb(60, 175, 230);
	text-decoration: underline;
}
.clickable_link {
	color: rgb(0, 115, 170);
	text-decoration: none;
	cursor: pointer;
}
.clickable_link:hover {
	color: rgb(60, 175, 230);
	text-decoration: underline;
}
.button_column {
	text-align: right;
}
#login_page {
	background-color: white;
	padding-bottom: 10px;
}
#registration_page1 {
	background-color: white;
}
#registration_page2 {
	background-color: white;
}
#registration_page3 {
	background-color: white;
}

#busy_overlay {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color:rgba(0,0,0,0.3);
	z-index: 100000;
}
#busy_content {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 100%;
	max-height: 150px;
	margin: 0 auto;
	top: 50%;
	margin-top: -120px;
	padding: 20px;
	background-color: white;
}
#busy_text {
	color: rgb(0, 115, 170);
	text-align: center;
	font-size: 20px;
	line-height: 1.5;
}
#busy_spinner {
	width: 42px;
	height: 42px;
	margin: 10px auto;
    animation: spinner 1.5s linear infinite;
}
@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#mondotag_overlay {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #00000033;
	z-index: 2000;
}
.popup {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	top: 50%;
	transform: translateY(-50%)
}
#mondotag_message_box {
	background-color: white;
	color: #777;
	font-size: x-large;
	line-height: 1.2;
	text-align: center;
	padding: 16px;
}

.popup_message_title {
	font-size: x-large;
	text-align: left;
	margin-bottom: 6px;
}
.popup_message_body {
	font-size: large;
	text-align: left;
}
#message_ok {
	padding: 12px;
}
#message_confirm {
	padding: 12px;
}

#menu {
	/*width: 100%;*/
	background-color: #39b2ae;
	background-color: darkGrey;
	padding: 0 2em;
	border-bottom: 2px solid #88D0CD;
}

.mondotag_menu_bar {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#mondotag_top_menu {
	z-index: 2000;
	margin: 4px 20px 0px 20px;
}
.mondotag_menu_logo {
	padding: 5px 20px 0px 20px;
	background-color: #39b2ae;
}
.mondotag_menu_logo img {
	width: 110px;
	margin-top: 3px;
}
.mondotag_nav_link {
	cursor: pointer;
	list-style: none;
	color: white;
	float: right;
	padding: 3px 12px;
	font-weight: 400;
	box-shadow: 0 0 !important;
	transition: color 0.5s ease;
	padding: 0 12px;
	margin: 0 12px !important;
}
.mondotag_nav_link:hover {
	box-shadow: 0 !important;
	color: #141414;
	transition: color 0.5s ease;
}
.mondotag_nav_link_box {
	text-align: center;
	cursor: pointer;
	border-left: 1px solid white;
	padding: 3px 12px;
	transition: border-color 0.5s ease;
	transition: color 0.5s ease;
}
.mondotag_nav_link_box:hover {
	color: black;
	border-color: black;
	transition: border-color 0.5s ease;
	transition: color 0.5s ease;
}


#mondotag_menu_button {
	display: none
}
.mondotag_hamburger {
	height: 20px;
}
#mondotag_popup {
	display: none;
	background-color: white;
	position: fixed;
	width: 100%;
	max-width: 600px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10000;
	transition: opacity .5s ease;
	border: 2px solid #141414;
	border-radius: 10px;
	overflow: hidden;
}

#mondotag_popup_message {
	position: relative;
	height: 100%;
	width: 100%;
	text-align: center;
	margin: 0;
}

.mondotag_popup_button {
	position: relative;
	text-align: center;
	color: white;
	background-color: rgb(0, 115, 170);
	border: 2px solid white;
	border-radius: 5px;
	color: white;
	height: 40px;
	width: 100px;
	padding: 0 10px 4px;
	margin: 10px auto;
	transition: border-color .5s ease, color .5s ease;
	cursor: pointer;
}

.mondotag_popup_button:hover {
	color: #141414;
	border-color: #141414;
	transition: border-color .5s ease, color .5s ease;
}


@media screen and (max-width: 1000px) {
	body {
		font-size: 14px;
	}
	.mondotag_menu_bar {
	}
	.mondotag_menu_logo {
		margin: 10px;
		height: 40px;
	}
	.mondotag_menu_logo img {
		width: 150px;
	}
	#menu_registration {

	}
	#mondotag_menu_button {
		display: block;
		float: right;
		height: 30px;
		margin: 20px 20px 20px 20px;
	}
	#mondotag_top_menu {
		margin-top: 8px;
		margin-left: 10px;
		margin-right: 0px;
		padding: 0;
	}
	.mondotag_nav_link {
		list-style: none;
		display: block;
		clear: both;
		color: white;
		line-height: 30px;
		width: 110px;
		padding: 0 !important;
		margin-top: 0;
		margin-bottom: 0;
		max-width: 132px;
		text-align: center;
	}
	.mondo_top_text {
		margin-top: 20px;
	}
	.mondotag_nav_link:hover {
		box-shadow: 0 !important;
		color: #F1F1F2;
		transition: color 0.5s ease;
		border: 0 !important;
	}
}
#toggle_login {
	text-align: center;
	width: 100%;

}
.text_link:hover {
	color: rgb(0, 115, 170);
	transition: color 0.5s ease;
	cursor: pointer;
}

.text_link {
	color: #141414;
	text-decoration: underline;
	transition: color 0.5s ease;
}

.section_flex {
	max-width: 1400px;
	margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.section_flex_login_form {
    max-height: 670px;
	height: 670px;
}
.section_flex_registration_form {
   	max-height: initial;
	flex-direction: row;
}
.registration_single {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: block;
	background-color: #eee;
}
.slide_top_panel {
    padding: 20px;
    color: white;
    text-align: center;
}
.slide_bottom_panel {
    padding: 20px;
    color: white;
    text-align: center;
}

.slide_panel_text {
    color: #141414;
    font-size: large;
    padding: 10px;
	line-height: 1.5;
}

.slide_form {
    width: 100%;
    vertical-align: top;
	padding: 10px;
	height: 100%;
}

@media screen and (max-width: 800px) {
	#menu {
		padding: 0;
	}
	.section_flex_login_form {
    	max-height: initial;
	}

	.slide_top_panel {
    	order: 1;
	    flex-grow: 1;
	}
	.slide_bottom_panel {
    	order: 3;
	    flex-grow: 1;
	}
	.slide_form {
		max-width: 100%;
		order: 2;
		padding: 16px;
	}
	.form-page_form-wrapper {
    	order: 2;
	    max-width: 100%;
	}
}

.form_field_wrapper {
  width: 100%;
  position: relative;
  padding-top: 16px;
}

.form_field_wrapper + .form_field_wrapper {
  border-top: none;
}

.form_field_input:focus {
  color: #141414;
}
.form_field_label {
  display: block;
  padding-top: 12px;
  padding-bottom: 6px;
  margin: 0;
  color: #141414;
  font-weight: bold;
}

.form_field_input {
  position: relative;
  padding: 10px 16px;
  width: 100%;
  color: #777;
  background-color: white;
  outline: 0;
  letter-spacing: 0.05em;
  vertical-align: top;
  box-sizing: border-box;
}

.form_field_checkbox_label {
  vertical-align: middle;
  display: inline-block;
  padding: 10px 16px;
  z-index: 1;
  color: #141414;
  font-weight: 400;
  user-select: none;
  cursor: text;
}

.form_field_checkbox_input {
  display: inline-block;
  width: 16px !important;
  padding: 10px 16px;
  margin-top: 2px;
  cursor: pointer;
  height: 16px !important;
  background-color: white;
}

.form_submit_btn-wrapper {
  padding: 2em 1em;
  width: 100%;
  display: flex;
  justify-content: center;
}

.form_submit_btn {
  border: none;
  background-color: #fff;
  border: 1px solid rgb(0, 115, 170);
  border-radius: 3px;
  background-color: rgb(0, 115, 170);
  color: white;
  display: block;
  margin: 0 auto;
  position: relative;
  height: 42px;
  cursor: pointer;
}
.rounded_right {
	border-radius: 0 3px 3px 0;
}


.form_submit_btn_light {
  border: 1px solid white;
  padding: 0.5em 1em;
  border-radius: 3px;
  background-color: rgb(0, 115, 170);
  color: white;
  display: block;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  transition: 0.25s;
}
.form_submit_btn_light:hover {
  background-color: #999;
}
.form_submit_btn_light_blue {
	border: 1px solid white;
    padding: 0.5em 1em;
    border-radius: 6px;
    background-color:rgb(0, 115, 170);
    color: white;
    display: inline;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
	transition: 0.25s;
}
.form_submit_btn_light_blue:hover {
	background-color: rgb(60, 175, 230)
}
.form_submit_btn_lighter_blue {
	border: 1px solid white;
    padding: 0.5em 1em;
    border-radius: 6px;
    background-color:#0096DD;
    color: white;
    display: inline;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
	transition: 0.25s;
}
.form_submit_btn_lighter_blue:hover {
	background-color: #66cfff
}
.orange {
  background-color: rgb(238, 129, 56);
}
.blue {
	color: rgb(0, 115, 170);
}
.form_field_error {
	display: block;
	width: 100%;
	color: red;
	display: none;
	text-align: center;
	background-color: white;
}

.form_button_centered {
	margin: 0 20px;
	display: inline-block;
}

.form_button_selected {
}
.form_button_unselected {
}

.topic_keyword_entry {
  height: 38px;
  padding: 0.6em 1em;
  background-color: white;
  color: #777;
  display: block;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
  line-height: 2;
}
.topic_keyword_entry_left {
	display: block;
	float: left;
}
.topic_keyword_entry_right {
	float: right;
}
#topic_keyword_buttons {
	margin: 12px 0px;
}
#autopilot_keyword_buttons {
	margin: 12px 0px;
}

.topic_button_selected::after {
	content: " \000D7";
}
.topic_button_unselected::after {
	content: " \0002B";
}
.tag_inner_left {
	display: inline-block;
}
.tag_inner_right {
	margin-left: 10px;
	display: inline-block;
}
.keyword_picker {
	z-index: 2000;
	top: 30px;
	left: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #eee;
	display: none;
}
.keyword_list {
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
	height: 90%;
	overflow: auto;
	background-color: #eee;
}
.shake_animation {
  animation: shake 150ms ease-in-out;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

.main_page {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: block;
	overflow-y: scroll;
}
.main_page:after {
	content: "";
	height: 36px;
	display: block;
}
#left_panel {

}
#left_contents {
    height: 100%; 
    width: 300px;
	float: left;
    top: 0;
    left: 0;
    background-color: rgb(60, 175, 230);
	background-color: #eee;
    overflow-x: hidden;
    transition: 0.25s;
}
#left_content_top {
	padding-top: 20px;
	border-bottom: 1px solid white;
}
#left_content_bottom {
	background-color: white;
	padding-top: 20px;
	transition: 0.2s;
	border: 2px solid #eee;
}
.left_content_open {
	max-height: 10000px;
	overflow: none;
	transition: 0.2s;
}
.left_content_closed {
	max-height: 600px;
	overflow: hidden;
	transition: 0.2s;
}
#left_content_bottom_more {
}
.left_content_bottom_toggle {
	display: none;
	background-color: #ddd;
	color: #999;
	text-align: center;
	padding: 0;
	cursor: pointer;
}
#middle_panel_button {
	width: 24px;
	font-size: 24px;
	color: #ccc;
	text-align: center;
	font-weight: bold;
	position: fixed;
	top: 50%;
	margin-left: 300px;
    transition: 0.25s; 
}
.left_panel_open {

}
.left_content {
    background-color: rgb(60, 175, 230);
}
#right_panel {
	margin-left: 320px;
	transition: margin-left 0.25s

}
.right_panel_search_entry {
	background-color: #eee;
	display: flex;
	padding: 8px 0;
	padding-left: 8px;
}
#right_panel_submit_button_wrapper {
	text-align: center;
	display: none;
	width: auto;
	margin-right: 20px;
}
#right_panel_submit_button_wrapper_bottom {
	text-align: center;
	display: none;
	width: auto;
	margin-right: 20px;
}
.right_panel_pages_wrapper {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}
.right_panel_pages {
	width: auto;
	padding-right: 10px;
	border-right: 1px solid #ccc;
	display: inline-block;
}
.right_panel_pages_bottom {
	width: 100%;
}
#show_approved_button {
	display: none;
	margin-left: 14px;
}
#show_approved_button_bottom {
	display: none;
	margin-left: 14px;
}

.tag {
	display: inline-block;
	margin: 10px;
	cursor: pointer;
}
.tag_flex {
}
.tag_small {
	padding: 3px 12px;
}
.tag_grey {
	background-color: #eee;
	color: #777;
	border-radius: 8px;
}
.tag_full {
	display: inline-block;
	border: 1px solid white;
	padding: 3px 12px;
	margin: 6px;
	text-transform: uppercase;
	font-size; 16px;
    background-color: rgb(0, 115, 170); 
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: 0.25s;
}

.tag_internal {
	display: flex;
	align-items: stretch;
}
.tag_left {
	padding: 2px 6px 2px 8px;
	text-transform: uppercase;
	font-size: 16px;
    background-color: rgb(60, 175, 230);
	color: #fff;
	border: none;
	border-radius: 3px 0 0 3px;
	cursor: pointer;
	transition: 0.25s;
	max-width: 200px;
}
.tag_left:hover {
	color: #ddd;
	background-color: rgb(0, 115, 170);
}

.tag_right {
	padding: 0 3px 3px 3px;
	font-size; 16px;
    background-color: rgb(60, 175, 230);
	color: white;
	border: none;
	border-radius: 0 3px 3px 0;
	border-left: 1px solid white;
	cursor: pointer;
	transition: 0.25s;
	align-self: stretch;
	display: flex;
	align-items: center;
}
.tag_right:hover {
   background-color: rgb(0, 115, 170); 
}

.tag_right .star_img {
	padding: 0 4px;
	height: 16px;
}
.tag_right .edit_img {
	padding: 0 4px;
	max-height: 16px;
}

.tag_button {
	display: block;
	font-size: 16px;
	padding: 8px 12px;
	width: 100%;
	margin: 0;
	border-top: 2px solid white;
	color: #777;
    transition: 0.25s; 
	cursor: pointer;
}
.tag_button:hover {
    background-color: rgb(60, 175, 230);
	color: white;
}
.tag_button_inverse {
	font-weight: bold;
	border-right: 4px solid rgb(0, 115, 170);
}

.search_result {
	margin: 10px 0px;
	padding: 5px 8px;
	border-radius: 3px;
	background-color: #fafafa;
	transition: 0.2s;
	border-top: 1px solid #ccc;
	display: flex;
}
.search_result_edit {
	background-color: #eee;
}
.search_result_content {
	flex-grow: 1;
}
.search_result_buttons {
	flex-basis: 120px;
	flex-shrink: 0;
	width: 120px;
	text-align: right;
}
.search_result_title {
	color: white;
	font-size: 16px;
	line-height: 1.7;
	display: inline-block;
	max-width: 750px;
}
.search_result_date {
	color: #141414;
	font-size: 16px;
	display: inline-block;
	margin-top: 2px;
}
.square_button {
	display: inline-block;
	width: 38px;
	height: 38px;
	padding: 2px;
	cursor: pointer;
    background-color: rgb(0, 115, 170); 
	color: white;
}
.square_button:hover {
	background-color: #666;
}
.page_button {
	display: inline-block;
	text-align: center;
	height: 30px;
	padding: 0px 10px 0 10px;
	cursor: pointer;
    background-color: rgb(0, 115, 170);
	color: white;
	border: 1px solid white;
	margin: 4px;
	transition: 0.2s;
	line-height: 30px;
}
.page_button_grey {
	background-color: #ccc;
}
.page_button:hover {
	background-color: #ddd;
	color: rgb(0, 115, 170);
}
.approve_button_unselected {
	background-color: #eee;
	color: #141414;
}

.order_button {
	font-size: 16px;
	line-height: 1.1;
	padding: 4px;
	height:auto;
	margin-left: 8px;
	margin-bottom: 16px;
	background-color: darkGrey;
}
.page_button_selected {
	border: 1px solid rgb(0, 115, 170);
	background-color: white;
	color: rgb(0, 115, 170);
}
.page_button_text {
	display: inline-block;
	color: #141414;
	font-size: 16px;
}

#options_page {
	width: 100%;
}

.option_popup {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #eee;
	padding-top: 40px;
	z-index: 10000;
	color: #777;
}
.option_popup_title {
	color: #777;
	text-align: center;
	font-size: 20px;
}
.options_popup_input {
	padding-top: 20px;
}
.options_popup_buttons {
	text-align: center;
	padding-top: 20px
}
.options_popup_buttons input {
	display: inline-block;
}
#topic_page {
	width: 100%;
	background-color: white;
}
#topics_close_button {
	display: none;
	margin: 0 10px;
}
#topics_delete_button {
	display: none;
	margin: 0 10px;
}

#autopilot_page {
	width: 100%;
}
#autopilots_delete_button {
	display: none;
	margin: 0 10px;
}
#autopilots_save_button {
	margin: 0 10px;
}
#autopilots_delete_button {
	display: none;
	margin: 0 10px;
}
.autopilot_email_schedule_day {
	color: #777;
	padding-left: 20px;
	padding-top: 12px;
	display: inline-block;
}
.autopilot_schedule_entry {
	padding: 4px 6px;
}

.buffer_profile {
	color: #777;
	font-size: 16px;
	padding: 4px 6px;
	border-bottom: 2px solid #eee;
	vertical-align: middle;
	height: 22px;
}
.buffer_profile img {
	height: 30px;
	float: right;
}
.feed_entry {
	background-color: white;
	width: 100%;
	padding: 4px;
	margin-bottom: 4px;
	display: flex;
    justify-content: center;
	cursor: pointer;
}
.feed_entry:hover {
	background-color: #ccc;
}
.feed_entry_title {
	color: #141414;
	font-size: 20px;
	flex-grow: 1;
	margin-left: 10px;
}
.feed_entry_delete {
	background-color: rgb(0, 115, 170);
	color: white;
	text-align: center;
	font-size: 18px;
	width: 30px;
	border-radius: 5px;
	margin-right: 4px;
}
.feed_entry_edit {
	background-color: rgb(0, 115, 170);
	color: white;
	text-align: center;
	padding-top: 3px;
	font-size: 16px;
	width: 70px;
	border-radius: 3px;
}
#bulk_submit_page {
	width: 100%;
}
#bulk_submit_edit_schedule {
	width: 100%;
}
#bulk_submit_email_schedule_days {
	text-align: center;
	margin: 20px 0;
}
#bulk_submit_sent {
	width: 100%;
	height: 100%;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #777;
	background-color: white;
	padding: 20px;
}
#bulk_submit_sent_title {
	text-align: center;
	font-size: 20px;
	margin: 0 auto;
	margin-top: 20px;
	max-width: 640px;
}
.bulk_submit_hashtags {
	display: none;
	border: 1px solid #ccc;
	max-height: 100px;
	overflow-y: scroll;
}
.hashtag {
	display: inline-block;
	color: rgb(0, 115, 170);
	padding: 3px 12px 3px 3px;
	cursor: pointer;
}
.hashtag_list_entry {
	display: inline-block;
	color: black;
	background-color: #ddd;
	border-radius: 3px;
	margin: 3px 12px 3px 0px;
	padding: 2px 8px;
}
.hashtag_list_entry::after {
	content: " ";
}
.variable_description {
	color: #777;
	padding-left: 70px;
}
#autopilot_hashtag_organizer {
	color: #777;
	padding: 6px;
}
#autopilot_hashtag_organizer table {
	width: 100%;
	border-spacing: 2px;
	border-collapse: separate;
}
#autopilot_hashtag_organizer td {
	background-color: white;
	padding: 3px 6px;
}
#autopilot_hashtags_list {
	color: #777;
	background-color: white;
	padding: 6px;
}
#autopilot_domain_list {
	color: #777;
	background-color: white;
	padding: 6px;
}
.toggle_outside {
	height: 18px;
	width: 36px;
	display: inline-block;
	background-color: white;
	border-radius: 6px;
	margin: 0px 6px;
	cursor: pointer;
	vertical-align: sub;
	border: 1px solid #bbb;
}
.toggle_inside {
	position: relative;
	left: 0px;
	height: 18px;
	width: 18px;
	border-radius: 9px;
	background-color: rgb(0, 115, 170);
	transition: left 0.25s ease;
}
#right_panel_new_search {
	background-color: grey;
	padding: 10px;
	color: white;
	display: none;
}
#right_panel_new_search p {
	font-size: 24px;
}
#right_panel_new_search input {
	font-size: 18px;
}
#right_panel_new_search_notify {
	background-color: grey;
	padding: 10px;
	color: white;
	display: none;
}
#right_panel_new_search_notify p {
	font-size: 24px;
}
#right_panel_new_search_notify input {
	font-size: 18px;
}
#right_panel_new_search_message {
	background-color: grey;
	padding: 10px;
	color: white;
	display: none;
	opacity: 1;
	transition: opacity .5s ease;
	cursor: pointer;
}
#right_panel_new_search_message p {
	font-size: 24px;
}

.right_panel_info {
	background-color: #eee;
	padding: 30px;
	color: #777;
	display: none;
	opacity: 1;
}
.right_panel_info table {
	max-width: 700px;
	margin: 0 auto;
	font-size: 18px;
}
.right_panel_info td {
	vertical-align: top;
}
.right_panel_info p {
	margin-top: 4px;
	font-size: 16px;
}
.right_panel_form {
	padding-bottom: 10px;
	color: white;
	display: block;
	opacity: 1;
	max-width: 1200px;
}
.right_panel_form table {
	width: 100%;
	font-size: 18px;
	background-color: #eee;
}
.right_panel_form td {
	vertical-align: top;
	border-top: 2px solid white;
}
.right_panel_form input[type=text],select {
	border: 0;
	padding: 6px;
	width: 100%;
	height: 38px;
	max-width: 640px;
}
.right_panel_form input::placeholder {
	color: #ccc;
}
.right_panel_search_entry input,select {
	border: 0;
	padding: 6px;
	width: 100%;
	height: 38px;
}


.right_panel_search_entry input::placeholder {
	color: #ccc;
}
.label_column {
	padding: 8px 8px 4px 8px;
	width: 300px;
	color: #777;
	font-size: 16px;
}
.slide_form .label_column {
	width: 200px;
}
.content_column {
	padding: 4px;
}
.easy_search_domains {
	background-color: white;
	padding-top: 1px;
	max-height: 280px;
	overflow-y: scroll;
	color: #333;
	width: 100%;
}

.service_select {
  position: relative;
  font-family: Arial;
}
.service_select select {
  display: none; /*hide original SELECT element:*/
}
.service_select_selected {
  background-color: #eee !important;
  width: 150px;
  padding-left: 4px !important;
}
/*style the arrow inside the select element:*/
.service_select_selected:after {
  float: right;
  content: "▼";
  font-size: 16px;
}
/*point the arrow upwards when the select box is open (active):*/
.service_select_selected.select-arrow-active:after {
  content: "";
	
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/
.service_select_items div,.service_select_selected {
  color: #777;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-color: transparent #eee #eee #eee;
  cursor: pointer;
  background-color: white;
}
/*style items (options):*/
.service_select_items {
  position: absolute;
  background-color: #eee;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
/*hide the items when the select box is closed:*/
.service_select_hide {
  display: none;
}
.service_select_items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.mondoplayer_wp_editor {
	max-width: 640px;
}
div .category_label {
	display: inline-block;
	width: 230px;
	padding-top: 4px;
}
div .category_description {
	padding-top: 4px;
	font-size: 13px;
	color: #777;
}

.alternating tr:nth-child(odd) {
	background-color: #eee;
}
.alternating tr:nth-child(even) {
	background-color: #fff;
}
.alternating th {
	background-color: #fff;
	border-bottom: 2px solid black;
	font-weight: normal;
	line-height: 1.25;
}
.alternating td {
	padding: 8px 6px;
	vertical-align: middle;
	border: 0;
	line-height: 1.25;
}
.alternating input[type=text] {
	padding: 8px 6px;
	background-color: initial;
	font-size: 18px;
}

.learning_tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: small;
  vertical-align: top;
}

.learning_tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: white;
  border: 1px solid #ddd;
  color: black;
  text-align: left;
  padding: 12px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}
.learning_tooltip:hover .tooltiptext {
  visibility: visible;
  top: -5px;
  right: 105%;
}
.triangle-bullet:before {
	content: "\25B6";
}
.Explainer-Video-Icon {
	cursor: pointer;
	display: inline;
	transition: all 0.4s;
	height: 24px;
	vertical-align: middle;
}
.Explainer-Video-Icon:hover {
	opacity: 0.6;
}
