/********************************************************************************
  *
  *     Filename:        base.css
  *     Description:     WhatsApp Responsive Theme Base CSS File
  *     Version:         3.1.0
  *     Copyright:       (C) 2021 Krishan Kumar - Knet Solutions - All rights reserved.
  *
  *     -- FILE STRUCTURE: --
  *
  *     [ 1] CSS Defaults Reset          __reset
  *     [ 2] Clearfix                    __clearfix
  *     [ 3] Base Elements               __base
  *     [ 4] Typography                  __typography
  *     [ 5] Masterpage & Page Layout    __layout
  *     [ 6] Menus                       __menus
  *     [ 7] Pagination                  __pagination
  *     [ 8] Content Items               __content items
  *     [ 9] Common Blocks               __blocks
  *     [10] Forms                       __forms
  *     [11] Tables                      __tables
  *     [12] Standard Listings           __listings
  *     [13] Thumbnails & Icons          __icons
  *     [14] Notifications               __notificationsf
  *		[15] Default Classes			 __default classes
  *     [16] Plugin Styles               __plugins
  *     [17] Misc                        __misc
  *
 ********************************************************************************/
/*========================================================
        [1] CSS Defaults Reset      __reset
  ========================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none; 
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/*========================================================
        [2] Clearfix        __clearfix
  ========================================================*/
.clearfix{zoom: 1;}
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.clearfix {display: inline-block;}
html[xmlns] .clearfix {display: block;}
*html .clearfix {height: 1%;}
/*========================================================
        [3] Base Elements       __base
  ========================================================*/
body {
	background-color: #F0EAF2; /** OW_Control type:color, section:1. General Settings, key:bodyColor, label:01. Site background color **/
	background-image: url(images/white_bg1.png); /** OW_Control type:image, key:siteImage, section:1. General Settings, label:02. Site background image **/
	background-attachment: fixed;
}
body, html {
	font-family: "sans-serif","Lucida Grande", "Tahoma", "Verdana";
	color: #555555; /** OW_Control type:color, section:2. Colors, key:textColor, label:1. Text **/
	font-size: 14px;
	line-height: 18px;
	height: 100%;
	min-width: auto;
}
a {
	color: #111; /** OW_Control type:color, key:linkColor, section:2. Colors, label:3. Links **/
	text-decoration: none;
}
a:hover {
	color: #111;
	text-decoration: underline;
	}
a:hover img {
	text-decoration: none;
}
b {
	font-weight: bold;
	font-family: "sans-serif","Trebuchet MS","Helvetica CY";
}
p {
	text-indent: 0;
	margin-bottom: 8px;
}
h1, h2, h3, h4, h5 {
	color: #333333; 
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-family: 'Lato',"sans-serif","Trebuchet MS","Helvetica CY";
}
h1 {
    font-size: 17px;
    line-height: 20px;
    padding-left: 0px;
    color: #333333; /** OW_Control type: color, key: titleColor, section: 2. Colors, label:2. Title **/
    text-transform: capitalize;
    margin-left: 0px;
    background-repeat: no-repeat;
    padding: 10px;
	border-radius: 4px;
}
html body div .ow_canvas h1 {
    margin-left: 195px;
    margin-top: 16px;
    margin-bottom: 0;
}
body.ow.whatsapp.base_user_join .ow_canvas h1 {
    margin-left: auto;
	border: 1px solid #cad4dd;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
	margin-right: auto;
}
h2 {
	font-size: 18px;
}
h3 {
	font-size: 15px;
}
h4 {
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: none;
}
img {
	border: 0;
	vertical-align: middle;
}
table {
	border: none;
}

th, td {
	padding: 2px 5px;
	vertical-align: top;
}
th {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	padding: 10px;
	vertical-align: middle;
	font-weight: normal;
	font-size: 17px;
}
th {
    background-color: #fff;
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
hr {
	background-color: #dddfeb;
	border: none;
	height: 1px;
	margin: 5px 5px 15px 5px;
}
/*========================================================
        [4] Typography        __typography
  ========================================================*/

@import url('https://fonts.googleapis.com/css?family=Lato');

/*========================================================
        [5] Masterpage & Page Layout        __layout
  ========================================================*/
/* ---- Page Layout, Content styles ---- */
/*Opera Fix*/
	body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;
}
/*End of the Opera Fix*/
.ow_bg_color{
	background-color: #ffffff;/** OW_Control type:color, section:1. General Settings, key:bodyColor, label:1. Page background color **/	
}
.ow_border {
    border-style: solid;
    border-color: #cad4dd;
}
body > .ow_page_wrap {
	min-height: 100%;
	padding-top: 60px;
}
.ow_page_padding {
	padding-bottom: 99px;
} 
.ow_canvas {
	margin: 0 auto;
	width: 100%;
	word-wrap: break-word;
}
.ow_page {
    margin: 0 244px 0px 195px; 
    padding: 0 18px;
}
.ow_page_container {
	width: 100%;
	margin: 0px auto 16px;
	max-width: 1920px;
}
.ow_page_container .ow_page {
    padding: 16px 16px 16px 0;
    min-height: 400px;
}
.ow_content {
    float: left;
    width: 100%;
}

.ow_sidebar {
    margin-right: -260px;
    float: right;
    width: 240px;
	top: 0;
    margin-top: 0px;
}
/* Footer */
.ow_footer {
    padding: 0;
    background: #708090; /** OW_Control type:color, section:1. General Settings, key:footerColor, label:09. Footer background color **/
    height: 140px;
    position: absolute;
    /* margin-top: -90px; */
    clear: both;
    width: 100%;
    margin-bottom: -1px;
}
.ow_footer .ow_canvas {
	width: 100%;
}
.ow_footer .ow_canvas .ow_page {
    padding: 0;
    margin: 0 5px 0px 195px;
}
.ow_footer .ow_copyright{
	float: left;
	padding-left: 10px;
	color: rgba(255,255,255,0.5);
}
body > div.ow_footer > div > div > div:nth-child(3) {
    padding-right: 10px;
}
/* Columns */
.ow_column {
	width: 49%;
    overflow: hidden;	
}
.ow_narrow {
    width: 39%;
    overflow: hidden;
}
.ow_wide {
    width: 59%;
    overflow: hidden;    
}
.ow_superwide {
    width: 75%;
    overflow: hidden;
}
.ow_supernarrow {
    width: 23%;
    overflow: visible;
}
/* Avatar list (Groups, Googgle popup)*/
.ow_item_set2 { 
	width: 49%; 
}
.ow_item_set3 { 
	width: 33%; 
}
.ow_item_set4 { 
	width: 25%; 
}
.ow_item_set5 { 
	width: 20%; 
}
/* ---- End of the Page Layout, Content styles ---- */
/* ---- Header styles ---- */
.ow_top {
    position: relative;
    height: auto;
	min-height: 105px;
	padding-top: 50px;
}
.ow_logo {
	background-image: url(images/open-network-logo.png); /** OW_Control type:image, key:logoImage, section:1. General Settings, label: 05. Logo image **/
	background-size: 65%;
	background-repeat: no-repeat;
	background-position: 10px center;
	display: inline-block;
	height: 60px;
	width: 280px;
}
a.ow_logo:hover {
	text-decoration: none;
}
.ow_header {
	display: none;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
body.ow.whatsapp.base_index_page .ow_header {
    display: block;/** OW_Control type:text, key:indexHeaderText, section:4. Theme Settings, label: 01. Show Slider on Index page, description: block or none **/
}
body.ow.whatsapp.base_sign_in .ow_header {
    display: none;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
.ow_header_img {
    width: 100%;
}
.ow_header_pic {
    background-image: url(images/header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    height: 300px;
	background-attachment: inherit;
}
.ow_header_pic img {
	height: 0px;
}

/* ---- End of the Header styles ---- */
/* ---- User Dashboard customizer */
.ow_dragndrop_content {
    /* float: left; */
}
body.ow.whatsapp.base_index_page_customize .ow_dragndrop_content {
    float: left;
    width: 100%;
}
body.ow.whatsapp.base_index_page_customize input.ow_ic_restrict.ow_mild_green {
    color: #fff;
}
body.ow.whatsapp.base_index_page_customize .ow_dnd_configurable_component h3 {
    float: left;
    text-align: left;
    padding-left: 8px;
	background-image: none;
}
body.ow.whatsapp.base_index_page_customize .ow_box_cap .ow_box_icons {
    padding: 10px 8px;
}

.ow_subscribe_table .ow_ic_ok {
    background-image: url(images/ic_ok.svg);
}
.ow_dragndrop_panel {
	background: #fff;
	margin-top: 5px;
}
.ow_dashboard_box{
    background: #FFF;
    padding: 5px 10px 10px 10px;
    margin-top: 5px;
}
.ow_dnd_schem_item{
	background:#fff url(images/ic_file.svg) no-repeat 10px 50%;
	border:1px solid #cad4dd;
	cursor:move;
	height:30px;
	margin:2px 4px 2px 0;
	padding:0 5px 0 5px;
    position: relative;
    font-size: 11px;
	background-image: none;
}
.ow_dnd_schem_item:before {
    line-height: 28px !important;
    position: absolute;
}
.ow_dnd_schem_item span.ow_label {
    float: left;
    overflow: hidden;
    padding-top: 5px;
    height: 20px;
    padding-left: 24px;
}
.ow_dnd_schem_item span.action{
	line-height:15px;
	overflow:hidden;
	width:70px;
    position: absolute;
    right: 4px;
    top: 2px;
}
.ow_dnd_schem_item .action a {
    height: 18px !important;
}
.ow_dnd_schem_item span.action .ow_lbutton {
	vertical-align: top;
}
.ow_dnd_helper {
	border: 1px dashed #000;
}
.ow_dnd_freezed .ow_dnd_schem_item {
	background-color: #FFAAAA;
}
.ow_dragndrop_sections .ow_highbox{
    margin-top: 6px;
}
.ow_dnd_placeholder {
    height: 10px;
	border: 1px dashed #999999;
	background-color: #fff;
}
.ow_dnd_preloader {
    height: 30px;
}
.ow_dnd_configurable_component .control {
    display: inline-block;
    width: 18px;
    height: 16px;
    text-decoration: none;
    background-position: center;
    background-repeat: no-repeat;
}
.ow_dnd_configurable_component .ow_box_icons {
	float: right;
    padding: 8px 2px 0 0;
}
.ow_dnd_configurable_component h3 {
    float: left;
}
.ow_dnd_content_components{
   padding: 10px 0;
   width: 74%;
}
.ow_dnd_clonable_components {
   border-left: 1px solid #cad4dd;
   padding: 10px 0 10px 10px;
   width: 24%;
}
/* Dnd Slider */
.ow_dnd_slider {
	height: 6px;
    background-color: #fafafa;
    position: relative;
    margin: 10px 3px 0;
    cursor: pointer;
}
.ow_dnd_slider_pusher {
    float: left;
    height: 1px;
}
.ow_dnd_slider_marker {
   width: 10px;
   height: 1px;
   float: left;
}
.ow_dnd_slider_marker_point {
    position: absolute;
    width: 0px;
    height: 6px;
    border-left: 1px solid #999;
    top: 0;
}
.ow_dnd_slider_handle {
    position: absolute;
    top: -5px;
    width: 22px;
    height: 16px;
    cursor: move;
    z-index: 50;
    background: transparent url(images/ic_move_horizontal.svg) no-repeat center;
}
.ow_dnd_slider_helper {
}
.ow_dnd_slider_in_move {
    opacity: 0.5;
    filter: alpha(opacity = 50);
}
.ow_dragndrop_sections .top_section,
.ow_dragndrop_sections .left_section,
.ow_dragndrop_sections .right_section,
.ow_dragndrop_sections .bottom_section,
.ow_dragndrop_sections .sidebar_section{
    background-position: center 7px;
    background-repeat: no-repeat;
}
.ow_dragndrop_sections .top_section { background-image: url(images/dnd-label-top.png) }
.ow_dragndrop_sections .left_section { background-image: url(images/dnd-label-column1.png) }
.ow_dragndrop_sections .right_section { background-image: url(images/dnd-label-column2.png) }
.ow_dragndrop_sections .bottom_section { background-image: url(images/dnd-label-bottom.png) }
.ow_dragndrop_sections .sidebar_section { background-image: url(images/dnd-label-sidebar.png) }

body .ow_dragndrop_panel .ow_dnd_schem_item{
   width: 134px;
}
.ow_dragndrop_sections .ow_highbox{
   margin-top: 6px;
}
.ow_dragndrop_sections .ow_highbox {
    padding: 0;
}
.ow_dragndrop_sections .ow_highbox.join_now_widget {
    padding: 10px;
    background-color: #2196F3;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
	background-position: left center;
    background-repeat: no-repeat;
}
.ow_dragndrop_sections .ow_highbox.join_now_widget:hover {
    background: #006fe6 url(assets/img/arrow-right.png);
    text-decoration: none;
    background-position: 95% center;
    background-repeat: no-repeat;
}
.ow_dragndrop_sections .ow_highbox.join_now_widget a {
    color: #fff;
}
.ow_dragndrop_sections .ow_highbox.join_now_widget a:hover {
    color: #fff;
}
.join_now_widget {
	text-transform: uppercase;
}
.ow_highbox .ow_highbox.join_now_widget {
	background-image: none;
	border: none;
}
.join_now_widget a:hover {
	text-decoration: none;
}
.ow_highbox_table .ow_highbox .ow_dnd_schem_item {
	float:none;
	margin-bottom:4px;
	margin-right:0;
	width:auto;
}
input[type=text].ow_settings_input{
    width: 40px;
}
/*========================================================
        [6] Menus        __menus
  ========================================================*/
/* ---- Navigation on the left ---- */
.ow_nav_btn {
	position: relative;
	float: left;
	width: 70px;
	height: 60px;
	cursor: pointer;
	background-image: url(assets/img/menu_btn.png);
	 filter: invert(1);
	background-position: 3px -120px;
	opacity: 1;
	transition: opacity 0.3s ease-out 0.15s;
	-moz-transition: opacity 0.3s ease-out 0.15s;
	-webkit-transition: opacity 0.3s ease-out 0.15s;
    border-left: 1px solid rgba(180, 198, 214, 0);
	display: none;
}
.ow_nav_btn:before {
    border-color: rgba(239, 242, 245, 0);
    border-right-color: #CAD4DD;
    border-width: 9px;
    margin-top: -9px;
}
.ow_menu_active .ow_nav_btn {
	display: block;
	opacity: 1;
	transition: background-position 0.2s ease;
	-moz-transition: background-position 0.2s ease;
	-webkit-transition: background-position 0.2s ease;
}
.ow_menu_active .ow_nav_btn,
.ow_menu_active .ow_nav_btn:hover {
	background-position: 4px 5px;
	transition: background-position 0.2s ease;
	-moz-transition: background-position 0.2s ease;
	-webkit-transition: background-position 0.2s ease;
}
body.ow_menu_active {
	overflow: hidden;
}
.ow_menu_fullpage {
    background-color: #f2ecee;
    border-right: 1px solid #f2ecee;
    position: fixed;
    z-index: 98;
    top: 60px;
    left: -240px;
    right: 0;
    bottom: 0;
    width: 220px;
    visibility: hidden;
    transition: left .4s,visibility .4s;
	-webkit-transition: left .4s,visibility .4s;
	-moz-transition: left .4s,visibility .4s;
}
.ow_menu_active .ow_site_panel .ow_logo, .ow_menu_active .ow_site_panel .ow_menu_wrap {
    /* display: none; */
}
.ow_menu_active .ow_menu_fullpage {
    margin-top: auto;
    overflow-y: auto;
    overflow-x: hidden;
    left: 0;
    visibility: visible;
    transition: left .4s;
	-webkit-transition: left .4s;
	-moz-transition: left .4s;
}
.ow_menu_active .ow_menu_fullpage_wrap {
	display: table;
	height: 100%;
	width: 100%;
}
.ow_menu_fullpage_wrap ul.ow_main_menu {
	display: table-cell;
	vertical-align: top;
	overflow: visible;
	height: auto;
}
.ow_menu_fullpage_wrap ul.ow_main_menu li {
	width: 100%;
	display: block;
	text-align: left;
}
.ow_menu_fullpage_wrap .ow_main_menu li a {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 16px;
	width: 100%;
	display: inline-block;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	padding: 0 5px 0px 10px;
	background-position: 20px center;
	border-left: 3px solid transparent;
}
.ow_menu_fullpage_wrap .ow_main_menu li a:hover {
    /* color: #333333; */
    /* text-decoration: none; */
}
.ow_menu_fullpage_wrap .ow_main_menu li.active a {
    color: #000;
    border-left: 3px solid #fafafa;
}
.ow_menu_fullpage_wrap .ow_main_menu li:first-child a {
	margin-left: 0;
}
.ow_menu_fullpage_wrap .ow_main_menu li a:hover {
    border-left: 3px solid #007BFF;
}

/* ---- End of the Navigation on the left ---- */
/* ---- Console styles ---- */
.ow_site_panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: #EDE7F6; /** OW_Control type:color, section:1. General Settings, key:panelColor, label:06. Site top bar background color **/
	z-index: 99;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
.ow_console_right {
    float: right;
    padding-left: 14px;
}
.ow_console_body  {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 9px 14px 0 0;
}
.ow_console_item {
	display: inline-block;
    position: relative;
    margin: 0 10px 0 6px;
    padding: 5px 0px 0 0px;
	vertical-align: middle;
	text-align: left;
	cursor: pointer;
}
.ow_console_item:hover {
	border-color: #d9e0e6;
	cursor: pointer;
}
.ow_console_item:last-child {
	margin-right: 0;
	padding-right: 0;
}
.ow_console_item a {
}
.ow_console_item a:hover {
	text-decoration: none;
}
.ow_console_block {
	display: inline-block;
	text-align: left;
	vertical-align: top;
}
.ow_friend_request_list {
    display: inline-block !important;
}
.ow_console_more {
    display: none;
}
.ow_console_item a.ow_console_item_link {
	font-size: 0;
	width: 20px;
	height: 20px;
	display: inline-block;
	color: #111;
}
.ow_console_item a.ow_console_item_link:hover {
	color: #006fe6;
}
.ow_console_item.ow_console_button {
    margin: 0px 10px 0 -5px;
}
.ow_console_button.ow_console_item a.ow_console_item_link {
    pointer-events: auto;
    width: auto;
    height: auto;
    background: none;
    font-size: 14px;
    background-color: #007BFF;
    color: #fff;
    padding: 5px 10px 7px 10px;
    margin: 0px 0;
    border-radius: 20px;
    line-height: 20px;
	border: 1px solid #006fe6;
}
.ow_console_button.ow_console_item a.ow_console_item_link:hover {
    color: #FFFFFF;
    background-color: #006fe6;
}
.ow_console_item a.ow_console_item_link:before,
.ow_invitation_list.ow_console_item a.ow_console_item_link:before,
.ow_friend_request_list.ow_console_item a.ow_console_item_link:before,
.ow_mailbox_items_list.ow_console_item a.ow_console_item_link:before,
.ow_notification_list.ow_console_item a.ow_console_item_link:before {
  font-family: 'simple-line-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ow_console_item a.ow_console_item_link:before,
.ow_console_item a.ow_console_item_link:hover:before{
	content: "\e005";
}
.ow_invitation_list.ow_console_item a.ow_console_item_link:before,
.ow_invitation_list.ow_console_item a.ow_console_item_link:hover:before {
	content: "\e002";
}
.ow_friend_request_list.ow_console_item a.ow_console_item_link:before,
.ow_friend_request_list.ow_console_item a.ow_console_item_link:hover:before {
	content: "\e001";
}
.ow_mailbox_items_list.ow_console_item a.ow_console_item_link:before,
.ow_mailbox_items_list.ow_console_item a.ow_console_item_link:hover:before {
	content: "\e086";
}
.ow_notification_list.ow_console_item a.ow_console_item_link:before,
.ow_notification_list.ow_console_item a.ow_console_item_link:hover:before {
	content: "\e027";
}
.ow_console_button.ow_console_item a.ow_console_item_link:before,
.ow_console_button.ow_console_item a.ow_console_item_link:hover:before {
	font-size: 0;
}
body .ow_console_item:hover a.ow_console_item_link, body .ow_console_dropdown_pressed.ow_console_item a.ow_console_item_link {
    background-position: 0 0px;
    color: #ffffff;
}
body .ow_console_item:hover a.ow_console_item_link:before,
body .ow_console_dropdown_pressed.ow_console_item a.ow_console_item_link:before {
	text-shadow: 1px 1px #159682;
}
/* Console Sign in */
.ow_signin_label {
    display: inline-block;
    height: 17px;
    margin: 0px 0;
    vertical-align: top;
    color: #111;
    font-size: 14px;
    background-color: #fff;
    padding: 7px 10px 8px 10px;
    border-radius: 20px;
    line-height: 15px;
	border: 1px solid #000;
}
.ow_signin_label:hover {
    color: #FFFFFF;
    background-color: #333;
}
.ow_signin_delimiter {
    /* border-right: 1px solid #cad4dd; */
    /* padding: 0 4px 0 0; */
}
.ow_menu_active .ow_signin_delimiter {
	border-color: #159682;
}
.ow_console_item .ow_ico_signin {
    background-color: transparent;
    background-position: 0 0;
    background-repeat: no-repeat;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0px 0 0 4px;
    vertical-align: top;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}
.ow_ico_signin:last-child {
    margin-right: -4px;
}
.ow_ico_signin_f {
    background-image: url(images/sign_in_facebook.png) !important;
}
.ow_ico_signin_g {
    background-image: url(images/sign_in_google.png) !important;
}
.ow_ico_signin_vk {
    background-image: url(images/sign_in_vk.png) !important;
}
.fb_button {
    background-image: url(images/sign_in_facebook.png) !important;
    background-color: #5F78AB !important;
    background-repeat: no-repeat !important;
    background-position: 0 0 !important;
	padding: 0 !important;
    height: 32px !important;
    display: inline-block;
    color: #fff;
	border-radius: 20px !important;
	-webkit-border-radius: 20px !important;
	-moz-border-radius: 20px !important;
}
.fb_connect_wrap {
    cursor: pointer;
    display: inline-block;
    border-bottom: 0px solid #1A356E !important;
    border-right: 0px solid #1A356E !important;
    border-top: 0px solid #1A356E !important;
    height: 32px !important;
    line-height: 32px;
    margin-left: 5px;
    padding: 0 18px !important;
    background-color: #5F78AB;
	border-radius: 20px !important;
	-webkit-border-radius: 20px !important;
	-moz-border-radius: 20px !important;
}
body.ow.whatsapp.base_user_join span.fb_connect_wrap {
    margin-left: 32px !important;
}
body.ow.whatsapp.base_user_join div#base_cmp_floatbox_ajax_signin span.fb_connect_wrap {
    margin-left: 0 !important;
}
.fb_button_text {
    border-top: 0px solid #879AC0 !important;
    padding: 0 !important;
    font-weight: normal !important;
	font-size: 14px !important;
}
.glconnect_button {
    background-image: url(images/sign_in_google.png) !important;
    background-color: #E85C4B !important;
    background-repeat: no-repeat !important;
    background-position: 0 0 !important;
    height: 32px !important;
    display: inline-block;
    cursor: pointer;
    border-bottom: 0px solid #8d2d1d !important;
    vertical-align: top;
	text-align: center;
	border-radius: 20px !important;
	-webkit-border-radius: 20px !important;
	-moz-border-radius: 20px !important;
}
span.glconnect_button_text {
    padding: 4px 18px !important;
    color: #fff;
    text-decoration: none;
    font-size: 14px !important;
    line-height: 32px !important;
    background-color: #E85C4B;
    margin-left: 5px;
    border-bottom: 1px solid #E85C4B;
	border-radius: 20px !important;
	-webkit-border-radius: 20px !important;
	-moz-border-radius: 20px !important;
}
body.ow.whatsapp.base_user_join span.glconnect_button_text {
    margin-left: 32px !important;
}
body.ow.whatsapp.base_user_join div#base_cmp_floatbox_ajax_signin span.glconnect_button_text {
    margin-left: 0 !important;
}
.vkconnect-connect {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    padding: 0px 0px !important;
}
.vkconnect-icon {
    border-bottom-left-radius: 0px !important;
    border-color: transparent !important;
    border-style: solid none solid solid;
    border-top-left-radius: 0 !important;
    border-width: 0 !important;
    float: left;
    padding: 0;
}
.vkconnect-label {
    border-bottom-right-radius: 0 !important;
    border-color: transparent !important;
    border-style: solid solid solid none;
    border-top-right-radius: 0 !important;
    border-width: 0 !important;
    float: left;
    height: 32px !important;
    padding: 0;
}
.vkconnect-left-border {
    background: transparent !important;
    border-bottom-left-radius: 0px !important;
    border-color: transparent !important;
    border-style: solid;
    border-top-left-radius: 0px !important;
    border-width: 0px !important;
    height: 32px !important;
    padding: 0 !important;
    width: 32px !important;
}
.vkconnect-right-border {
    background: #527DAF !important;
    border-bottom-right-radius: 20px !important;
    border-color: #527DAF !important;
    border-style: solid;
    border-top-right-radius: 20px !important;
    border-width: 0px !important;
    color: #fff !important;
    height: 32px !important;
    line-height: 32px !important;
    padding: 0 30px 0 25px !important;
    text-shadow: none !important;
	font-size: 14px !important;
	text-align: center;
	border-radius: 20px;
}
body.ow.whatsapp.base_user_join .vkconnect-right-border {
    border-radius: 0;
}
body.ow.whatsapp.base_user_join div#base_cmp_floatbox_ajax_signin .vkconnect-right-border {
    border-radius: 20px;
}
.vk-icon.vk_ic_logo {
    background-image: url(images/sign_in_vk.png) !important;
    height: 32px !important;
    width: 32px !important;
    background-position: left center !important;
	border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}
body > div.ow_page_wrap > div.ow_page_padding > div > div > div > div.ow_content > div > div:nth-child(3) > div.ow_box.ow_center.ow_break_word > div.vkconnect-connect > div > div.vkconnect-label > div {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
/*Console select language styles*/
.ow_console_lang {
	padding: 4px;
	padding-left: 0;
}
.ow_console_lang_item {
    margin-bottom: 0px;
    margin-top: 0px;
    text-transform: uppercase;
    padding: 7px 8px;
    color: #FFFFFF;
    font-size: 14px;
    background-color: #159682;
    border: 1px solid #159682;
    border-radius: 20px;
}
li.ow_console_lang_item {
    padding: 3px 8px;
    border-left: 3px solid transparent;
    background-color: #fff;
    border-color: transparent;
    border-radius: 0;
    color: #333;
}
li.ow_console_lang_item:hover {
    color: #007BFF;
    border-left: 3px solid #007BFF;
}
.ow_console_lang_item span {
	display: inline-block;
	padding-left: 22px;
	background-position: 0 2px;
}
div.ow_console_lang_item:hover > span {
	color: #FFFFFF;
} 
/* Console tooltip */
.ow_console .ow_tooltip_top_right.ow_tooltip {
	top: 36px !important;
	padding-top: 2px;
	right: -5px;
}
.ow_console .ow_tooltip_top_right .ow_tooltip_tail span {
	background-position: 1px -6px;
}
.ow_console .ow_tooltip .ow_tooltip_body {
	max-width: 340px;
	padding: 0px;
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);
}
.console_tooltip {
	z-index: 100;
}
/* Console counter */
.ow_console span.ow_count_wrap {
	position: absolute;
	top: 2px;
	right: -8px;
}
.ow_console span.ow_count_bg {
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}
.ow_console span.ow_count {
	position: relative;
	top: 0px;
}
.ow_console .ow_tooltip_body span.ow_count_wrap {
	position: static;
	margin-top: 2px;
}
/* Console list*/
 .ow_console_list_wrapper {
	width: 330px;
	overflow-y: auto;
	word-wrap: break-word;
	min-height: 60px;
	padding: 4px;
}
.ow_console_list {
	cursor: default;
}
.ow_console_list li {
	padding: 3px;
	height: auto;
	overflow: hidden;
	margin-bottom: 2px;
	border: 1px solid transparent;
}
.ow_console_list li.ow_console_new_message {
	background: #fff;
	border-color: #007BFF;
}
.ow_console_list li:hover {
	border-color: #cad4dd;
}
.ow_console_list li.ow_console_new_message:hover {
	border-color: #85b52f;
}
.ow_mailbox_items_list li.ow_mailbox_request_item,
.ow_mailbox_items_list li.ow_chat_request_item {
	padding: 8px 3px;
}
.ow_console_list li:last-child {
	margin-bottom: 0px;
}
/* Console avatar */
.ow_console .ow_avatar {
	float: left;
	margin-right: -40px;
	height: 32px;
	width: 32px;
	padding: 2px;
	background-image: none;
}
.ow_console .ow_avatar img {
	height: 32px;
	width: 32px;
}
/* Console View all btn */
.ow_console_view_all_btn {
	text-decoration: none;
	display: block;
	line-height: 38px;
	text-align: center;
	background: #fff;
	text-transform: uppercase;
	height: 40px;
}
.ow_console_view_all_btn_wrap .ow_console_view_all_btn {
	color: #a2acb3;
}
.ow_console_view_all_btn:hover {
	color: #fff;
	background: #333333;
}
/* Console dropdown menu */
ul.ow_console_dropdown {
    min-width: 150px;
    text-align: left;
    overflow-x: auto;
    cursor: default;
    padding: 4px;
    padding-left: 0;
    padding-right: 0;
}
ul.ow_console_dropdown .ow_console_dropdown_cont {
	white-space: nowrap;
	margin-bottom: 1px;
}
ul.ow_console_dropdown .ow_console_dropdown_cont a {
    padding: 6px 12px;
    display: block;
}
ul.ow_console_dropdown .ow_console_dropdown_cont a:hover {
    background-color: #2196F3;
    color: white;
}
ul.ow_console_dropdown li:last-child .ow_console_dropdown_cont {
	margin-bottom: 0px;
}
/* Console content */
.ow_console_ntf_cont, .ow_console_invt_cont {
	display: block;
	margin: 0px 57px 0px 50px;
}
.ow_console_invt_cont .ow_lbutton:hover {
	text-decoration: none;
}
.ow_console_ntf_txt, 
.ow_console_invt_txt {
	min-height: 19px;
	padding: 0px 0px 3px 0px;
	display: block;
}
.ow_console_invt_txt {
	width: 211px;
	word-wrap: break-word;
}
.ow_console_invt_txt a,
.ow_console_invt_cont a {
}
.ow_console_invt_img {
	float: right;
	margin-left: -54px;
	width: 54px;
	height: 54px;
	text-align: right;
}
.ow_console_invt_img img {
	max-height: 100%;
	max-width: 100%;
}
.ow_console_invt_no_img .ow_console_invt_txt {
	width: 100%;
}
.ow_console_invt_no_img {
	margin-right: 0px;
}
/* Console divider */
.ow_console_divider {
	line-height: 1px;
	height: 1px;
	background: #d9e0e6;
	margin: 3px 0px 2px;
}
/* Console messages notifications */
.ow_console_mailbox_txt {
	font-size: 13px;
}
.ow_console_mailbox_title {
	padding-right: 52px;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";	
}
.ow_console_mailbox_title .ow_mailbox_convers_info_date {
	font-size: 12px;
	margin-right: -49px;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_chat_request_item .console_list_ipc_item {
	padding-left: 20px;
	background: url(images/miniic_buble.svg) 2px 12px no-repeat;
}
.ow_chat_request_item.ow_console_new_message .console_list_ipc_item {
	background-image: url(images/miniic_buble_active.svg);
}
.ow_mailbox_request_item .console_list_ipc_item {
	padding-left: 20px;
	background: url(images/miniic_envelope.svg) 2px 12px no-repeat;
}
.ow_mailbox_request_item.ow_console_new_message .console_list_ipc_item {
	background-image: url(images/miniic_envelope_active.svg);
}
.ow_chat_request_item .ow_console_mailbox_txt {
	font-size: 11px;
	font-weight: normal;
	line-height: 13px;
}
.ow_console_messages_viewall,
.ow_console_messages_send {
	width: 50%;
	float: left;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-wenkit-box-sizing: border-box;
}
.ow_console_messages_btn .ow_console_messages_send {
	display: none;
}
.ow_console_messages_btn .ow_console_messages_viewall {
	width: 100%;
	padding-right: 0;
}
.ow_console_messages_btns .ow_console_messages_viewall a,
.ow_console_messages_btns .ow_console_messages_send a,
.ow_console_messages_btn .ow_console_messages_viewall a {
	display: inline-block;
	width: 100%;
	line-height: 38px;
	text-align: center;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-wenkit-box-sizing: border-box;
	background: #007BFF;
    color: #ffffff;
	text-transform: uppercase;
}
.ow_console_messages_btns .ow_console_messages_viewall a,
.ow_console_messages_btn .ow_console_messages_viewall a {
	border-right: 1px solid #cad4dd;	
}
.ow_console_messages_btns .ow_console_messages_viewall a:hover,
.ow_console_messages_btns .ow_console_messages_send a:hover,
.ow_console_messages_btn .ow_console_messages_viewall a:hover {
	color: #fff;
	background: #159682;
}
/* ---- End of Console styles ---- */
/* ---- Main Menu styles ---- */
.ow_menu_wrap {
	padding: 0;
	margin-top: 0.50px;
	display: table;
	position: fixed;
	width: 179px;
    height: 100%;
    background: #f2ecee;
	border-right: 1px solid #f2ecee;
	float: left;
	top: 60px;
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
}
.ow_main_menu {
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	height: 100%;
	overflow: auto;
	padding-bottom: 0px;
}
.ow_main_menu li {
    padding: 0;
	display: inline-block;
}
.ow_main_menu li a {
    color: #708090; /** OW_Control type:color, key:menuColor, section:2. Colors, label:4. Menu text color **/
    display: inline-block;
	font-size: 15px;
	text-shadow: none;
    padding: 0 5px 0px 10px;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    border-left: 2px solid transparent;
    width: 180px;
}
.ow_main_menu li:first-child a {
    /* padding-left: 0px; */
}
.ow_main_menu li a span {
	line-height: 46px;
	display: inline-block;
}
.ow_main_menu li.active a {
	color: #000;
	background-color: #dcdaf5;
	border-left: 2px solid #dcdaf5;
}
.ow_main_menu li a:hover {
	color: #000;
	background-color: #eae3e9;
	border-left: 2px solid #eae3e9;
}
.ow_main_menu li.active:first-child a {
    /* padding-left: 0px; */
    border-left: 2px solid transparent;
}
.ow_responsive_menu {
	padding-right: 70px;
}
.ow_menu_more_wrap {
	display: none;
	position: absolute;
	right: 0;
	top: 0;
}
.ow_menu_more {
	position: relative;
	display: block;
	background: #fff;
	border-left: 1px solid #cad4dd;
	border-right: 1px solid #cad4dd;
	width: 68px;
	height: 70px;
	background: url(assets/img/menu_btn.png) no-repeat 3px -115px;
}
.ow_menu_more:after, 
.ow_menu_more:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.ow_menu_more:after {
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 8px;
	margin-top: -8px;
}
.ow_menu_more:before {
	border-color: rgba(239, 242, 245, 0);
	border-right-color: #cad4dd;
	border-width: 9px;
	margin-top: -9px;
}
.ow_main_menu_more_active .ow_menu_more_wrap {
	display: block;
}
.ow_menu_more_cont {
	position: absolute;
	top: 0px;
	right: -1px;
	padding: 25px 0px 10px;
	background-color: #fff;
	border: 1px solid #cad4dd;
	border-left: none;
	display: none;
	-webkit-animation-name: fadeIn; 
    animation-name: fadeIn;
    z-index: 2;
}
.ow_menu_more:hover .ow_menu_more_cont {
	display: block;
	-webkit-animation-duration: 0.15s; 
    animation-duration: 0.15s;
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
    -webkit-animation-timing-function: ease-out; 
    animation-timing-function: ease-out; 
} 

@-webkit-keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;} 
} 
@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;} 
} 
.ow_menu_more_list a {
	display: block;
	padding: 6px 24px 10px;
	font-size: 15px;
	text-transform: capitalize;
	white-space: nowrap;
	border-left: 3px solid transparent;
}
.ow_menu_more_list a:hover {
	text-decoration: none;
	border-left: 3px solid #007BFF;
}

