/* ============== HIDE ================ */
.fields-container {
  display: none !important;
}

/* ============== TEMPLATE HOT-FIXES ============== */

/* menu item of separator type do not expand */
ul.dropdown-menu > li.dropdown-submenu.divider {
  position: static !important;
}

/* font of the child levels of main manu */
ul.sunfw-tpl-menu > li.dropdown-submenu ul li a span {
  font-family: var(--font-head);
}

/* caret icon on 1st level of main menu is displayed only on some resolutions. Enable it always. */
ul.sunfw-tpl-menu > li.parent > a span.caret {
  display: inline-block;
}
 
/* ============== OWN CUSTOM GENERIC STYLES ============== */

.center {
  text-align:center !important;
}

.align-left {
  display: flex !important;
  flex-direction: row;
  /*  float: left !important; */
}

.align-me-right {
  margin-right: 0px;
  margin-left: auto;
}

.background-main-color {
  background-color: var(--main-color) !important;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.no-spacing {
	margin: 0px !important;
	padding: 0px !important;
}

.no-horizontal-spacing {
	margin-left: 0px !important;
	margin-right: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.no-horizontal-padding {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.boxed {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: rgb(189, 189, 189) 0px 1px 3px 0px;
}

/* ============== OVERWRITE GRUVE BOOTSTRAP ============== */

.sunfw-flex-component > *[class^='col-'],
.container .row *[class^='col-']
 {
   padding-right: 7px !important;
   padding-left: 7px !important;
}

/* extension to bootstrap 4 */
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }

/* ============== OVERWRITE GRUVE STYLING ============== */

#sunfw-social-share i.fa {
  font-size:40px !important;
  color: var(--main-color) !important;
  vertical-align: middle;
}

#sunfw-social-share i.fa:hover {
  color: var(--sub-color) !important;
}

/* increase margin between Awesome icon and label in module menu */

.nav.mod-list a.fa {
  font-family: inherit !important;
  line-height: inherit !important;
}

.nav.mod-list i.fa::before, 
.nav.mod-list a.fa::before {
  font-family: FontAwesome;
  margin-right: 5px;
  opacity: 0.7;
}

/* set the default font-style */
body {
  font-family: var(--font-body);
}

.sunfw-scrollup {
  font-family: var(--font-head);
}

/* default style of buttons */
.btn {
  background-color: rgb(245, 245, 245);
  background-image: linear-gradient(rgb(255, 255, 255), rgb(230, 230, 230));
  background-repeat: repeat-x;
  border: 1px solid rgb(179, 179, 179);
  border-radius: 4px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  color: rgb(51, 51, 51);
  font-family: var(--font-widget);
  text-shadow: rgba(255, 255, 255, 0.75) 0px 1px 1px;
}

/* default style of input field */
.input-append input {
  border-radius: 4px;
  border: 1px solid rgb(204, 204, 204);
  padding-top: 2px;
  padding-bottom: 2px;
}

/* default style of select fields */

select {
  font-family: var(--font-widget);
  color: rgb(85, 85, 85);
  font-size: 13px;
  padding: 4px 6px 4px 6px;
  border-radius: 4px;
  border: 1px solid rgb(204, 204, 204);
}

input[type="text"] {
  color: rgb(85, 85, 85);
}

input {
  font-family: var(--font-widget);
  font-size: 13px;
  padding: 4px 6px 4px 6px;
}

/* reduce horizontal spacing in main column */

.gruve-mainbody .layout-item {
 padding-left: 5px !important;
 padding-right: 5px !important;
}

.gruve-mainbody .layout-item .item-page {
  padding-left: 7px !important;
  padding-right: 7px !important;
}

/* clearing some strange stylings */

.nav-tabs > li > a {
  border-radius: 0px !important;
}

/* round a bit modules */

.module-style {
  overflow: hidden;
  border-radius: 4px !important;
}

/* decrease horizontal padding of main menu items */

