/*
Theme Name: MrDoc
Theme URI: http://themealien.com/mrbara
Author: RucbicTheme
Author URI: http://themealien.com
Description: Premium theme
Version: 1.0.0
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mrdoc
Domain Path: /lang/
Tags: one-column, two-columns, left-sidebar, right-sidebar, full-width-template, post-formats, theme-options, threaded-comments, translation-ready
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Normalize
2.0 - Typography
3.0 - Elements
	3.1 - Common Elements
	3.2 - WordPress Elements
	3.3 - Theme's Elements
4.0 - Header
5.0 - Navigations
6.0 - Content
	6.1 - Posts and pages
	5.2 - Comments
7.0 - Widgets
8.0 - Footer
9.0 - Media Queries
--------------------------------------------------------------*/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*--------------------------------------------------------------
1.0 - Normalize
--------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/

body {
  color: #444;
  font-size: 14px;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  word-wrap: break-word;
}
a {
  -webkit-transition: 0.5s;
          transition: 0.5s;
  color: #46b289;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.site-content a img {
  border: 1px solid #777;
}
p{
  margin-bottom: 30px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.2;
  color: #000;
}
h1, .h1, h2, .h2, h3, .h3{
   margin-bottom: 20px;
}
h1 {
  font-size: 30px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 14px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 10px;
}
/*--------------------------------------------------------------
3.0 - Elements
--------------------------------------------------------------*/
/**
 * 3.1 - Common Elements
 */