/* Menu icons */
.ow_main_menu li a:before, li.base_dashboard a:before, li.base_main_menu_index a:before, li.base_users_main_menu_item a:before, li.groups_main_menu_list a:before, li.photo_photo a:before, li.video_video a:before, li.event_main_menu_item a:before, li.blogs_main_menu_item a:before, li.forum_forum a:before, li.base_main_menu_my_profile a:before, li.base_base_join_menu_item a:before, li.indexlogin_sign_in a:before {
    font-family: 'simple-line-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 10px;
    position: relative;
    top: 2px;
}
.ow_main_menu li a:before,
.ow_main_menu li.active a:before,
.ow_main_menu li a:hover:before{
	content: "\e06e";
}
li.base_dashboard a:before,li.base_dashboard.active a:before,
li.base_dashboard a:hover:before{content: "\e007";
}
li.base_main_menu_index a:before,
li.base_main_menu_index.active a:before,
li.base_main_menu_index a:hover:before{content: "\e069";
}
li.base_users_main_menu_item a:before,
li.base_users_main_menu_item.active a:before,
li.base_users_main_menu_item a:hover:before{content: "\e001";
}
li.groups_main_menu_list a:before,
li.groups_main_menu_list.active a:before,
li.groups_main_menu_list a:hover:before{content: "\e616";
}
li.photo_photo a:before,
li.photo_photo.active a:before,
li.photo_photo a:hover:before{content: "\e07f";
}
li.video_video a:before,
li.video_video.active a:before,
li.video_video a:hover:before{content: "\e07e";
}
li.event_main_menu_item a:before,
li.event_main_menu_item.active a:before,
li.event_main_menu_item a:hover:before{content: "\e075";
}
li.blogs_main_menu_item a:before,
li.blogs_main_menu_item.active a:before,
li.blogs_main_menu_item a:hover:before{content: "\e05f";
}
li.forum_forum a:before,
li.forum_forum.active a:before,
li.forum_forum a:hover:before{content: "\e02c";
}
li.base_main_menu_my_profile a:before,
li.base_main_menu_my_profile.active a:before,
li.base_main_menu_my_profile a:hover:before {content: "\e005";
}
li.base_base_join_menu_item a:before,
li.base_base_join_menu_item.active a:before,
li.base_base_join_menu_item a:hover:before {content: "\e066";
}
li.indexlogin_sign_in a:before,
li.indexlogin_sign_in.active a:before,
li.indexlogin_sign_in a:hover:before {content: "\e066";
}
li.music_main_menu_item a:before,
li.music_main_menu_item.active a:before,
li.music_main_menu_item a:hover:before {
	content: "\e061";
}
li.articles_main_menu_item a:before,
li.articles_main_menu_item.active a:before,
li.articles_main_menu_item a:hover:before {
	content: "\e05f";
}
li.shoppro_main_menu_item a:before,
li.shoppro_main_menu_item.active a:before,
li.shoppro_main_menu_item a:hover:before {
	content: "\e04e";
}
/* ---- End of Main Menu styles ---- */
/* ---- Box Menu styles ---- */
.ow_box_menu {
    font-size: 0px;
    line-height: 21px;
    margin-bottom: 16px;
    text-align: left;
}
.ow_dnd_widget .ow_box_menu {
    text-align: center;
}
.ow_box_menu a {
	display: inline-block;
	font-size:14px;
	line-height: 16px;
	height: 16px;
	padding: 0px 6px 0 7px;
	border-right: 1px #4c4c4c solid;
	outline: 0;
	color: #4c4c4c;
	text-transform: uppercase;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_box_menu a:first-child {
	padding-left: 0px;
}
.ow_box_menu a:last-child {
	border-right-width: 0px;
}
.ow_box_empty .ow_box_menu {
    float: none;
    text-align: center;
}
.ow_box_menu a.active,
.ow_box_menu a:hover{
	color:#007BFF; 
	text-decoration:none;
}
/* ---- End of Box Menu styles ---- */
/* ---- Content Menu styles ---- */
.ow_content_menu {
    font-size: 0px;
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
    text-transform: uppercase;
    font-weight: normal;
    border: 1px solid #cad4dd;
    background-color: #fff;
    border-radius: 20px;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}

.ow_content_menu_wrap{
	margin-bottom:20px;
}
.ow_content_menu li {
    float: left;
    border: 1px solid transparent;
    position: relative;
}
.ow_content_menu li a {
    display: block;
    font-size: 14px;
    color: #333333;
	background-color: #E0E0E0;
    border: 1px solid #cad4dd;
    border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}
.ow_content_menu span{
    padding: 9px 16px 9px 38px;
    display: block;
}
.ow_content_menu li a span::before {
    position: absolute;
	margin-left: -26px;
}
.ow_content_menu li.active a, .ow_content_menu li a:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #708090;
    border: 1px solid #708090;
}
/* ---- End of Content Menu styles ---- */
/* ---- Footer Menu styles ---- */
.ow_footer_menu {
    padding: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background-color: #fff; /** OW_Control type:color, section:1. General Settings, key:footerMenuColor, label:10. Footer Menu background color **/
    border-bottom: 1px solid #708090;
    color: #708090;
    text-align: center;
}
.ow_footer_menu a {
	display: inline-block;
    padding: 0px 0.7vw;
	color: #bfbfbf;
}
.ow_footer_menu a:first-child {
	padding-left: 0vw;
}
.ow_footer_menu a:hover {
	text-decoration: none;
}
/* ---- End of Footer Menu styles ---- */
/* ---- Fw menu styles ---- */
.ow_fw_menu {
    padding: 7px 8px 1px 0px;
    min-height: 24px;
    clear: both;
    background-color: #fff;
    border: 1px solid #cad4dd;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}
.ow_fw_btns {
    display: inline-block;
}
.ow_fw_menu .ow_explore_photos_show {
    font-size: 14px;
    padding-left: 8px;
}
/* ---- End of the Fw menu styles ---- */
/* ---- Vertical menu styles ---- */
.ow_vertical_nav.ow_vertical_menu,
body .ow_vertical_nav_item {
    border-color: #cad4dd;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.ow_vertical_nav_item.selected {
   	background-color: #fff;
}
.ow_moderation_wrap .ow_moderation_sticked {
	top: 70px;
}
/* ---- End of the Vertical menu styles ---- */
/*========================================================
        [7] Pagination        __pagination
  ========================================================*/
html[xmlns] .ow_paging.clearfix {
	display: inline-block;
}
.ow_paging {
    padding: 8px;
    font-size: 15px;
    width: 98%;
    text-align: center;
    background-color: #fff;
    border: 1px solid #cad4dd;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}
.ow_paging a{
    display: inline-block;
    line-height: 16px;
    padding: 2px 6px 2px 7px;
    text-decoration: none;
    color: #333333;
}
.ow_paging a.active, .ow_paging a:hover {
    color: #fff;
    background-color: #2196F3;
    border-radius: 2px;
}
.ow_paging span {
	display: inline-block;
	padding-left: 3px;
}
/*========================================================
        [8] Content Items        __content items
  ========================================================*/
/* ---- Tooltip ---- */
.ow_tooltip {
    margin-top: 0;
    padding-top: 3px;
}
.ow_tooltip_tail {
    display:inline-block;
    padding: 0px 0px;
	width: 100%;
}
.ow_tooltip_tail span {
    display:inline-block;
	background: url(images/tooltip_tail.png) no-repeat 8px -6px;
	width: 19px;
	height: 6px;
	margin-bottom: -1px;
}
.ow_tooltip .ow_tooltip_body {
    background:#fff;
    padding:4px 0;
	border: 1px solid #cad4dd;
}
.ow_forum_search_context_menu .ow_tooltip .ow_tooltip_body {
    padding: 4px 0;
}
.ow_forum_search_context_menu .ow_context_action_list a {
     padding: 4px 12px;
}
body .forum_search_wrap {
	background-image: none;
}
body .forum_search_wrap input {
	box-shadow: none;
	line-height: 19px;
}
/* ---- Top Right Tooltip  ---- */
.ow_tooltip_top_right.ow_tooltip {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 12px;
 }
.ow_tooltip_top_right .ow_tooltip_tail span {
	background-position: 3px -6px;
}
.ow_tooltip_top_right .ow_tooltip_tail {
	text-align: right;
}
/* ---- Bottom Left Tooltip  ---- */
.ow_tooltip_bottom_left .ow_tooltip_tail span {
	background-position: 9px 0px;
	margin-top: -1px;
}
/* ---- Bottom Right Tooltip  ---- */
.ow_tooltip_bottom_right .ow_tooltip_tail span {
	background-position: 1px 0px;
	margin-top: -1px;
}
.ow_tooltip_bottom_right .ow_tooltip_tail {
	text-align: right;
}
/* ---- Left Side Tooltip  ---- */
.ow_tooltip_left .ow_tooltip_tail {
	float: left;
	margin-right: -4px;
	width: 4px;
	padding-top: 8px;
}
.ow_tooltip_left .ow_tooltip_tail span {
	margin: 0px;
	width: 5px;
	height: 11px;
	background-position: 0px -28px;
}
.ow_tooltip_left .ow_tooltip_body {
	display: block;
	margin-left: 4px;
}
/* ---- Right Side Tooltip  ---- */
.ow_tooltip_right .ow_tooltip_tail {
	float: right;
	margin-left: -4px;
	width: 5px;
	padding-top: 8px;
}
.ow_tooltip_right .ow_tooltip_tail span {
	margin: 0px;
	width: 5px;
	height: 11px;
	background-position: 0px -15px;
}
.ow_tooltip_right .ow_tooltip_body {
    display:block;
	margin-right: 4px;
}
/* ---- End of Tooltip  ---- */
/* ---- Context Action styles ---- */
.ow_context_action_block {
    float: right;
    text-align: right;
    font-size: 0px;
    line-height: 18px;
}
.ow_context_action {
    display: inline-block;
    position: relative;
    background-color: transparent;
    z-index: 3;
    height: 18px;
    padding: 0px 0px 0px 5px;
    border: 1px solid transparent;
    vertical-align: top;
    zoom: 1;
    border-radius: 4px;
}
.ow_context_action_value {
	font-size: 13px;
    display: inline-block;
    padding: 0px 5px 0px 0px;
    text-decoration: none;
	color: #333333;
	text-transform: uppercase;
}
.ow_context_more {
    display: inline-block;
    min-width: 15px;
    height: 18px;
    padding: 0px 3px 0px 0px;
    background: url(images/context_action_arrow.svg) no-repeat 0px 6px;
    vertical-align: top;
}
body .ow_context_action_value_block .ow_context_action .ow_context_more,
body .ow_context_action_value_block .ow_context_action:hover .ow_context_more {
	background-position: right 8px;
}
.ow_context_action:hover,
.ow_context_action.active {
    cursor: pointer;
    border-color: #cad4dd;
    background-color: #fff;
}
.ow_context_action:hover .ow_context_action_wrap {
    display: block;
}
.ow_context_action:hover .ow_context_action_value,
.ow_context_action.active .ow_context_action_value {
	text-decoration: none;
}
.ow_profile_toolbar_group.ow_context_action_value_block .ow_context_action {
    background-color: #333;
    border-radius: 50px;
}
.ow_profile_toolbar_group.ow_context_action_value_block .ow_context_action:hover {
    background-color: #111;
	border-color: #111;
}
.ow_profile_toolbar_group.ow_context_action_value_block a.ow_context_action_value {
    line-height: 23px;
    color: #fff;
}
.ow_profile_toolbar_group.ow_context_action_value_block .ow_context_more {
    background: url(images/context_action_arrow_p.svg) no-repeat 0px 6px;
}
.ow_context_action_wrap {}
.ow_context_action_list {
	min-width: 100px;
    text-align: left;
	overflow-x: auto;
}
.ow_context_action_list li {
	white-space: nowrap;
}
.ow_context_action_list a {
    font-size: 14px;
    font-weight: normal;
	display: block;
	padding: 3px 0px;
	color: #647774;
}
.ow_context_action_list a:hover {
    text-decoration: none;
    background: #2196F3;
    color: #fff;
}
.ow_context_action .ow_tooltip {
    display: none;
}
.ow_context_action.active.ow_tooltip.ow_newsfeed_context_tooltip.ow_small.hidden,
.ow_context_action:hover .ow_tooltip.ow_newsfeed_context_tooltip.ow_small.hidden,
.ow_context_action.active.ow_tooltip.ow_comments_context_tooltip.ow_small.ow_tooltip_top_right.hidden,
.ow_context_action:hover .ow_tooltip.ow_comments_context_tooltip.ow_small.ow_tooltip_top_right.hidden {
    display: block;
    opacity: 1;
}
.ow_tooltip.ow_newsfeed_context_tooltip.ow_small.hidden {
    -webkit-animation-fill-mode: inherit;
    animation-fill-mode: inherit;
}
.ow_context_action_divider {
	line-height: 1px;
	height: 1px;
	background: #cad4dd;
	border-bottom: 1px solid #fff;
	margin: 1px 0px 0px;
}
/* ---- End of Context Action styles ---- */
/* ---- Cover Context Action styles ---- */
.uh-cover-add-btn-wrap .ow_context_action {
	padding-left: 7px;
}
.uh-cover-add-btn-wrap .ow_tooltip_body {
	padding: 4px 0px;
}
.uh-cover-add-btn-wrap .ow_context_action_list a {
	padding: 4px 12px;
}
.uh-cover-add-btn-wrap .ow_context_action_value {
	color: #333333;
}
/* ---- End of Cover Context Action styles ---- */
/* ---- Counter  ---- */
.ow_count_wrap {
    text-align: center;
   	display: inline-block;
	line-height: 15px;
	font-size: 10px;
	vertical-align: top;
}
.ow_count_bg {
	display: inline-block;
    background: #333333;
 	min-height: 15px; 
 	overflow: hidden;
 	border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;	
}
.ow_count {
	display: inline-block;
	padding: 0px 0px 0px 0px;
	min-height: 15px;
	min-width: 16px;
	line-height: 15px;
    color: #fff;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
.ow_count_active {
    background: none repeat scroll 0 0 #EC6D5D;
}
/* ---- End of Counter  ---- */
/* ---- Info tooltip styles ---- */
.ow_tip{
	display:inline-block;
	position:absolute;
    z-index: 10005;
}
.ow_tip_box {
    position: relative;
    padding: 2px 9px 4px;
    background-color: #2196F3;
    color: #fff;
    border: 1px solid #1976D2;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
}
.ow_tip_arrow{
	display:none;
	position:absolute;
}
.ow_tip_arrow span {
	display:block;
	border:5px dashed transparent;
}
/* Tip top */
.ow_tip_top .ow_tip_box{
	margin-bottom:5px;
}
.ow_tip_top .ow_tip_box:after, 
.ow_tip_top .ow_tip_box:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.ow_tip_top .ow_tip_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #007BFF;
	border-width: 5px;
	margin-left: -5px;
}
.ow_tip_top .ow_tip_box:before {
	border-color: rgba(204, 214, 222, 0);
	border-top-color: #007BFF;
	border-width: 6px;
	margin-left: -6px;
}
/* Tip right */
.ow_tip_right .ow_tip_box:after,
.ow_tip_right .ow_tip_box:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.ow_tip_right .ow_tip_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 5px;
	margin-top: -5px;
}
.ow_tip_right .ow_tip_box:before {
	border-color: rgba(204, 214, 222, 0);
	border-right-color: #ccd6de;
	border-width: 6px;
	margin-top: -6px;
}
.ow_tip_right .ow_tip_box{
	margin-left:5px;
}
/* Tip left */
.ow_tip_left .ow_tip_box:after, 
.ow_tip_left .ow_tip_box:before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.ow_tip_left .ow_tip_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-left-color: #fff;
	border-width: 5px;
	margin-top: -5px;
}
.ow_tip_left .ow_tip_box:before {
	border-color: rgba(204, 214, 222, 0);
	border-left-color: #ccd6de;
	border-width: 6px;
	margin-top: -6px;
}
.ow_tip_left .ow_tip_box{
	margin-right:5px;
}
/* Tip bottom */
.ow_tip_bot .ow_tip_box:after, 
.ow_tip_bot .ow_tip_box:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.ow_tip_bot .ow_tip_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 5px;
	margin-left: -5px;
}
.ow_tip_bot .ow_tip_box:before {
	border-color: rgba(204, 214, 222, 0);
	border-bottom-color: #ccd6de;
	border-width: 6px;
	margin-left: -6px;
}
.ow_tip_bot .ow_tip_box{
	margin-top:5px;
}
/* ---- End of the Info tooltip styles ---- */
/*========================================================
        [9] Common Blocks        __blocks
========================================================*/
.ow_box_cap_empty {
	background: none;
	margin-bottom: 8px;
}
.ow_box_cap h3, .ow_box_cap_empty h3 {
    padding: 10px 0 10px 12px;
    text-transform: none;
    height: auto;
    line-height: 20px;
    overflow: hidden;
    font-weight: normal;
    font-size: 17px;
    font-family: 'Lato',"sans-serif","Trebuchet MS","Helvetica CY";
    text-align: left;
    float: none;
}
html body .ow_box_cap .ow_box_cap_body h3, html body .ow_box_cap_empty .ow_box_cap_body h3 {
    /* background-image: none; */
    background-repeat: no-repeat;
    background-position: 5px center;
}
.ow_box_cap {
    background: #ffffff;
    border-top: 1px solid #cad4dd;
    border-left: 1px solid #cad4dd;
    border-right: 1px solid #cad4dd;
    border-bottom: 1px solid #cad4dd;
    padding: 1px 1px 0;
	box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
	-moz-box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
	border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.ow_box_cap .ow_box_cap_body,
.ow_box_cap_empty .ow_box_cap_body {
	min-height: 32px;
}
.ow_box {
    background-color: #fff;
    border: 1px solid #cad4dd;
    border-top: none;
    margin-bottom: 8px;
    padding: 10px;
    position: relative;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.ow_forum_topic_posts .ow_box {
	/*border-top: 1px solid #dddfeb;*/
}
.ow_box_empty{
	position: relative;
	padding: 8px;
}
.ow_box .bottom_toolbar, .ow_box_mod .bottom_toolbar{
	margin-top: 10px;
    /*border-top: 1px solid #dddfeb;*/
    font-size: 10px;
    padding: 0 5px;
    text-align: right;
}
.ow_box.ow_no_cap {
	border-top: 1px solid #cad4dd;
}
.ow_box_empty .ow_box_toolbar_cont {
	border-bottom: 0px solid rgba(202, 212, 221, 0.6);
}
.ow_box_toolbar {
	margin-top: 12px;
	float: right;
    white-space: nowrap;
}
.ow_box_toolbar span {
	padding: 0px 2px 0px 0px;
}
.ow_box_toolbar span.ow_nowrap a {
	display: inline-block;
	border: 1px solid transparent;
	padding: 0px 6px 0px;
	line-height: 21px;
}
.ow_box_toolbar span.ow_nowrap a:hover {
	color: #007BFF;
}
.ow_box_toolbar a:hover {
	text-decoration: none;
}
.ow_box_toolbar .ow_delimiter,
.ow_ic_toolbar  .ow_delimiter{
	display: none;
}
/* FloatBox implementation */
#floatbox_overlay {
	position: fixed;
	z-index: 100;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
}
.floatbox_overlayMacFFBGHack {background: url(images/macFFBgHack.png) repeat;}
.floatbox_overlayBG {
	background-color: #000;
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
#floatbox_HideSelect {
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	border: none;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
}
.floatbox_container {
	position: fixed;
	z-index: 102;
	width: 300px;
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.5);
	visibility: visible;
	border-radius: 4px;
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}
.floatbox_header {
	padding: 4px;
	text-align: left;
}
.floatbox_header a.close_btn {
	margin: 2px;
    background: url(images/ow-ic-close.png) no-repeat;
}
.floatbox_title {
	text-transform: uppercase;
	font-size: 16px;
	padding: 8px 12px 0px;
	float: left;
	font-weight: normal;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";	
}
.floatbox_header .ow_box_cap_icons {
	float: right;
	margin-top: 1px;
}
.floatbox_body {
	padding: 8px 16px;
	text-align: left;
}
.floatbox_bottom {
	padding: 0px 16px 16px;
	text-align: center;
}
.floatbox_header .ow_box_cap_icons a.ow_ic_delete.close {
    background-image: none !important;
}
.floatbox_header .ow_box_cap_icons a.ow_ic_delete.close:hover {
    color: red;
    text-decoration: none;
}
/* End FloatBox implementation */
/*========================================================
        [10] Forms        __forms
  ========================================================*/
/* ---- Form Elements styles ---- */
input[type=text],
input[type=password],
textarea,
select,
div.jhtmlarea,
.ow_photo_upload_description,
.ow_photo_preview_edit .CodeMirror{
	background-color: #fff;
    border: 1px solid #ccd6de;
    color: #000000;
    font-family: "Lucida Grande", "Verdana";
    font-size: 13px;
    padding: 4px;
	border-radius: 4px;
}
body form div.jhtmlarea {
	background: #fff;
	width: 100% !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body .toolbar {
	padding: 2px 2px 0px;
	height: 22px;
	background: #fff;
	border: none;
}
body .toolbar ul li {
	margin-right: 4px;
}
body .toolbar ul li a {
	background-image: url(images/wysiwyg.png);
	border: none;
	width: 20px;
	height: 20px;
}
body .toolbar ul li a:hover {
	border: none;
}
body .jhtmlarea .toolbar ul {
	height: 24px;
}
.jhtmlarea .input_ws_cont {
	padding: 8px;
}
body.htmlarea_styles {
	margin: 0px;
}
select{
    background-image: none;
}
textarea{
    height: 100px;
    width: 100%;
    resize: vertical;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;    
}
input[type=checkbox] ~ label,
input[type=radio] ~ label {
	vertical-align: top;
}
input[type=text],
input[type=password]{
    width: 100%;
    height: 30px;
    line-height: 22px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;    
}
input[type=submit],
input[type=button]{
	background-color: transparent;
    background-position: right 50%;
	background-repeat: no-repeat;
    background-image: url(images/ic_right_arrow.svg);
    padding: 1px 31px 0px 0px;
    color: #ffffff;
    font-weight: normal;
    cursor: pointer;
    height: 37px;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	text-transform: uppercase;
	font-size: 15px;
	border: none;
	background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20enable-background%3D%22new%200%200%2020%2020%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22m16.958%209c.553%200%201%20.448%201%201%200%20.553-.447%201-1%201h-13.999c-.552%200-1-.447-1-1%200-.552.448-1%201-1h13.999%22/%3E%3Cpath%20d%3D%22m17.665%209.293c.391.391.391%201.024%200%201.414-.39.39-1.023.391-1.414%200l-6.898-6.898c-.391-.391-.391-1.025%200-1.414.39-.391%201.023-.391%201.414%200l6.898%206.898%22/%3E%3Cpath%20d%3D%22m16.251%209.293c.391-.391%201.024-.391%201.414%200%20.391.39.391%201.023%200%201.414l-6.898%206.899c-.391.391-1.024.39-1.415%200-.39-.391-.391-1.023%200-1.414l6.899-6.899%22/%3E%3C/g%3E%3C/svg%3E);
}
textarea.invitation,
input[type=text].invitation,
input[type=password].invitation{
	color:#999;
}
input[type=text].ow_inputready,
textarea.ow_inputready {
    color: #999999;
}
/* temp hack for decorating buttons in FF */
body:not(:-moz-handler-blocked) input[type=submit],
body:not(:-moz-handler-blocked) input[type=button]{
    padding-top: 0px;
    padding-right: 23px;
}
/* End of temp hack for decorating buttons in FF */

html body div span.ow_button input[type=submit],
html body div span.ow_button input[type=button]{
}