.mainmenu nav.navbar.sunfw-menu-head ul.navbar-nav > li > a {
  padding-left: 12px !important;
  padding-right: 12px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* decrease top/bottom padding of menu items */

[class*="module-style-"] .module-body > ul.nav li a {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* h3 make smaller */

h3 {
  font-size: 1.1em !important;
}

h1 { text-align: center; }

/* social icon push up - over the top banner */

.gruve-social { margin-top:-25px; }

@media only screen and (min-width: 751px) {
    .gruve-social { margin-top:-40px; }
}

/* highlight menu option when mouse over */

ul.nav li a:hover {
  background-color: var(--sub-color) !important;
  color: #ffffff !important;
}

/* breadcrumbs module */
.sunfw-breadcrumb .breadcrumb > li.active {
  color:inherit;
}

.sunfw-breadcrumb .breadcrumb a.pathway {
    color: white !important;
    padding: 4px 8px 4px 8px;
    margin: 2px 5px 3px 0px;
    background-color: var(--main-color);
    border-radius: 3px;
}

/* adjust font of Breadcrumb module */
.menu,  ul[class^='breadcrumb'] {
  font-family: var(--font-head);
  font-weight: 100;
}

/* ------------- recipe content ---------------- */

/* beautify images in article */
img.article-img, .item-page img.caption {
	border-radius: 25px !important;
	border: 1px solid silver;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: auto; 
	margin-right: auto;	
	box-shadow: 3px 2px 19px 4px rgba(0,0,0,0.6);	
	-webkit-box-shadow: 3px 2px 19px 4px rgba(0,0,0,0.6);
	-moz-box-shadow: 3px 2px 19px 4px rgba(0,0,0,0.6);
	display: block; 
}

/* increase margin between article blocks */
#recipe-description { margin-top: 20px; }
#recipe-description p { text-indent: 20px; }

/* center and underline the article title in the full view */
.page-header h2 { text-align: center; }

div[class^="item-page"] .page-header:after {
	content:".";
	overflow: hidden;
	background-color: silver;
	display: block;
	clear: both;
	text-align: center;
	width: 95%;
	height: 1px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-right: 10px;
}

/* customize ordered lists */
*[id^='recipe-instructions'] ol {
  list-style-type: none;
  margin-bottom: 20px !important;
  padding-left: 10px;
}

*[id^='recipe-instructions'] ol li {
  counter-increment: recipe-instructions-counter;
  margin-left: 0px;
  display: table-row;
}

*[id^='recipe-instructions'] ol li::before {
  content: counter(recipe-instructions-counter) ".\00a0";
  margin-right: 5px;
  font-size: 25px;
  line-height: 50px !important;
  color: var(--main-color);
  font-weight: bold;
  display: table-cell;
  text-align: right;
}

/* customizing unordering lists */
*[id^='recipe-ingredients'] ul {	 
  list-style-type: none !important;
  margin-left: 0px;
  padding-left: 10px;
}

*[id^='recipe-ingredients'] ul li {
  display: table-row;
}

*[id^='recipe-ingredients'] ul li::before {
  content: "\25CF\00a0";
  color: var(--main-color);
  padding-right: 8px !important;
  padding-left: 8px !important;
  display: table-cell;
}

/* recipe info table */

table#recipe-info {
	width: 95%;
	margin-left: auto; 
	margin-right: auto;
	border:0;
}

table#recipe-info td {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;	
	border-top: 1px solid silver;
	border-bottom: 1px solid silver;
}

/* ------------- GBlog layout ---------------- */

.gblog { display: flex; flex-wrap: wrap; }

.gblog-item {
    padding:0px; /*5px 8px 5px 8px;*/
}

.gblog-item h3 {
  text-align: center;
  font-size: 1em;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}

img.gblog-img {
    border-radius: 5px;
    border: 1px solid silver;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px;
}

/* ------------- rating widget ---------------- */

/* ------------- menu-horizontal-list ---------------- */

.menu-horizontal-list { margin-top: 5px; }

.menu-horizontal-list ul {
	list-style-type: none !important;
	margin: 0px 0px 0px 0px !important;	
}

.menu-horizontal-list ul li a {
  padding: 2px 5px 2px 5px !important;
  float: left !important;
  margin: 0px 5px 5px 5px !important;
  border-radius: 3px !important;
  /* light version
  background-color: #eeeeee;
  border:1px solid var(--main-color) !important;
  */
  /* dark version */
  color: white !important;
  background-color: var(--main-color); 
}

.menu-horizontal-list ul li a:hover {
  background-color: var(--sub-color) !important;
}

/* ------------- Custom Properties - tags cloud ---------------- */
.cp-tag,
.cpcloud ul.cpcloud li {
    float:left;
    color: white !important;
    list-style:none;
    padding: 4px 8px 4px 8px;
    margin: 2px 5px 3px 0px;
    background-color: var(--main-color);
    border-radius: 3px;
}