img {
  max-width: 100%;
}
input[type=text],
textarea {
  border: 1px solid #555;
  background-color: #fff;
}
blockquote {
  font-style: italic;
  border-left: 5px solid #46b289;
  padding: 10px 20px;
  font-size: 14px;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs .tabs-nav {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}
.tabs .tabs-nav li {
  float: left;
}
.tabs .tabs-nav a {
  display: block;
}
.tabs .tabs-panel {
  clear: both;
  display: none;
}
.tabs .tabs-panel.active {
  -webkit-animation: fadeIn 1 1s ease;
          animation: fadeIn 1 1s ease;
  display: block;
}
/**
 * 3.2 - WordPress Elements
 */
.alignnone {
  margin: 0;
}
.aligncenter,
div.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.wp-caption {
  background: #fff;
  border: 1px solid #555;
  padding: 5px;
  max-width: 100%;
  text-align: center;
}
.wp-caption img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.wp-caption-text {
  font-size: small;
  margin: 0;
  padding: 5px 0 0;
}
.gallery-caption {
  display: block;
}
.bypostauthor {
  display: block;
}
.sticky {
  display: block;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
/*--------------------------------------------------------------
4.0 - Header
--------------------------------------------------------------*/
.site-header {
  padding: 20px 0;
}
.site-header .site-title,
.site-header .site-description {
  margin: 0;
  line-height: 0;
  text-indent: -9999px;
}
.site-header .logo {
  line-height: 44px;
}
.site-header .primary-nav {
  margin-top: 13px;
}
/*--------------------------------------------------------------
5.0 - Navigations
--------------------------------------------------------------*/
.nav a {
	color: #888;
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	position: relative;
	-webkit-transition : all 0.1s ease-out 0s;
	-moz-transition : all 0.1s ease-out 0s;
	-o-transition : all 0.1s ease-out 0s;
	transition : all 0.1s ease-out 0s;  
}
.nav a:hover {
  text-decoration: none;
  color: #46b289;
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.nav ul ul {
  -webkit-transition: top 0.3s ease 0s, opacity 0.3s;
          transition: top 0.3s ease 0s, opacity 0.3s;
  position: absolute;
  left: 0;
  top: 110%;
  width: 210px;
  -webkit-box-shadow: 0 0 0 2px #fbfbfb;
          box-shadow: 0 0 0 2px #fbfbfb;
  background-color: #fff;
  opacity: 0;
  z-index: -1;
  padding: 15px 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}
.nav ul ul ul {
  -webkit-transition: left 0.3s ease 0s, opacity 0.3s;
          transition: left 0.3s ease 0s, opacity 0.3s;
  left: 110%;
  top: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 0;
}
.nav li {
  display: inline-block;
  padding: 0 15px;
  position: relative;
  text-align: left;
}
.nav li:hover > ul {
  opacity: 1;
  z-index: 9999;
  top: 100%;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.nav li li {
  text-align: left;
  display: block;
  padding: 0 30px;
}
.nav li li a {
  color: #8a97a2;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0;
  text-transform: none;
}
.nav li li a:hover {
  color: #46b289;
  position: relative;
}
.nav li li:hover > ul {
  top: -10px;
  left: 100%;
}
.nav li li:hover > ul li a:hover:before {
  left: -30px;
}
.nav li li:first-child > a {
  border-top-width: 0;
}
.nav .menu {
  position: relative;
}
.primary-nav {
  padding-left: 40px;
}
.primary-nav ul.menu > li {
  padding: 0 15px 13px;
  line-height: 1;
}
.primary-nav ul.menu > li.current-menu-parent > a,
.primary-nav ul.menu > li.current-menu-item > a,
.primary-nav ul.menu > li.current-menu-ancestor > a,
.primary-nav ul.menu > li:hover > a {
  color: #46b289;
}
/*--------------------------------------------------------------
6.0 - Content
--------------------------------------------------------------*/
/**
 * 6.1 Posts and Pages
 */
.ui-autocomplete-loading {
  -webkit-background-size: 16px 16px;
          background-size: 16px;
  background: url(img/loading.gif) no-repeat 5px center;
}
.ui-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  max-height: 400px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
}
.ui-autocomplete .ui-menu-item {
  -webkit-transition: 0.3s;
          transition: 0.3s;
  padding: 10px 15px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
}
.ui-autocomplete .ui-menu-item:hover a {
  color: #46b289;
}
.ui-autocomplete .ui-menu-item a {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.ui-autocomplete .ui-menu-item a:hover {
  text-decoration: none;
}
.ui-autocomplete .ui-menu-item .post-title {
  padding-bottom: 3px;
  padding-top: 5px;
  display: block;
}
.ui-autocomplete .ui-menu-item > a.ui-corner-all {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #555555;
  white-space: nowrap;
}
.ui-autocomplete .ui-menu-item > a.ui-corner-all:hover,
.ui-autocomplete .ui-menu-item > a.ui-corner-all.ui-state-hover,
.ui-autocomplete .ui-menu-item > a.ui-corner-all.ui-state-active {
  cursor: pointer;
  text-decoration: none;
  background-color: #fff;
  background-image: none;
}
.ui-autocomplete .ui-menu-item > a.ui-corner-all .highlight {
  font-weight: 700;
}
.site-search {
  padding: 75px 0 80px;
  background: url('img/bg-search.jpg') no-repeat;
  border-bottom: none;
  text-align: center;
  position: relative;
}
.site-search:before {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.site-search h1 {
  font-size: 38px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  margin: 0 0 30px;
  position: relative;
  z-index: 10;
}
.site-search .search-content {
  max-width: 70%;
  margin: 0 auto;
}
.site-search .search-content .searchform {
  position: relative;
  display: block;
  overflow: hidden;
}
.site-search .search-content .searchform .search-field {
  padding: 18px 30px 16px;
  float: left;
  display: block;
  width: 78%;
  border: none;
  font-size: 16px;
}
.site-search .search-content .searchform .search-field:focus {
  outline: none;
}
.site-search .search-content .searchform .search-submit {
  float: right;
  width: 20%;
  height: 54px;
  line-height: 53px;
  background-color: #46b289;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  -webkit-transition: 0.5s;
          transition: 0.5s;
}
.site-search .search-content .searchform .search-submit:focus {
  outline: none;
}
.site-search .search-content .searchform .search-submit:hover {
  background-color: #fff;
  color: #999;
}
.content-area {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 30px;
  line-height: 1.8;
  font-size: 15px;
}
.content-area article {
  margin-bottom: 50px;
}
.content-area strong,
.content-area b {
  font-weight: 600;
}
.sidebar-content .content-area {
  float: right;
  border-left: 1px solid #e0e0e0;
  padding-left: 30px;
}
.sidebar-content .widget-highter .content-area {
  border-left: none;
}
.sidebar-content .widget-highter .widget-area {
  border-right: 1px solid #e0e0e0;
}
.site-breadcrumbs {
  padding: 20px 0;
  background-color: #f5f5f5;
  font-size: 14px;
  color: #000;
  margin-bottom: 40px;
}
.category-list .column {
  margin-bottom: 40px;
}
.category-list h3 {
  border-bottom: 1px solid #e0e0e0;
  margin: 20px 0;
  padding: 0 0 20px;
  font-size: 24px;
  letter-spacing: -0.6px;
  font-weight: 600;
  line-height: 100%;
}
.category-list h3 a {
  color: #000;
  font-weight: 600;
  font-family: "Poppins", Arial, sans-serif;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.category-list h3 a:hover {
  text-decoration: none;
  color: #46b289;
}
.category-list .post-item .entry-title {
  margin: 0 0 10px;
  padding: 0 0 5px 40px;
  position: relative;
}
.category-list .post-item .entry-title:before {
  content: '\f0f6';
  display: inline-block;
  font: normal normal normal 14px/1 FontAweSome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
}
.category-list .post-item .entry-title a {
  font-size: 16px;
  font-family: "Poppins", Arial, sans-serif;
  color: #000;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.category-list .post-item .entry-title a:hover {
  text-decoration: none;
  color: #46b289;
}
.category-title {
  margin: 0 0 20px;
  padding: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  color: #000;
}
.post-list .post-item {
  margin: 0 0 15px;
  padding: 0 0 15px 0px;
  border-bottom: 1px solid #E0E0E0;
}
.post-list .post-item .entry-title {
  padding: 0 0 0 30px;
  position: relative;
}
.post-list .post-item .entry-title:before {
  content: '\f0f6';
  display: inline-block;
  font: normal normal normal 14px/1 FontAweSome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 20px;
}
.post-list .post-item .entry-title a {
  font-size: 15px;
  color: #444;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.post-list .post-item .entry-title a:hover {
  text-decoration: none;
  color: #46b289;
}
.entry-header {
  margin: 0 0 35px;
  padding: 0 0 30px;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
}
.entry-header .entry-meta {
  margin-top: 10px;
  font-size: 14px;
  color: #999;
}
.entry-header .entry-meta a {
  color: #999;
}
.entry-header .entry-meta i {
  padding-right: 10px;
}
.entry-header .entry-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.entry-header .entry-title a {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.search-results .page-header {
  padding: 0;
  margin: 0;
  border: none;
}
.search-results .page-header .page-title {
  margin: 0 0 20px;
  padding: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  color: #000;
}
.search-results article {
  margin: 0;
}
.search-results article .entry-header {
  margin: 0 0 15px;
  padding: 0 0 15px 0px;
}
.search-results article a {
  font-size: 15px;
  color: #444;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  position: relative;
  padding-left: 30px;
  text-decoration: none;
}
.search-results article a:before {
  content: '\f0f6';
  display: inline-block;
  font: normal normal normal 14px/1 FontAweSome;
  text-rendering: auto;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 20px;
}
.search-results article a:hover {
  color: #46b289;
}
.search-results article a:hover:before {
  color: #46b289;
}
.site-content a {
  text-decoration: underline;
  color: #444;
}
.site-content a:hover {
  color: #46b289;
}
.site-content .sml-secondary {
  background-color: #0099cc;
  padding: 5px 10px 3px;
  font-size: 11px;
  color: #fff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
}
.site-content .sml-secondary:hover {
  background-color: #46b289;
  color: #fff;
  text-decoration: none;
}
.mr-changelog {
  width: 100%;
  margin: 0;
  padding: 0;
}
.mr-changelog li {
  padding: 10px 0 8px;
  border-top: 1px solid #ccc;
  list-style: none;
}
.mrdoc-list {
  width: 100%;
  margin: 20px 0 0;
  padding: 0;
}
.mrdoc-list li {
  padding: 10px 0 8px 20px;
  border-bottom: 1px solid #ccc;
  list-style: none;
  position: relative;
  line-height: 1.8;
}
.mrdoc-list li:before {
  position: absolute;
  top: 15px;
  left: 0;
  content: '\f105';
  display: inline-block;
  font: normal normal normal 14px/1 FontAweSome;
  text-rendering: auto;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 16px;
}
.mrdoc-list li a,
.mrdoc-list li strong {
  font-weight: 600;
}
.mrdoc-list li ul {
  padding: 0;
}
.mrdoc-list li ul li {
  border: none;
  padding: 5px 0 3px;
  padding-left: 20px;
}
.mrdoc-list li ul li:before {
  content: "\f111";
  font-size: 9px;
  top: 14px;
}
.mrdoc-list li ul li:last-child {
  padding-bottom: 0;
}
/**
 * 6.3 Comments
 */
.bypostauthor {
  display: block;
}
.comments-area {
  clear: both;
}
.comments-title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 30px;
}
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .children {
  list-style: none;
  padding: 0 0 0 80px;
}
.comment-list .children article {
  border-top-width: 0;
}
.comment-list .children:last-child {
  margin-bottom: 0;
}
.comment-list > .comment:first-child article {
  border: none;
}
.comment {
  zoom: 1;
  float: left;
  clear: both;
  width: 100%;
}
.comment:before,
.comment:after {
  content: "";
  display: table;
}
.comment:after {
  clear: both;
}
.comment:before,
.comment:after {
  content: "";
  display: table;
}
.comment:after {
  clear: both;
}
.comment article {
  padding: 23px 0;
  border-top: 1px solid #ccc;
  overflow: hidden;
}
.comment .comment-author {
  padding-right: 15px;
  float: left;
}
.comment .comment-edit-link {
  float: right;
  margin-right: 20px;
}
.numeric-navigation {
  clear: both;
  display: table;
  margin: 30px auto;
  float: none;
}
.comment-respond {
  margin-top: 50px;
}
.comment-content {
  word-break: break-all;
  padding-top: 8px;
  margin-left: 80px;
}
.comment-content a {
  word-wrap: break-word;
}
.comment-awaiting-moderation {
  display: block;
}
/*--------------------------------------------------------------
7.0 - Widgets
--------------------------------------------------------------*/
.widget-area {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 30px;
}
.widget {
  margin-bottom: 30px;
}
.widget .widget-title {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", Arial, sans-serif;
  margin-bottom: 30px;
  margin-top: 0;
  color: #000;
}
.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul li {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0 0 20px;
  border-bottom: none;
  position: relative;
}
.widget ul li:before {
  position: absolute;
  top: 2px;
  left: 0;
  content: '\f105';
  display: inline-block;
  font: normal normal normal 14px/1 FontAweSome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 16px;
}
.widget ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.widget ul li a:hover {
  color: #46b289;
}
.widget table,
.widget select {
  width: 100%;
}
.widget select {
  border: 1px solid #ccc;
  height: 30px;
  background-color: transparent;
}
.widget select option {
  color: #555;
}
.widget table {
  text-align: left;
  width: 100%;
}
.widget table caption {
  border: 1px solid #ccc;
  border-bottom-width: 0;
  text-align: center;
}
.widget table tr {
  border: 1px solid #ccc;
  border-bottom-width: 0;
  padding: 3px 0;
}
.widget table tr td,
.widget table tr th {
  padding: 0 5px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.categories-posts-widget .cats-list > li {
  margin-bottom: 25px;
  position: relative;
}
.categories-posts-widget .cats-list > li > a {
  font-weight: 600;
  text-transform: uppercase;
}
.categories-posts-widget .cats-list > li.active:before,
.categories-posts-widget .cats-list > li:hover:before {
  color: #46b289;
}
.categories-posts-widget .cats-list > li.active > a,
.categories-posts-widget .cats-list > li:hover > a {
  color: #46b289;
}
.categories-posts-widget .cats-list > li > ul {
  display: none;
  overflow: hidden;
}
.categories-posts-widget .cats-list > li.active > ul {
  display: block;
}
.categories-posts-widget .cats-list .posts-list {
  padding-top: 10px;
}
.categories-posts-widget .cats-list .posts-list li {
  margin: 10px 0;
  padding: 0;
}
.categories-posts-widget .cats-list .posts-list li:before {
  display: none;
}
.widget_calendar {
  line-height: 26px;
}
.widget_categories li,
.widget_recent_comments li,
.widget_rss li,
.widget_pages li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li,
.widget_meta li,
.widget-recent-comments li {
  border-bottom: solid 1px #ccc;
  padding: 8px 0;
}
.widget_categories .children,
.widget_recent_comments .children,
.widget_rss .children,
.widget_pages .children,
.widget_archive .children,
.widget_nav_menu .children,
.widget_recent_entries .children,
.widget_meta .children,
.widget-recent-comments .children {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  margin-left: 15px;
}
.widget_categories .children li a,
.widget_recent_comments .children li a,
.widget_rss .children li a,
.widget_pages .children li a,
.widget_archive .children li a,
.widget_nav_menu .children li a,
.widget_recent_entries .children li a,
.widget_meta .children li a,
.widget-recent-comments .children li a {
  padding-left: 10px;
}
.widget_categories .children li:last-child,
.widget_recent_comments .children li:last-child,
.widget_rss .children li:last-child,
.widget_pages .children li:last-child,
.widget_archive .children li:last-child,
.widget_nav_menu .children li:last-child,
.widget_recent_entries .children li:last-child,
.widget_meta .children li:last-child,
.widget-recent-comments .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_tag_cloud a {
  padding: 8px 10px;
  margin: 0 3px 6px 0;
  display: inline-block;
  font-size: 11px !important;
  font-weight: 400;
  background-color: #555;
}
.widget_tag_cloud a:hover {
  background-color: #5cb85c;
  color: #fff;
  text-decoration: none;
}
.tabs-widget .tabs-nav li {
  width: 33%;
  border-bottom: none;
  padding-bottom: 0;
}
.tabs-widget .tabs-nav li:last-child {
  width: 34%;
}
.tabs-widget .tabs-nav li:before {
  display: none;
}
.tabs-widget .tabs-nav li a {
  background: #555;
  border: 1px solid #ccc;
  color: #646464;
  padding: 8px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.tabs-widget .tabs-nav li a.active {
  color: #fff;
  text-decoration: none;
  border-color: transparent;
  background: #5cb85c;
}
.tabs-widget .tabs-nav li a:hover {
  text-decoration: none;
}
.tabs-widget .tabs-panel {
  margin-top: -1px;
  padding: 15px 0 20px;
}
.tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #ccc;
  padding: 10px 0;
  overflow: hidden;
}
.tabs-widget .tab-comments .comment-summary {
  font-style: italic;
  margin-bottom: 5px;
}
.recent-post,
.popular-post {
  border-bottom: solid 1px #ccc;
  padding: 10px 0;
  overflow: hidden;
}
.recent-post:last-child,
.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.recent-post .widget-thumb,
.popular-post .widget-thumb {
  float: left;
  width: 60px;
}
.recent-post .post-text,
.popular-post .post-text {
  margin-left: 75px;
  margin-top: 5px;
}
.recent-post .post-text .post-title,
.popular-post .post-text .post-title {
  display: block;
  padding-bottom: 5px;
  font-weight: 700;
}
.recent-post .post-text .post-date,
.popular-post .post-text .post-date {
  color: #ccc;
  font-size: 12px;
}
.recent-post .post-text .post-comments,
.popular-post .post-text .post-comments {
  display: block;
  color: #ccc;
}
.recent-post .post-text .read-more,
.popular-post .post-text .read-more {
  line-height: 2;
}
.recent-post.no-thumbnail .post-text,
.popular-post.no-thumbnail .post-text {
  margin-left: 0;
  margin-top: 0;
}
.widget-recent-comments li {
  padding: 20px 0;
  color: #ccc;
}
.widget-recent-comments li a,
.widget-recent-comments li p {
  color: #555;
}
.widget_search .search-form {
  position: relative;
  padding: 0 5px;
  border: 1px solid #ccc;
}
.widget_search .search-form .screen-reader-text {
  display: none;
}
.widget_search .search-form ::-webkit-input-placeholder {
  color: #ccc;
}
.widget_search .search-form :-moz-placeholder {
  color: #ccc;
}
.widget_search .search-form ::-moz-placeholder {
  color: #ccc;
}
.widget_search .search-form :-ms-input-placeholder {
  color: #ccc;
}
.widget_search .search-field {
  padding: 8px 0;
  background-color: transparent;
  font-weight: 400;
  border-width: 0;
  width: 90%;
}
/*--------------------------------------------------------------
8.0 - Footer
--------------------------------------------------------------*/
.site-footer {
    background-color: #f5f5f5;
    color: #777;
    padding: 30px 15px;
}
.site-info .footer-menu .sub-menu {
  display: none;
}
.site-info .footer-menu ul {
  margin: 0;
  padding: 0;
}
.site-info .footer-menu ul li {
  list-style: none;
  display: inline-block;
  padding: 0 5px;
}
.site-info .footer-menu ul li:last-child {
  padding-right: 0;
}
.site-info .footer-menu ul li a {
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.site-info .footer-menu ul li a:hover {
  color: #46b289;
  text-decoration: none;
}
/*--------------------------------------------------------------
9.0 - Media Queries
--------------------------------------------------------------*/
/* Magnific Lightbox
----------------------------------------------------------- */
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:0.8;filter:alpha(opacity=80);}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden;}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle;}.mfp-align-top .mfp-container:before{display:none;}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045;}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto;}.mfp-ajax-cur{cursor:progress;}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out;}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in;}.mfp-auto-cursor .mfp-content{cursor:auto;}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none;}.mfp-loading.mfp-figure{display:none;}.mfp-hide{display:none !important;}.mfp-preloader{color:#cccccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044;}.mfp-preloader a{color:#cccccc;}.mfp-preloader a:hover{color:white;}.mfp-s-ready .mfp-preloader{display:none;}.mfp-s-error .mfp-content{display:none;}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;}button::-moz-focus-inner{padding:0;border:0;}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:0.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:white;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace;}.mfp-close:hover,.mfp-close:focus{opacity:1;filter:alpha(opacity=100);}.mfp-close:active{top:1px;}.mfp-close-btn-in .mfp-close{color:#333333;}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:white;right:-6px;text-align:right;padding-right:6px;width:100%;}.mfp-counter{position:absolute;top:0;right:0;color:#cccccc;font-size:12px;line-height:18px;white-space:nowrap;}.mfp-arrow{position:absolute;opacity:0.65;filter:alpha(opacity=65);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0);}.mfp-arrow:active{margin-top:-54px;}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;filter:alpha(opacity=100);}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent;}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px;}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px;opacity:0.7;}.mfp-arrow-left{left:0;}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid white;margin-left:31px;}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3f3f3f;}.mfp-arrow-right{right:0;}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid white;margin-left:39px;}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3f3f3f;}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px;}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px;}.mfp-iframe-holder .mfp-close{top:-40px;}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%;}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:black;}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;padding:40px 0 40px;margin:0 auto;}.mfp-figure{line-height:0;}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444444;}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px;}.mfp-figure figure{margin:0;}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto;}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px;}.mfp-image-holder .mfp-content{max-width:90%;}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer;}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0;}.mfp-img-mobile img.mfp-img{padding:0;}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0;}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px;}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0;}.mfp-img-mobile .mfp-counter{right:5px;top:3px;}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0;}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75);}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0;}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%;}.mfp-container{padding-left:6px;padding-right:6px;}}.mfp-ie7 .mfp-img{padding:0;}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px;}.mfp-ie7 .mfp-container{padding:0;}.mfp-ie7 .mfp-content{padding-top:44px;}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0;}


@media screen and (max-width: 767px){
  .widget-area, .content-area{
    overflow: hidden;
    padding: 50px 30px 0;
  }
}