html body.ow input[type=submit],
html body.ow input[type=button]{
    margin: 0px;
}
span.ow_button {
	display: inline-block;
	background-color: #007BFF;
	padding: 0px 14px;
	border: none;
	border-radius: 50px;
	margin-top: 2px;
    margin-right: 2px;
}
span.ow_button:hover {
	background-color: #006fe6;
	transition: all 0.4s ease;
}
span.ow_button:hover input[type=submit],
span.ow_button:hover input[type=button]{
	color: #fff;
	transition: all 0.4s ease;
}
span.ow_button span.ow_button {
    border-radius: none;
	border: none;
	background-image: none;
	background-position: right center;
	background-repeat: no-repeat;
	background-color: transparent;
}
span.ow_button span {
	display: inline-block;
	padding: 0px 0px 1px 0px;
	background-position: right center;
	background-repeat: no-repeat;
	background-color: transparent;
	margin: 0;
}
.ow_btn_delimiter span.ow_button:first-child {
	margin-right: 16px;
}
.ow_btn_delimiter span.ow_button span.ow_button {
	margin: 0px;
}
*+html input[type=submit],
*+html input[type=button]{
    overflow: visible;
}
input[type=submit]:hover,
input[type=button]:hover{
	color: #fff;
	transition: all 0.2s ease;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20enable-background%3D%22new%200%200%2020%2020%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22m16.958%209c.553%200%201%20.448%201%201%200%20.553-.447%201-1%201h-13.999c-.552%200-1-.447-1-1%200-.552.448-1%201-1h13.999%22/%3E%3Cpath%20d%3D%22m17.665%209.293c.391.391.391%201.024%200%201.414-.39.39-1.023.391-1.414%200l-6.898-6.898c-.391-.391-.391-1.025%200-1.414.39-.391%201.023-.391%201.414%200l6.898%206.898%22/%3E%3Cpath%20d%3D%22m16.251%209.293c.391-.391%201.024-.391%201.414%200%20.391.39.391%201.023%200%201.414l-6.898%206.899c-.391.391-1.024.39-1.415%200-.39-.391-.391-1.023%200-1.414l6.899-6.899%22/%3E%3C/g%3E%3C/svg%3E);
}
input[type=submit].submit{
    background-color: #00aa00;
    color: #fff;
}
input[type=submit].alert{
    background-color: #ff6666;
    color: #fff;
}
ul.ow_radio_group li{
	float:left;
}
ul.ow_checkbox_group li{
	float:left;
}
.form_auto_click textarea.invitation{
	height:50px;
}
form .error{
    color:red;
}
form input[type=text].hasDatepicker{
    width: 87%;
}
.ow_multiselect select{
    width: 120px;
    padding: 2px;
}
.ow_multiselect input[type=button]{
    padding-left: 20px;
}
.form_auto_click .ow_submit_auto_click{
    display:none;
}
/* ---- Positive and Negative buttons ---- */
html body div .ow_positive input[type=submit],
html body div .ow_positive input[type=button]{
	color: #fff;
}
.ow_negative input[type=submit],
.ow_negative input[type=button]{
	background: none;
	padding-right: 2px;
}
body:not(:-moz-handler-blocked) .ow_negative input[type=submit],
body:not(:-moz-handler-blocked) .ow_negative input[type=button] {
	padding-right: 2px;
}
/* ---- End of Positive and Negative buttons ---- */
/* Color buttons */
html body div .ow_green,
span.ow_blitem.ow_green input[type=submit],
span.ow_blitem.ow_green input[type=button],
.ow_bl a.ow_green:hover {
    color: #57ba98;
}
html body div .ow_red,
span.ow_blitem.ow_red input[type=submit],
span.ow_blitem.ow_red input[type=button],
.ow_bl a.ow_red:hover {
    color: #ee3d32;
}
html body div .ow_mild_red,
span.ow_blitem.ow_mild_red input[type=submit],
span.ow_blitem.ow_mild_red input[type=button],
.ow_bl a.ow_mild_red:hover {
    color: #ee3d32;
}
html body div .ow_mild_green,
span.ow_blitem.ow_mild_green input[type=submit],
span.ow_blitem.ow_mild_green input[type=button],
.ow_bl a.ow_mild_green:hover {
	color: #57ba98;
}
html body .ow_button.ow_red,
html body .ow_button.ow_mild_red,
html body .ow_button.ow_green,
html body .ow_button.ow_mild_green,
.ow_button .ow_mild_red,
.ow_button .ow_red,
.ow_button .ow_green,
.ow_button .ow_mild_green {
	background-color: transparent;
	border-color: transparent;
	color: #333333;
}
input[type=submit].ow_green,
input[type=button].ow_green,
input[type=submit].ow_mild_green,
input[type=button].ow_mild_green,
input[type=submit].ow_red,
input[type=button].ow_red,
input[type=submit].ow_mild_red,
input[type=button].ow_mild_red  {
	background-color: transparent;
}
.ow_bl a.ow_mild_red,.ow_bl a.ow_mild_red:hover {
    color: white;
}
/* wysiwyg styles */
body.htmlarea_styles{
    font-family: "Lucida Grande", "Verdana", "Tahoma"; /** key:commonFontFamily  **/
    color: #647774;
    font-size: 13px; /** key:commonFontSize **/
    line-height: 18px;
}
body.htmlarea_styles a{
}
body.htmlarea_styles p{
    margin:0;
}
/* tag styles */
div.tagsinput { 
	background-color: #fff;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-color: #ccd6de;
}
div.tagsinput span.tag {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	background: #fff;
	border-color: #cad4dd;
}
div.tagsinput span.tag a {
	border-color: #cad4dd;
}
div.tagsinput span.tag span {
	font-size: 13px;
}
div.tagsinput input {
	color: #647774;
}
/* lbutton */
a.ow_lbutton,
span.ow_lbutton {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    padding: 1px 6px;
	line-height: 13px;
    text-transform: uppercase;
    text-shadow: none;
	display: inline-block;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	vertical-align: text-bottom;
	color: #00776b;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
}
html body a.ow_lbutton,
html body span.ow_lbutton {
    font-size: 11px;
}
.ow_lbutton:hover {
    border-color: #1976D2;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background-color: #2196F3;
}
/* ---- End of Form Elements styles ---- */
/* -------Attachments styles----------*/
.ow_attachment_btn {
    float: right;
    margin: 0 0 0 6px;
    padding: 0;
}
.ow_attachments input[type="file"] {
    cursor: pointer;
    float: right;
    opacity: 0;
}
.ow_attachment_icons {
    float: right;
}
.ow_attachments a {
    background: url(images/wysiwyg.png) no-repeat scroll -175px 1px rgba(0, 0, 0, 0);
    cursor: pointer;
    float: left;
    height: 22px;
    overflow: hidden;
    text-decoration: none;
    width: 22px;
}
.ow_attachments a.video{
    background:url(images/wysiwyg.png) -197px 1px no-repeat;
}
.ow_attachments a.attach {
    background: url(images/ic_attach_big.svg) no-repeat 0 0;
    height: 26px;
    width: 28px;
    margin-top: -3px;
}
.ow_attachments a.attach:hover {
	background-position: 0px -37px;
}
.ow_attachments a.attach.uploading {
	background: url(images/ajax_preloader_button.gif) no-repeat center center;
}
.ow_attachment_delete {
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    top: 4px;
    right: 4px;
}
.ow_ajax_oembed_attachment {
    width: 100%;
}
.ow_attachment_btn span.ow_button {
    background-color: none;
    background-image: none;
    background-repeat: repeat-x;
    background-position: center left;
	border: none;
	padding: 0;
	display: inline-block;
	text-align: center;
}
.ow_attachment_btn span.ow_button span {
	display: inline-block;
}
.ow_attachment_btn span.ow_button input[type=submit], 
.ow_attachment_btn span.ow_button input[type="button"] {
	padding: 1px 8px 4px;
	height: 22px;
	line-height: 21px;
	background: none;
}
/*Video, links embed*/
body .ow_oembed_attachment_preview {
    height: 60px;
    position: relative;
    padding: 6px 20px 0 88px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-width: 1px;
    background-color: #fff;
}
.ow_mailbox_log .ow_oembed_attachment_preview {
	border: none;
	padding: 0 0 0 88px;
	background-color: transparent;
	margin-top: 12px;
}
.ow_mailbox_log .ow_oembed_attachment_preview .ow_attachment_delete {
	display: none;
}
.ow_oembed_attachment_pic .attachment_other_images_btn {
	position: absolute;
	left: 4px;
	bottom: 4px;
	display: none;
}
.ow_oembed_attachment_pic:hover .attachment_other_images_btn {
	display: inline-block;
}
body .ow_oembed_attachment_pic {
    width: 80px;
    height: 60px;
    position: absolute;
    top: -1px;
    left: -1px;
    border-width: 0 1px 0 0;
    background-color: #fff;
}
.ow_oembed_atachment_pic_nopic {
	background-image: url(images/no-picture.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.ow_oembed_attachment_pic img {
    width: 80px;
    height: 60px;
}
.ow_oembed_attachment_url {
	position: relative;
}
.ow_oembed_attachment_url a {
	position: absolute;
	bottom: 4px;
	left: 4px;
}
.ow_attachment_title {
    margin-bottom: 4px;
    line-height: 13.5px;
    display: inline-block;
}
.ow_attachment_description {
    line-height: 13.5px;
    height: 27px;
    overflow: hidden;
    display: block;
}
.ow_attachment_title a {
	display: block;
	height: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
    font-weight: bold;
}
body .newsfeed-attachment-preview {
	width: 100%;
}
.ow_oembed_attachment_preview.loading_content .ow_oembed_attachment_pic,
.ow_oembed_attachment_preview.loading_content .ow_attachment_title,
.ow_oembed_attachment_preview.loading_content .ow_attachment_description {
	display: none;
}
.ow_oembed_attachment_preview.loading_content {
	background: url(images/ajax_preloader_content.gif) center center no-repeat;
}
.attachment_image_item {
	border-width: 1px;
	cursor: pointer;
	float: left;
	height: 85px;
	margin: 2px;
	padding: 3px;
	text-align: center;
	width: 85px;
}
.attachment_image_item img {
	max-width: 100%;
	max-height: 100%;
}
/*Photo attachment*/
.ow_photo_attachment_preview {
    height: auto;
    padding: 8px 0;
    border-width: 0 0 1px 0;
    border-style: solid;
    margin-left: 0;
}
.ow_comments_mipc .ow_photo_attachment_preview,
.ow_comments_mipc .ow_oembed_attachment_preview {
	margin-left: 48px;
}
.ow_comments_ipc .ow_photo_attachment_preview,
.ow_comments_ipc .ow_oembed_attachment_preview {
	margin-left: 57px;
}
.ow_feed_comments_input_sticky .ow_photo_attachment_preview,
.ow_feed_comments_input_sticky .ow_oembed_attachment_preview,
.ow_feed_comments_input_sticky .comments_hidden_btn{
	margin: 0 12px 8px 22px;
}
.ow_photo_attachment_pic {
    display: inline-block;
    background-color: #fff;
    width: 120px;
    height: 120px;
    border: 1px solid #cad4dd;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.ow_photo_attachment_pic.loading {
	background-size: auto;
	background-image: url(images/ajax_preloader_content.gif);
	background-position: center center;
}
.ow_photo_attachment_stage {
    width: 150px;
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
	border-radius: 4px;
 }
/*File attachments*/
.ow_file_attachment_preview {
    width: 100%;
    height: auto;
    margin-top: -2px;
    margin-bottom: 6px;
}
.ow_file_attachment_block1, .ow_file_attachment_block2 {
    float: left;
    width: 50%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 2px 0;
}
.ow_file_attachment_block1 {
    padding-right: 4px;
}
.ow_file_attachment_block2 {
    padding-left: 4px;
}
.ow_dialog_items_wrap .ow_file_attachment_block1,
.ow_dialog_items_wrap .ow_file_attachment_block2 {
	width: auto;
	float: none;
	padding-right: 0;
	padding-left: 0;
	padding-top: 4px;
}
.ow_dialog_items_wrap .ow_file_attachment_info,
.ow_mailbox_log .ow_file_attachment_info {
	padding-right: 4px;
}
.ow_dialog_item_mailchat .ow_mailbox_message_content_attach {
    padding-top: 0px;
}
.ow_dialog_items_wrap .ow_file_attachment_name,
.ow_mailbox_log .ow_file_attachment_name {
	font-weight: normal;
	padding-right: 4px;
}
.ow_file_attachment_info {
	border: 1px solid transparent;
    padding-right: 50px;
    position: relative;
    height: 22px;
    overflow: hidden;
}
.ow_file_attachment_info:hover {
	border-color: #cad4dd;
}
.ow_file_attachment_info a {
	line-height: 22px;
	padding-left: 8px;
}
.ow_dialog_in_item.fileattach {
	padding-top: 1px;
	padding-bottom: 1px;
}
.ow_dialog_in_item.fileattach .ow_file_attachment_info {
	border: none;
}
.ow_file_attachment_name {
    width: 100%;
    line-height: 22px;
    height: 22px;
    overflow: hidden;
    padding-left: 8px;
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_file_attachment_size {
    font-weight: normal;
    display: none;
}
.ow_file_attachment_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background-image: url(images/tag_close_btn.png);
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.ow_file_attachment_preload {
    position: absolute;
    top: 0;
    right: 25px;
    width: 20px;
    height: 22px;
    background: url(images/ajax_preloader_content.gif) center center no-repeat;
    display: none;
}
.ow_dialog_in_item.errormessage p,
.ow_mailbox_log_message.errormessage .ow_mailbox_message_content,
.ow_dialog_item_mailchat.errormessage .ow_dialog_item_mailchat_text {
	color: #b1b1b1;
}
.ow_errormessage_not {
	display: block; 
	padding-bottom: 4px; 
	padding-left: 4px;
}
.ow_dialog_in_item.errormessage .ow_errormessage_not {
	padding-left: 0;
}
/* -------End of attachments styles----------*/
/* ----------- Comments styles---------- */
body .ow_attachments a {
	background-color: transparent;
}
body .ow_attachments a.video {
    margin: 0 0 0 -1px;
}
.base_cmnts_temp_cont .ow_ipc_info {
	border: none;
	padding-bottom: 1px;
}
.ow_feed_comments_viewall,
.ow_photo_attachment_preview,
.ow_oembed_attachment_preview,
.ow_oembed_attachment_pic {
	background-color: #fff;
	border-color: #cad4dd;
	border-style: solid;
}
.ow_comments_item {
	position: relative;
	padding: 6px 16px 4px 8px;
	border-width: 1px 1px 0 1px;
}
.ow_comments_form_top .ow_comments_item {
	border-width: 0 1px 1px 1px;
}
.ow_comments_form_top .ow_paging {
    margin-bottom: 0;
    margin-top: 8px;
}
.ow_newsfeed_features .ow_comments_item {
    border-width: 1px 0 0 0;
    border-color: #cad4dd;
    border-style: solid;
}
.ow_photoview_info_wrap.sticked .ow_comments_item:last-child {
	border-width: 1px;
	margin-bottom: 12px;
}
.ow_comments_no_form .ow_comments_list .ow_comments_item:last-child {
	border-width: 1px;
}
.ow_comments_form_top.ow_comments_no_form .ow_comments_list .ow_comments_item:first-child {
	border-width: 1px;
}
.ow_newsfeed_features .ow_comments_list div .ow_context_action_block .ow_context_action {
    border-top-width: 1px;
}
.ow_comments_form_wrap {
	padding: 6px 16px 4px 6px;
	border-width: 1px;
	min-height: 42px;
	border-top: 1px solid #cad4dd;
}
.ow_comments_ipc .ow_comments_form_wrap {
	min-height: 50px;
}
.ow_comments_form_wrap .ow_avatar {
    /* padding-top: 0px; */
}
.ow_feed_comments_viewall {
	text-align: right;
	padding: 8px 8px 8px 0;
	border-width: 1px 0 1px 0;
	min-height: 14px;
	text-align: center;
}
.ow_feed_comments_input_sticky {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.ow_feed_comments_input_sticky .ow_comments_input_wrap {
	padding: 6px 12px 4px 22px;
}
.ow_feed_comments_input_sticky .ow_comments_form_wrap {
	border-top-width: 1px;
}
.ow_comments_item_picture{
    float: left;
    margin-right: -56px;
    width: 56px;
}
.ow_comments_item_info {
    margin-left: 56px;
    padding-top: 2px;
}
.ow_comments_form_wrap .ow_comments_input_wrap.clearfix .ow_comments_item_info.clearfix {
    padding-top: 8px;
}
.ow_comments_item_info textarea.ow_smallmargin {
	margin-bottom: 6px;
	width: 100%;
	margin-top: 4px;
}
.ow_comments_item_info .comments_fake_autoclick {
	width: 100%;
	height: 30px;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	padding-right: 28px;
	padding-left: 10px;
	resize: none;	
}
.ow_comments_item_header {
	margin-bottom: 2px;
}
.ow_comments_item_header a {
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	color: #333333;
}
.ow_comments_item_toolbar {
    float: left;
	font-size:10px;
	width: 100%;
}
.ow_comments_item_info .clearfix .ow_comments_item_toolbar {
    white-space: normal;
}
.ow_comments_date {
	float: right;
}
.ow_comments_date.ow_tiny {
	font-size: 13px;
}
.ow_comments_list .ow_tooltip .ow_tooltip_body {
    padding: 4px 0px;
}
.ow_comments_list .ow_context_action_list a {
	padding: 4px 12px;
}
.ow_comments_item_info .mipc_url{
    font-weight: bold;
}
.comment_add_arr {
	float: left;
	display: none;
	position: relative;
	z-index: 1;
	left: 1px;
	width: 5px;
	height: 9px;
	margin: 14px 0px 0px -5px;
    background: none;
}
.ow_comments_list .comments_view_all {
	padding-bottom: 5px;
}
body .ow_comments_list .ow_attachment {
	padding-top: 4px;
}
body .ow_comments_content.ow_smallmargin {
	margin-bottom: 0px;
	color: #777777;
}
.ow_comments_content  img {
	max-width: 100%;
}
.ow_comments_btn_block {
	padding: 0 0px 0px 0;
}
.ow_comments_item .cnx_action {
	position: absolute;
    right: 4px;
    top: 4px;
}
.ow_comments_msg {
	margin-top: 4px;
	color: #333333;
}
body .item_loaded {
	margin: 0px 3px 8px 57px;
}
body textarea.ow_newsfeed_status_input {
	height: 58px;
}
body textarea.ow_newsfeed_status_input.invitation {
	width: 100%;
	height: 28px;
}
.ow_comments_mipc.ow_comments_paging .ow_comments_list {
	margin-bottom: 8px;
}
.ow_comments_mipc .ow_comments_item_picture,
.ow_feed_comments_input_sticky .ow_comments_item_picture  {
	width: 56px;
	margin-right: -56px;
	float: left;
}
.ow_comments_mipc .ow_comments_item_info,
.ow_feed_comments_input_sticky .ow_comments_item_info {
	margin-left: 56px;
}
.ow_comments_mipc .ow_comments_list {
	margin-bottom: 1px;
}
.ow_comments_item_info .ow_comments_content {
	padding: 2px 0;
	width: 95%;
	word-wrap: break-word;
}
.ow_comments_form_wrap .ow_comments_input_wrap .ow_comments_input {
	padding-top: 0px;
	position: relative;
	margin-top: -1px;
}
.ow_comments_input_wrap .ow_comments_input .comments_fake_autoclick {
	margin-top: 0;
	    line-height: 18px;
}
.ow_comments_input_wrap .ow_comments_input .ow_attachment_icons {
	position: absolute;
	top: 5px;
	right: 4px;
}
.ow_comments_input .ow_attachments a {
    background: url(images/wysiwyg.png) no-repeat scroll -176px -27px #a2acb3;
    cursor: pointer;
    float: left;
    height: 20px;
    overflow: hidden;
    text-decoration: none;
    width: 20px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;    
}
.ow_attachments input[type="file"] {
    cursor: pointer;
    float: right;
    opacity: 0;
}
.ow_add_comments_form.ow_small {
	font-size: 14px;
}
/*End of comments styles*/
/* ---- Button List styles ---- */
.ow_bl{
    padding: 0;
}
.ow_bl li {
	float: left;
	list-style: none;
    margin-left: 4px;
}
.ow_bl a{
    display: block;
	padding: 10px 18px;
	line-height: 20px;
	height: 21px;
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
    background-color: #007BFF;
    border: 1px solid #cad4dd;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}
.ow_bl a:hover {
    border-color: #006fe6;
    color: #FFFFFF;
    background-color: #006fe6;
}
.ow_dnd_widget .ow_box_empty .ow_bl.ow_box_toolbar li {
	margin-bottom: 8px;
}

/* Blitem */
span.ow_blitem {
	background: none;
	border: 1px solid transparent;
	color: #333333;
	padding: 0px 0px;
	line-height: 22px;
	height: 22px;
    text-decoration: none;
    display: inline-block;
    margin: 0px 4px 0px 0px;
    font-size: 13px;
}
span.ow_blitem span {
    display: inline-block;	
}
span.ow_blitem input[type="submit"],
span.ow_blitem input[type="button"] {
    border: none;
    padding: 0px;
    background: none;
    font-weight: normal;
    height: auto;
    padding: 1px 5px 0 6px;
    text-transform: none;
    line-height: 18px;
    font-size: 13px;
    text-transform: uppercase;
    color: #333333;
}
span.ow_blitem:hover,
span.ow_blitem input:hover {
    border-color: #cad4dd;
    color: #647774;
}
/* Button List Cover Image */
.ow_bg_controls span.ow_blitem{
	background: url(images/btnl_black_bg.png) repeat-x center left;
	border: none;
	height: 24px;
	line-height: 22px;
} 
.ow_bg_controls span.ow_blitem:hover{
	background: url(images/btnl_black_hover_bg.png) repeat-x center left;
}

html body div .ow_bg_controls .ow_green{
	color:#647774;
} 
.ow_bg_controls span.ow_blitem input[type="submit"],
.ow_bg_controls span.ow_blitem input[type="button"]{
	color: #333333;
} 
.ow_bg_controls span.ow_blitem input[type="submit"]:hover,
.ow_bg_controls span.ow_blitem input[type="button"]:hover{
}
/* ---- End of Button List styles ---- */
/* ---- Button List narrow styles ----- */
.ow_bl_narrow{
    padding: 0;
}
.ow_bl_narrow li {
	list-style: none;
}
.ow_bl_narrow li a {
    display: block;
    font-size: 14px;
    padding: 5px 7px;
	text-decoration: none;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";	
}
.ow_bl_narrow li a:hover {
    background-color: #2196F3;
    color: #ffffff;
}
/* ---- End of Button List narrow styles ---- */
/* ---- Suggest field styles ---- */
.ac_results {
    padding: 0px;
    border: 1px solid #BBB;
    background-color: #FFF;
    overflow: hidden;
    z-index: 105;
    position: absolute;
    display: none;
    width: 100%;
    top: -1px;
}
.ac_results ul {
    list-style-position: outside;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ac_results iframe {
    display:none;/*sorry for IE5*/
    display/**/:block;/*sorry for IE5*/
    position:absolute;
    top:0;
    left:0;
    z-index:-1;
    filter:mask();
    width:3000px;
    height:3000px;
}
.ac_list_container{
    width: 99.6%;
    position: relative;
}
.ac_results li {
    margin: 0px;
    padding: 4px 5px;
    cursor: pointer;
    display: block;
    width: 98%;
    font: menu;
    font-size: 12px;
    overflow: hidden;
}
.ac_loading {
    background : url(images/ajax_preloader_button.gif) right center no-repeat;
}
.ac_over {
    background-color: #F0F0F0;
}
.ac_match{
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_suggest_field {
    position: relative;
}
.ow_suggest_invitation {
    position: absolute;
    right: 9px;
    top: 9px;
    width: 12px;
    height: 12px;
    background: url(images/miniic_corner.png) no-repeat center center;
}
/* ---- End of the Suggest field styles ---- */
/* ---- Sort styles ---- */
.ow_sort_control {
	padding: 4px 8px 4px 0px;
}
.ow_sort_control a {
	display: inline-block;
	font-size:14px;
	height: 16px;
	line-height: 16px;
	padding: 0px 6px 0 7px;
	outline: 0;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	text-transform: uppercase;
	border-right: 1px solid #4c4c4c;
}
.ow_sort_control a span {
	display: inline-block;
}
.ow_sort_control a:last-child {
	border-right-width: 0;
}
.ow_sort_control a.active,
.ow_sort_control a:hover{
	color:#828282;
	text-decoration:none;
}
.ow_sort_control_label {
	padding: 0px 0px 0px 0px;
}
/* ---- End of Sort styles ---- */
/*=======================================================
        [11] Tables        __tables
  ========================================================*/
.ow_table_1,
.ow_table_2 {
	border-collapse: separate;
}
.ow_table_3 {
	border-collapse: collapse;
}
.ow_table_1,
.ow_table_2,
.ow_table_3{
    margin-bottom: 25px;
    width: 100%;
}
.ow_table_1 tr td,
.ow_table_2 tr td,
.ow_user_list .ow_alt1,
.ow_user_list .ow_alt2,
.ow_video_list .ow_alt1,
.ow_video_list .ow_alt2,
.ow_photo_list .ow_alt1,
.ow_photo_list .ow_alt2 {
	border-style: solid;
	border-color: #cad4dd;
}
.ow_table_1 tr td,
.ow_table_2 tr td {
	border-width: 0px 1px 1px 0px;
}
.ow_table_1 .ow_empty + tr td:first-child,
.ow_table_2 .ow_empty + tr td:first-child {
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-width: 1px;
}
.ow_video_list div:first-child,
.ow_user_list div:first-child {
	border-left-width: 1px;
	border-top-width: 1px;
}
.ow_table_1 tr td:first-child,
.ow_table_2 tr td:first-child {
	border-left-width: 1px;
}
.ow_video_list div,
.ow_user_list div {
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
}
.ow_video_list div:last-child,
.ow_user_list div:last-child {
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;

}
.ow_video_list div:first-child,
.ow_user_list div:first-child {
}
.ow_table_1 tr td:last-child,
.ow_table_2 tr td:last-child {
	border-bottom-width: 1px;
	border-right-width: 1px;
}
.ow_table_1 tr:first-child td,
.ow_table_2 tr:first-child td {
	border-top-width: 1px;
}
.ow_table_1 tr:first-child td:first-child,
.ow_table_1 tr:first-child th:first-child,
.ow_table_2 tr:first-child td:first-child,
.ow_table_2 tr:first-child th:first-child {
    border-top-left-radius: 0;
    -moz-border-top-left-radius: 0;
    -webkit-border-top-left-radius: 0;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-width: 1px;
}
.ow_table_1 tr:first-child td:last-child,
.ow_table_1 tr:first-child th:last-child,
.ow_table_2 tr:first-child td:last-child,
.ow_table_2 tr:first-child th:last-child {
    border-top-right-radius: 0;
    -moz-border-top-right-radius: 0;
    -webkit-border-top-right-radius: 0;
	border-bottom-width: 1px;
	border-top-width: 1px;
	border-right-width: 1px;
}
.ow_table_1 tr:last-child td:first-child,
.ow_table_1 tr.ow_alt1:last-child td:first-child,
.ow_table_1 tr.ow_tr_last td:first-child,
.ow_table_1 tr.ow_tr_last th:first-child,
.ow_table_2 tr:last-child td:first-child,
.ow_table_2 tr.ow_alt1:last-child td:first-child,
.ow_table_2 tr.ow_tr_last td:first-child,
.ow_table_2 tr.ow_tr_last th:first-child {
    border-bottom-left-radius: 8px;
    -moz-border-left-radius: 8px;
    -webkit-border-left-radius: 4px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-right-radius: 0px;
    -moz-border-bottom-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;	
}
.ow_table_1 tr:last-child td:last-child,
.ow_table_1 tr.alt1:last-child td:last-child,
.ow_table_1 tr.ow_tr_last td:last-child,
.ow_table_1 tr.ow_tr_last th:last-child,
.ow_table_2 tr:last-child td:last-child,
.ow_table_2 tr.alt1:last-child td:last-child,
.ow_table_2 tr.ow_tr_last td:last-child,
.ow_table_2 tr.ow_tr_last th:last-child {
    border-bottom-right-radius: 8px;
    -moz-border-bottom-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
	border-bottom-width: 1px;
	border-right-width: 1px;
	border-top-right-radius: 0px;
    -moz-border-top-right-radius: 0px;
    -webkit-border-top-right-radius: 0px;
}
.ow_table_1 tr:last-child td,
.ow_table_1 tr:last-child th,
.ow_table_2 tr:last-child td,
.ow_table_2 tr:last-child th {
	border-top-width: 0px;
}
.ow_table_1 th,
.ow_table_2 th {
	border-style: solid;
	border-color: #cad4dd  #cad4dd #cad4dd #cad4dd;
	border-width: 0px 1px 1px;
	_border-width: 1px;
}
.ow_table_1 tr.ow_tr_first td,
.ow_table_2 tr.ow_tr_first td{
	border-top-width: 1px;
}
.ow_table_1 tr.ow_tr_first th,
.ow_table_2 tr.ow_tr_first th {
	border-width: 1px 0px 1px 0;
	border-color: #cad4dd;
}
.ow_table_1 tr.ow_tr_first th:first-child,
.ow_table_1 tr.ow_tr_first td:first-child,
.ow_table_2 tr.ow_tr_first th:first-child,
.ow_table_2 tr.ow_tr_first td:first-child {
	border-left-width: 1px;
    border-top-left-radius: 8px;
}
.ie8 .ow_table_1 tr.ow_tr_first th,
.ie8 .ow_table_2 tr.ow_tr_first th {
	border-right-width: 1px;
}
.ow_table_1 tr.ow_tr_delimiter td,
.ow_table_2 tr.ow_tr_delimiter td  {
	border: none;
}
.ow_table_1 tr.ow_tr_first th:last-child,
.ow_table_1 tr.ow_tr_first td:last-child,
.ow_table_2 tr.ow_tr_first th:last-child,
.ow_table_2 tr.ow_tr_first td:last-child {
   	border-right-width: 1px;
    border-top-right-radius: 8px;
}
.ow_table_1 tr.ow_tr_first th:last-child,
.ow_table_2 tr.ow_tr_first th:last-child {
   	border-right-color: #cad4dd;
}
.ow_table_1 td,
.ow_table_2 td{
    padding: 8px;
    vertical-align: middle;
}
.ow_table_1 td .text{
    color: #999;
}
.ow_table_2{
    border-collapse: separate;
}
.ow_table_2 td{
    text-align: center;
}
.ow_table_3{
    border-collapse: separate;
    border-spacing: 5px;
}
.ow_table_3 td{
    border-left-width: 1px;
    border-left-style: solid;
    vertical-align: top;
}
.ow_content .ow_table_3 td.ow_label{
    border: none;
    color: #333333;
    text-align: right;
    width: 50% !important;
}
.ow_table_3 td.ow_value{
	width: 50%;
	padding-left: 10px;
}

.ow_table_4{
    border-collapse: separate;
    border-spacing: 5px;
}
.ow_table_4 td{
    vertical-align: top;
}
.ow_table_4 td.ow_label{
    border: none;
    color: #333333;
    text-align: right;
}
.ow_table_4 td.ow_value{
    padding-left: 10px;
}
th.ow_section{
    border: 0 none;
    padding: 7px 0;
	text-align: center;
	font-size: 20px;
	color: #333333;
}
th span.ow_section_icon{
    background-repeat: no-repeat;
    padding-left: 26px;
}
th.ow_section span {
	text-transform: uppercase;
    padding: 5px 10px;
    font-weight: normal;
}
table.ow_form td.ow_label{
    color: #333333;
    text-align: right;
    width: 20%;
}
table.ow_form td.ow_desc{
    width: 25%;
    color: #333333;
    font-size: 11px;
}
table.ow_form td.ow_submit{
    text-align: center;
}
/*========================================================
        [12] Standard Listings        __listings
  ========================================================*/
/* ---- Regular listing ---- */
.ow_regular {
	margin-bottom: 12px;
}
.ow_regular li {
    line-height: 23px;
    margin: 0 0 3px 0px;
    padding: 0px 0px 0px 0px;
}
/* ---- End of the Regular listing ---- */
/* ---- Item Picture Content ---- */
.ow_ipc {
	margin-top: 4px;
	margin-bottom: 0px;
}
.ow_ipc:first-child {
    /* margin-top: 0px; */
}
.ow_ipc_picture {
    float: left;
    margin-right: -45px;
    width: 50px;
}
.ow_ipc_picture img {
	width: 40px;
	height: 40px;
	border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}
.ow_dnd_widget.index-EVENT_CMP_UpcomingEvents .ow_ipc_picture {
    background-color: transparent;
    width: 46px;
    padding-bottom: 3px;
    border-radius: 20em;
}
.ow_dnd_widget.index-EVENT_CMP_UpcomingEvents .ow_ipc_picture img {
    margin-top: 3px;
    margin-left: 3px;
}
.ow_ipc_picture img:first-child {
	margin-top: 2px;
	margin-left: 2px;
}
.ow_ipc_picture .ow_avatar img {
	margin-top: 0px;
	margin-left: 0px;	
}
.ow_ipc_info {
    margin-left: 45px;
    padding: 4px 10px 10px 10px;
    border: 0px solid #cad4dd;
}
.ow_ipc_header{
    padding: 0px 0px 0px;
    margin: 0px 0px 6px;
}
.ow_ipc_header a {
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	    color: #222;
	    font-weight:600;
}
.ow_ipc.ow_smallmargin {
	margin-bottom: 0px;
}
.ow_ipc_content{
    padding: 0px 0px 12px 0px;
    line-height: 1.25em;
}
.ow_ipc_toolbar{
    font-size: 13px;
    line-height: 14px;
	float: left;
	padding: 0 0px 0px 0px;
	width: 100%;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_ipc_toolbar .ow_icon_control {
	padding: 0px;
}
html body div .ow_ipc_toolbar span {
	background: none;
}
.ow_ipc_toolbar .ow_ipc_date,
.ow_ipc_date {
	float: right;
}
.ow_table_1 .ow_ipc_info,
.ow_table_2 .ow_ipc_info {
	border: none;
}
.ow_dnd_widget.index-EVENT_CMP_UpcomingEvents span.ow_nowrap.ow_icon_control.ow_ic_user {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ow_reply_info span.ow_nowrap.ow_icon_control.ow_ic_user {
    width: auto;
    overflow: inherit;
    padding-left: 0;
}
.ow_reply_info span.ow_nowrap.ow_icon_control.ow_ic_user::before {
    font-size: 14px;
    padding-right: 2px;
}
/* ---- End of the Item Picture Content ---- */
/* ---- Mini Item Picture Content ---- */
.ow_mini_ipc_picture {
    float: left;
    margin-right: -56px;
    width: 56px;
}
.ow_mini_ipc_info {
    margin-left: 56px;
    padding-top: 0;
}
.ow_mini_ipc_info .mipc_url {
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_mini_ipc_content {
    margin-top: 5px;
}
/* ---- End of the Mini Item Picture Content ---- */
/* ---- Item Content styles ---- */
.ow_ic_header {
	margin-bottom: 5px;
}
.ow_ic_header a {
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_ic_description {
	margin-bottom: 5px;
}
.ow_ic_date {
	float: right;
	font-size: 13px;
	line-height: 14px;	
}
/* ---- End of the Item Content styles ---- */
/* ---- Avatar list styles ---- */
.ow_avatar_list{
    text-align: center;
}
.ow_avatar_list a{
    margin-bottom: 0px;
    margin-right: 1px;
}
/* ---- End of the Avatar list styles ---- */
/* ---- Listing Picture styles ---- */
.ow_lp_picture {
    float: left;
    margin: 0 1px 1px 0;
}
.ow_lp_avatars{
	text-align:center;
}
.ow_lp_avatars .ow_lp_wrapper{
	display: inline-block;
    margin: 0 1px 1px 0;
}
.ow_lp_avatars .ow_lp_wrapper img {
    border-radius: 50%;
}
.ow_lp_albums .ow_lp_wrapper {
    width: 72px;
    height: 72px;
    padding: 0px;    
    float: left;
	background-color: transparent;
    border: solid 1px transparent;
    padding: 3px 0px 3px 3px;
	border-radius: 20em;
}
.ow_lp_photos .ow_lp_wrapper {
    width: 68px;
    height: 68px;
    padding: 1px;
    margin: 0 2px 2px 0;
    display: inline-block;
    float: none;
    text-align: left;
	background-color: transparent;
    border: solid 1px transparent;
    border-radius: 20em;
}
.ow_photo_item_widget {
    width: 68px !important;
    height: 68px !important;
    border-radius: 20em;
}
.ow_lp_avatars .ow_avatar {
    margin: 1px;
	text-align: left;
}
.ow_lp_photos img,
.ow_lp_albums img {
    width: 72px;
    height: 72px;
	border-radius: 20em;
}
.ow_lp_label{
    margin-left: 90px;
}
.ow_lp_groups .ow_lp_wrapper {
    width: 45px !important;
    height: 45px;
    float: left;
    margin-right: -80px;
}
.ow_lp_groups img {
    width: 45px;
    height: 45px;
	border-radius: 20em;
}
.ow_lp_groups .ow_lp_label {
    margin-left: 60px;
}

.ow_lp_avatars.ow_mini_avatar{
    text-align:left;
}
a.avatar_list_more_icon{
    width: 25px;
    height: 32px;
    display: inline-block;
    margin: 0 1px;
    background: #eee url(images/more_icon.png) no-repeat 50% 50%;
}
.ow_sidebar a.ow_lp_wrapper, .ow_sidebar a.ow_lp_wrapper .ow_photo_item_widget {
    width: 55px !important;
    height: 55px !important;
}
/* ---- End of the Listing Picture styles ---- */
/* ---- User List styles ---- */
.ow_user_list {
}
.ow_user_list .ow_item_set3{
    width: 33%;
    word-wrap: break-word;
}
.ow_user_list_item{
    float: left;
    padding: 10px;
    padding-right: 0px;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.ow_user_list_picture{
    float: left;
    margin-right: -56px;
    width: 56px;
}
.ow_user_list_picture img{
    width: 40px;
    height: 40px;
}
.ow_user_list_data{
    margin-left: 56px;
    padding: 8px 4px 4px;
}
.ow_uli_context_menu {
	position: absolute;
	top: 10px;
	right: 10px;
	display: none;
}
.ow_user_list_item:hover .ow_uli_context_menu {
	display: block;
}
.ow_uli_context_menu .ow_tooltip .ow_tooltip_body {
    padding: 4px 0;
}
.ow_uli_context_menu .ow_context_action_list a {
	padding: 4px 12px;
}
/* ---- End of the User List styles ---- */
/*========================================================
        [13] Thumbnails & Icons        __icons
  ========================================================*/
img.thumb{
    width: 100px;
}
@font-face {
  font-family: 'simple-line-icons';
  src: url('assets/fonts/Simple-Line-Icons.eot');
  src: url('assets/fonts/Simple-Line-Icons.eot') format('embedded-opentype'),
  url('assets/fonts/Simple-Line-Icons.woff2') format('woff2'),
  url('assets/fonts/Simple-Line-Icons.ttf') format('truetype'),
  url('assets/fonts/Simple-Line-Icons.woff') format('woff'),
  url('assets/fonts/Simple-Line-Icons.svg#simple-line-icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
html body div .ow_ic_add:before,
html body div .ow_ic_aloud:before,
html body div .ow_ic_app:before,
html body div .ow_ic_attach:before,
html body div .ow_ic_birthday:before,
html body div .ow_ic_bookmark:before,
html body div .ow_ic_calendar:before,
html body div .ow_ic_cart:before,
html body div .ow_ic_chat:before,
html body div .ow_ic_clock:before,
html body div .ow_ic_comment:before,
html body div .ow_ic_cut:before,
html body div .ow_ic_dashboard:before,
html body div .ow_ic_delete:before,
html body div .ow_ic_draft:before,
html body div .ow_ic_down_arrow:before,
html body div .ow_ic_edit:before,
html body div .ow_ic_female:before,
html body div .ow_ic_file:before,
html body div .ow_ic_files:before,
html body div .ow_ic_flag:before,
html body div .ow_ic_folder:before,
html body div .ow_ic_forum:before,
html body div .ow_ic_friends:before,
html body div .ow_ic_gear_wheel:before,
html body div .ow_ic_groups:before,
html body div .ow_ic_heart:before,
html body div .ow_ic_help:before,
html body div .ow_ic_house:before,
html body div .ow_ic_info:before,
html body div .ow_ic_key:before,
html body div .ow_ic_left_arrow:before,
html body div .ow_ic_lens:before,
html body div .ow_ic_link:before,
html body div .ow_ic_lock:before,
html body div .ow_ic_mail:before,
html body div .ow_ic_male:before,
html body div .ow_ic_mobile:before,
html body div .ow_ic_moderator:before,
html body div .ow_ic_monitor:before,
html body div .ow_ic_move:before,
html body div .ow_ic_music:before,
html body div .ow_ic_new:before,
html body div .ow_ic_newsfeed:before,
html body div .ow_ic_ok:before,
html body div .ow_ic_online:before,
html body div .ow_ic_picture:before,
html body div .ow_ic_places:before,
html body div .ow_ic_plugin:before,
html body div .ow_ic_question:before,
html body div .ow_ic_refresh:before,
html body div .ow_ic_push_pin:before,
html body div .ow_ic_reply:before,
html body div .ow_ic_right_arrow:before,
html body div .ow_ic_rss:before,
html body div .ow_ic_save:before,
html body div .ow_ic_restrict:before,
html body div .ow_ic_script:before,
html body div .ow_ic_server:before,
html body div .ow_ic_star:before,
html body div .ow_ic_tag:before,
html body div .ow_ic_trash:before,
html body div .ow_ic_unlock:before,
html body div .ow_ic_up_arrow:before,
html body div .ow_ic_update:before,
html body div .ow_ic_user:before,
html body div .ow_ic_video:before,
html body div .ow_ic_warning:before,
html body div .ow_ic_write:before,
html body div .ow_ic_close:before,
html body div .ow_miniic_comment:before,
html body div .ow_miniic_like:before,
.ow_regular li:before,
li._upload a span:before, li._gallery a span:before, li._url a span:before {
  font-family: 'simple-line-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 10px;
}
span.ow_button:before,span.ow_button span:before{
	font-size:0 !important;
}
.ow_ipc_toolbar .ow_icon_control:before{
	font-size:13px !important;
	padding-right: 2px;
}
.ow_regular li:before {
    content: "\e079";
    float: left;
    font-size: 14px;
    margin-top: 5px;
	padding-right: 4px;
}
html body div .ow_miniic_comment:before{
	content: "\e07d";
	font-size: 21px;
}
html body div .ow_miniic_like:before{
	content: "\e068";
	font-size: 21px;
}
.ow_miniic_control.active .ow_miniic_like:before {
	color:#00c1ae;
}
.ow_miniic_control.active .ow_miniic_comment:before {
	color:#007BFF;
}

html body div .ow_ic_add:before {
  content: "\e095";
}
html body div .ow_ic_aloud:before {
  content: "\e0a0";
}
html body div .ow_ic_app:before {
  content: "\e00f";
}
html body div .ow_ic_attach:before {
  content: "\e093";
}
html body div .ow_ic_birthday:before {
  content: "\e02f";
}
html body div .ow_ic_bookmark:before {
  content: "\e028";
}
html body div .ow_ic_calendar:before {
  content: "\e075";
}
html body div .ow_ic_cart:before {
  content: "\e04e";
}
html body div .ow_ic_chat:before {
  content: "\e07d";
}
html body div .ow_ic_clock:before {
  content: "\e081";
}
html body div .ow_ic_comment:before {
  content: "\e07d";
}
html body div .ow_ic_cut:before {
  content: "\e082";
}
html body div .ow_ic_dashboard:before {
  content: "\e007";
}
html body div .ow_ic_delete:before {
  content: "\e082";
}
html body div .ow_ic_draft:before {
  content: "\e03f";
}
html body div .ow_ic_down_arrow:before {
  content: "\e07b";
}
html body div .ow_ic_edit:before {
  content: "\e060";
}
html body div .ow_ic_female:before {
  content: "\e09c";
}
html body div .ow_ic_file:before {
  content: "\e085";
}
html body div .ow_ic_files:before {
  content: "\e040";
}
html body div .ow_ic_flag:before {
  content: "\e088";
}
html body div .ow_ic_folder:before {
  content: "\e089";
}
html body div .ow_ic_forum:before {
  content: "\e02c";
}
html body div .ow_ic_friends:before {
  content: "\e001";
}
html body div .ow_ic_gear_wheel:before {
  content: "\e09a";
}
html body div .ow_ic_groups:before {
  content: "\e616";
}
html body div .ow_ic_heart:before {
  content: "\e08a";
}
html body div .ow_ic_help:before {
  content: "\e056";
}
html body div .ow_ic_house:before {
  content: "\e069";
}
html body div .ow_ic_info:before {
  content: "\e08b";
}
html body div .ow_ic_key:before {
  content: "\e08c";
}
html body div .ow_ic_left_arrow:before {
  content: "\e07a";
}
html body div .ow_ic_lens:before {
  content: "\e090";
}
html body div .ow_ic_link:before,
li._url a span:before {
  content: "\e08d";
}
html body div .ow_ic_lock:before {
  content: "\e08e";
}
html body div .ow_ic_mail:before {
  content: "\e086";
}
html body div .ow_ic_male:before {
  content: "\e09d";
}
html body div .ow_ic_mobile:before {
  content: "\e010";
}
html body div .ow_ic_moderator:before {
  content: "\e019";
}
html body div .ow_ic_monitor:before {
  content: "\e011";
}
html body div .ow_ic_move:before {
  content: "\e023";
}
html body div .ow_ic_music:before {
  content: "\e061";
}
html body div .ow_ic_new:before {
  content: "\e095";
}
html body div .ow_ic_newsfeed:before {
  content: "\e067";
}
html body div .ow_ic_ok:before {
  content: "\e080";
}
html body div .ow_ic_online:before {
  content: "\e021";
}
html body div .ow_ic_picture:before,
li._gallery a span:before {
  content: "\e07f";
}
html body div .ow_ic_places:before {
  content: "\e096";
}
html body div .ow_ic_plugin:before {
  content: "\e02d";
}
html body div .ow_ic_question:before {
  content: "\e05d";
}
html body div .ow_ic_refresh:before {
  content: "\e098";
}
html body div .ow_ic_push_pin:before {
  content: "\e031";
}
html body div .ow_ic_reply:before {
  content: "\e050";
}
html body div .ow_ic_right_arrow:before {
  content: "\e079";
}
html body div .ow_ic_rss:before {
  content: "\e03b";
}
html body div .ow_ic_save:before {
  content: "\e03f";
}
html body div .ow_ic_restrict:before {
  content: "\e07c";
}
html body div .ow_ic_script:before {
  content: "\e049";
}
html body div .ow_ic_server:before {
  content: "\e011";
}
html body div .ow_ic_star:before {
  content: "\e09b";
}
html body div .ow_ic_tag:before {
  content: "\e055";
}
html body div .ow_ic_trash:before {
  content: "\e054";
}
html body div .ow_ic_unlock:before {
  content: "\e08f";
}
html body div .ow_ic_up_arrow:before,
li._upload a span:before {
  content: "\e078";
}
html body div .ow_ic_update:before {
  content: "\e098";
}
html body div .ow_ic_user:before {
  content: "\e005";
}
html body div .ow_ic_video:before {
  content: "\e07e";
}
html body div .ow_ic_warning:before {
  content: "\e617";
}
html body div .ow_ic_write:before {
  content: "\e05f";
}
html body div .ow_ic_close:before {
  content: "\e082";
}

/*---- End of the Icons on hover for buttons styles ----*/
html body.ow div .ow_inprogress {
    background-image: url(images/ajax_preloader_button.gif);
}
html body.ow div input.ow_inprogress,
html body div .ow_button:hover .ow_inprogress {
    background-image: url(images/ajax_preloader_button.gif);
    background-position: right -4px center;
}
html body div .ow_button span,
html body div .ow_button span.ow_negative,
html body div .ow_button:hover span.ow_negative,
html body div .ow_button:hover span.ow_negative input,
html body div .ow_button span.ow_negative .ow_inprogress {
	background-image: none;
	background-repeat: no-repeat;
}
html body div span.ow_button:hover span {
	background-image: none !important;
}
.ow_no_cap span.ow_ic_up_arrow {
	width: 20px;
	display: inline-block;
}
.maintenance_cont h1 {
	background-image: none;
}

.ow_icon_control{
    background-repeat: no-repeat;
    display: inline-block;
    padding: 0px 0 3px 20px;
    line-height: 15px;
}

/*html body div .ow_miniic_comment{ background: url(images/miniic_set.png) no-repeat -37px 0px; }
html body div .ow_miniic_like { background: url(images/miniic_set.png) no-repeat 0px 0px; }*/
html body div .ow_miniic_delete{ background-image: url(images/miniic_x.png); }

html body div .ow_tinyic_delete{ background-image: url(images/tinyic_delete.png); }
html body div .ow_tinyic_tag{ background-image: url(images/tinyic_tag.png); }
html body div .ow_tinyic_write{ background-image: url(images/tinyic_write.png); }
.ow_miniicon_control{
    background-repeat: no-repeat;
    display: inline-block;
    padding: 1px 0 2px 14px;
    line-height: 9px;
}
.ow_box_cap_icons {
	margin-top: -26px;
}
span.ow_icon{
    background-repeat: no-repeat;
    display: inline-block;
    height: 20px;
    width: 20px;
    vertical-align: top;
}
.ow_box_cap_icons a.close{
    background-position: 50% 50%;
    background-repeat: no-repeat;
    float: right;
    width: 20px;
    height: 20px;
}
/* ---- Avatar styles ---- */
.ow_change_avatar .avatar_current{
    border-right: 1px solid #cad4dd;
    padding-right: 3px;
}
.ow_change_avatar .ow_avatar_preview{
    border-left: 1px solid #cad4dd;
}
.ow_change_avatar .avatar_crop{
    border-bottom: 1px solid #cad4dd;
}
.ow_avatar_crop .jcrop-holder{
    margin: 0px auto;
}
.ow_avatar_preview div{
    margin: 0px auto;
}
.ow_avatar {
    position: relative;
    display: inline-block;
    padding: 0px;
    width: 40px;
    height: 40px;
    background-image: none;
    background-position: 0px 0px;
    background-repeat: no-repeat;
	background-color: transparent;
    border: solid 1px transparent;
    border-radius: 20em;
    /* box-shadow: 0px 0px 8px -4px #333; */
}
.ow_newsfeed_avatar .ow_avatar {
    background-color: transparent;
    border: solid 2px transparent;
    padding: 0;
}
.ow_avatar img {
    vertical-align: bottom;
    width: 40px;
    height: 40px;
    border-radius: 50px;
}
.ow_avatar_label {
    font-size: 7px;
    display: inline-block;
    position: absolute;
    line-height: 10px;
    text-transform: uppercase;
    bottom: 4px;
    background-color: #999;
    right: 2px;
    color: #fff;
    font-weight: bold;
    padding: 0px 2px;
    border-radius: 1px;
    font-family: "Lucida Grande","Tahoma","Verdana";
}
html body .ow_sidebar .ow_avatar_label,
html body .ow_console .ow_avatar_label  {
    font-size: 7px;
}
.ow_console .ow_avatar_label {
	bottom: 4px;
	right: 4px;
}
.ow_newsfeed .ow_newsfeed_avatar {
	width: 56px;
	height: 56px;
    margin-right: -56px;	
}
.ow_newsfeed .ow_newsfeed_avatar img {
	width: 40px;
    height: 40px;
}
/* ---- End of the Avatar styles ---- */
/* ---- User Avatar Console styles ---- */
.ow_avatar_console{
    position: relative;
    background: #fff;
    padding: 44px 4px 0px;
    border: 1px solid #cad4dd;   
}
.ow_avatar_console #avatar_console_image {
	width: 185px;
	display: inline-block;
	background-size: cover;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: static;
}
.ow_avatar_console .ow_avatar_image {
    height: 190px;
    max-width: 170px;
}
.ow_avatar_change{
    position: absolute;
    right: 0; 
    top: 0;
    left: 0;
    height: 204px;
    background: rgba(255,255,255,0.9);
}
.ow_avatar_change .ow_lbutton {
	margin-top: 95px;
	padding: 10px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
}
.ow_avatar_change .ow_lbutton:hover {
	border-color: transparent;
}
.ow_avatar_console_links {
    background: #F0F0F0;
    display: block;
    padding: 5px 10px;
    border-top: 1px solid #fff;
}
body .ow_avatar_console .ow_avatar_label {
	bottom: 7px;
	right: 7px;
}
.user_online_wrap {
	min-height: 21px;
	text-align: left;
}
/* ---- End of User Avatar Console styles ---- */
/*===========================================================
        [14] Notifications        __notifications
  ===========================================================*/
/* ----  Message (Feedback) styles ---- */
.ow_message_cont{
    left: 50%;
    margin-left: -278px;
    position: fixed;
    top:0;
    width: 556px;
    z-index: 1000;
    margin-top: 25px;
}
.ow_message_node{
	font-size:14px;
	color: #fff;
	text-align:center;
	line-height: 24px;
	margin:15px;
	padding:7px 12px;
	overflow: auto;
	position:relative;
	text-transform: uppercase;
	border-radius: 4px;
}
.ow_message_node div div{
	padding-right:24px;
}
.ow_message_node a.close_button {
	display:block;
	width:13px;
	height:13px;
	float:right;
	position:absolute;
	top:13px; 
	right:14px;
	background:url(images/message_btn_close.png) no-repeat 50% 50%;
}
/*info*/
.ow_message_cont .ow_message_node.info {
	background: #25d8bc;
	border-top:1px solid #19a992;
	border-right:1px solid #19a992;
	border-bottom:1px solid #19a992;
	border-left:1px solid #19a992;
}
/*warning*/
.ow_message_cont .ow_message_node.warning {
	background: #f4b111;
	border-top:1px solid #f4b111;
	border-right:1px solid #f4b111;
	border-bottom:1px solid #f4b111;
	border-left:1px solid #f4b111;
}
/*error*/
.ow_message_cont .ow_message_node.error {
	background: #dc3c56;
	border-top:1px solid #dc3c56;
	border-right:1px solid #dc3c56;
	border-bottom:1px solid #dc3c56;
	border-left:1px solid #dc3c56;
}
/* ---- End of the Message (Feedback) styles ---- */
/*========================================================
        [15] Default Classes      __default classes
  ========================================================*/
.clr {
    clear: both;
}
/* Float */
.ow_left {
    float: left;
}
td.ow_left {
	float: none;
}
.ow_right {
    float: right;
}
.ow_center {
    text-align: center;
}
/* Text align */
.ow_txtleft,
table td.ow_txtleft {
    text-align: left;
}
.ow_txtcenter {
    text-align: center;
}
.ow_txtright {
    text-align: right;
}
/* Cursor */
.ow_cursor_pointer {
	cursor: pointer;
}
.ow_cursor_default {
	cursor: default;
}
/* Preloader */
.ow_preloader{
    background: url(images/ajax_preloader_button.gif) no-repeat center center;
}
.ow_preloader_content{
    background: url(images/ajax_preloader_content.gif) no-repeat center center;
}
.ow_ajax_floatbox_preloader {
	width: 100%;
	height: 50px;
}
.ow_side_preloader_wrap .ow_side_preloader {
	width: 22px;
	height: 22px;
	margin-top: 0;
}
/* */
.info {
    margin-bottom: 8px;
}
html body .ow_hidden{
    display: none;
}
.ow_visible {
    display: block;
}
.ow_overflow_hidden {
    overflow: hidden;
}
.ow_nocontent {
    padding: 20px 0px;
    text-align: center;
}
table.ow_nomargin,
div.ow_nomargin {
    margin-bottom:0px;
}
.ow_automargin{
    margin-left: auto;
    margin-right: auto;
}
.ow_std_margin{
    margin-bottom: 25px;
}
.ow_stdmargin{
    margin-bottom: 20px;
}
.ow_smallmargin{
    margin-bottom: 8px;
}
.ow_nowrap {
    white-space: nowrap;
}
.ow_break_word{
    word-wrap:break-word;
}
.ow_normal{
    font-size: 13px;
}
.ow_small{
    font-size: 13px;
}
.ow_tiny {
    font-size: 12px;
}
body .ow_disabled {
    background: #fff;
    color: #ACB5BB;
}
body .ow_disabled::selection,
body .ow_disabled::-moz-selection {
	color: #647774;
}	
.ow_highlight{
    background: #aaffaa;
}
.ow_outline {
    color: #007BFF; /** OW_Control type:color, section:2. Colors, key:txtValue, label:5. Numeric values **/
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_lightweight {
    font-weight: normal;
}
.ow_txt_value {
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
    color: #333333; /** OW_Control type:color, section:2. Colors, key:txtValue, label:5. Numeric values **/
}
.ow_remark {
	color: #647774; 
}
.ow_alt1,
tr.ow_alt1 td{
    background-color: #fff; 
}
.ow_alt2,
tr.ow_alt2 td{
    background-color: #fff; 
}
.ow_high1{
    background-color: #fff; 
}
.ow_high2{
    background-color: #fff;
}
.ow_anno {
	background:#fff url(images/ic_warning.svg) no-repeat scroll 15px 45%;
	border:1px solid #ccd6de;
	padding:10px;
}
.outline{
    color: #007BFF;
    font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_highbox_table .ow_highbox,
.ow_highbox {
	background: #f8fafc;
	border: none;
	box-shadow: 0px 0px 1px #cad4dd;
}
.ow_highbox {
	padding: 4px;
}
.ow_highbox_table .ow_highbox {
	height:50px;
	padding:10px;
}
th,
.ow_highbox_table .ow_highbox,
.ow_page .ow_highbox,
.ow_sidebar,
.ow_table_3 td {
	border-color: #cad4dd;
}
.ow_page td.ow_highbox {
	border-color: #cad4dd;
}
.ow_autowidth,
table.ow_form td.ow_autowidth {
    width: auto;
}
/* Tex formatter */
.alignleft{
	float: left;
}

.alignright{
	float: right;
}
.aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/*========================================================
        [16] Plugin Styles        __plugins
  ========================================================*/
/* ---- Add content styles ---- */
.ow_add_content {
    float: left;
    margin: 0px 0px 0px 0px;
    overflow: hidden;
    height: 35px;
    width: 49%;
    font-size: 13px;
    text-align: center;
    padding: 10px 0px 15px 0px;
    line-height: 60px;
}
.ow_add_content:before {
    padding-left: 17px;
    position: absolute;
    text-align: center !important;
}
html body div .ow_add_content:hover {
    font-size: 13px;
    text-align: center;
	transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
}
.ow_add_content:hover{
	text-decoration:none;
}
.ow_add_content:nth-child(odd) {
	margin-left: 0px;
}

html body div .ow_add_content.ow_ic_write:hover {
}
html body div .ow_add_content.ow_ic_files:hover {
}
html body div .ow_add_content.ow_ic_comment:before{
	padding-left: 9px;
}
html body div .ow_add_content.ow_ic_picture:before,
html body div .ow_add_content.ow_ic_calendar:before,
html body div .ow_add_content.ow_ic_video:before {
	padding-left: 7px;
}

/* ---- End of Add content styles ---- */
/* ---- Forum styles ---- */
.ow_forum{
    text-align: center;
    width: 100%;
}
.ow_forum .ow_name{
    text-align: left;
    width: 563px;
}
.ow_forum .ow_topics{
    width: 55px;
}
.ow_forum .ow_replies{
    width: 55px;
}
.ow_forum .ow_action{
    white-space: nowrap;
    width: 70px;
}
.ow_forum_topic .ow_author{
    width: 20%;
}
.ow_forum_topic .ow_posts{
    text-align: center;
    width: 1%;
}
.ow_forum_topic .ow_views{
    text-align: center;
    width: 1%;
}
.ow_forum_topic .ow_icon{
    line-height: 14px;
    text-align: center;
    width: 8%;
}
.ow_forum_topic .ow_icon .ow_lbutton:hover {
	border-color: transparent;
	cursor: default; 
}
body.htmlarea_styles blockquote.ow_quote,
blockquote.ow_quote{
    margin: 10px 0 10px 0px;
    background: #fff;
    padding: 2px 5px;
	opacity: 0.8;
}
body.htmlarea_styles blockquote.ow_quote .ow_author,
blockquote.ow_quote .ow_author{
	color: #fff;
    display: inline-block;
    padding: 2px 0;
    width: 98%;
}
body.htmlarea_styles .ow_quote_header, .ow_quote_header {
    display: block;
    padding: 6px;
    background-color: #2196F3;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
body.htmlarea_styles .ow_quote_cont_wrap,
.ow_quote_cont_wrap {
	background: url("images/quote_top.png") no-repeat right 1px;
    border-color: #cad4dd;
    border-style: solid;
    border-width: 0 1px 1px;
    display: block;
}
body.htmlarea_styles .ow_quote_cont,
.ow_quote_cont {
	background: url("images/quote_bottom.png") no-repeat 1px bottom;
    display: block;
    padding: 9px 20px;
}
.ow_forum_topic_posts .ow_post_comment{
    background-repeat: no-repeat;
    font-style: italic;
    font-size: 11px;
    margin: 10px 0;
    padding-left: 20px;
}
.ow_forum_post_area{
    height: 240px;
}
.ow_forum_status{
    font-style: italic;
}
/* First post in topic */
.ow_forum_topic_posts > .ow_box.ow_no_cap {
	border: none;
	padding: 0px;
}
.ow_forum_topic_posts > .ow_box.ow_no_cap .ow_ipc_info {
	border-color: #ccd6de;
}
/* ---- Forum sortable ---- */
.forum_placeholder{
	border: 1px dashed #999;
	background-color: #FFF9DB;
    margin-bottom: 25px;
    width: 100%;
}

tr.forum_placeholder td{
	background-color: #FFF9DB;
    border: 1px dashed #999;
	height: 45px;
    width: 100%;
}
.forum_section{
	cursor: move;
}
.forum_section_tr{
	height: 41px;
}
body .ow_forum_attachment_icon {
	width: 18px;
	height: 18px;
}
/* ---- End of Forum styles ---- */
/* ---- Mailbox styles ---- */
body .ow_mailbox_table {
	border-radius: 4px;
}
body.ow.whatsapp.mailbox_table .ow_content_menu_wrap > .ow_right > span.ow_button {
    margin-top: -55px;
}
body.ow.whatsapp.mailbox_table .ow_content_menu_wrap > .ow_right > span.ow_button span input {
    height: 34px;
}
.ow_mailbox_left_loading .ow_mailbox_left_body {
    background: url(images/ajax_preloader_content.gif) center 220px no-repeat;
}
body .ow_mailbox_right.ow_mailbox_right_loading div.ow_mailbox_right_preloading {
    background: url(images/ajax_preloader_content.gif) no-repeat center center;
}
.ow_mailbox_message_content .ow_file_attachment_info,
.ow_dialog_items_wrap .ow_file_attachment_info,
.ow_mailbox_log .ow_file_attachment_info {
	background-image: url(images/miniic_doc.png);
}
.ow_mailbox_convers_info.mails {
	background-image: url(images/miniic_envelope.svg);
}
.ow_mailbox_convers_info.chats {
	background-image: url(images/miniic_buble.svg);
}
.ow_mailbox_convers_info_attach {
    background: url(images/miniic_attach.svg) center center no-repeat;
}
.ow_mailbox_conv_options_label {
    background-image: url(images/chat_tiny_arrow_down.svg);
    line-height: 14px;
}
.ow_mailbox_convers_info {
	background-color: #fff;
}
.ow_mailbox_convers_info_new {
	background-color: #fff;
}
.ow_mailbox_convers_info_selected {
	background-color: #fff;
}
.ow_mailbox_convers_info:hover,
.ow_mailbox_convers_info_selected,
.ow_mailbox_convers_info_selected:hover {
    -webkit-box-shadow: inset 2px 0px 0px 0px #007BFF;
	-moz-box-shadow: inset 2px 0px 0px 0px #007BFF;
	box-shadow: inset 2px 0px 0px 0px #007BFF;
}
body .ow_mailbox_convers_info .ow_mailbox_convers_info_string a {
	font-size: 14px;
	text-transform: uppercase;
}
body .ow_mailbox_convers_info .ow_mailbox_convers_info_string a:hover {
	color: #333333;
}
body .ow_mailbox_convers_info_new.mails .ow_mailbox_convers_info_string a, 
body .ow_mailbox_convers_info_new.mails .ow_mailbox_convers_info_content .ow_mailbox_convers_preview, 
body .ow_mailbox_convers_info_new.chats .ow_mailbox_convers_info_content .ow_mailbox_convers_preview, 
body .ow_mailbox_convers_info_new.chats .ow_mailbox_convers_info_string a {
	font-family: 'Lato',"sans-serif","Trebuchet MS","Helvetica CY";
	font-weight: normal;
}
.ow_mailbox_convers_info span.ic_reply {
	background-image: url(images/ic_reply_g.svg);
	width: 18px;
}
.ow_mailbox_table,
.ow_mailbox_table .ow_mailbox_convers_info, 
.ow_mailbox_table .ow_mailbox_cap, 
.ow_mailbox_table .ow_mailbox_date_cap,
.ow_mailbox_table .ow_mailbox_conv_options,
.ow_mailbox_table .ow_mailbox_subject_block,
.ow_mailbox_table .ow_mailbox_log,
.ow_mailbox_table .ow_mailbox_log_date,
.ow_mailbox_table .ow_mailbox_left .ow_mailbox_cap,
.ow_mailbox_table .ow_mailbox_left .ow_mailbox_search,
.ow_mailbox_table .ow_mailbox_left .ow_mailbox_left_body,
.ow_mailbox_right .ow_chat_message_block {
    border-color: #cad4dd;
}
.ow_mailbox_log .ow_dialog_item.odd .ow_dialog_in_item,
.ow_mailbox_log .ow_dialog_item.even .ow_dialog_in_item {
    border: 1px solid #cad4dd;
}
.ow_mailbox_log .ow_dialog_item.even i,
.ow_mailbox_log .ow_dialog_item.odd i {
    display: none;
}
.ow_mailbox_log_message .ow_mailbox_convers_info_body {
	padding-top: 8px;
}
.ow_mailbox_convers_actions .ow_miniic_control {
	margin-right: 0px;
	border:1px solid transparent;
}
.ow_mailbox_convers_actions .ow_miniic_control:hover {
	border: 1px solid #cad4dd;
}
.ow_mailbox_convers_actions .ow_miniic_control span {
	width: 20px;
	height: 20px;
	background: url(images/miniic_gearwheel.svg) 0px 0px no-repeat;
}
.ow_mailbox_convers_actions .ow_miniic_control.active span {
	background: url(images/miniic_gearwheel.svg) 0px -21px no-repeat;
}
.ow_mailbox_convers_count_new,
.ow_mailbox_convers_info_date {
	text-transform: uppercase;
}
.ow_mailbox_convers_count_new {
	color: #007BFF;
}
body .ow_mailbox_username .ow_mailbox_username_text {
	font-weight: normal;
}
body .ow_mailbox_message_header a {
	font-size: 14px;
	font-weight: normal;
	font-family: 'Lato',"sans-serif","Trebuchet MS","Helvetica CY";
}
.ow_mailbox_right .ow_chat_message_block {
    border-width: 0px 0 0 0 !important;
}
body .ow_mailbox_message_content {
	font-size: 14px;
}
body .ow_mailbox_avatar {
	width: 56px;
}
body .ow_mailbox_log .ow_dialog_item.odd .ow_dialog_in_item {
    background: #ebf1eb;
    border-color: #d9ead9;
    border-radius: 15px;
    color: #273443;
    border-bottom-left-radius: 0;
}
body .ow_mailbox_log .ow_dialog_item.even .ow_dialog_in_item {
    background: #007BFF;
    border-color: #007BFF;
    border-radius: 15px;
    color: #fff;
	border-bottom-right-radius: 0;
}
body .ow_dialog_in_item p{
	line-height: 15px;
}
.message.ow_dialog_picture_item .ow_dialog_in_item {
    background: transparent !important;
    border: none !important;
}
.ow_dialog_picture_item .ow_dialog_in_item img {
    border-width: 0px !important;
    border-radius: 4px;
}
body .ow_mailbox_right .ow_mailbox_username .ow_chat_status {
	vertical-align: initial;
	margin-left: -18px;
}
div.ow_chat_status.status_online {
    background: url(images/chat_status_online.png) no-repeat center center;
}
body .ow_mailbox_username,
body .userisonline .ow_mailbox_username {
	padding: 4px 0 0 4px;
}
body .ow_mailbox_right .ow_mailbox_username {
	min-width: 200px;
}
body .ow_mailbox_cap .ow_mailbox_avatar {
	margin-top: 3px;
	margin-left: -56px;
}
.ow_mailbox_table .ow_mailbox_search input {
	-moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
/* ---- End of Mailbox styles ---- */
/* ---- Chat styles ---- */
body .ow_chat_block_wrap {
	background-color: #fff;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
body .ui-draggable-disabled ~ .ow_chat_block_wrap {
	background-color: #2196F3;
}
html body .ow_chat_block {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
body .ow_chat_in_block {
	border-bottom: 0;
}
body .ow_chat_in_block {
	border-left: 1px solid #cad4dd;
}
body span.ow_btn_sort_users span {
	background-image: url(images/chat_btn_sort.png);
}
body a.ow_btn_sound span {
	background-image: url(images/chat_btn_sound.png);
}
/*body .ow_btn_close_search {
	background-image: url(images/chat_btn_close_search.png);
}*/
.ow_count_block span.ow_count_txt {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
}
body .ow_chat_dialog_wrap .ow_count_bg, 
body .ow_chat .ow_count_bg {
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	background-color: #FFFFFF;
}
body .ow_chat_dialog_wrap .ow_count_active, 
body .ow_chat .ow_count_active {
	background-color: #2196F3;
}
body .ow_chat_dialog_wrap .ow_count, 
body .ow_chat .ow_count {
	color: #2196F3;
	padding: 0px 0px 0px 0px;
}
body a.ow_btn_sound:hover span, 
body span.ow_btn_sort_users:hover span {
	background-color: transparent;
	border-color: transparent;
}
body .ow_chat_block .ow_chat_search {
	border-top: none;
	border-color: #cad4dd;
}
body .ow_chat_block_main .ow_chat_search input[type="text"], 
body .ow_chat_block_main .ow_chat_search input[type="password"] {
	color: #4c4c4c;
	background-color: #fff;
}
body .ow_chat_in_block,
body .ow_chat_list ul {
	background-color: #fff;
}
body .ow_chat_block_main .ow_chat_search input[type="text"].invitation, 
body .ow_chat_block_main .ow_chat_search input[type="password"].invitation {
	color: #999;
}
.ow_chat_dialog.ow_open .ow_chat_in_item_photo {
    border: 2px solid #FFF;
    border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.ow_chat_in_item_photo img {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.ow_chat_list ul li a.ow_chat_item:hover {
	background-color: #2196F3;
}
body .ow_chat_block.ow_active .ow_count_block a:hover {
	background-image: url(images/photo_view_context.png);
	background-position: 233px 7px;
}
.ow_chat_dialog.ow_open a.ow_chat_item_author_wrap:hover,
body .ow_mailchat_new_message.ow_chat_dialog_active .ow_author_block a.ow_chat_item_author_wrap:hover,
body .ow_mailchat_new_message.ow_chat_dialog_active .ow_mailchat_select_user a.ow_chat_minimize_btn {
	background-image: url(images/photo_view_context_up.png);
}
.ow_chat_dialog.ow_open.ow_active a.ow_chat_item_author_wrap:hover,
body .ow_mailchat_new_message.ow_chat_dialog.ow_active .ow_author_block a.ow_chat_item_author_wrap:hover,
body .ow_mailchat_new_message .ow_mailchat_select_user a.ow_chat_minimize_btn {
	background-image: url(images/photo_view_context.png);
}
body .ow_count_block a:hover {
	background-image: url(images/photo_view_context_up.png);
	background-position: 233px 7px;
}
body .ow_mailchat_new_message .ow_mailchat_select_user a.ow_chat_minimize_btn {
	background-position: center 7px;
}
.ow_top_panel,
.ow_chat_block .ow_bot_panel {
	border-width: 1px 0 0 1px;
}
.ow_chat_block.ow_active .ow_bot_panel {
	border-width: 0 0 0 1px;
}
.ow_chat_block .ow_top_panel {
	border-style: solid;
	border-color: #1976D2;
	background-color: #2196F3;
}
body span.ow_chat_item_author, 
body span.ow_chat_item_text,
body .ow_chat_dialog_wrap .ow_chat_message_block .ow_chat_message textarea,
body .ow_mailchat_new_message.ow_chat_dialog.ow_active .ow_mailchat_select_user input,
html body .ow_chat_dialog .ow_chat_subject_block input,
body .ow_mailchat_autocomplete_inner span.ow_chat_item_author .ow_chat_in_item_author {
	color:#333333;
	font-weight: normal;
}
.userFieldUserListItem span.ow_chat_item_photo {
    margin: 0px 0 0 2px;
}
a.clearfix.ow_chat_item:hover {
    background-color: #2196F3;
    color: #fff;
}
.ow_chat_list ul li a.ow_chat_item:hover span.ow_chat_item_author {
    color: white;
}
body .ow_author_block span.ow_chat_item_author {
	color:#FFFFFF;
}
.ow_chat_item_author_wrap .ow_chat_item_author span {
    margin: 0 10px 0 10px;
    color: #fff;
}
body .ow_chat_dialog {
	background-color: #36353b;
}
body .ow_chat_dialog.ow_active {
	background-color: #fff;
}
body .ow_mailchat_new_message.ow_chat_dialog {
	border: 1px solid #cad4dd;
}
body .ow_diagonal_puller {
	background-image: url(images/diagonal_puller.png);
}
.ow_author_block a.ow_btn_close span {
	background-image: url(images/chat_btn_close.png);
}
body a.ow_btn_close:hover {
	background: none;
}
body .ow_chat_dialog {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
html body .ow_chat_dialog .ow_chat_block {
	border: none;
}
body .ow_chat_dialog .ow_author_block {
	border-width: 1px 1px 0 1px;
	border-style: solid;
	border-color: #1976D2;
    background-color: #2196F3;
}
body .ow_chat_dialog .ow_mailchat_select_user.ow_author_block {
	border-width: 0;
	border-bottom: 1px solid #cad4dd;
}
body .ow_chat_in_dialog_wrap {
	border-color: #cad4dd;
	border-width: 0 1px 1px;
}
body .ow_dialog_date_cap {
	color: #647774;
	background-color: #fff;
	border-color: #cad4dd;
}
.ow_chat_message_block {
	border-width: 0 1px;
	border-style: solid;
	border-color: #cad4dd;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body .ow_chat_in_dialog,
body .ow_mailchat_new_message .ow_chat_mailchat_inputarea,
body .ow_chat_dialog .ow_chat_subject_block input,
body .ow_mailchat_new_message.ow_chat_dialog .ow_mailchat_select_user.ow_author_block,
body .ow_mailchat_new_message .ow_mailchat_select_user input {
	background-color: #fff;
}
body .ow_chat_dialog_wrap .ow_chat_message_block .ow_chat_message textarea.invitation,
body .ow_chat_in_dialog .ow_time_block p span.ow_time_text,
body .ow_mailchat_new_message.ow_chat_dialog .ow_mailchat_select_user.ow_author_block,
body .ow_chat_dialog .ow_chat_subject_block input {
	color: #647774;
}
body .ow_mailchat_new_message.ow_chat_dialog_active .ow_mailchat_select_user.ow_author_block {
	background-color: #36353b;
}
.ow_mailchat_new_message.ow_chat_dialog.ow_chat_dialog_active .ow_mailchat_select_user .ow_mailchat_new_message_title {
	color: #9b9a9d;
}
body .ow_chat_dialog_active.ow_mailchat_new_message .ow_mailchat_select_user.ow_author_block {
	border-bottom-color: #36353b;
}
.ow_chat_block .ow_dialog_item.odd .ow_dialog_in_item {
	background: #ebf1eb;
    border-color: #d9ead9;
    border-radius: 15px;
	font-size: 13px;
    border-bottom-left-radius: 0;
}
.ow_chat_block .ow_dialog_item.odd .ow_dialog_in_item p {
    color: #273443;
}
.ow_chat_block .ow_dialog_item.even .ow_dialog_in_item {
	background: #007BFF;
    border-color: #007BFF;
    border-radius: 15px;
	font-size: 13px;
	border-bottom-right-radius: 0;
}
.ow_chat_block .ow_dialog_item.even .ow_dialog_in_item p {
    color: #ffffff;
}
body .ow_chat_dialog_wrap .ow_attachments a.attach {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	width: 22px;
	background: url(images/wysiwyg.png) no-repeat scroll -241px 5px rgba(0, 0, 0, 0);
}
body .ow_chat_dialog_wrap .ow_attachments a.attach.uploading,
body .ow_chat_preloader,
body .ow_mailchat_new_message .ow_file_attachment_preload {
	background-image: url(images/ajax_preloader_button.gif);
}
body .ow_chat_preloader {
	height: 22px;
	width: 22px;
}
body form .ow_chat_mailchat_inputarea .toolbar,
body .ow_mailchat_autocomplete ul li a:hover {
	background-color: #fff;
}
body .ow_chat_dialog .ow_chat_subject_block input,
.ow_mailchat_new_message.ow_chat_dialog .ow_author_block.ow_mailchat_selected_user {
	border: none;
}
body .ow_mailchat_new_message .ow_chat_mailchat_inputarea,
body .ow_mailchat_new_message .ow_file_attachment_info {
	border-color: #cad4dd;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
body .ow_chat_mailchat_buttons {
	border: none;
	background-color: #fff;
}
body .ow_chat_mailchat_buttons .ow_attachment_btn span.ow_button,
body .ow_chat_mailchat_buttons .ow_attachment_btn span.ow_button span {
	border: none;
	background: transparent;
	padding: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	margin: 0;
}
body .ow_chat_mailchat_buttons .ow_attachment_btn span.ow_button:hover {
	background-color: #333333;
}
body .ow_chat_mailchat_buttons .ow_attachment_btn span.ow_button input[type="submit"], 
body .ow_chat_mailchat_buttons .ow_attachment_btn span.ow_button input[type="button"] {
	text-shadow: none;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	color: #a2acb3;
	height: 24px;
}
body .ow_chat_mailchat_buttons .ow_attachment_btn span.ow_button input[type="submit"]:hover, 
body .ow_chat_mailchat_buttons .ow_attachment_btn span.ow_button input[type="button"]:hover {
	color: #fff;
}
body .ow_chat_dialog_wrap .ow_attachments .buttons {
	background-color: #fff;
}
body form .ow_chat_mailchat_inputarea .toolbar ul li a {
	background-image: url(images/wysiwyg.png);
	border: none;
}
body .ow_mailchat_new_message .ow_mailchat_select_user .ow_mailchat_autocomplete {
	top: 39px;
	border-top-width: 1px;
}
body .ow_chat_dialog .ow_chat_subject_block input {
	font-size: 13px;
}
body .toolbar ul li a {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
body .ow_mailchat_new_message .ow_file_attachment_close,
body .ow_mailchat_new_message.ow_chat_dialog.ow_active .ow_author_block .ow_mailchat_delete_receiver {
	background-image: url(images/tag_close_btn.png);
}
body .jspDrag {
	background-color: #ccc;
}
.ow_chat .ow_chat_block .ow_count_block a {
	height: 20px;
}
.ow_chat_block .ow_count_wrap {
	vertical-align: text-bottom;
}
.ow_chat .ow_chat_block .ow_bot_panel .ow_count_block {
	padding-top: 2px;
}
body .ow_chat_dialog_wrap .ow_dialog_item i {
	display: none;
}
/* ---- End of Chat styles ---- */
/* ---- Blogs styles ---- */
.ow_blogpost_compose textarea{
    height: 235px;
}
/* ---- End of Blogs styles ---- */
/* ---- Rates Styles ---- */
.inactive_rate_list, .active_rate_list {
    background: url(images/stars.png) no-repeat 0 -13px;
    width: 65px;
    height: 13px;
    text-align: left;
    display: inline-block;
}
.active_rate_list {
    background-position: 0 0;
}
.rates_cont a.rate_item {
    background: url(images/stars.png) no-repeat 0 -13px;
    cursor: pointer;
    float: left;
    height: 13px;
    text-decoration: none;
    width: 13px;
}
.rates_cont a.active {
    background-position: 0 0;
}
.rates_cont{
    margin: 0 auto;
	width: 65px;
}
.ow_rate_score{
    font-size: 20px;
}
/* ---- End of Rates Styles ---- */
/* ---- Video styles ---- */
.ow_video_list .ow_alt1,
.ow_video_list .ow_alt2 {
	padding: 24px 0px 24px 0px;
	-webkit-align-content: stretch; 
  	align-content: stretch;
  	justify-content: center;
}
.ow_video_list .ow_alt1.clearfix,
.ow_video_list .ow_alt2.clearfix {
	display: flex;
}
.ow_video_player {
    text-align: center;
}
.ow_video_player iframe {
    width: 100%;
    height: 398px;
}
.ow_video_description {
    margin: 0px 0 16px;
    background-color: #fff;
    border: 1px solid #cad4dd;
    padding: 8px;
}
.ow_comments_ipc .ow_box_cap_empty, .ow_comments_ipc .ow_box_empty {
    background-color: white;
    border: 1px solid #cad4dd;
}
.ow_comments_ipc .ow_box_cap_empty {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.ow_comments_ipc .ow_box_empty {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
.ow_comments_ipc .ow_box_cap_empty {
    margin-bottom: -1px;
}
.ow_comments_ipc .ow_box_empty .ow_comments_item.clearfix {
    border-top: 1px solid #cad4dd;
}
.ow_video_list_item {
    /* margin: 0px 3.5%; */
    /* max-height: none; */
    /* width: 120px; */
}
.ow_other_video_item_title {
    margin-left: 92px;
    padding-left: 4px;
    text-overflow: ellipsis;
}
.ow_video_thumb{
    background: url(images/video-no-video.png) no-repeat center center;
    display: block;
}
.ow_video_thumb,
.ow_video_list_item img{
    height: 90px;
    width: 120px;
}
.ow_other_video_thumb{
    display: block;
    margin-right: -80px;
    padding: 2px 2px 2px 2px;
	background-color: transparent;
    border: solid 1px transparent;
}
.ow_other_video_thumb a {
	display: inline-block;
	width: 80px;
	height: 60px;
    background: url(images/video-no-video.png) no-repeat center center;	
}
.video_thumb_no_title {
	margin: 0px 4px 4px 0px;
}
.ow_other_video_thumb,
.ow_other_video_thumb img,
.ow_other_video_floated img{
    height: 60px;
    width: 80px;
}
.ow_other_video_floated{
    display: inline-block;
    background: #fff url(images/video-no-video.png) no-repeat center center;
    width: 80px;
    height: 60px;
    vertical-align: middle;
}
.ow_video_item_title{
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
	padding-bottom: 3px;
}
.ow_video_item_rate{
    height: 15px;
    text-align: center;
	margin-top: 5px;
}
.ow_video_infobar{
    padding: 10px;
    text-align: right;
}
.ow_video_player object,
.ow_video_player embed {
	max-width: 100%;
}
/* ---- End of Video styles ---- */
/* ---- Photo styles ---- */
.ow_photo_dragndrop {
    font-family: 'Lato',"sans-serif","Trebuchet MS","Helvetica CY";
    text-transform: uppercase;
    color: #333333;
    background-color: rgba(255, 255, 255, 0.59);
    border: 1px solid #cad4dd;
    font-size: 15px;
}
.ow_photo_upload_bottom .ow_photo_upload_submit {
    position: static;
}
.ow_photo_upload_wrap .ow_photo_preview_block_wrap .ow_photo_preview_edit {
    border: 1px solid #cad4dd;
}
.ow_photo_preview_image {
    background-color: #fafafa;
}
.ow_photo_preview_loading {
    background-image: url(images/ajax_preloader_content.gif) !important;
    background-size: auto !important;
}
.ow_photo_preview_image_filter {
    background: #000;
}
.ow_photo_preview_x {
    background: url(images/photo_upload_btn_x.png) center center no-repeat;
}
.ow_photo_preview_rotate {
    background: url(images/photo_upload_btn_rotate.png) center center no-repeat;
}
.ow_photo_prev{
    background-repeat: no-repeat;
    background-position: right center;
    text-align: left;
    width: 39%;
}
.ow_photo_next{
    background-repeat: no-repeat;
    background-position: left center;
    text-align: right;
    width: 39%;
}
.ow_photo_list_item{
    float: left;
    height: 165px;
    padding: 16px 0px;
    text-align: center;
}
.ow_photo_info_str{
    padding-top: 5px;
}
.ow_photo_infobar{
    padding: 10px;
    text-align: right;
}
.ow_photo_rate{
    height: 15px;
    text-align: center;
}
html body div.floatbox_photo_preview a.ow_ic_delete.close,
html body div.floatbox_empty a.ow_ic_delete.close {
	background-image: url('images/photo_prev_x.png');
}
.floatbox_empty .ow_box_cap_icons {
    top: -20px;
    right: -20px;
}
.ow_photo_list_item_thumb span.ow_lbutton:hover {
	cursor: default;
}
.ow_photo_list_item_thumb {
	width: 120px;
	height: 120px;
	padding: 4px 6px 6px 20px;
	background: transparent url('images/photo_list_item_thumb.png') no-repeat 15px 0px;
}
.ow_photo_list_item_thumb img {
	width: 120px;
	height: 120px;
}
body .ow_photo_list_item_thumb span.ow_lbutton {
	bottom: 6px;
	right: 6px;
}
.ow_photo_submit_wrapper.ow_mild_green {
	background-color: #57ba98;
}
/*Photo list*/
body .ow_photo_list_wrap div.ow_photo_item {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.ow_photo_item_info {
	font-size: 14px;
}
.ow_photo_list_wrap .ow_photo_item_wrap .ow_photo_item_info {
    background-color: rgba(255, 255, 255, 0.9);
}
.ow_photo_item_wrap .ow_photo_item img {
	border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.ow_photo_album_info_wrap {
    border-bottom: 1px solid #cad4dd;
}
.ow_photo_album_cover {
    border-color: #cad4dd;
}
.ow_photo_album_edit .ow_photo_album_cover .ow_lbutton {
	visibility: hidden;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	padding: 54px 0 0;
	background: none rgba(255,255,255,0.9);
}
.ow_photo_album_edit .ow_photo_album_cover:hover .ow_lbutton {
	visibility: visible;	
}
.ow_photo_album_edit .ow_photo_album_cover .ow_lbutton:hover {
	border-color: transparent;
}
body .ow_photo_album_info_wrap .ow_photo_album_info .ow_photo_album_description_textarea,
body .ow_photo_album_info_wrap .ow_photo_album_info .ow_photo_album_description {
    color: #333333; 
}
/* Photo context action */
.ow_photo_item .ow_photo_context_action {
	border: none;
	background-color: #2196F3;
	border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    top: 0;
    right: 0;
}
body .ow_photo_context_action .ow_tooltip .ow_tooltip_body {
	border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
body .ow_photo_context_action .ow_context_action_block .ow_context_action,
html body .ow_photo_context_action .ow_context_action {
	border: none;
}
.ow_photo_context_action .ow_context_action:hover {
	background: url(images/photo_context_action_bg_active.png) repeat-x 0px 0px;
}
.ow_photo_context_action .ow_context_action_list.ow_alt2 {
	background: transparent;
}
.ow_photo_item .ow_photo_context_action.ow_photo_context_action_loading .ow_tooltip_body {
    background-image: url(images/ajax_preloader_content.gif);
}
body .ow_photo_context_action .ow_context_action {
    background-image: url(images/context_action_arrow_p.svg);
    background-color: transparent;
    width: 24px;
    height: 23px;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
body .ow_photo_context_action .ow_context_action:hover {
    background-color: rgba(144,144,144, 0.3);
    background-image: url(images/context_action_arrow_p.svg);
}
body .ow_photoview_stage_wrap .ow_photo_context_action .ow_context_action,
body .ow_photoview_stage_wrap .ow_photo_context_action .ow_context_action:hover {
	background-image: url(images/context_action_arrow_p.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
body .ow_photoview_stage_wrap .ow_photo_context_action .ow_context_action .ow_context_more {
	background-image: none;
}
.ow_photo_context_action .ow_context_action_divider {
    background-color: rgba(160,160,160,0.7);
}
.ow_photo_context_action .ow_context_action_divider:hover {
    text-decoration: none;
}
/* Photo View */
.ow_photoview_stage_wrap_fullscreen .ow_photoview_fullscreen {
    background-image: url(images/fullscreen_min.png);
}
.ow_photoview_fullscreen {
    background-image: url(images/fullscreen_max.png);
}
.ow_photoview_play_btn {
    background-image: url(images/fullscreen_play.png);
}
.ow_photoview_play_btn.stop {
	background-image: url(images/fullscreen_stop.png);
}
.ow_photoview_info_btn.open {
	background-image: url(images/fullscreen_info_open.png);
}
.ow_photoview_info_btn.close {
	background-image: url(images/fullscreen_info_close.png);
}
.ow_photoview_slide_settings_btn {
    background-image: url(images/fullscreen_settings.png);
}
.ow_photoview_arrow_left {
    background-image: url(images/photoview_arrow_left.png);
}
.ow_photoview_arrow_right {
    background-image: url(images/photoview_arrow_right.png);
}
.ow_context_action_list a.ow_context_action_item_hierarchy_right span {
    background: url(images/miniic_arrow_left_bb.png) no-repeat center center;
}
.ow_context_action_list a.ow_context_action_item_hierarchy_left span {
     background: url(images/miniic_arrow_right_bb.png) no-repeat center center;
}
.ow_photoview_info_wrap .ow_photoview_user .ow_user_list_data a:first-child {
	font-weight: normal;
	font-family: 'Lato', "sans-serif", "Trebuchet MS", "Helvetica CY";
}
.ow_photoview_info_wrap .ow_photoview_user .ow_user_list_data div, 
.ow_photoview_info_wrap .ow_photoview_user .ow_user_list_data a {
	line-height: inherit;
}
.ow_photoview_info_wrap .ow_photoview_description {
	padding: 0 16px;
}
.ow_photoview_info .ow_comments_form_wrap {
	padding-left: 0px;
}
/* Pint Mode */
body .ow_photo_pint_mode .ow_photo_item_wrap .ow_photo_item_info {
    background-color: #fff;
    border: 1px solid #cad4dd;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.ow_photo_pint_mode .ow_photo_item_info_user,
.ow_photo_pint_mode .ow_photo_item_info_album,
.ow_photo_pint_mode .ow_photo_item_info_description,
.ow_photo_pint_mode .ow_photo_item_info .ow_rates_wrap {
    color: #333333;
	opacity: 1;
}
.ow_photo_list.ow_photo_edit_mode .ow_photo_item .ow_photo_chekbox_area {
    background-color: rgba(255,255,255,0.4);
}
.ow_photo_list.ow_photo_edit_mode .ow_photo_item.ow_photo_item_checked .ow_photo_chekbox_area,
.ow_photo_list.ow_photo_edit_mode.ow_photo_pint_mode .ow_photo_item .ow_photo_chekbox_area {
    background-color: rgba(255,255,255,0);
}
.ow_photo_edit_mode .ow_photo_chekbox_area .ow_photo_checkbox {
    border: 1px solid rgba(255,255,255,0.6);
    background-color: rgba(87,87,87, 0.6);
}
.ow_photo_edit_mode .ow_photo_item_checked .ow_photo_chekbox_area .ow_photo_checkbox {
    background-image: url(images/checkbox_icon.png);
}
body .ow_photo_list.ow_photo_pint_mode .ow_photo_item {
    background: transparent;
    box-shadow: none;
    border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}
/*Searchbar*/
.ow_searchbar {
	border:1px solid #cad4dd;
	padding: 2px 4px 3px 6px;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	background: #fff;
	margin-top: -5px;
	margin-right: -5px;
}
.ow_searchbar .ow_searchbar_ac {
    border: 1px solid #cad4dd;
    left: 9px;
    right: 0;
    top: 2px;
}
.ow_searchbar_ac li {
    background-color: #fff;
    font-size: 13px;
}
.ow_searchbar_ac li:hover {
    background-color: #cad4dd;
    color: #fff;
}
.ow_searchbar .ow_searchbar_btn {
	background-position: center;
}
.ow_searchbar .ow_searchbar_input input[type="text"] {
	border: none;
	background: none;
	line-height: 14px;
	font-size: 12px;
}
/*Rates*/
.ow_photoview_info_wrap .ow_photoview_info .ow_rates_wrap {
    padding-left: 16px; 
    margin: 6px 0 8px 0;
}
.ow_photo_item .ow_photo_item_info .ow_rates_wrap span {
    vertical-align: middle;
}
.ow_rates {
    width: 65px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}
.ow_rates .rates_cont {
    position: absolute;
    opacity: 0;
    transition: opacity 0.15s;
    -moz-transition: opacity 0.15s;
    -webkit-transition: opacity 0.15s;
}
.ow_rates:hover .rates_cont {
    opacity: 1;
}
.rate_title {
	color: #8e8d8d;
}
/* Edit Photo */
.floatbox_container .ow_photo_upload_description {
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}
/*Dropdown*/
body input.ow_dropdown_btn {
    background-image: none;
    height: 28px;
}
.ow_dropdown_arrow_down,
.ow_dropdown_arrow_up {
    height: 10px;
    position: absolute;
    right: 8px;
    top: 9px;
    width: 12px;
    cursor: pointer;
}
.ow_dropdown_arrow_down {
    background: url(images/chat_tiny_arrow_down.png) no-repeat center center;
}
.ow_dropdown_arrow_up {
    background: url(images/chat_tiny_arrow_up.png) no-repeat center center;
}
.ow_dropdown_list_wrap {
    position: relative;
    width: 100%;
}
.ow_dropdown_list {
    border: 1px solid #cad4dd;
    position: absolute;
    top: -1px;
    left: 0;
    width: 99%;
    margin-left: 0.5%;
    display: none;
}
.ow_dropdown_list li {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 4px;
    background-color: #fff;
    color: #4c4c4c;
    cursor: pointer;
    position: relative;
}
.ow_dropdown_list li:hover {
    background-color: #cad4dd;
    color: #fff;
}
.ow_add_item {
    position: absolute;
    background: url(images/miniic_plus.png) center center no-repeat;
    width: 10px;
    height: 10px;
    right: 8px;
    top: 50%;
    margin-top: -5px;
}
li.ow_dropdown_delimeter {
    padding: 0 4px;
}
.ow_dropdown_delimeter div {
    width: 100%;
    height: 1px;
    background-color: #cad4dd;
}
.ow_photo_upload_drop_area {
    border: 1px dashed #cad4dd;
}
/* ---- Newsfeed styles ---- */
body ul.ow_newsfeed {
	padding: 0px;
}
.ow_newsfeed_section {
    list-style-image: none;
    margin: 15px 0;
}
.ow_newsfeed_section span{
    background: #f0f0f0;
    padding: 5px 10px;
    text-shadow: #fff 1px 1px 0;
}
.base_cmnt_mark .ow_ipc_info {
	padding-bottom: 0px;
}
.ow_newsfeed_features .ow_tooltip .ow_tooltip_body {
    padding: 0;
    border-width: 0;
   	box-shadow: none;
}
.ow_newsfeed_comments {
    background-color: #f2f9f2;
}
.ow_comment_list_loader.ow_feed_comments_viewall {
	border-bottom: none;
}
.ow_newsfeed_features .ow_tooltip.ow_comments_context_tooltip .ow_tooltip_body {
	border: 1px solid #cad4dd;
	padding: 4px 0;
}
.ow_newsfeed_features .ow_tooltip .ow_tooltip_tail span {
    height: 5px;
    background: none;
    position: relative;
    z-index: 1;
}
.ow_newsfeed_comments .ow_tooltip .ow_tooltip_tail span {
    height:6px;
    background-position: 3px -6px;
    background-image: url(images/tooltip_tail.png);
}
.ow_newsfeed_features .ow_tooltip .ow_tooltip_body .ow_tooltip .ow_tooltip_body {
}
.ow_newsfeed_features .ow_context_action_list a,
.ow_newsfeed_item .ow_context_action_list a,
.ow_photo_context_action .ow_context_action_list a {
	padding: 4px 12px;
}
.ow_newsfeed_context_tooltip {
	margin-top: 2px;
}
.ow_newsfeed_left {
	float: left;
}
.ow_newsfeed_date {
	float: right;
	text-align: right;
	line-height: 24px;
}
.ow_newsfeed_context_menu {
    display: none;
    position: absolute;
    right: 6px;
    top: 14px;
}
.ow_newsfeed_control {
	display: inline-block;
	font-size: 14px;
}
.ow_newsfeed_control > a {
	margin-right: 12px;
}
body .ow_newsfeed_control .ow_newsfeed_string {
	display: inline-block;
	vertical-align: middle;
	max-width: 74%;
	padding-left: 0px;
}
.ow_newsfeed_left {
	width: 76%;
}
.ow_newsfeed_btns {
    margin-top: 0px;
    margin-bottom: 6px;
    padding: 8px 16px 0px 16px;
    border-top: 1px solid #cad4dd;
}
.ow_newsfeed_btn_wrap {
	display: inline-block;
	line-height: 25px;
	margin-right: 4px;
	vertical-align: middle;
    padding: 1px 5px 1px 1px;
}
.newsfeed_counter_comments,
.newsfeed_counter_likes {
	vertical-align: middle;
}
.ow_newsfeed_item .ow_newsfeed_activity_content {
	padding-top: 8px;
}
.ow_newsfeed_item .ow_newsfeed_item_picture {
	margin-right: 8px;
}
.ow_newsfeed_oembed_atch .ow_newsfeed_item_picture {
    margin-top: 0px !important;
}
.ow_newsfeed_item_picture + .ow_newsfeed_item_content {
    float: left;
    width: 95% !important;
    max-width: 466px !important;
}
.ow_newsfeed_oembed_atch.ow_video_playing .ow_newsfeed_item_picture,
.ow_oembed_attachment .video.two_column.ow_video_playing .attachment_left {
	height: 0;
	width: 100%;
	max-width: 480px !important;
	position: relative;
	padding-bottom: 56.25%;
}
.floatbox_body iframe {
	min-width: 100% !important;
}
.ow_newsfeed_item_picture iframe,
.attachment_left iframe {
	width: 100% !important;
	position: absolute;
	height: 100% !important;
	left: 0;
	top: 0;
}
.ow_miniic_control {
	display: inline-block;
	vertical-align: middle;
	margin-right: 4px;
}
.ow_miniic_control span {
	display: inline-block;
	width: 27px;
	height: 26px;
}
.ow_miniic_like {
	background-position: 0px 0px;
}
.ow_miniic_comment {
	background-position: 0px 0px;
}
.ow_miniic_control.active .ow_miniic_like {
	background-position: 0px -37px;
}
.ow_miniic_control.active .ow_miniic_comment {
	background-position: -37px -37px;
}
body .ow_newsfeed_doublesided_stdmargin {
	margin: 16px 0px;
}
body .newsfeed-attachment-preview.item_loaded {
	width: 98.7%;
	margin-left: 0px;
	margin-right: 0px;	
}
.ow_newsfeed_item_picture {
    float: left;
    width: auto;
    margin-right: 1%;
    background-color: transparent;
    border: solid 1px transparent;
    padding: 2px;
}
.ow_newsfeed_large_image .ow_newsfeed_item_picture {
    max-width: none;
    width: 99%;
    height: auto;
}
.ow_newsfeed_large_image .ow_newsfeed_item_content {
    width: 100%;
    max-width: none;
}
.ow_newsfeed_item_picture img {
    max-height: none;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.ow_newsfeed_photo_grid {
    max-width: none;
    width: 100%;
    margin-left: 2px;
}
.ow_newsfeed_photo_grid_item {
	padding: 0px 4px 4px 0px; 
	box-sizing: border-box;
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	width: 50%; 
	float: left;
}
.ow_newsfeed_photo_grid_3 .ow_newsfeed_photo_grid_item {
	width: 33.3%;
}
.ow_newsfeed_photo_grid_item a {
	float: left;
	box-sizing: border-box;
	border-radius: 4px;
	background-size: cover;
	width: 100%;
}
.ow_newsfeed_tooltip {
	padding-top: 0px;
}
.ow_newsfeed_tooltip > .ow_tooltip_tail {
	display: none;
}
.ow_newsfeed .ow_newsfeed_features {
	max-width: none;
    background-color: #f2f9f2;
}
.ow_newsfeed .ow_newsfeed_body {
	margin-left: 56px;
	border: 0px solid #cad4dd;
	padding: 14px 0px 0px;
}
.ow_newsfeed_string,
.ow_newsfeed_content,
.ow_newsfeed_toolbar {
	padding-left: 12px;
}
.ow_newsfeed_item  .ow_newsfeed_delimiter {
	border: none;
}
.ow_newsfeed_string.ow_small {
    font-size: 14px;
    padding-bottom: 4px;
    color: #666666;
}
.ow_newsfeed_content.ow_smallmargin {
    border-top: 1px solid #cad4dd;
    padding-top: 12px;
	padding-right: 12px;
    padding-bottom: 4px;
}
.ow_newsfeed_item .ow_newsfeed_item_picture .ow_oembed_video_cover {
    background-color: transparent !important;
}
.ow_more_text span a {
    color: #00776b;
}
.ow_ipc_content .ow_smallmargin {
    color: #666666;
}

.profile-NEWSFEED_CMP_UserFeedWidget .ow_status_update_btn_block .ow_attachments a,
.dashboard-NEWSFEED_CMP_MyFeedWidget .ow_status_update_btn_block .ow_attachments a,
.group-NEWSFEED_CMP_EntityFeedWidget .ow_status_update_btn_block .ow_attachments a,
.index-NEWSFEED_CMP_SiteFeedWidget .ow_status_update_btn_block .ow_attachments a {
	width: 27px;
	height: 20px;
	background: url(images/ic_photo_attach.svg) no-repeat 0 0;
}
.profile-NEWSFEED_CMP_UserFeedWidget .ow_status_update_btn_block .ow_attachments a:hover,
.dashboard-NEWSFEED_CMP_MyFeedWidget .ow_status_update_btn_block .ow_attachments a:hover,
.group-NEWSFEED_CMP_EntityFeedWidget .ow_status_update_btn_block .ow_attachments a:hover,
.index-NEWSFEED_CMP_SiteFeedWidget .ow_status_update_btn_block .ow_attachments a:hover {
	background-position: 0 -43px;
}
.ow_status_update_btn_block {
	line-height: 22px;
}
/* ---- Group styles ---- */
.ow_group_brief_info .image img {
    border-radius: 4px;
}
body .ow_group_brief_info .details {
	padding-left: 8px;
}
body .ow_group_brief_info .details .body.ow_smallmargin {
    color: #647774;
}
/* ---- End of the Group styles ---- */

/* ---- Membership Subscribe styles ---- */
.ow_subscribe_table .ow_highbox {
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}
body .ow_table_1 tr td.ow_plans_td_empty + td {
	border-top-left-radius: 8px;
}
body .ow_table_1 tr td.ow_gateways_td_empty + td {
	border-bottom-left-radius: 8px;	
}
/* ---- End of the Membership Subscribe styles ---- */
/* ---- SignIn Form styles ---- */
.ow_sign_in_cont {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background:#fff;
	z-index:97;
}
.ow_sign_in_wrap {
    width: 702px;
    background: url(images/welcome-to-3.png); /** OW_Control type:image, key:signBoxImage, section:4. Theme Settings, label: 13. Sign-in Box background image, description: Welcome Couple on pop-up sign-in Box - size 353px x 444px **/
    background-repeat: no-repeat;
    background-position: right top;
}
.ow_sign_in_wrap h2 {
    font-size: 0px;
    line-height: 60px;
    margin: -9px 350px 30px 8px;
    padding: 0 40px;
    color: #000;
    background-image: url(images/open-network-logo.png); /** OW_Control type:image, key:signBoxlogoImage, section:4. Theme Settings, label: 14. Sign-in Box Logo image, description: pop-up sign-in Box Logo **/
    background-repeat: no-repeat;
    background-position: top center;
	background-size: contain;
}
.ow_sign_in_wrap form{
	margin: 8px;
	padding: 40px 40px 22px 40px;
	background: transparent;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	box-shadow:0 2px 6px rgba(0, 0, 0, 0.2);
	border:1px solid #e7e7e7;
}
.ow_sign_in_wrap form .ow_sign_in{float:left; width:312px;}
.ow_sign_in_wrap form .ow_sign_in {
    float: none;
    width: 100%;
}
.ow_sign_in_wrap form .ow_sign_up {
	margin:0px 0 0 342px;
	padding-top: 7px;
    line-height: 18px;
    font-size: 17px;
    margin: 0 0 0px 0;
    padding: 0;
}
.ow_sign_in_wrap form .ow_sign_up hr {
    margin: 5px 0 5px;
    background-color: transparent;
}

.ow_sign_in_wrap form .ow_sign_up p {
   text-align: left;
    margin-left: 10px;
}
.ow_sign_in_wrap form .ow_box_cap{
	margin-bottom:0;
	position:relative;
	z-index:99;
	display: none;
}
.ow_sign_in_wrap form .ow_box{
	padding:16px 16px 6px 16px;
	margin-bottom:16px;
	position:relative;
	z-index:98;
}
.ow_sign_in_wrap form .ow_box {
    margin: 0 0 2px 0;
    padding: 0;
    background: none;
    border: none;
	box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.ow_user_name {
    margin-bottom: 6px;
}
.ow_user_name input, .ow_password input {
    background: rgba(255, 255, 255, 0.71);
    border: 1px solid rgba(39, 111, 171, 0.54);
    color: #111;
    font-size: 16px;
    padding: 2px 12px;
    height: 45px;
    border-radius: 50px;
}
.ow_user_name input:focus,
.ow_password input:focus {
    background: rgba(255, 255, 255, 0.81);
    border: 1px solid rgba(39, 171, 158, 0.64);
}

.ow_sign_in_wrap form .ow_user_name input[type="text"] {
    /* margin-bottom: 8px; */
}
.ow_sign_in_wrap form .ow_password input[type="password"] {margin-bottom:8px;}

.ow_sign_in_wrap form .ow_form_options {margin-bottom:6px;}
.ow_sign_in_wrap form .ow_form_options p.ow_remember_me,
.ow_sign_in_wrap form .ow_form_options p.ow_forgot_pass {font-size:11px; padding:0 0 0 20px; line-height: 13px;}
.ow_sign_in_wrap form .ow_form_options p.ow_remember_me {padding-bottom:5px;}
.ow_sign_in_wrap form .ow_form_options p.ow_remember_me input[type="checkbox"]{float:left; margin:0px 0 0 -20px; padding:0px;}


.ow_sign_in_wrap form .ow_connect_buttons {padding: 0 0 0 20px;}
.ow_sign_in_wrap form .ow_connect_buttons .ow_fb_button {float:left;}

.ow_connect_text {
	background: url('images/miniic_li.png') no-repeat left center;
	padding: 0px 0 0 26px;
	margin-right: 16px;
	float: left;
	line-height: 23px;
}
.ow_sign_in .connect_button_list {
    padding: 7px 0 0 0;
    float: left;
    width: 100%;
}
.ow_sign_in_wrap form .ow_form_options p.ow_remember_me {
    color: #333333;
    font-size: 16px;
    float: left;
}
.ow_sign_in_wrap form .ow_form_options p.ow_remember_me input {
    margin: 0 12px 0 0;
}
.ow_sign_in_wrap form .ow_form_options p.ow_forgot_pass {
    font-size: 16px;
    float: right;
}
.ow_sign_in_wrap form .ow_form_options p.ow_forgot_pass a {
    color: #333333;
}
.ow_sign_in_wrap form .ow_sign_in span.ow_button {
    background: none;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    padding: 0;
    float: right;
    width: 96%;
}
.ow_sign_in_wrap form .ow_sign_in span.ow_button .ow_positive {
    width: 100%;
    text-align: center;
}
.ow_sign_in_wrap form .ow_sign_in span.ow_button .ow_positive input {
    height: auto;
    line-height: 45px;
    width: 100%;
    padding: 0;
    background: none;
    background: #007BFF;
    color: #ffffff;
    font-family: "sans-serif","Lucida Grande", "Tahoma", "Verdana";
    font-size: 18px;
    text-transform: capitalize;
	border-radius: 50px;
	background-position: left center;
    background-repeat: no-repeat;
}
.ow_sign_in_wrap form .ow_sign_in span.ow_button .ow_positive input:hover {
    background: #006fe6 url(assets/img/arrow-right.png);
    text-decoration: none;
    background-position: 85% center;
    background-repeat: no-repeat;
}
.ow_sign_in > .clearfix a {
    display: none;
    float: left;
    text-align: center;
    width: 0;
    font-size: 0;
    text-transform: capitalize;
    line-height: 45px;
    background: #007BFF;
    color: #ffffff;
	border-radius: 50px;
	transition: all 0.4s ease;
	background-position: left center;
    background-repeat: no-repeat;
}
.ow_sign_in > .clearfix a:hover {
    background: #006fe6 url(assets/img/arrow-right.png);
    text-decoration: none;
    background-position: 85% center;
    background-repeat: no-repeat;
}

.ow_sign_in_wrap form .connect_button_cont {
    padding-top: 12px;
}
.ow_sign_in_wrap form .ow_connect_text {
    font-size: 15px;
    color: #333333;
    background: none;
    text-align: center;
    padding: 0;
    margin-left: -20px;
    text-transform: uppercase;
    width: 100%;
}
.ow.base_sign_in .ow_sign_in_wrap form .ow_connect_text {
    color: #333;
}
.ow.base_sign_in .ow_sign_in_wrap form .connect_button_list{
	float: right;
	width: 100%;
}
.ow.base_sign_in .ow_sign_in_wrap form .connect_button_cont{
	padding-top: 12px;
}

.floatbox_container .ow_sign_in_wrap form {
    background: none;
    padding: 0;
    margin: auto 1%;
    border: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    width: 330px;
}
.floatbox_container .ow_bg_color {
    background-color: #EDE7F6;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
	border-radius: 4px;
}
.ow_photoview_wrap.clearfix .ow_photoview_info {
    padding: 12px 12px 12px 12px !important;
}
.ow_feed_comments {
    background-color: #fefefe;
    border: 1px solid #cad4dd;
    border-radius: 4px;
}
.ow_feed_comments .comments_list_cont {
    margin-bottom: -2px;
}
.ow_feed_comments .ow_comments_item {
    position: relative;
    padding: 6px 16px 4px 8px;
    border-width: 0px 0px 1px 0px;
    border-style: solid;
    border-color: #cbd5dd;
}
.ow.base_sign_in .floatbox_header {
    max-height: 29px;
}
.ow.base_sign_in .floatbox_body {
    padding: 0;
    overflow: hidden;
}
.ow.base_sign_in .floatbox_container .ow_sign_in_wrap form {
    margin: auto 0%;
}
.floatbox_container .ow_sign_in_wrap form a.fb_button,
.floatbox_container .ow_sign_in_wrap span.glconnect_button {
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
    float: none;
}
.floatbox_container .ow_sign_in_wrap .vkconnect-label {
    width: 100%;
    float: none;
}
.floatbox_container .ow_sign_in_wrap .vkconnect-label .vkconnect-right-border {
    text-align: center;
    margin-left: 5px !important;
}

/* Page Sign In */
body.ow.whatsapp.base_sign_in {
    max-width: 1920px;
    margin: 0 auto;
}
body.ow.whatsapp.base_sign_in .ow_header {
	background-image: url(images/sign-bg1.1.jpg);
	background-attachment: fixed;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
}
body.base_sign_in > .ow_page_wrap {
    padding-top: 0;
    min-height: inherit;
    background: rgb(34, 34, 34.50);
    color: #fff;
}
body.ow.whatsapp.base_sign_in .ow_site_panel {
    background: transparent;
    box-shadow: none;
	position: absolute;
}
body.ow.whatsapp.base_sign_in .ow_nav_btn {
    border-left: 1px solid transparent;
	display: block;
	float: right;
}
body.ow.whatsapp.base_sign_in .ow_site_panel a.ow_logo.ow_left {
    background-position: 10px center;
    /* width: 90%; */
    /* background-size: contain; */
}
body.ow.whatsapp.base_sign_in.ow_menu_active .ow_menu_fullpage {
    padding-top: 70px;
    margin-top: -70px;
}
body.ow.whatsapp.base_sign_in .ow_menu_wrap {
    display: none;
}
body.ow.whatsapp.base_sign_in .ow_header {
    /* margin-top: 70px; */
}
body.base_sign_in .ow_footer {
    /* height: 20px; */
    margin-top: 0px;
}
body.ow.whatsapp.base_sign_in .ow_footer .ow_canvas .ow_page {
    margin: 0;
}
.ow.base_sign_in .ow_sign_in_wrap {
    width: 400px;
    /* position: relative; */
    margin: auto;
    padding-top: 80px;
    left: auto;
    top: auto;
    background: transparent;
    background-repeat: no-repeat;
    background-position: right top;
    float: right;
    right: 30px;
    z-index: 96;
}

.ow.base_sign_in .ow_sign_in_cont {
	background: none;
}
.ow.base_sign_in .ow_sign_in_wrap h2 {
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0px;
    left: 0;
    text-align: center;
    text-transform: uppercase;
    color: #007BFF;
    font-size: 0px;
    background-image: url(images/open-network-logo.svg); /** OW_Control type:image, key:logoImage, section:1. General Settings, label: 05. Logo image **/
    background-repeat: no-repeat;
    background-position: top center;
    display: none;
}
.ow.base_sign_in .ow_sign_in_wrap.ow_sign_in_wrap form {
    background: rgba(255, 255, 255, 0.55);
    border: none;
    padding: 30px 30px 30px 30px;
}
.ow.base_sign_in form .ow_sign_up {
    margin: 0 0 20px 0;
	display: block;
	color: #159682;
}
.ow.base_sign_in form .ow_sign_in {
	width: 100%;
	float: none;
}
.ow.base_sign_in form .ow_sign_in .ow_box_cap {
	display: none;
}
.ow.base_sign_in .ow_sign_in_wrap form .ow_form_options {
    margin-bottom: 8px;
    margin-top: 4px;
}
.ow.base_sign_in .ow_user_name {
	margin-bottom: 6px;
}
.ow.base_sign_in .ow_user_name input,
.ow.base_sign_in .ow_password input {
	background: rgba(255, 255, 255, 0.61);
    border: 1px solid rgba(39, 171, 158, 0.61);
	color: #111;
	font-size: 16px;
    padding: 4px 12px;
	height: 49px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
}
.ow.base_sign_in .ow_user_name input:focus,
.ow.base_sign_in .ow_password input:focus {
    background: rgba(255, 255, 255, 0.71);
    border: 1px solid rgba(39, 171, 158, 0.54);
}
.ow.base_sign_in .ow_user_name input.invitation,
.ow.base_sign_in .ow_password input.invitation {
	color: #333333;
}
.ow.base_sign_in form .ow_form_options p.ow_remember_me {
	color: #333333;
	font-size: 16px;
	padding: 0;
	float: left;
}
.ow.base_sign_in form .ow_form_options p.ow_remember_me input {
	margin: 0 12px 0 0;
}
.ow.base_sign_in form .ow_form_options p.ow_forgot_pass {
	font-size: 16px;
	float: right;
}
.ow.base_sign_in form .ow_form_options p.ow_forgot_pass a {
	color: #333333;
}
.ow.base_sign_in .ow_sign_in > .clearfix a {
	display: inline-block;
	float: left;
	text-align: center;
	width: 48%;
	font-size: 16px;
	text-transform: capitalize;
	line-height: 50px;
	background: #007BFF;
	color: #ffffff;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	font-family: "sans-serif","Lucida Grande", "Tahoma", "Verdana";
	background-repeat: no-repeat;
    background-position: left center;
}
.ow.base_sign_in .ow_sign_in > .clearfix a:hover {
    background: #26D2B7;
    text-decoration: none;
    background-image: url(assets/img/arrow-right.png);
    background-repeat: no-repeat;
    background-position: 85% center;
}
.ow.base_sign_in form .ow_sign_in .ow_join_button:hover {
	text-decoration: none;
}
.ow.base_sign_in form .ow_sign_in span.ow_button {
	background: none;
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	padding: 0;
	float: right;
	width: 48%;
}
.ow.base_sign_in form .ow_sign_in span.ow_button .ow_positive {
	width: 100%;
	text-align: center;
}
.ow.base_sign_in form .ow_sign_in span.ow_button .ow_positive input {
	height: auto;
	line-height: 50px;
	width: 100%;
	padding: 0;
	background: none;
	background: #007BFF;
	color: #ffffff;
	font-family: "sans-serif","Lucida Grande", "Tahoma", "Verdana";
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	background-repeat: no-repeat;
    background-position: left center;
}
.ow.base_sign_in form .ow_sign_in span.ow_button .ow_positive input:hover {
	background: #26D2B7;
	text-decoration: none;
    background-image: url(assets/img/arrow-right.png);
    background-repeat: no-repeat;
    background-position: 85% center;
}
/* Facebook button styles */
.firebaseauth-button[data-provider="facebook.com"],
.ow.base_sign_in .ow_sign_in .firebaseauth-button[data-provider="facebook.com"],
.firebase-auth-provider[data-provider="facebook.com"] {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, border-radius 0.3s ease;
}

.firebaseauth-button[data-provider="facebook.com"]:hover,
.ow.base_sign_in .ow_sign_in .firebaseauth-button[data-provider="facebook.com"]:hover,
.firebase-auth-provider[data-provider="facebook.com"]:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    border-radius: 50px;
}

/* Google button styles */
.firebaseauth-button[data-provider="google.com"],
.ow.base_sign_in .ow_sign_in .firebaseauth-button[data-provider="google.com"],
.firebase-auth-provider[data-provider="google.com"] {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, border-radius 0.3s ease;
}

.firebaseauth-button[data-provider="google.com"]:hover,
.ow.base_sign_in .ow_sign_in .firebaseauth-button[data-provider="google.com"]:hover,
.firebase-auth-provider[data-provider="google.com"]:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    border-radius: 50px;
}


/* Apple button styles */
.firebaseauth-button[data-provider="apple.com"],
.ow.base_sign_in .ow_sign_in .firebaseauth-button[data-provider="apple.com"],
.firebase-auth-provider[data-provider="apple.com"] {
    transition: box-shadow 0.3s ease, transform 0.2s ease, border-radius 0.3s ease;
}

.firebaseauth-button[data-provider="apple.com"]:hover,
.ow.base_sign_in .ow_sign_in .firebaseauth-button[data-provider="apple.com"]:hover,
.firebase-auth-provider[data-provider="apple.com"]:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    border-radius: 50px;
}
.ow.base_sign_in .ow_sign_in_wrap form .fb_button,
.ow.base_sign_in .ow_sign_in_wrap form .glconnect_button {
    width: 100%;
    margin-bottom: 5px;
}
.ow.base_sign_in .ow_sign_in_wrap form .vkconnect-label {
    width: 100%;
    float: none;
}
.ow.base_sign_in .ow_sign_in_wrap form .vkconnect-label .vkconnect-right-border {
    /* margin-left: 5px; */
    border-radius: 20px !important;
}
.ow.base_sign_in .ow_sign_up hr {
	display: none;
}
.ow.base_sign_in .ow_footer .ow_canvas {
	width: 100%;
}
body.ow.whatsapp.base_sign_in .ow_header {
    display: block;
}


/* ---- End SignIn Form styles ---- */
/* ---- My Avatar Widget styles ---- */
.ow_my_avatar_img {

}
.ow_my_avatar_username {
	display: table-cell;
	vertical-align: middle;
}
.ow_my_avatar_cont {
	height: 40px;
	display: table;
	padding-left: 5px;
}
.ow_my_avatar_cont span {
	display: inline-block;
	width: auto;
	word-wrap: break-word;
}
/* ---- End of My Avatar Widget styles ---- */
/* ---- Live Member Icon ---- */
.ow_miniic_live .ow_live_on {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	background: url(images/miniic_live.png) center center no-repeat;
	margin-right: 4px;
}
.ow_miniic_live .ow_lbutton {
	 display: inline-block;
	 vertical-align: middle;
	 margin-right: 0px;
	 line-height: 12px;
	 height: 12px;
}
.ow_miniic_live .ow_preloader_content{
	 height: 20px;
	 width: 20px;
	 display: inline-block;
	 vertical-align: middle;
	 background-position:center center;
}
.ow_miniic_live .ow_preloader_content.ow_hidden {
	display: none;
}
.ow_miniic_live .ow_lbutton.ow_green {
    /* color: #333333; */
}
/* ---- End Live Member Icon ---- */
/* ---- Groups styles ---- */
.group-GROUPS_CMP_JoinButtonWidget .ow_highbox {
	padding: 0px;
	box-shadow: none;
	border-radius: 50px;
}
.group-GROUPS_CMP_JoinButtonWidget h3 > a {
 	text-transform: uppercase;
    display: block;
    line-height: 30px;
    min-height: 30px;
    padding: 4px 23px 4px 16px;
    text-transform: uppercase;
    background-color: #2196F3;
    color: #fff;
	border-radius: 50px;
}
.group-GROUPS_CMP_JoinButtonWidget h3 > a:hover {
 	text-decoration: none;
 	background-color: #006fe6;
 	color: #fff;
}
/* */
body .ow_gift_templates .ow_gift_checked {
	background-image: url(images/ic_ok.svg);
}
/*========================================================
        [17] Misc        __misc
  ========================================================*/
.ow_column_equal_fix{
   padding-bottom: 20001px !important;
   margin-bottom: -20000px !important;
}
.fullsize-photo {
	display: none;
}
/* Image Gallery scroll */
.ow_page_padding > .ow_content_menu_wrap ~ div {
	overflow-y: visible !important;
}
.ow_page_padding > .ow_content_menu_wrap ~ div > table {
	width: 95% !important;
}
/* thickbox 8aa */
.ow_preloader_content_cont{
	width: 30px;
	height: 30px;
}
/* ~thickbox 8aa */
/* ---- Captcha styles ---- */
span.ic_refresh{
    background: url(images/ic_refresh.svg) no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
}
/* ---- End of the Captcha styles ---- */
/* ---- Eye for hidden field styles ---- */
.ow_field_eye {
	padding-left: 18px;
	background:url(images/miniic_field_eye.svg) 0 3px no-repeat;
	background-size: 15px 15px;
	display: inline-block;
}
/* ---- End of the Eye for hidden field styles ---- */
/* ---- Facebook button styles */
.fb_button:hover {
	color: #fff
}
/* ---- End of the Facebook button styles */

.maintenance_cont h1 {
	padding-left: 23px;
	background-position: left center; 
}
h1.page_title{
    background: url(images/ic_file.svg) no-repeat left 50%;
    margin-bottom: 20px;
    padding-left: 22px;
}

/* extra css */
@media (max-width: 670px) {
html div.description.linksharingDesc {
    margin: 28px 0 25px -40px!important;
}
span.ow_ws_html  iframe {
        width: 100% !important;
        min-height: 215px!important;
    }
}


/* Responsive styles */
@media (max-width: 979px) {
	/*General*/
	body, html {
    	min-width: 767px;
    }
	.ow_page_container, .ow_site_panel_wrap, .ow_footer {
        width: 100%;
    }
    .ow_canvas {
    	width: 100%;
    }
    .ow_content > .ow_right {
    	float: none;
    	margin-bottom: 16px;
    }
    .ow_right {
    	float: none;
    }
	.ow_superwide.ow_left {
    float: left;
    width: 100%;
}
	.ow_supernarrow.ow_right {
    float: left;
    width: 100%;
}
    .place_section.ow_right,
    #photo-list-search,
    .ow_photo_upload_submit.ow_right {
    	float: right;
    }
    .ow_content > .ow_btn_delimiter.ow_right {
    	float: none;
    	margin-bottom: 0px;
    }
    .ow_content > .ow_btn_delimiter.ow_right .ow_button {
    	margin-bottom: 8px;
    }
    .ow_console_dropdown_hover:hover .OW_ConsoleItemContent,
    .ow_console_dropdown_hover:active .OW_ConsoleItemContent {
    	display: block !important;
    }
    .ow_console_item a.ow_console_item_link {
		pointer-events: none;
	}
	.ow_page_padding {
		border: none;
	}
	body .forum_search_form {
		display: none;
	}
	.ow_forum {
		word-wrap: break-word;
	}
	.ow_page_container .ow_page {
		padding-top: 16px;
	}
    /*Photo*/
    body .ow_photo_list_wrap.ow_photo_no_sidebar div.ow_photo_item_wrap,
    body .ow_photo_list_wrap.ow_photo_no_sidebar .ow_photo_list.ow_photo_pint_mode div.ow_photo_item_wrap,
    body .ow_photo_list_wrap.ow_photo_no_sidebar div.ow_photo_item_wrap.ow_photo_album {
    	width: 33.333%;
    }
    body .ow_photo_list_wrap.ow_photo_no_sidebar .ow_photo_list.ow_photo_pint_mode div.ow_photo_item_wrap {
    	height: 270px;
    	overflow: hidden;
    }
    .ow_photo_list.ow_photo_pint_mode .ow_photo_item_wrap .ow_photo_pint_album img {
    	min-height: 100%;
    }
    body .ow_photo_list_wrap div.ow_photo_item,
    body .ow_photo_pint_album {
    	height: 100%;
    }
    .ow_photo_list.ow_photo_pint_mode .ow_photo_item_wrap {
    	position: static !important;
    }
    .ow_photo_list.ow_photo_pint_mode .ow_photo_item_wrap .ow_photo_pint_album {
    	overflow: hidden;
    	text-align: center;
    }
    .ow_photo_item .ow_photo_item_info_description {
    	display: none !important;
    }
	.ow_photo_list_wrap .ow_photo_item_wrap .ow_photo_item_info,
    body .ow_photo_context_action {
    	text-align: center;
    }
    body .ow_photo_preview_x,
    body .ow_photo_preview_rotate {
    	display: block;
    }
    /*Video*/
    .ow_video_list .clearfix.ow_alt1,
    .ow_video_list .clearfix.ow_alt2 {
    	display: block;
    }
    .ow_video_list_item {
    	float: left;
    	width: 100%;
    	margin: 0px;
    	padding: 24px 0 24px 24px;
    	border-bottom: 1px solid #cad4dd;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    }
    .ow_video_list_item:first-child {
    	padding-top: 0;
    }
    .ow_video_list_item:last-child {
    	padding-bottom: 0;
    	border-bottom: none;
    }
    .ow_video_list_item > a:first-child {
    	float: left;
    	margin-right: 8px;
    }
    .ow_video_list > .ow_alt1,
    .ow_video_list > .ow_alt2 {
    	background-color: #fff;
    	padding-left: 0;
    }
}
@media (max-width: 773px) {
	.ow_nav_btn {
		display: block;
		opacity: 1;
	}
	.ow_content .ow_superwide, 
	.ow_content .ow_supernarrow, 
	.ow_content .ow_narrow,
	.ow_content .ow_wide,
	.ow_content .ow_column {
		float: none; 
		width: 100% !important; 
		margin-bottom: 10px;
		clear: both;
	}
	body, html {
    	min-width: auto;
    }
    .ow_site_panel {
		min-width: 320px;
	}
    .floatbox_container {
    	max-width: 100%;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    }
    .ow_ipc_header {
    	margin-bottom: 4px;
    }
    .ow_lp_label br {
    	margin: 6px 0;
    }
    .ow_sign_in_wrap form .ow_sign_in {
    	width: 100%;
    	float: none;
    }
    .ow_sign_in_wrap {
    	width: 100%;
    }
    .ow_sign_in_wrap form .ow_sign_up {
    	margin: 16px 0 0 0;
    	width: 100%;
    	text-align: center;
    }
    .ow_sign_in_wrap form .ow_sign_up p br {
    	height: 1px;
    }
    .floatbox_container .ow_sign_in_wrap form {
    	padding: 0;
    }
    .console_tooltip.ow_tooltip_top_right.ow_tooltip {
    right: auto;
}
    .console_tooltip.ow_tooltip_top_right .ow_tooltip_tail span {
    	display: none;
    }
    body textarea.ow_newsfeed_status_input.invitation {
    	height: 32px;
    }
    /*.ow_console_item {
    	position: static;
    }*/
    .ow_console_body {
    	position: relative;
    }
    .ow_newsfeed_left {
    	width: auto;
    }
    body .ow_searchbar input[type="text"] {
    	height: 28px;
    	line-height: 18px;
    }
    iframe {
    	width: 100% !important;
    }
    body .ow_moderation_wrap {
    	margin-left: 0;
    }
    body .ow_moderation_sticky {
    	width: 100%;
    	margin-left: 0;
    }
    body .ow_chat_selector {
    	position: fixed;
    	left: 0;
    }
    body .ow_chat_dialog_wrap {
    	position: fixed;
    	left: 0;
    	width: 100%;
    }
    body .ow_chat_dialog {
    	width: 100% !important;
    	margin-left: 0;
    }
    body .ow_forgot_password {
    	width: 100%;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    	padding: 0 20px;
    }
    body .customize_box {
    	display: none;
    }
    .ow_header {
    	position: relative;
    	height: 300px;
    }
    .ow_header img {
    	display: none;
    }
    .ow_header_pic {
    	display: block;
    	height: 300px;
    	width: 100%;
    	background-size: cover;
    	background-position: center center;
    }
    .ow_message_cont {
    	left: 0;
    	right: 0;
    	width: 100%;
    	margin-left: 0;
    }
    /*------------- Messages --------------*/
    body .ow_mailbox_table {
        background: transparent;
        margin-bottom: 20px;
    }
    body .ow_mailbox_left {
        width: 100%;
        float: none;
        margin-bottom: 0;
        padding-bottom: 0;
        background-color: #fff;
    }
    body .ow_mailbox_left .ow_mailbox_left_body {
        width: 100% !important;
        position: static;
    }
    body #conversationItemListSub {
        width: 100% !important;
    }
    body .ow_mailbox_right {
        width: 100%;
        float: none;
        margin-bottom: 0;
        padding-bottom: 0;
        background-color: #fff;
    }
    .ow_mailbox_left_body .jspContainer {
        height: 252px !important;
    }
    body .ow_mailbox_right {
        margin-top: 20px;
    }
    body .ow_mailbox_username {
        min-width: 0;
    }
    body .ow_mailbox_table .ow_mailbox_left .ow_mailbox_left_body,
    body .ow_mailbox_table .ow_mailbox_search,
    body .ow_mailbox_conv_options {
    	border-right-width: 0;
    }
    body .ow_mailbox_table {
    	border-width: 0;
    }
    body .ow_mailbox_table .ow_mailbox_left,
    body .ow_mailbox_table .ow_mailbox_right {
    	border: 1px solid #ececec;
    }
    body .ow_mailbox_table .ow_mailbox_cap {
    	height: 82px;
    }
    body .ow_mailbox_table .ow_mailbox_right .ow_mailbox_cap {
    	padding-left: 86px;
    }
    body .ow_mailbox_convers_info.mails,
    body .ow_mailbox_convers_info.chats {
    	background-position: 8px 36px;
    }
    body .ow_mailbox_table .ow_mailbox_cap .ow_mailbox_convers_actions {
    	margin-top: 30px;
    }
    body .ow_mailbox_table .ow_mailbox_search input {
    	font-size: 90%;
    	height: 32px;
    	line-height: 18px;
    }
    body .ow_mailbox_search .ow_btn_close_search {
    	top: 22px;
    }
    html body .ow_mailbox_form .ow_mailbox_message_input textarea {
    	display: none;
    }
    html body .ow_mailbox_message_input .jhtmlarea,
    body .ow_mailbox_form .ow_attachment_btn, 
    body .ow_mailbox_form .ow_attachment_icons,
    #conversationTextarea {
    	display: block !important;
    }
    textarea#conversationTextarea {
    	margin: 0;
    	border: none;
    }
    .ow_mailbox_form .jhtmlarea .input_ws_cont {
    	display: none;
    }
    html body .ow_mailbox_message_input .jhtmlarea {
    	width: 100% !important;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    }
    .ow_mailbox_form div.jhtmlarea {
    	padding: 0;
    }
    .ow_mailbox_request_item .console_list_ipc_item,
    .ow_chat_request_item .console_list_ipc_item {
    	padding-left: 20px;
    	background-position: 2px 27px;
    }
    .ow_chat_dialog_wrap .ow_mailchat_new_message.ow_chat_dialog {
	    bottom: 0;
	    left: 0;
	    margin: 0;
	    position: fixed;
	    right: 0;
	    width: 100%;
	}
	.ow_mailbox_left_loading .ow_mailbox_left_body {
		background-position: center 120px;
	}
	html body .ow_mailbox_table_empty .ow_mailbox_left div.ow_mailbox_no_content {
		padding-top: 117px;
		padding-bottom: 117px;
	}
    /*Fonts*/
    .ow_box_menu, ul.ow_bl a {
    	line-height: 25px;
    }
    .ow_box_menu a, ul.ow_bl a {
    	height: auto;
    }
	ul.ow_console_dropdown .ow_console_dropdown_cont {
		text-align: right;
	}
	.ow_console_dropdown_cont a {
		text-align: left;
	}
	.ow_attachment_btn span.ow_button input[type="submit"], 
	.ow_attachment_btn span.ow_button input[type="button"] {
		line-height: 21px;
	}
	.ow_content_menu {
    border: 1px solid transparent;
    background-color: transparent;
	box-shadow: none;
	border-bottom: none;
	}
	.ow_content_menu li a {
    font-size: 13px;
}
.ow_content_menu span {
    padding: 5px 12px 5px 34px;
}
input[type=submit], input[type=button] {
    padding: 1px 31px 0px 0px;
    height: 31px;
    font-size: 13px;
}
	a.ow_lbutton, span.ow_lbutton {
		font-weight: normal;
	}
    .ow_chat_dialog_wrap {
    z-index: 110;
}
	/*Buttons*/
	.ow_attachments a {
		height: 26px;
		width: 26px;
		background-position: -173px 2px;
	}
	.ow_attachment_btn span.ow_button input[type="submit"], 
	.ow_attachment_btn span.ow_button input[type="button"] {
		height: 26px;
	}
    /*Avatar size*/
    .ow_user_list_data {
    	margin-left: 73px;
    }
    .ow_mini_ipc_picture img, 
    .ow_mini_ipc_picture .ow_avatar, 
    .ow_mini_ipc_picture .ow_avatar img {
    	width: 52px !important;
    	height: 52px !important;
    }
    .ow_mini_ipc_picture {
    	width: 62px;
    	margin-right: -6 2px;	
    }
    .ow_mini_ipc_info {
    	margin-left: 66px;
    }
    .ow_feed_comments_input_sticky .ow_comments_item_picture .ow_avatar img,
    .ow_comments_input_wrap .ow_comments_item_picture .ow_avatar img {
    	width: 52px !important;
    	height: 52px !important;
    }
    .ow_feed_comments_input_sticky .ow_comments_item_info,
    .ow_comments_input_wrap .ow_comments_item_info {
    	margin-left: 68px;
    }
    .ow_comments_item .ow_comments_item_picture .ow_avatar img {
    	width: 52px !important;
    	height: 52px !important;
    }
    body .ow_comments_item .ow_comments_item_picture .ow_avatar {
    	width: 52px;
    	height: 52px;
    }
    body .ow_comments_item .ow_comments_item_picture {
    	width: 52px;
    	margin-right: -52px;
    }
    body .ow_comments_item .ow_comments_item_info {
    	margin-left: 68px;
    }
    .ow_comments_item_header {
    	margin-top: 4px;
    	margin-bottom: 4px;
    }
    body .ow_mailbox_convers_info_body {
    	margin-left: 77px;
    }
    body .ow_mailbox_avatar {
    	width: 70px;
    }
    body .ow_mailbox_cap .ow_mailbox_avatar {
    	margin-left: -70px;
    }
    
    /*-------------------------Photo-------------------------*/
    body .ow_photo_list_wrap.ow_photo_no_sidebar div.ow_photo_item_wrap,
    body .ow_photo_list_wrap.ow_photo_no_sidebar .ow_photo_list.ow_photo_pint_mode div.ow_photo_item_wrap,
    body .ow_photo_list_wrap.ow_photo_no_sidebar div.ow_photo_item_wrap.ow_photo_album {
    	width: 50%;
    }
    body .ow_photo_list_wrap.ow_photo_no_sidebar .ow_photo_list.ow_photo_pint_mode div.ow_photo_item_wrap {
    	height: 300px;
    }
    #photo-list-search {
    	float: none;
    }
    .ow_fw_menu .ow_fw_btns {
    	margin-bottom: 8px;
    }
    .ow_fw_menu {
    	border: none;
    	padding: 0;
		background-color: transparent;
    }
    .ow_fw_menu .ow_searchbar {
    	margin-top: 4px;
    	padding-right: 24px;
    	width: 100%;
    	display: inline-block !important;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    }
    .ow_fw_menu .ow_searchbar_input,
    .ow_fw_menu .ow_searchbar_input input {
    	width: 100% !important;
    }
    .ow_fw_menu .ow_searchbar .ow_searchbar_btn {
    	margin-right: -24px;
    }
    .ow_photo_upload_bottom > .ow_left,
    .ow_photo_upload_wrap .ow_suggest_field input {
    	width: 100% !important;
    }
    body .ow_photo_upload_wrap .ow_photo_preview_block_wrap .ow_photo_preview_edit {
    	width: 48%;
    	margin-left: 1% !important;
    	margin-right: 1% !important;
    	margin-bottom: 10px !important;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    }
    .ow_photo_preview_action {
    	overflow: hidden;
    }
    body .CodeMirror-scroll,
    body .CodeMirror-sizer {
    	width: 100%;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    	padding-bottom: 0;
    	padding-right: 0;
    }
    body .CodeMirror-hscrollbar {
    	display: none !important;
    }
    .new-album textarea {
    	margin-bottom: 16px;
    }
    .ow_photoview_info_wrap {
    	display: none !important;
    }
    .ow_photoview_stage_wrap {
        width: 100% !important;
    }
    .floatbox_container {
    	width: 100% !important;
    }
    /*Forum*/
    .forum_add_post .ow_left,
    .forum_add_post .ow_right {
    	width: 100% !important;
    	float: none;
    }

}

body.ow.whatsapp.base_user_join {
	background-image: url(images/join-bg1.jpg); /** OW_Control type:image, key:joinImage, section:4. Theme Settings, label: 16. Join background image, description: size 1920px x 1200px **/
	background-size: cover;
	background-position: 0 20px;
}
body.ow.whatsapp.base_user_join .ow_header,
body.ow.whatsapp.base_user_join .ow_header_pic,
body.ow.whatsapp.base_user_join .ow_sidebar {
    display: none;
}
body.ow.whatsapp.base_user_join .ow_menu_wrap {
    display: none;
}
body.ow.whatsapp.base_user_join .ow_nav_btn {
    display: block;
}
body.ow.whatsapp.base_user_join .ow_content {
    background-color: transparent;
    border: none;
    padding: 0px 0 0 0px;
	box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
body.ow.whatsapp.base_user_join .ow_canvas {
    width: 45%;
    margin: auto;
    float: right;
    margin-bottom: 150px;
}

@media (min-width: 1055px) {
    body.ow.whatsapp.base_user_join .ow_canvas {
        width: 45%;
        margin: 0 auto;
        float: none;
        margin-bottom: 150px;
    }
}

body.ow.whatsapp.base_user_join .ow_page {
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.37);
    padding: 8px;
    background: rgba(255, 255, 255, 0.48);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
body.ow.whatsapp.base_user_join .ow_table_1 {
    margin-bottom: 0px;
}
body.ow.whatsapp.base_user_join .ow_page .ow_content a.fb_button {
    margin-bottom: 4px;
}
body.ow.whatsapp.base_user_join .ow_avatar_field input {
    width: 185px;
}
body.ow.whatsapp.base_user_join .ow_inline.owm_inline select {
    margin-bottom: 2px;
}
body.ow.whatsapp.base_user_join .ow_footer .ow_canvas {
    width: 100%;
    margin: 0 auto;
    float: none;
}
body.ow.whatsapp.base_user_join .ow_footer .ow_page {
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.37);
    padding: 0;
    padding-bottom: 10px;
    background: #232f3c;
}
body.ow.whatsapp.base_user_join .ow_page h1, body.ow.whatsapp.base_user_join .ow_page h3 {
    text-align: center;
    background: #ffffff;
    color: #333333;
    padding: 13px 0;
    margin: 0;
    border: none;
    border-radius: 4px;
}
body.ow.whatsapp.base_user_join .ow_box_empty.ow_center.ow_no_cap.ow_break_word {
    display: none;
}
body.ow.whatsapp.base_user_join .ow_canvas .ow_box_cap {
    border-top: 1px solid #cad4dd;
}
body.ow.whatsapp.base_user_join .ow_page h3.ow_ic_key {
    background: transparent;
    color: #333;
    padding: 8px;
	border: 1px solid transparent;
	box-shadow: none;
}
body.ow.whatsapp.base_user_join .ow_footer .ow_canvas .ow_page {
    box-shadow: none;
}
body.ow.whatsapp.base_user_join .ow_page .ow_content .ow_superwide {
    width: 96% !important;
    overflow: visible;
}
#joinForm > div > div {
    float: none;
    text-align: center;
}
#joinForm > div > div span.ow_button {
    margin: 0;
    padding: 0px 12px 0px 14px;
}
body.ow.whatsapp.site_join_confirm .ow_box_empty {
    padding: 12px !important;
    background-color: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.28);
    width: 48.1%;
    margin: 16% auto 0 auto;
	box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
	-moz-box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
}
body.ow.whatsapp.site_forgot_password .ow_box_cap {
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-top: 1px solid #cad4dd;
	box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
	-moz-box-shadow: rgba(0,0,0,.117647) 0 0 2px 0px;
}
body.ow.whatsapp.site_forgot_password .ow_box {
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-top: none;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
body.ow.whatsapp.site_join_confirm .ow_box_empty p {
    padding: 4px;
    margin: 0 auto;
}
body.ow.whatsapp.site_join_confirm .ow_box_normal {
    width: 50% !important;
    margin-top: 0px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
body.ow.whatsapp.site_join_confirm .ow_box_normal form {
    background-color: rgba(255, 255, 255, 0.58);
    padding: 12px;
}

body.ow.whatsapp.base_index_page .ow_header .ow_box_cap {
    display: none;
}
body.ow.whatsapp.base_index_page .ow_header .ow_box_cap h3.ow_ic_picture {
    display: none;
}
body.ow.whatsapp.base_index_page .ow_header .ow_box {
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
}
body.ow.whatsapp.base_index_page .ow_header .ow_box .ow_box_menu {
    display: none;
}
body.ow.whatsapp.base_index_page .ow_header .ow_box .ow_box_toolbar_cont.clearfix {
    display: none;
}
body.ow.whatsapp.base_index_page .ow_header .ow_box .ow_lp_photos.ow_center {
    position: absolute;
    display: inline-block;
    top: 0;
    margin-top: 60px;
    margin-left: 0px;
    max-width: 40%;
    z-index: 97;
}
body.ow.whatsapp.base_index_page .ow_header .ow_box .ow_lp_photos.ow_center a.ow_lp_wrapper {
    border: 1px solid #1976D2;
    width: 78px;
    height: 78px;
    background-color: #2196F3;
}
body.ow.whatsapp.base_index_page .ow_header .ow_box .ow_lp_photos.ow_center a.ow_lp_wrapper,
body.ow.whatsapp.base_index_page .ow_header .ow_box .ow_lp_photos.ow_center a.ow_lp_wrapper .ow_photo_item_widget {
    padding: 3px;
    border-radius: 50em;
}
.ow_page_container .ow_page {
    background: transparent;
}

.ow_dnd_widget.index-NEWSFEED_CMP_SiteFeedWidget {
    box-shadow: none;
}

.ow_newsfeed .ow_newsfeed_body {
    background-color: #fff;
	border: 1px solid #cad4dd;
    border-top: 1px solid #cad4dd;
	margin-bottom: 18px;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	border-radius: 4px;
}
.ow_newsfeed .ow_newsfeed_avatar {
    margin-right: auto;
    margin: 0px;
}
.ow_newsfeed_item .ow_newsfeed_delimiter {
    border: none;
    margin: 0;
}

body.ow.whatsapp.base_index_page {
	background-image: url(images/white-plain); /** OW_Control type:image, key:indexImage, section:1. General Settings, label:03. Index page background image **/
}
body.ow.whatsapp.base_index_page .ow_nav_btn,
body.ow.whatsapp.base_index_page_customize .ow_nav_btn {
    display: block;
}
body.ow.whatsapp.base_index_page .ow_menu_wrap,
body.ow.whatsapp.base_index_page_customize .ow_menu_wrap {
    display: none;
}
body.ow.whatsapp.base_index_page .ow_page,
body.ow.whatsapp.base_index_page_customize .ow_page {
    margin: 0 244px 0px 0px;
}
body.ow.whatsapp.base_index_page .ow_footer .ow_canvas .ow_page,
body.ow.whatsapp.base_index_page_customize .ow_footer .ow_canvas .ow_page {
    margin: 0;
}
body.ow.whatsapp.base_user_dashboard {
	background-image: url(images/bg1.jpg); /** OW_Control type:image, key:dashboardImage, section:1. General Settings, label:04. Dashboard page background image **/
}
body.ow.whatsapp.base_user_dashboard .ow_header .ow_box_cap {
    display: none;
}
body.ow.whatsapp.base_user_dashboard .ow_header .ow_box {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}
body.ow.whatsapp.base_user_dashboard .ow_header .ow_box .ow_box_menu {
    display: none;
}
body.ow.whatsapp.base_user_dashboard .ow_header .ow_box .ow_box_toolbar_cont {
    display: none;
}
body.ow.whatsapp.base_user_dashboard .ow_header .ow_box .ow_lp_avatars {
    position: absolute;
    display: inline-block;
    max-width: 45%;
    top: 0;
    margin-top: 60px;
    margin-left: 0px;
    z-index: 97;
}
body.ow.whatsapp.base_user_dashboard .ow_header .ow_box .ow_lp_avatars .ow_avatar {
    border: 1px solid #2196F3;
    width: 77px;
    height: 77px;
    background-color: #1976D2;
}
body.ow.whatsapp.base_user_dashboard .ow_header .ow_box .ow_lp_avatars .ow_avatar a img {
    width: 77px;
    height: 77px;
    border-radius: 20em;
}
.ow_dnd_widget.dashboard-NEWSFEED_CMP_MyFeedWidget {
    box-shadow: none;
}
.ow_dnd_widget.profile-BASE_CMP_UserViewWidget {
    border-top: 1px solid #cad4dd;
	border-radius: 4px;
}
.ow_dnd_widget.profile-BASE_CMP_UserAvatarWidget .ow_box_empty {
    border-top: 1px solid #cad4dd;
    padding: 0;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	border-radius: 4px;
}
.ow_dnd_widget.profile-BASE_CMP_UserAvatarWidget .ow_box_empty div#avatar-console {
    border-top-color: transparent;
    border-radius: 4px;
}
.ow_box.ow_stdmargin.clearfix.profile-BASE_CMP_UserViewWidget.ow_no_cap.ow_break_word {
    border-top-color: transparent;
	border-radius: 4px;
}
.ow_dnd_widget.profile-BASE_CMP_UserViewWidget ul.ow_content_menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.ow_dnd_widget.profile-BASE_CMP_UserViewWidget ul.ow_content_menu li a span {
    padding: 7px 16px 7px 16px;
}
.ow_dnd_widget.profile-NEWSFEED_CMP_UserFeedWidget {
    box-shadow: none;
}
.ow_box_empty.ow_stdmargin.clearfix.profile-BASE_CMP_AboutMeWidget.ow_no_cap.ow_break_word {
    background-color: #fff;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
.ow_box.ow_stdmargin.clearfix.profile-NEWSFEED_CMP_UserFeedWidget.ow_break_word {
    padding: 10px 0 0 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.ow_box.ow_stdmargin.clearfix.profile-PHOTO_CMP_UserPhotoAlbumsWidget.ow_break_word .ow_lp_wrapper {
    padding: 3px;
}

.profile-EVENT_CMP_ProfilePageWidget.ow_break_word .ow_ipc_picture {
    background-color: transparent;
    width: 50px;
	margin-right: auto;
    padding-bottom: 3px;
    border-radius: 20em;
}
.profile-EVENT_CMP_ProfilePageWidget.ow_break_word .ow_ipc_picture img {
    margin-top: 3px;
    margin-left: 3px;
}
.profile-EVENT_CMP_ProfilePageWidget.ow_break_word > div > div.ow_ipc_info {
    margin-left: 0;
    padding: 4px;
}
.profile-EVENT_CMP_ProfilePageWidget.ow_break_word span.ow_nowrap.ow_icon_control {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ow_user_list.ow_full .ow_alt1, .ow_user_list.ow_full .ow_alt2 {
    background: transparent;
    border-color: transparent;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture {
    margin-right: 0px;
    width: 100px;
	padding: 5px 6px;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture .ow_avatar,
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture .ow_avatar a img {
    width: 90px;
    height: 90px;
    border-radius: 50%!important;
}
.ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_data {
    background-color: #fff;
    border: 1px solid #DEE5EA;
    min-height: 88px;
    margin-left: 0;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    border-radius: 50px;
	padding-right: 36px;
}
.ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_data a {
    text-transform: capitalize;
}
.ow_user_list_item .ow_tiny {
    background-color: #fff;
    border: 1px solid #cad4dd;
    margin-left: auto !important;
    min-height: 24px;
    line-height: 23px;
}
form#editForm tr.ow_tr_first {
    box-shadow: #007BFF 0 -1px;
	border-radius: 4px;
}
form#editForm tr.ow_tr_first th {
    border-top-color: transparent;
}

.ow_group_list .ow_superwide,
.ow_event_list .ow_superwide {
    width: 100%;
}
.ow_group_list .ow_superwide .ow_ipc, .ow_event_list .ow_superwide .ow_ipc {
    width: 31%;
    background-color: #fff;
    margin: 8px;
    border: 1px solid #cad4dd;
    border-top: 1px solid #cad4dd;
    float: left;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}
.ow_group_list .ow_superwide .ow_ipc .ow_ipc_info,
.ow_event_list .ow_superwide .ow_ipc .ow_ipc_info {
    margin-left: auto;
    border: none;
    padding: 12px;
}
.ow_group_list .ow_superwide .ow_ipc .ow_ipc_info .ow_ipc_header, .ow_event_list .ow_superwide .ow_ipc .ow_ipc_info .ow_ipc_header {
    padding: 0px 0px 0px;
    margin: 0px 0px 6px;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ow_group_list .ow_superwide .ow_ipc .ow_ipc_picture, .ow_event_list .ow_superwide .ow_ipc .ow_ipc_picture {
    width: 85px;
    margin-top: 2px;
    margin-left: 2px;
    margin-right: 0px;
    margin-bottom: 0px;
    background-color: transparent;
    border-radius: 20em;
}
.ow_group_list .ow_superwide .ow_ipc .ow_ipc_picture img,
.ow_event_list .ow_superwide .ow_ipc .ow_ipc_picture img {
    width: 70px;
    height: 70px;
    border-radius: 20em;
    margin: 3px;
}
.ow_group_list .ow_ipc_info .ow_ipc_toolbar .ow_nowrap {
    float: right;
}
body.ow.whatsapp.site_events .ow_box_cap_empty {
    background-color: #fff;
    border: 1px solid #CAD4DD;
    border-top: 1px solid #cad4dd;
    margin-bottom: -1px;
}
body.ow.whatsapp.site_events .ow_box_empty {
    background-color: #fff;
    border: 1px solid #CAD4DD;
	padding: 8px 8px 0 12px;
}

.ow_video_list .ow_alt1, .ow_video_list .ow_alt2 {
    background: transparent;
    border: none;
	padding: 8px 0px 8px 0px;
}
.ow_video_list .ow_video_list_item.ow_small {
    background-color: #fff;
    border: 1px solid #cad4dd;
    border-top: 1px solid #cad4dd;
    width: 100%;
	min-height: 190px;
    margin: 10px;
    padding: 8px;
    text-align: center;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}

body .ow_photo_list.ow_photo_pint_mode .ow_photo_item {
    background-color: #fff;
    border: 1px solid #cad4dd;
    padding: 10px;
    border-top: 1px solid #cad4dd;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
.ow_photo_list_wrap .ow_photo_pint_mode .ow_photo_item_wrap .ow_photo_item_info {
    padding: 12px 2px 2px 2px;
    border: none;
}

.ow_box.ow_highbox.ow_stdmargin.ow_center {
    border: 1px solid #cad4dd;
	border-top: 1px solid #cad4dd;
	border-radius: 4px;
	box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
body .forum_search_wrap {
    background-image: none;
    background-color: #fff;
    border: 1px solid #cad4dd;
}
.ow_forum tr.ow_tr_first {
}
.ow_forum tr.ow_tr_first th.ow_name,
.ow_forum tr.ow_tr_first th.ow_topics,
.ow_forum tr.ow_tr_first th.ow_replies,
.ow_forum tr.ow_tr_first th.ow_author {
    border-top: 1px solid #cad4dd;
}
.ow_forum_topic_posts > .ow_box.ow_no_cap {
    border: 1px solid #CAD4DD;
    border-top: 1px solid #cad4dd;
    padding: 0 10px 6px;
	border-radius: 4px;
}
.ow_forum_topic_posts > .ow_box.ow_no_cap .ow_ipc_picture .ow_avatar {
    padding: 2px;
}
.ow_forum_topic_posts > .ow_box.ow_no_cap .ow_ipc_info {
    border-color: transparent;
    padding: 4px 4px 4px;
}

.ow_forum_topic_posts .ow_ipc_info {
    background-color: #fff;
    margin-left: 0px;
    border: 1px solid #CAD4DD;
    border-top: 1px solid #cad4dd;
    padding: 8px 10px 10px 10px;
	border-radius: 4px;
}
.ow_forum_topic_posts .ow_ipc_picture {
    width: 70px;
    margin-right: 10px;
    z-index: 1;
    position: relative;
}
.ow_forum_topic_posts .ow_ipc_picture .ow_avatar {
    width: 60px;
    height: 60px;
	padding: 8px;
}
.ow_forum_topic_posts .ow_ipc_picture .ow_avatar img {
    width: 60px;
    height: 60px;
    border-radius: 20em;
}
.ow_forum_topic_posts span.ow_nowrap.post_permalink {
    background-color: #1976D2;
    padding: 4px;
	border-radius: 4px;
}
.ow_forum_topic_posts span.ow_nowrap.post_permalink a {
    color: #ffffff;
}
.ow_forum_topic_posts span.ow_nowrap.post_permalink a:hover {
    color: #ffffff;
}
body.ow.whatsapp.site_forum .ow_box_empty.ow_breadcrumb,
body.ow.whatsapp.site_forum_topic .ow_box_empty.ow_breadcrumb {
    margin: 0;
}
table.ow_table_1.ow_forum_topic {
    border-top: 1px solid #cad4dd;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
table.ow_table_1.ow_forum_topic tr.ow_tr_first th:first-child, table.ow_table_1.ow_forum_topic tr.ow_tr_first th {
    border-top-color: transparent;
}

.ow_tags_cont a {
    color: #007BFF;
}
.ow_tags_cont a:hover {
    color: #159682;
}
.ow_blogs_list .ow_superwide .ow_ipc {
    background-color: #fff;
    border: 1px solid #cad4dd;
    border-top: 1px solid #cad4dd;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
.ow_blogs_list .ow_superwide .ow_ipc .ow_ipc_picture {
    margin: 4px;
}
.ow_blogs_list .ow_superwide .ow_ipc_info {
    border: none;
    padding: 8px 12px 12px 12px;
    margin-left: 0;
}
.ow_blogs_list .ow_superwide .ow_ipc_info .ow_ipc_content img {
    /* width: 100%; */
    border-radius: 8px;
    padding-left: 0 !important;
}
body.ow.whatsapp.site_blog .ow_superwide .ow_box_empty.ow_stdmargin.ow_no_cap.ow_break_word {
    background-color: #fff;
    border: 1px solid #CAD4DD;
    border-top: 1px solid #cad4dd;
}
body > div.ow_page_wrap > div.ow_page_padding > div > div > div > div.ow_content > div > div.ow_superwide > div.ow_box.ow_stdmargin.ow_no_cap.ow_break_word > div.clearfix > div:nth-child(1) > span,
body > div.ow_page_wrap > div.ow_page_padding > div > div > div > div.ow_content > div > div.ow_superwide > div.ow_box.ow_stdmargin.ow_no_cap.ow_break_word > div.clearfix > div:nth-child(2) > span {
    background-size: 0px;
}
.hidden{
     opacity:0;
}
.visible{
     opacity:1;
}
.index-NEWSFEED_CMP_SiteFeedWidget .ow_box_cap_empty,
.dashboard-NEWSFEED_CMP_MyFeedWidget .ow_box_cap_empty,
.profile-NEWSFEED_CMP_UserFeedWidget .ow_box_cap_empty,
.group-NEWSFEED_CMP_EntityFeedWidget .ow_box_cap_empty {
    background-color: #fff;
    border: 1px solid #cad4dd;
    border-top: 1px solid #cad4dd;
    margin-left: 7px;
    margin-right: 7px;
}

.ow_cavatar {
    width: 40px;
    float: right;
    height: 59px;
    overflow: hidden;
    background-image: url(images/no-avatar.png); /** OW_Control type:image, key:cAvatarImage, section:4. Theme Settings, label: 15. Console No-avatar image, description: user avatar image on top right - size 35px x 35px **/
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin-top: 0px;
    margin-right: 10px;
    background-size: 35px 35px;
}
.ow_cavatar .ow_dnd_widget {
    display: none;
}
.ow_cavatar .ow_dnd_widget.index-BASE_CMP_MyAvatarWidget {
    background: transparent;
    height: 60px;
    display: block;
}
.ow_cavatar .ow_box,.ow_cavatar .ow_box_empty {
    background: transparent;
    border: transparent;
    margin: 0;
    padding: 0;
    height: 60px;
    overflow: hidden;
}
.ow_cavatar .ow_my_avatar_widget.clearfix {
    height: 60px;
    overflow: hidden;
}
.ow_cavatar .ow_avatar {
    padding: 12px 5px 0 3px;
    border: none;
    width: 35px;
    height: 35px;
}
.ow_cavatar .ow_avatar img {
    height: 35px;
    width: 35px;
    border-radius: 50px;
}
.ow_cavatar .ow_my_avatar_cont { display: none;}
.ow_cavatar span.ow_avatar_label {
    bottom: 14px;
    right: 16px;
}
.ow_cavatar .ow_my_avatar_cont a.ow_my_avatar_username {
    color: #fff;
}
.ow_cavatar .ow_my_avatar_widget .ow_my_avatar_cont span {
    width: 100px;
}

body.ow.whatsapp.my_preferences form#preferenceForm table.ow_table_1.ow_form {
    border-top: 1px solid #cad4dd;
}
body.ow.whatsapp.my_notification tr.ow_tr_first th {
    border-top: 1px solid #cad4dd !important;
}
body.ow.whatsapp.my_privacy .ow_box_empty.ow_center.ow_stdmargin.ow_no_cap.ow_break_word {
    background-color: #fff;
    border-left: 1px solid #cad4dd;
    border-right: 1px solid #cad4dd;
    border-top: 1px solid #cad4dd;
    padding: 12px;
    margin: 0px auto 0px auto;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    width: 100%;
    height: 393px;
}
/*Start Pace */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #2196f3;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}
/* End Pace */
.floatbox_canvas {
    overflow-x: hidden;
}
/* animation */
body .floatbox_canvas .floatbox_container,
.ow_supernarrow,.ow_newsfeed .ow_newsfeed_avatar,
.ow_superwide,.ow_newsfeed .ow_newsfeed_body {
    visibility: visible;
    animation-duration: 1s;
	animation-fill-mode: both;
}
body .floatbox_canvas .floatbox_container {
	margin-top: 10px;
    animation-name: bounceInDown;
}
.ow_superwide {
    animation-name: fadeInLeft;
}
.ow_supernarrow,.ow_newsfeed .ow_newsfeed_avatar {
    animation-name: fadeInUp;
}
/* End animation */

.ow_floatbox_preloader {
    background: url(images/floatbox_preloader.gif) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
    height: 32px !important;
    width: 32px !important;
    margin: 0px auto;
}


.ow_box.ow_stdmargin.clearfix.index-NEWSFEED_CMP_SiteFeedWidget.ow_break_word,
.ow_box.ow_stdmargin.clearfix.dashboard-NEWSFEED_CMP_MyFeedWidget.ow_break_word {
    border: none;
    background: transparent;
    padding: 10px 0 0 0;
	box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.ow_newsfeed_body::before {
    content: '';
    border-left: 1px solid #cad4dd;
    position: absolute;
    left: 22px;
    height: 110%;
	top: 44px;
}
li.ow_newsfeed_item:last-child .ow_newsfeed_body::before {
    content: '';
    height: 76%;
}
html>/**/body .ow_newsfeed_body::before,x:-moz-any-link, x:default {
	left:23px !important
}

div#avatar-change-preloader {
    background-size: 24px 24px !important;
}
.contactimporter_provider_button img {
    border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
}
.ow_right.ow_superwide .ow_box_cap_empty,
.ow_comments_ipc.ow_comments_no_form .ow_box_cap_empty {
    background-color: #fff;
    border: 1px solid #DEE5EA;
    border-top: 1px solid #cad4dd;
	margin-bottom: -1px;
}
.ow_right.ow_superwide .ow_box_empty.ow_std_margin.clearfix.ow_break_word, .ow_superwide .ow_box_empty.ow_stdmargin.ow_no_cap.ow_break_word {
    background-color: #fff;
    border: 1px solid #DEE5EA;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
.ow_superwide .ow_box_empty.ow_stdmargin.ow_no_cap.ow_break_word p span img {
    width: 98.5%;
	border-radius: 8px;
}
ul.ow_bl.clearfix.ow_small.ow_stdmargin {
    width: 300px;
    float: left;
}

.attend_buttons {
    float: right;
    width: 85%;
    padding-right: 10px;
    margin-top: -47px;
}
.attend_buttons .current_status {
    float: right;
    color: #333333;
    background-color: transparent;
    border: solid 1px transparent;
    padding: 3px 8px 4px 8px;
    border-radius: 20px;
}
.attend_buttons .current_status:hover {
    background-color: transparent;
    border: solid 1px #159682;
}
.attend_buttons .current_status span.link a {
    color: #333333;
}
.attend_buttons .current_status span.link a:hover {
    color: #159682;
}
.attend_buttons span.ow_blitem {
    background-color: #2196F3;
    border: solid 1px #1976D2;
    border-radius: 20px;
}
.attend_buttons span.ow_blitem:hover {
    background-color: #2196F3;
    border: solid 1px #1976D2;
}
.attend_buttons span.ow_blitem span input {
    color: white;
    line-height: 20px;
}
div.ow_right.ow_superwide > div.ow_box_empty.ow_std_margin.clearfix.ow_break_word > img {
    border-radius: 4px;
}

body.ow.whatsapp.forum_page .forum_search_form {
    margin-top: -53px;
    margin-right: 11px;
}
.forum_search_form {
    margin-top: -33px;
    margin-right: 3px;
}
.ow_box_empty.ow_breadcrumb.ow_stdmargin.clearfix.ow_no_cap.ow_break_word {
    background: white;
    border: 1px solid #cad4dd;
    border-top: 1px solid #cad4dd;
    margin-bottom: 0px;
    border-radius: 4px;
}

.actions li a {
    border: 1px solid #cad4dd;
    padding: 5px;
    margin: 12px;
    line-height: 27px;
    min-width: 160px;
    float: left;
    font-size: 27px;
    border-radius: 50px;
    text-transform: lowercase;
}
.actions li a:hover {
    background-color: #00897B;
    text-decoration: none;
    color: #FFFFFF;
}
.actions li a img {
    height: 44px;
    vertical-align: middle;
}
.feature--calls .feature__text {
    min-height: 140px;
}
.section--more {
    text-align: center;
    max-width: 400px;
	overflow: hidden;
}
.section--more a.button.button--outline {
    font-size: 35px;
    font-weight: normal;
    line-height: 1;
    color: #fff;
    background-color: #1cb39b;
    background-repeat: no-repeat;
    background-position: left center;
	overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
}
.section--more a.button.button--outline:hover {
    background-color: #20c1a8;
    color: #fff;
    text-decoration: none;
    background-image: url(assets/img/arrow-right.png);
    background-repeat: no-repeat;
    background-position: 95% center;
}
.hero-phone{
	background-image:url(assets/img/home-phone1.png); /** OW_Control type:image, key:signPhoneImage1, section:4. Theme Settings, label: 10. Sign-In Single Phone image, description: size 636px x 1198px **/
	width:318px;
	height:599px
}
@media (min-width: 1096px){
.hero-phone{width:318px;height:599px}
}
@media (max-width: 1095px){
.hero-phone{width:308px;height:554px;margin:0 auto}
}
.feature--calls .feature__img{
	background-image:url(assets/img/feature-33.png); /** OW_Control type:image, key:signPhoneImage2, section:4. Theme Settings, label: 11. Sign-In Dual Phone image, description: size 1394px x 815px **/
	background-repeat:no-repeat;
	background-position:50% 0%;
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
}
.feature--groups .feature__img{
	width:250px;
	height:293px;
	background-image:url(assets/img/feature-1.png); /** OW_Control type:image, key:signGroupImage1, section:4. Theme Settings, label: 12. Sign-In Groups Vector image, description: size 1000px x 1178px **/
	background-size:250px 295px;
	background-repeat:no-repeat;
	margin:0 auto;
	margin-bottom:42px;
}

@media (min-width: 899px){
.feature--calls,.feature--groups {
    float: right;
    width: 49%;
}
}

@-webkit-keyframes content-l{
  0%{left:-1920px;}
  10%{left:0px;}
  30%{left:0px;}
  40%{left:0px;}
  50%{left:0px;}
  60%{left:0px;}
  70%{left:0;}
  80%{left:-1920px;}
  90%{left:-1920px;}
  100%{left:-1920px;}
}
@-moz-keyframes content-l{
  0%{left:-1920px;}
  10%{left:0px;}
  30%{left:0px;}
  40%{left:0px;}
  50%{left:0px;}
  60%{left:0px;}
  70%{left:0;}
  80%{left:-1920px;}
  90%{left:-1920px;}
  100%{left:-1920px;}
}
@keyframes content-l{
  0%{left:-1920px;}
  10%{left:120px;}
  15%{left:0px;}
  30%{left:0px;}
  40%{left:0px;}
  50%{left:0px;}
  60%{left:0px;}
  70%{left:0;}
  80%{left:-1920px;}
  90%{left:-1920px;}
  100%{left:-1920px;}
}
@-webkit-keyframes content-r{
  0%{right:-1920px;}
  10%{right:0px;}
  30%{right:0px;}
  40%{right:0px;}
  50%{right:0px;}
  60%{right:0px;}
  70%{right:0;}
  80%{right:-1920px;}
  90%{right:-1920px;}
  100%{right:-1920px;}
}
@-moz-keyframes content-r{
  0%{right:-1920px;}
  10%{right:0px;}
  30%{right:0px;}
  40%{right:0px;}
  50%{right:0px;}
  60%{right:0px;}
  70%{right:0;}
  80%{right:-1920px;}
  90%{right:-1920px;}
  100%{right:-1920px;}
}
@keyframes content-r{
  0%{right:-1920px;}
  10%{right:120px;}
  15%{right:0px;}
  30%{right:0px;}
  40%{right:0px;}
  50%{right:0px;}
  60%{right:0px;}
  70%{right:0;}
  80%{right:-1920px;}
  90%{right:-1920px;}
  100%{right:-1920px;}
}
body > .ow_page_wrap {
    overflow: hidden;
}
@keyframes zoom-out-4-slide {
	0% { opacity:0;transform:scale(1) rotate(0.02deg); }
	10% { opacity:1;transform:scale(0.94) rotate(0.02deg); }
	25% { opacity:1;transform:scale(0.85) rotate(0.02deg); }
	35% { opacity:0;transform:scale(0.79) rotate(0.02deg); }
}
@keyframes from-left-4-slide {
	0% { opacity:0;transform:translate(0%,0px) scale(1) rotate(0.02deg); }
	10% { opacity:1;transform:translate(3%,0px) scale(1) rotate(0.02deg); }
	25% { opacity:1;transform:translate(7%,0px) scale(1) rotate(0.02deg); }
	35% { opacity:0;transform:translate(10%,0px) scale(1) rotate(0.02deg); }
}
@keyframes from-top-4-slide {
	0% { opacity:0;transform:translate(0,0%) scale(1) rotate(0.02deg); }
	10% { opacity:1;transform:translate(0,3%) scale(1) rotate(0.02deg); }
	25% { opacity:1;transform:translate(0,9%) scale(1) rotate(0.02deg); }
	35% { opacity:0;transform:translate(0,12%) scale(1) rotate(0.02deg); }
}
@keyframes from-bottom-4-slide {
	0% { opacity:0;transform:translate(0,0%) scale(1) rotate(0.02deg); }
	10% { opacity:1;transform:translate(0,-4%) scale(1) rotate(0.02deg); }
	25% { opacity:1;transform:translate(0,-9%) scale(1) rotate(0.02deg); }
	35% { opacity:0;transform:translate(0,-12%) scale(1) rotate(0.02deg); }
}
.zoom-out-4-slide {animation:zoom-out-4-slide 24s linear infinite;}
.from-left-4-slide {animation:from-left-4-slide 24s linear infinite;}
.from-top-4-slide {animation:from-top-4-slide 24s linear infinite;}
.from-bottom-4-slide {animation:from-bottom-4-slide 24s linear infinite;}
.kenburn-effect div {background-repeat:no-repeat;background-position: center center;}
.delay-6s {animation-delay:6s;}
.delay-12s {animation-delay:12s;}
.delay-18s {animation-delay:18s;}

.ow_header_pic {
	overflow:hidden;
	width:100%;
	padding:0px;
	margin:auto;
	position:relative;
	max-width:1920px;
	position:relative;
	background-color: #D0E9EA;
	background-image: url(images/white-plain);
}
.ow_header_pic .slide {
    width: 2560px;
    height: 511px;
    position: absolute;
    margin-left: -230px;
    margin-top: -50px;
    opacity: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
}

.slide.zoom-out-4-slide.delay-0s {
	background-image: url(slides/slidesmall1.jpg); /** OW_Control type:image, key:slideImage1, section:4. Theme Settings, label: 02. Index Slide image 1, description: size 1920px x 511px **/
}
.slide.from-left-4-slide.delay-6s {
	background-image: url(slides/slidesmall2.jpg); /** OW_Control type:image, key:slideImage2, section:4. Theme Settings, label: 03. Index Slide image 2, description: size 1920px x 511px **/
}
.slide.from-top-4-slide.delay-12s {
	background-image: url(slides/slidesmall3.jpg); /** OW_Control type:image, key:slideImage3, section:4. Theme Settings, label: 04. Index Slide image 3, description: size 1920px x 511px **/
}
.slide.from-bottom-4-slide.delay-18s {
	background-image: url(slides/slidesmall4.jpg); /** OW_Control type:image, key:slideImage4, section:4. Theme Settings, label: 05. Index Slide image 4, description: size 1920px x 511px **/
}

body.ow.whatsapp.base_sign_in .ow_header_pic {
	overflow:hidden;
	width:100%;
	padding:0px;
	margin:auto;
	position:relative;
	max-width:1920px;
	position:relative;
	background-color: #D0E9EA;
	background-image: url(images/bg1.jpg);
}

body.ow.whatsapp.base_sign_in .ow_header_pic .slide {
    height: 1200px;
    margin-top: -100px;
	background-image: url(images/bg1.jpg);
}
body.ow.whatsapp.base_sign_in .slide.zoom-out-4-slide.delay-0s {
	background-image: url(slides/slidebig111.jpg); /** OW_Control type:image, key:signSlideImage1, section:4. Theme Settings, label: 06. Sign-In Slide image 1, description: size 1920px x 1200px **/
}
body.ow.whatsapp.base_sign_in .slide.from-left-4-slide.delay-6s {
	background-image: url(slides/slidebig222.jpg); /** OW_Control type:image, key:signSlideImage2, section:4. Theme Settings, label: 07. Sign-In Slide image 2, description: size 1920px x 1200px **/
}
body.ow.whatsapp.base_sign_in .slide.from-top-4-slide.delay-12s {
	background-image: url(slides/slidebig333.jpg); /** OW_Control type:image, key:signSlideImage3, section:4. Theme Settings, label: 08. Sign-In Slide image 3, description: size 1920px x 1200px **/
}
body.ow.whatsapp.base_sign_in .slide.from-bottom-4-slide.delay-18s {
	background-image: url(slides/slidebig444.jpg); /** OW_Control type:image, key:signSlideImage4, section:4. Theme Settings, label: 09. Sign-In Slide image 4, description: size 1920px x 1200px **/
}

.ow_header_pic a h1, .ow_header_pic a h2 {
    font-family: 'Raleway', sans-serif;
	font-weight: 300;
    text-shadow: 0px 0px #333 !important;
    margin-left: -200px;
}
.header_container {
    position: absolute;
    float: left;
    width: 55%;
    padding: 40px;
    margin: 35px;
    margin-top: 88px;
    z-index: 90;
    background-color: transparent;
}
a.ow_logo.ow_center {
    width: 90%;
    background-image: url(assets/img/open-network-logo.png); /** OW_Control type:image, key:signPagelogoImage, section:4. Theme Settings, label: 17. Sign-in Page Big Logo image, description: sign-in Big Logo **/
    background-position: center center;
    background-size: contain;
	animation: fadeInLeft .5s;
}
.header_container h1 {
    padding: 30px 0;
    text-align: center;
    font-size: 30px;
    color: #007BFF;
    text-transform: inherit;
    border-bottom: 1px dashed #89898a;
    animation: fadeInLeft 1s;
    line-height: 30px;
    background-color: transparent;
    box-shadow: none;
}
.header_container ul {
    padding-top: 15px;
}
.header_container ul li {
    padding: 10px 0 10px 26px;
    font-size: 20px;
    background-image: url(assets/img/pointer-right.png);
    background-repeat: no-repeat;
    background-position: left 10px;
    background-size: 20px;
    color: #008a87;
	animation: fadeInLeft 1.5s;
}
.block--hero .block__title,.block--hero .block__hint h1, .feature__title {
    background-color: transparent;
    box-shadow: none;
    color: #f9f9f9;
}
.ow.base_sign_in form .ow_sign_up {
    display: none;
}

/* Responsive */

@media (max-width: 2560px){
body.ow.whatsapp.base_sign_in .ow_header,.ow_header {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.ow_header, .ow_header_pic {
    height: 383px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 900px;
}
body.ow.whatsapp.base_user_join .ow_page_container {
    max-width: 98%;
}
.ow_header_pic a {
    padding: 20px;
    text-align: center;
}
.ow_header_pic a h1 {
    color: #fff;
    font-size: 26px;
	line-height: 1;
    padding: 20px;
    margin-top: 100px;
    text-align: center;
    position: relative;
    text-shadow: 1px 1px #333;
    text-transform: none;
  -webkit-animation:content-l 7.5s infinite;
  -moz-animation:content-l 7.5s infinite;
  animation:content-l 7.5s infinite;
      background-color: transparent;
    border: none;
    box-shadow: none;
}
.ow_header_pic a h2 {
    color: #FFFFFF;
    font-size: 24px;
	line-height: 1;
    padding: 20px;
    text-align: center;
    position: relative;
    text-shadow: 1px 1px #333;
    text-transform: none;
  -webkit-animation:content-r 9.5s infinite;
  -moz-animation:content-r 9.5s infinite;
  animation:content-r 9.5s infinite;
}
.ow_header_pic a:hover,
.ow_header_pic a:hover {
    text-decoration: none;
}
}
@media (max-width: 1921px){
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 900px;
}
.ow_page_container {
    max-width: 98%;
}
}
@media (max-width: 1540px){
body.ow.whatsapp.base_sign_in .ow_header,.ow_header {
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
	-webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}
.ow_header, .ow_header_pic {
    height: 383px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 900px;
}
.ow_header_pic .slide {
    width: 150vw;
}
}
@media (max-width: 1396px){
.ow_header, .ow_header_pic {
    height: 364px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 854px;
}
.ow_video_player iframe {
    height: 365px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 358px;
}
}
@media (max-width: 1299px){
.ow_header, .ow_header_pic {
    height: 341px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 800px;
}
.ow_avatar_console #avatar_console_image {
    width: 170px;
    height: 170px !important;
}
.ow_left.ow_supernarrow .ow_box table.ow_table_3 td.ow_value {
    max-width: 80px !important;
    word-break: break-word;
    overflow: hidden;
}
.ow_event_list .ow_superwide .ow_ipc .ow_ipc_info .ow_ipc_content {
    min-height: 85px;
}
.ow_other_video_thumb.ow_left {
    width: 99%;
    text-align: center;
    margin: 0 auto;
    padding: 4px 0;
}
.ow_other_video_item_title {
    margin-left: auto;
    text-align: center;
    padding-left: 0;
}
.ow_video_player iframe {
    height: 327px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 326px;
}
}
@media (max-width: 1054px){
.ow_header, .ow_header_pic {
    height: 273px;
}
.ow_header_pic .slide {
    width: 1600px;
    height: 426px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 640px;
}
body.ow.whatsapp.base_sign_in .ow_header_pic .slide {
    width: 1600px;
    height: 1000px;
}
.ow_menu_wrap {
    display: none;
}
.ow_nav_btn {
    display: block;
}
.ow_page_container .ow_page {
    margin: 0 244px 0px 0px;
}
html body div .ow_canvas h1 {
    margin-left: 0px;
}
.ow_footer .ow_canvas .ow_page {
    margin: 0 5px 0px 0px;
}
.ow_left.ow_supernarrow, .ow_right.ow_superwide {
    /* float: none; */
    width: 100%;
}
.ow_event_list .ow_superwide .ow_ipc .ow_ipc_info .ow_ipc_content {
    min-height: auto;
}
.profile-PHOTO_CMP_UserPhotoAlbumsWidget.ow_break_word .ow_lp_wrapper {
    width: 96%;
}
.profile-PHOTO_CMP_UserPhotoAlbumsWidget .ow_lp_label {
    margin-left: 0;
}
.ow_group_list .ow_superwide .ow_ipc, .ow_event_list .ow_superwide .ow_ipc {
    width: 47%;
}
.ow_video_list .ow_video_list_item.ow_small {
    margin: 4px;
}
.ow_video_player iframe {
    height: 296px;
}
.ow_avatar_console #avatar_console_image {
    width: 156px;
    height: 156px !important;
}
.ow_header_pic a h1 {
    margin-top: 70px;
}
.ow_header_pic a h1, .ow_header_pic a h2 {
    margin-left: -150px;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture {
    margin-right: 0px;
}
.ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_data {
    padding-right: 24px;
}
.header_container {
    width: 480px;
	margin-top: 88px;
	padding: 25px;
}
.header_container h1 {
    padding: 20px 0;
	font-size: 25px;
}
.header_container ul li {
    padding: 10px 0 11px 26px;
    font-size: 17px;
}
.block--hero .block__inner {
    padding-left: 20px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 290px;
}
}
@media (max-width: 980px){
.ow_header, .ow_header_pic {
    height: 361px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 613px;
}
.header_container {
    width: 430px;
}
a.ow_logo.ow_center {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 0;
}
.ow_avatar_console #avatar_console_image {
    width: 142px;
    height: 142px !important;
}
.ow_video_list .ow_video_list_item.ow_small {
    margin: 2px;
    padding: 3px;
}
.ow_video_player iframe {
    height: 268px;
}
.ow_header_pic a h1 {
    padding: 10px;
    margin-top: 70px;
}
.ow_header_pic a h2 {
    padding: 10px;
}
.ow_user_list_item {
    padding: 4px;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture {
    margin-right: 0px;
    width: 60px;
    padding: 6px 4px;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture .ow_avatar, .ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture .ow_avatar a img {
    width: 50px;
    height: 50px;
}
.ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_data {
    min-height: 54px;
    height: auto;
    padding: 4px 4px 4px;
    padding-right: 24px;
}
.ow_break_word .ow_nowrap.ow_icon_control {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 264px;
}
}
@media (max-width: 910px){
.ow_header, .ow_header_pic {
    height: 340px;
}
.ow_header_pic .slide {
    width: 1400px;
    height: 373px;
}
.header_container {
    width: 380px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 563px;
}
body.ow.whatsapp.base_sign_in .ow_header_pic .slide {
    width: 1400px;
    height: 875px;
}
.ow_header_pic a h1, .ow_header_pic a h2 {
    margin-left: -60px;
}
.ow_avatar_console #avatar_console_image {
    width: 120px;
    height: 120px !important;
}
.ow_group_list .ow_superwide .ow_ipc .ow_ipc_picture, .ow_event_list .ow_superwide .ow_ipc .ow_ipc_picture {
    width: 74px;
    border-radius: 50%;
}
.ow_group_list .ow_superwide .ow_ipc .ow_ipc_picture img, .ow_event_list .ow_superwide .ow_ipc .ow_ipc_picture img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
span.ow_button {
    margin-bottom: 4px;
}
div#photo-list-search {
    width: 100%;
}
.ow_searchbar {
    margin-top: 8px;
}
.ow_photo_list.ow_photo_pint_mode .ow_photo_item_wrap {
    width: 33% !important;
}
.ow_video_list .ow_video_list_item.ow_small {
    min-height: auto;
    margin: 4px;
    padding: 6px;
}
.ow_video_player iframe {
    height: 316px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 232px;
}
}
@media (max-width: 855px){
.ow_avatar_console #avatar_console_image {
    width: 113px;
    height: 113px !important;
}
.header_container {
    margin-left: 5px;
}
a.ow_logo.ow_center {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 8px;
}
.ow.base_sign_in .ow_sign_in_wrap {
    right: 0px;
    width: 380px;
}
.ow_group_list .ow_superwide .ow_ipc, .ow_event_list .ow_superwide .ow_ipc {
    width: 46%;
}
.ow_video_player iframe {
    height: 290px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 212px;
}
}
@media (max-width: 821px){
.ow_avatar_console #avatar_console_image {
    width: 110px;
    height: 110px !important;
}
.ow_video_player iframe {
    height: 286px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 207px;
}
}
@media (max-width: 808px){
.ow_header, .ow_header_pic {
    height: 313px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 500px;
}
.ow_avatar_console #avatar_console_image {
    width: 107px;
    height: 107px !important;
}
.ow_group_list .ow_superwide .ow_ipc, .ow_event_list .ow_superwide .ow_ipc {
    width: 98%;
}
.ow_header_pic a h1 {
    font-size: 24px;
    padding: 5px;
}
.ow_header_pic a h2 {
    font-size: 20px;
    line-height: 1;
    padding: 10px;
}
.ow_header_pic a h1, .ow_header_pic a h2 {
    margin-left: -160px;
}
.ow.base_sign_in .ow_sign_in_wrap {
    width: 350px;
    right: 0;
}
.header_container {
    margin-left: 5px;
    width: 390px;
}
.ow_newsfeed_string.ow_small {
    padding-right: 10px;
}
.ow_newsfeed_item .ow_newsfeed_item_picture {
    margin-right: 4px;
}
.ow_video_player iframe {
    height: 278px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 202px;
}
}
@media (max-width: 775px){
	.ow_page_container {
    max-width: 100%;
}
.ow_header, .ow_header_pic {
    height: 304px;
}
.ow_header_pic .slide {
    width: 1280px;
    height: 399px;
    background-size: contain;
	-webkit-background-size: contain;
	-moz-background-size: contain;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 640px;
}
body.ow.whatsapp.base_index_page .ow_header .ow_box,
body.ow.whatsapp.base_user_dashboard .ow_header .ow_box {
    display: none;
}
.block--hero .block__inner {
    padding-left: 20px !important;
}
.ow_page_container .ow_page {
    margin: 0 auto !important;
    padding: 16px 10px 10px;
}
html body div .ow_canvas h1 {
    margin-left: 10px;
    margin-right: 10px;
}
.ow_content {
    float: none;
    margin-bottom: 4%;
}
body.ow.whatsapp.base_index_page .ow_sidebar, .ow_sidebar {
    float: none;
    margin: 0 auto;
    width: 100%;
}
a.ow_logo.ow_left {
    width: 140px;
    background-position: left center;
}
.ow_console_right {
    padding-left: 0;
}
.ow_console .ow_avatar{
	height: 32px !important;
    width: 32px !important;
	padding: 1px;
}
.ow_console .ow_avatar img {
    height: 32px !important;
    width: 32px !important;
}
.ow_console_ntf_cont, .ow_console_invt_cont {
    margin-left: 48px;
}
body .ow_newsfeed_item_content {
    width: 95% !important;
    max-width: 100% !important;
}
.ow_newsfeed .ow_newsfeed_avatar .ow_avatar,
body .ow_comments_item .ow_comments_item_picture .ow_avatar,
.ow_feed_comments_input_sticky .ow_comments_item_picture .ow_avatar,
.ow_comments_input_wrap .ow_comments_item_picture .ow_avatar {
    width: 40px !important;
    height: 40px !important;
    padding: 2px;
}
.ow_newsfeed .ow_newsfeed_avatar img,
.ow_comments_item .ow_comments_item_picture .ow_avatar img,
.ow_feed_comments_input_sticky .ow_comments_item_picture .ow_avatar img,
.ow_comments_input_wrap .ow_comments_item_picture .ow_avatar img {
    width: 40px !important;
    height: 40px !important;
}
.ow_canvas .ow_newsfeed_body {
    margin-left: 55px;
    min-height: 70px;
}
.profile-PHOTO_CMP_UserPhotoAlbumsWidget.ow_break_word .ow_lp_wrapper {
    width: 72px;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture {
    width: 65px;
   padding: 8px 8px;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture .ow_avatar, .ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture .ow_avatar a img {
    width: 60px;
    height: 60px;
}
.ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_data {
    height: 63px;
    padding: 8px 80px 4px;
    padding-right: 24px;
}
.attend_buttons {
    margin-top: -51px;
}
.ow_video_list .ow_video_list_item.ow_small {
    width: 99%;
}
.ow_video_player iframe {
    height: 412px;
}
.ow_forum_topic_posts .ow_ipc:first-child .ow_ipc_picture {
    width: 65px;
}
.ow_forum_topic_posts .ow_ipc:first-child .ow_ipc_picture .ow_avatar {
    width: 60px;
    height: 60px;
}
.ow_forum_topic_posts .ow_ipc_info {
    /* margin-left: 75px; */
}
body.htmlarea_styles blockquote.ow_quote, blockquote.ow_quote {
    margin: 10px 0 10px 0px;
}
body.base_sign_in > .ow_page_wrap {
    padding-top: 0;
    min-height: 100%;
}
.ow.base_sign_in .ow_sign_in_wrap {
    width: 350px;
	padding-top: 60px;
	right: 0;
}
.header_container {
    margin-left: 7px;
    margin-top: 69px;
    width: 365px;
    padding: 30px 22px;
}
.header_container h1 {
    padding: 22px 0;
    font-size: 22px;
}
.header_container ul li {
    padding: 10px 0 11px 26px;
    font-size: 16px;
}
.ow.base_sign_in form .ow_sign_up {
    display: none;
}
.ow_header_pic a h1, .ow_header_pic a h2 {
    margin-left: -8%;
}
.ow_header_pic a h1 {
    margin-top: 80px;
}
.ow_header_pic a h2 {
    padding: 5px;
}
.ow_menu_wrap {
    display: none;
}
.actions li a {
    background-color: #F8FCFC;
}
.ow_footer .ow_canvas .ow_page {
    padding: 0;
    margin: 0 5px 0px 0px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 406px;
}
body.ow.whatsapp.base_user_join {
    background-position: 25% 20px;
}
}
@media (max-width: 740px){
.ow_header, .ow_header_pic {
    height: 296px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 620px;
}
.ow.base_sign_in .ow_sign_in_wrap {
    width: 340px;
    padding-top: 56px;
    right: 0;
}
.ow.base_sign_in .ow_sign_in_wrap.ow_sign_in_wrap form {
    padding: 30px 20px 30px 20px;
    background: rgba(35, 32, 32, 0.5);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.header_container {
    margin-left: 7px;
    margin-top: 64px;
    width: 354px;
    padding: 30px 20px;
}
.ow_video_player iframe {
    height: 396px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 388px;
}
}
@media (max-width: 734px){
.ow_header, .ow_header_pic {
    height: 295px;
}
.ow.base_sign_in .ow_sign_in_wrap {
    width: 336px;
    padding-top: 54px;
}
.header_container {
    margin-top: 62px;
}
}
@media (max-width: 670px){
.ow_header, .ow_header_pic {
    height: 278px;
}
.ow_header_pic a h2 {
    font-size: 18px;
}
.ow_header_pic .slide {
    width: 1200px;
    height: 370px;
}
body.ow.whatsapp.base_sign_in .ow_header,
body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 707px;
}
.header_container.visible {
    width: 92%;
}
.block--hero .block__inner {
    padding-top: 155px !important;
    padding-right: 20px !important;
}
.hero-phone {
    width: 294px;
    margin: 0 auto;
}
body > .ow_page_wrap {
    padding-top: 87px;
}
.ow_menu_fullpage {
    top: 89px;
    padding-top: 2px;
}
.ow_site_panel {
    height: 50px;
    background-color: #EDE7F6; /** OW_Control type:color, section:1. General Settings, key:mpanelColor, label:07. Site top bar background color on Mobile **/
    box-shadow: #EDE7F6 0 1px 0px;
    -webkit-box-shadow: #EDE7F6 0 1px 0px;
    -moz-box-shadow: #EDE7F6 0 1px 0px;
}
a.ow_logo.ow_left {
    width: 80%;
    height: 50px;
    background-position: center center;
    float: none;
	max-width:535px;
}
.ow_menu_active .ow_nav_btn,.ow_nav_btn {
    width: 50px;
    height: 50px;
    background-position: -5px -124px;
}
.ow_menu_active .ow_nav_btn:hover {
    background-position: -5px 0px;
}
.ow_cavatar {
    width: 50px;
    height: 50px;
    float: right;
    background-size: 30px 30px;
	margin-right: 0;
}
.ow_cavatar .ow_dnd_widget.index-BASE_CMP_MyAvatarWidget {
    background: transparent;
    height: 50px;
}
.ow_cavatar .ow_my_avatar_widget.clearfix {
    height: 50px;
    overflow: hidden;
}
.ow_cavatar .ow_avatar {
    width: 40px;
    height: 40px;
    padding: 6px 0 0 4px;
}
.ow_cavatar .ow_avatar img {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 2px solid transparent;
}
.ow_console_right {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #f2ecee; /** OW_Control type:color, section:1. General Settings, key:mconsoleColor, label:08. Notification bar background color on Mobile **/
	height: 40px;
}
.ow_console_body {
    padding: 4px 2px 2px 2px;
}
.ow_console_item {
    padding: 0px 0px 0 0px;
	vertical-align: top;
}
.ow_console_item a {
    margin: 6px 0 0 0;
}
.ow_console_lang_item {
    background-color: #00776b;
    border: 1px solid #159682;
}
.ow_console .ow_tooltip_top_right.ow_tooltip {
    top: 34px !important;
	right: -12px;
}
.ow_invitation_list .ow_tooltip.console_tooltip.ow_tooltip_top_right,
.ow_friend_request_list .ow_tooltip.console_tooltip.ow_tooltip_top_right,
.ow_mailbox_items_list .ow_tooltip.console_tooltip.ow_tooltip_top_right,
.ow_notification_list .ow_tooltip.console_tooltip.ow_tooltip_top_right {
	top: 87px !important;
    right: -70px;
    width: 100%;
    position: fixed;
}
.ow_invitation_list .ow_tooltip.console_tooltip.ow_tooltip_top_right .ow_tooltip_tail,
.ow_friend_request_list .ow_tooltip.console_tooltip.ow_tooltip_top_right .ow_tooltip_tail,
.ow_mailbox_items_list .ow_tooltip.console_tooltip.ow_tooltip_top_right .ow_tooltip_tail,
.ow_notification_list .ow_tooltip.console_tooltip.ow_tooltip_top_right .ow_tooltip_tail {
    display: none;
}
html body div .ow_page h1 {
    margin-bottom: 15px;
}
.ow_ipc_info {
    padding: 0px 10px 10px 10px;
}
.ow_user_list .ow_item_set3 {
    width: 99%;
    word-wrap: break-word;
}
.ow_forum_topic_posts .ow_ipc_info {
    padding: 10px 10px 10px 10px;
}
body.ow.whatsapp.base_user_join .ow_canvas {
    width: 100%;
}
.ow.base_sign_in a.ow_logo.ow_left {
    width: 80%;
    height: 50px;
    background-position: left center;
    float: left;
}
.ow.base_sign_in .ow_sign_in_wrap {
    width: 100%;
    margin-top: 458px;
    background-color: #d0e9ea;
    padding-top: 0px;
}
.ow.base_sign_in .ow_sign_in_wrap.ow_sign_in_wrap form {
    padding: 30px 30px 30px 30px;
	margin: 0;
    margin-top: 0px;
}
body.ow.whatsapp.base_sign_in .ow_menu_fullpage {
    top: 0;
}
body.ow.whatsapp.base_sign_in.ow_menu_active .ow_menu_fullpage {
    padding-top: 60px;
    margin-top: 0px;
}
.ow_menu_fullpage_wrap ul.ow_main_menu {
    overflow: hidden;
}
.pace .pace-progress {
  background: #1976d2;
}
.ow_video_player iframe {
    height: 356px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 349px;
}
}
@media (max-width: 644px){
.ow_header, .ow_header_pic {
    height: 270px;
}
a.ow_logo.ow_left {
    max-width: 520px;
}
.ow_chat_dialog_wrap {
    z-index: 110;
}
.ow_sign_in_wrap {
    background-position: 130% 100%;
}
.ow_video_player iframe {
    height: 340px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 334px;
}
}
@media (max-width: 604px){
.ow_header, .ow_header_pic {
    height: 260px;
}
.ow_header_pic .slide {
    width: 1130px;
    height: 349px;
}
a.ow_logo.ow_left {
    max-width: 500px;
}
.ow_sign_in_wrap {
    background-position: 140% 100%;
}
.floatbox_container .ow_sign_in_wrap form {
    width: 300px;
}
.header_container.visible {
    width: 91%;
}
.ow_header_pic a h1 {
    font-size: 18px;
}
.ow_header_pic a h2 {
    font-size: 15px;
}
.ow_video_player iframe {
    height: 318px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 311px;
}
}
@media (max-width: 570px){
.ow_header, .ow_header_pic {
    height: 251px;
}
.ow_header_pic .slide {
    width: 1110px;
    height: 340px;
}
.header_container.visible {
    width: 90%;
}
.header_container h1 {
    padding: 2px 0 20px 0;
}
.header_container ul li {
    font-size: 16px;
}
.floatbox_container .ow_sign_in_wrap {
    background-image: none;
}
.floatbox_container .ow_sign_in_wrap h2 {
    margin: -9px 8px 10px 8px;
}
.floatbox_container .ow_sign_in_wrap form {
    width: 280px;
	margin: 0;
    background-color: transparent;
}
.ow_sign_in_wrap form .ow_form_options p.ow_remember_me,
.ow_sign_in_wrap form .ow_form_options p.ow_forgot_pass {
    font-size: 13px;
}
.ow_header_pic a h1 {
    margin-top: 70px;
}
.ow.base_sign_in .ow_sign_in_wrap form .ow_connect_text {
    line-height: 1;
}
body.ow.whatsapp.base_sign_in .ow_header {
    background-attachment: initial;
}
.ow_footer {
    height: 150px;
}
.ow_video_player iframe {
    height: 300px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_video_playing iframe {
    height: 294px;
}
}
@media (max-width: 560px){
.ow_header, .ow_header_pic {
    height: 249px;
}
.ow_table_1, .ow_table_2, .ow_table_3 {
    width: 100% !important;
}
.header_container {
    width: 89%;
}
}
@media (max-width: 550px){
a.ow_logo.ow_left {
    width: 75%;
	max-width:445px;
}
.hg-avatar-image {
    width: 100px !important;
    height: 100px !important;
}
.uh-avatar {
    margin-top: -95px !important;
}
.uh-head {
    margin-left: 10px !important;
}
.uh-head-text {
    margin-left: 134px !important;
}
.uh-display-name {
    font-size: 20px !important;
}
}
@media (max-width: 480px){
.ow_header, .ow_header_pic {
    height: 228px;
}
.ow_header_pic .slide {
    width: 1020px;
    height: 310px;
}

body.ow.whatsapp.base_sign_in .ow_header_pic .slide {
    width: 1180px;
    height: 738px;
}
.header_container.visible {
    display: block;
    width: 87%;
    margin: 10px;
    margin-top: 70px;
    padding: 10px 20px 10px 20px;
}
a.ow_logo.ow_center {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 8px;
}
.ow_sign_in_wrap {
    background-position: 80% 121%;
}
.floatbox_container .ow_sign_in_wrap form {
    width: 96%;
    margin: 0;
    padding: 8px;
    background-color: transparent;
}
a.ow_logo.ow_left {
    max-width: 375px;
}
.ow_menu_fullpage_wrap .ow_main_menu li a {
    font-size: 13px;
    line-height: 13px;
	text-transform: capitalize;
}
.ow_main_menu li a span {
    line-height: 40px;
    display: inline-block;
}
.ow_avatar {
    width: 45px;
    height: 45px;
    padding: 2px;
}
.ow_avatar img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
}
body .ow_comments_item .ow_comments_item_picture .ow_avatar {
    width: 45px;
    height: 45px;
    padding: 2px;
}
.ow_comments_item .ow_comments_item_picture .ow_avatar img {
    width: 40px !important;
    height: 40px !important;
}
body .ow_comments_item .ow_comments_item_info {
    margin-left: 60px;
    padding-top: 0;
}
.ow_newsfeed .ow_newsfeed_avatar {
    position: relative;
    z-index: 1;
}
.ow_newsfeed .ow_newsfeed_features {
    max-width: none;
    margin-left: 0px;
}
.ow_photo_list.ow_photo_pint_mode .ow_photo_item_wrap {
    width: 100% !important;
}
.ow_lp_photos .ow_lp_wrapper {
    width: 45px;
    height: 45px;
    padding: 2px;
    border-radius: 50%;
}
.ow_photo_item_widget {
    width: 45px !important;
    height: 45px !important;
}
.ow_lp_albums .ow_lp_wrapper, .ow_lp_groups .ow_lp_wrapper {
    width: 45px !important;
    height: 45px;
    padding: 0px;
}
.ow_lp_photos img, .ow_lp_albums img, .ow_lp_groups img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.ow_lp_label {
    margin-left: 65px;
}
.ow_ipc_picture .ow_avatar img {
    margin-top: 0px;
    margin-left: 0px;
    width: 45px !important;
    height: 45px !important;
}
.ow_video_list .ow_video_list_item.ow_small {
    width: 98%;
}
.ow_video_player iframe {
    height: 246px;
}
.ow_canvas .ow_newsfeed_body {
    margin-left: 0px;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture {
    padding: 6px 6px;
}
.ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture .ow_avatar, .ow_user_list.ow_full .ow_user_list_item.clearfix.ow_item_set3 .ow_user_list_picture .ow_avatar a img {
    width: 60px !important;
    height: 60px !important;
}
.ow_group_list .ow_superwide .ow_ipc, .ow_event_list .ow_superwide .ow_ipc {
    width: 96%;
}
body .ow_group_brief_info .details {
    padding-left: 0px;
    margin-left: auto !important;
}
body .ow_group_brief_info .details h3.title {
    margin-left: 110px;
	min-height: 100px;
}
.ow_group_brief_info .body.ow_smallmargin {
    padding-top: 10px;
}
.ow_dnd_widget.index-EVENT_CMP_UpcomingEvents .ow_ipc_picture {
    width: 51px;
}
.ow_dnd_widget.index-EVENT_CMP_UpcomingEvents .ow_ipc_picture img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.ow_right.ow_superwide .ow_box_empty.ow_std_margin.clearfix.ow_break_word, .ow_superwide .ow_box_empty.ow_stdmargin.ow_no_cap.ow_break_word {
    padding: 12px;
}
.clearfix > div.ow_right.ow_superwide > div.ow_box_empty.ow_std_margin.clearfix.ow_break_word > img {
    float: none !important;
    width: 100%;
    margin: 0 0 8px !important;
}
.ow_blogs_list .ow_superwide .ow_ipc_info {
    margin-left: auto;
}
.ow_forum_topic_posts .ow_ipc:first-child .ow_ipc_picture {
    width: 50px;
}
.ow_forum_topic_posts .ow_ipc:first-child .ow_ipc_picture .ow_avatar {
    width: 45px;
    height: 45px;
}
.ow_forum_topic_posts .ow_ipc_info {
    /* margin-left: 60px; */
    padding: 10px 10px 10px 10px;
}
body.htmlarea_styles blockquote.ow_quote, blockquote.ow_quote {
    margin: 0px 0 10px 0px;
    padding: 0px 5px;
}
iframe {
    width: 100%;
    height: auto;
}

.ow_header_pic a h1,
.ow_header_pic a h2 {
    display: none;
}
.ow_newsfeed_body::before {
    border-left: 0px solid #007BFF !important;
}
.ow.base_sign_in .ow_sign_in_wrap form span.fb_connect_wrap,
.ow.base_sign_in .ow_sign_in_wrap form span.glconnect_button_text,
.ow.base_sign_in .ow_sign_in_wrap form .vkconnect-label .vkconnect-right-border {
    margin-left: 0px !important;
    border-radius: 50px !important;
	-webkit-border-radius: 50px !important;
	-moz-border-radius: 50px !important;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_ws_video .ow_video_playing iframe {
    height: 244px;
}
.ow_fw_menu .ow_explore_photos_show {
    font-size: 14px;
    padding-left: 8px;
    background-color: #fff;
    border: 1px solid #d5dfe2;
    border-right: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    margin-top: -1px;
}
.ow_fw_menu .ow_fw_btns a {
    background-color: white;
    padding: 4.5px;
    border: 1px solid #d5dfe2;
    margin-left: -1px;
}
.ow_fw_menu .ow_fw_btns a:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.ow_fw_menu .ow_searchbar .ow_searchbar_btn {
    margin-top: 4px;
}
}
@media (max-width: 440px){
body.ow.whatsapp.base_user_join .ow_table_1 td,body.ow.whatsapp.base_user_join .ow_table_2 td {
    padding: 6px;
}
.vkconnect-connect {
    margin-top: 4px;
}
a.ow_logo.ow_left {
    max-width: 330px;
}
.ow_header_pic .slide {
    width: 990px;
    height: 300px;
}
.header_container.visible {
    width: 86%;
}
.ow_invitation_list .ow_tooltip.console_tooltip.ow_tooltip_top_right, .ow_friend_request_list .ow_tooltip.console_tooltip.ow_tooltip_top_right, .ow_mailbox_items_list .ow_tooltip.console_tooltip.ow_tooltip_top_right, .ow_notification_list .ow_tooltip.console_tooltip.ow_tooltip_top_right {
    right: -10px;
}
.ow_newsfeed .ow_newsfeed_body {
    padding: 10px 0px 0px;
}
.ow_newsfeed_string.ow_small {
    padding-right: 24px;
    min-height: 24px;
}
.ow_right {
    float: right;
}
.ow_right span.ow_button {
    padding: 0px 4px;
}
.ow_right span.ow_button input[type=button] {
    padding: 1px 24px 0px 0px;
}
.ow_btn_delimiter.ow_right {
    float: none;
}
.ow_btn_delimiter span.ow_button:first-child {
    margin-bottom: 8px;
    margin-right: 0;
}
.ow_content_menu_wrap {
    margin-bottom: 10px;
}
.ow_content_menu {
    text-transform: capitalize;
}
.ow_content_menu span {
    padding: 5px 10px 5px 32px;
}
.ow_content_menu li a span::before {
    position: absolute;
    margin-left: -24px;
}
.ow_video_player iframe {
    height: 220px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_ws_video .ow_video_playing iframe {
    height: 219px;
}
}
@media (max-width: 430px){
.ow_header, .ow_header_pic {
    height: 213px;
}
body, html {
    min-width: auto;
}
a.ow_logo.ow_left {
    max-width: 320px;
}
body.ow.whatsapp.base_user_join .ow_table_1 td, body.ow.whatsapp.base_user_join .ow_table_2 td {
    padding: 5px;
}
.header_container h1 {
    font-size: 19px;
}
.header_container ul li {
    padding: 7px 0 8px 26px;
    font-size: 13px;
}
.ow_video_player iframe {
    height: 215px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_ws_video .ow_video_playing iframe {
    height: 213px;
}
}
@media (max-width: 422px){
.ow_header, .ow_header_pic {
    height: 212px;
}
body.ow.whatsapp.base_user_join .ow_table_1 td,
body.ow.whatsapp.base_user_join .ow_table_2 td {
    padding: 4px;
}
a.ow_logo.ow_left {
    max-width: 315px;
}
}
@media (max-width: 415px){
.ow_header, .ow_header_pic {
    height: 210px;
}
body.ow.whatsapp.base_user_join .ow_table_1 td, body.ow.whatsapp.base_user_join .ow_table_2 td {
    padding: 4px;
    font-size: 13px;
}
a.ow_logo.ow_left {
    max-width: 305px;
}
.ow_video_player iframe {
    height: 210px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_ws_video .ow_video_playing iframe {
    height: 207px;
}
}
@media (max-width: 413px){
.ow_header, .ow_header_pic {
    height: 210px;
}
body.ow.whatsapp.base_user_join select  {
    font-size: 12px;
    max-width: 100px;
}
}
@media (max-width: 384px){
.ow_header, .ow_header_pic {
    height: 201px;
}
.ow_header_pic .slide {
    width: 920px;
    height: 278px;
}

body.ow.whatsapp.base_sign_in .ow_header_pic .slide {
    width: 1120px;
    height: 700px;
}
a.ow_logo.ow_left {
    width: 70%;
    max-width: 275px;
}
.header_container.visible {
    width: 89.5%;
    padding: 10px;
}
a.ow_logo.ow_center {
    width: 40%;
    margin: 0 auto;
    padding-bottom: 4px;
    padding-top: 4px;
}
.header_container h1 {
    padding: 2px 0 10px 0;
    font-size: 16px;
}
.header_container ul li {
    padding: 6px 0 6px 26px;
    font-size: 13px;
}
a.button.button--outline.visible {
    font-size: 21px;
    padding: 16px 12px;
    min-width: 100px;
    max-width: 180px;
    text-align: center;
    margin: 0 auto;
}
body.ow.whatsapp.base_sign_in .ow_header, body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 644px;
}
.ow.base_sign_in .ow_sign_in_wrap {
    margin-top: 395px;
}
.ow_right.ow_superwide .ow_box_empty img {
    width: 100%;
}
body.ow.whatsapp.base_user_join .ow_table_1 td, body.ow.whatsapp.base_user_join .ow_table_2 td {
    padding: 4px;
    font-size: 13px;
    max-width: 100px;
}

.ow_group_list .ow_superwide .ow_ipc, .ow_event_list .ow_superwide .ow_ipc {
    width: 93%;
}
.ow_video_player iframe {
    height: 190px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_ws_video .ow_video_playing iframe {
    height: 187px;
}
}
@media (max-width: 378px){
.ow_header, .ow_header_pic {
    height: 200px;
}
a.ow_logo.ow_left {
    width: 70%;
    max-width: 270px;
}
.ow_console_list_wrapper {
    width: 280px;
    overflow-y: auto;
    word-wrap: break-word;
}
.ow_video_player iframe {
    height: 186px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_ws_video .ow_video_playing iframe {
    height: 185px;
}
}
@media (max-width: 364px){
.ow_header, .ow_header_pic {
    height: 196px;
}
.ow_header_pic .slide {
    width: 920px;
    height: 270px;
}
body.ow.whatsapp.base_sign_in .ow_header_pic .slide {
    width: 1090px;
    height: 681px;
}
.header_container ul {
    padding-top: 8px;
}
a.ow_logo.ow_left {
    width: 140px;
    background-size: contain;
}
.ow_footer {
    height: 160px;
}
.ow_sign_in_wrap {
    background-position: center bottom;
}
.ow_forum tr.ow_tr_first th {
    font-size: 15px;
}
table.ow_table_1.ow_forum_topic {
    width: 320px;
    font-size: 14px;
    font-weight: normal;
}
th.ow_title,th.ow_posts,th.ow_views,th.ow_author {
    font-size: 15px;
}

.ow_forum_topic .ow_icon {
    line-height: 14px;
    text-align: center;
    width: auto;
    max-width: 55px;
    padding: 4px;
    padding-left: 0;
    font-size: 12px;
}
.ow_forum_topic .ow_icon span {
    font-size: 11px;
}
.ow_forum_topic td.ow_title {
    width: 100px;
	max-width: 100px;
    padding: 4px;
    word-wrap: break-word;
    word-break: break-word;
}
.ow_forum_topic .ow_posts,.ow_forum_topic .ow_views {
    text-align: center;
    width: auto;
    padding: 4px;
    max-width: 45px;
}
.ow_forum_topic .ow_author {
    width: 100px;
    max-width: 100px;
    padding: 4px;
    word-wrap: break-word;
    word-break: break-word;
    font-size: 13px;
}
.ow_forum_topic .ow_author span.ow_nowrap.ow_remark {
    word-wrap: break-word;
    word-break: break-word;
    white-space: inherit;
}
.ow_table_1, .ow_table_2, .ow_table_3 {
    font-size: 11px;
}
.ow_video_player iframe {
    height: 177px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_ws_video .ow_video_playing iframe {
    height: 176px;
}
}
@media (max-width: 359px){
.ow_header, .ow_header_pic {
    height: 185px;
}
.ow_header_pic .slide {
    width: 860px;
    height: 260px;
}
body.ow.whatsapp.base_sign_in .ow_header_pic .slide {
    width: 1075px;
    height: 672px;
}
.header_container.visible {
    display: block;
    width: 88%;
    padding: 10px;
}
.header_container h1 {
    padding: 0px 0 10px 0;
    font-size: 13px;
}
.header_container ul {
    padding-top: 0px;
}
.header_container ul li {
    padding: 6px 0 4px 26px;
    font-size: 11px;
}
.ow.base_sign_in .ow_sign_in_wrap {
    margin-top: 350px;
}
body.ow.whatsapp.base_sign_in .ow_header, body.ow.whatsapp.base_sign_in .ow_header_pic {
    height: 608px;
}
a.ow_logo.ow_left {
    width: 140px;
}
.ow_newsfeed_oembed_atch {
    padding-left: initial;
}
.ow_newsfeed_oembed_atch .ow_newsfeed_item_picture {
    margin-left: auto;
    margin-bottom: 8px;
}
.ow_box_menu a span {
    font-size: 13px;
}
.ow_table_1 td, .ow_table_2 td {
    padding: 4px;
}
.ow_forum, .ow_forum tr.ow_tr_first th,.ow_forum .ow_small,.ow_reply_info span {
    font-size: 11px;
}
table.ow_table_1.ow_forum_topic {
    width: 282px;
}
.ow_automargin.clearfix {
    width: 100% !important;
}
.ow_invitation_list .ow_tooltip.console_tooltip.ow_tooltip_top_right, .ow_friend_request_list .ow_tooltip.console_tooltip.ow_tooltip_top_right, .ow_mailbox_items_list .ow_tooltip.console_tooltip.ow_tooltip_top_right, .ow_notification_list .ow_tooltip.console_tooltip.ow_tooltip_top_right {
    right: 0px;
}
.jspContainer {
    width: 318px !important;
}
html div.ow_console_list_wrapper, .jspPane {
    width: 310px !important;
}
.ow_header_pic a h1 {
    font-size: 14px;
}
.ow_header_pic a h2 {
    font-size: 11px;
}
.ow_signin_label {
    padding: 7px 6px 8px 6px;
}
.ow_console_button.ow_console_item a.ow_console_item_link {
    padding: 5px 6px 7px 6px;
}
.block--hero .block__hint h1 {
    font-size: 15px;
}
.hero-phone {
    width: 295px;
}
.ow_ws_video iframe, .ow_ws_video object, .ow_ws_video embed, .ow_ws_video .ow_video_playing iframe {
    height: 154px;
}
.ow_video_player iframe {
    height: 155px;
}
}

.ow_plugin_meet #codemonsterSlide {
    position: relative;
    background: #fff;
    width: 95%;
    height: 100%;
    max-width: 400px;
    margin: 0px auto;
    border-radius: 10px;
}
.ow_plugin_meet #codemonsterSlide li {
    padding: 0px 0px 10px 0px !important;
    background: #fff !important;
	box-shadow: none !important;
    border-radius: 10px;
}