.cp-tag:hover,
.cpcloudthin-vertical ul.cpcloud li:hover {
  background-color: var(--sub-color);
}

.cp-tag a, .cpcloud a {
  color:white !important;
}

.cp-tag-label {
  float:left;
  font-weight:bold;
  padding-top:5px;
}

.cp-tags:after {
  content: "";
  display: table;
  clear: both;
}

#cp_tagname, #cp_total_results {
    font-weight: inherit !important;
    font-size: 100% !important;
    color: white !important;
    padding: 2px 5px 2px 5px;
    background-color: var(--main-color);
    border-radius: 3px;
}

/* -------------Rating module ---------------- */

/* remove labels to reduce content size */

.content_vote label {
 display: none !important;
}

.content_rating p { 
  display: none !important;
}

/* compact all elements in one line */

.form-inline , .content_rating {
	display: inline !important;
	margin-left:10px;
}

.content_rating:before {
   content: ".";
   display: block;
   clear: both;
   visibility: hidden;
   height: 0;
}

.form-inline:after {
	content:".";
	overflow: hidden;
	background-color: silver;
	display: block;
	clear: both;
	text-align: center;
	width: 95%;
	height: 1px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-right: 10px;
}

.content_rating img {
	margin-right: 5px;
	width: 12px;
}

/* ------------- Custom Properties search module ---------------- */

/* make all select boxed fluent layout */

.cpsearch div.cp-field {
    float:left;
    padding: 7px;
    margin: 7px;
    border: 1px solid silver;
    border-radius: 10px;
}

.cpsearch select.input-medium {
    width: auto !important;
}

.cpsearch .cp-auto-submit:before {
  content: "";
  display: table;
  clear: both;
}

.cpsearch .cp-auto-submit {
  margin: 0px 7px 0px 7px;
}

/* -------------  JLex Comment ------------- */

.jcm-btn-upload .fa-paperclip::before { 
  font-family: FontAwesome !important;
  font-style: normal; 
  content: "\f030" !important; /* change icon from paperclip to camera */
  font-size: 24px !important;
}

.jcm-btn-emoticon .fa-grin-hearts::before {
  font-size: 24px !important;
}

/* change upload image icon */
/*
.jcm-icon-upload::before { 
  display: none !important;
}
*/
/*
.jcm-icon-smile::before { 
  font-size:28px !important;
}*/

/* captcha or emois popup-dialog on mobile not full screen, to avoid the buttons are not visible */
.jcm-dialog.touch { height:75%; }

/* avatars dissapear from featured comments on narrow screen */
#jlexcomment.jcm-xsmall .hovercard {z-index: 10;position: relative;} 

/* hide attached file name in the comment */
.jcm-post-content .jcm-images-slideshow ._title {display:none;}

.jcm-rule-box { font-size: 0.8em; }

/* -------------  JFB Connect ------------- */

/* some margin around login buttons */
.jfbconnect-wrapper .login .social-login {
	margin: 6px 6px 6px 6px;
	-webkit-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.75);
}


/* -------------  Social Connect ------------- */

.login .socialconnect {
  margin-top:10px;
  margin-left: 30px;
}

/* fix icons left from the login buttons */
.login .socialconnect .facebook_button::before {
  font-family: FontAwesome;
  font-style: normal; 
  font-size:1em;
  margin-top: 5px;
  content: "\f09a" !important;
}

.login .socialconnect .google_button::before {
  font-family: FontAwesome;
  font-style: normal; 
  font-size:1em;
  margin-top: 5px;
  content: "\f0d5" !important; 
}

/* -------------  Minitek Content Utilities -------------  */

/* change the layout of buttons above the article */
.btn-success {
	background-color: var(--main-color);
	border-color:silver;
	background-image: none;
	color: white;
}

.btn-success:hover {
	background-color: var(--sub-color);
	border-color:silver;
	background-image: none;
	color: white;
}

.open > .btn-success.dropdown-toggle {
	background-color: var(--sub-color) !important;
	border-color:silver;
}

/* decrease the size of buttons, margin and make fluent layout */

.mcu-sav-cont, .mcu-fav-cont, .mcu-list-cont, .mcu-like-cont {
	margin-top: 7px !important;
	margin-bottom: 7px !important;
}
	
.mcu-sav-cont .btn , .mcu-fav-cont .btn , .mcu-list-cont .btn, .btn-group-like .btn, .btn-group-like .btn {
	padding: 3px 5px 3px 5px !important;
}

/* hide filtering widgets */
.mcu-content-main .ordering-select {
	display: none;
	visibility: hidden;
}

.js-stools-btn-clear {
	display: none;
	visibility: hidden;
}

div.mcu-content-main #filter_featured_lists,
div.mcu-content-main #filter_user_id {
	display: none !important;
}

/* beautify thumbs */
.mcu-list-view .list-item-img img ,
.mcu-lists .mcu-list-img img {
	border-radius: 10px !important;
	border: 1px solid silver;
}

/* increase a bit width of popup and center text inside */
.mcu_popup {
  width: 400px;
  text-align: center;
  vertical-align:middle;
  /* height: 200px; */
}

.mcu_popup_inner {
  width: 400px;
  /*  height: 200px;*/
  display: table-cell;
  vertical-align:middle;
}

.mcu-lists-tools label[for="filter_search"] {
  display: none;
}

/* ------------- Ideal Related Articles -------------  */

.ira-format-block h4 {
	margin-top:10px !important;
	margin-bottom:10px !important;
	text-align:center;
}

.ira-container {
	background-color:#fdf0f0;
	border-radius: 5px;
}

.ira-title {
	margin-left:10px;
}

/* ------------- Vertical Menu ------------- */

/* use font Awesome */
.sm-menu .link a::before {
  font-family: FontAwesome;
  margin-right: 4px;
  opacity: 0.7;
}

/* ------------- 3rd-party Ads -------------  */

/* Adsense */
.adsense-in-article {
  border-top: 1px solid silver;
  border-bottom: 1px solid silver; 
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 15px 0px 15px 0px;
  text-align: center;
}

/* TradeTracker */
.tradetracker-banner {
  margin:5px auto 5px auto; 
  border-radius:5px; 
  border:1px solid silver;
  overflow: hidden; 
  text-align:center;
}

/* ------------- Own Custom Html Modules ------------- */

.top-button {
  padding: 5px; 
  margin: 5px 5px 5px 5px; 
  text-align:center; 
  background-color: var(--sub-color); 
  border-radius:5px;
}

.top-button i.fa {
  color:white; 
  font-size:1.5em; 
  text-shadow:rgb(63,14,30) 0px 1px 1px;
}

.top-button div {
  font-size:0.6em; 
  color:white;
}

/* -- MyShortList -- */

.myshortlist_list_checkboxes h4.myshortlist_lc_header {
  font-weight: bold !important;
}

.myshortlist_list_checkboxes label {
  font-weight: normal !important;
}

.myshortlist_list_checkboxes label input {
  white-space: nowrap !important;
  float: left;
  margin-top: 5px !important;
  margin-right: 5px !important;
}  

.myshortlist_lists_interface_wrapper {
  margin: 5px;
  padding: 15px;
  border: 1px solid silver;
  border-radius: 5px;
}

.myshortlist_lists_interface {
  display:block !important;
  font-size: 24px !important;
}

.msl_lists_ul .myshortlist_select_list_form::before { 
  font-family: FontAwesome !important;
  font-style: normal; 
  content: "\f02e" !important; 
  font-size: 24px !important;
}

.msl_lists_ul .myshortlist_buttonlink {
  font-size: 24px !important;
  font-family: var(--font-body) !important;
}

.myshortlist_img_link img {
  border-radius: 5px;
  object-fit: cover;
  width:1500px;
  height:150px;
}

.myshortlist_lists_interface input[name="myshortlist_new_list"] {
  width:200px !important;  
}

/* -- Instant Facebook Login Module -- */

.jes button[data-toggle="jesmodal"] {
  font-size:0.6em !important; 
  font-family: var(--font-body) !important; 
  height:54px !important; 
  margin: 5px 5px 5px 5px !important;
  padding:0px 5px 5px 5px !important;
  border-radius: 5px !important;
  border: none !important;
  background-color: var(--sub-color) !important;
  background: var(--sub-color) !important;
  white-space: pre-line !important;
}

.jes button.btn-primary::before {
  font-family: FontAwesome !important;
  font-style: normal; 
  content: "\f090 " !important; 
  font-size: 24px !important;
  text-shadow: rgb(63, 14, 30) 0px 1px 1px;
  padding-top: 0px !important;
  margin-top: 0px !important;
}

.ifbl_list li a {
  white-space: nowrap;
}