/*
Theme Name: LMD Jobster
Theme URI: http://lombokmedia.web.id/
Description: Tema Loker WordPress dari LombokMedia
Author: Amrin Zulkarnain
Author URI: http://amrinz.wordpress.com
Version: 1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: white
Text Domain: lombokmedia
*/
:root {
 --white: #ffffff;
 --black: #000000;
 --dark: #222222;
 --lightdark: #373939;
 --gray: #9a9898;

 --success: #11b719;
 --successhover: #109416;
 --warning: #e89a25;
 --warninghover:  #ecaa48;
 --danger: #A20814;

 --link: #0d6efd;
 --linkhover: #e89a25;
 --headerbg: #ffffff;
 --bodybgcolor: #f0f0f0;
 --bodyfontcolor: #212529;
 --border: #e7e7e7;

 --font: "Poppins", Sans-serif;
}

body {
	background-color: var(--bodybgcolor);
	font-family: var(--font);
	color: var(--bodyfontcolor);
	font-size: 14px;
}

a {
	color: var(--link);
	text-decoration: none;
}
a:hover, a:focus {
	color: var(--linkhover);
	text-decoration: underline;
}

/* match height */
.match-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

.match-height .col-match-height {
	display: flex;
	flex-direction: column;
}

/* Header */
.lmd-navbar-main {
	background-color: var(--dark);
	-webkit-transition: all 0.5s ease;
	-moz-transition: position 10s;
	-ms-transition: position 10s;
	-o-transition: position 10s;
	transition: all 0.5s ease;
}
.fixed-top {
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}

.navbar {
    padding: .5rem 0rem;
}
.navbar-brand img {
	max-width: 200px;
	max-height: 40px;
}

.navbar-dark .navbar-toggler {
	padding: 0 0;
    color: var(--white);
    border: none;
}
.navbar-dark .navbar-toggler:focus {
	border: none;
    box-shadow: none;
}

.navbar-toggler .fa-bars {
	font-size: 25px;
}
.navbar-toggler .btn-menu-text {
    font-size: 12px;
}

.navbar .navbar-nav .nav-link {
    font-weight: 300;
	color: var(--white);
}
.navbar .navbar-nav .nav-link:hover {
	color: var(--success);
	text-decoration: none;
}

/* Dropdown */
.dropdown-item.active, .dropdown-item:active {
	color: var(--success);
	background-color: var(--border);
}
.dropdown-item:hover, .dropdown-item.active:hover {
	color: var(--success);
	text-decoration: none;
}


/** Mobile Menu **/
.sidenav {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 1040;
  top: 0;
  left: 0;
  background-color: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: all .2s ease;
}

.lmd-moblist-header {
	padding: 10px 15px;
}
.moblist-logo {
	width: 200px;
}
.moblist-logo img {
	max-width: 100%;
	max-height: 30px;
}

.moblist-close .nav-link {
    font-weight: 400;
    font-size: 25px;
	color: var(--white);
	padding: 0 15px;
}

/* The navigation menu links */
.lmd-moblist {
	padding: 0 15px;
}
.lmd-moblist ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.lmd-moblist ul li {
    padding: 6px 0 6px 0;
	position: relative;
}

.lmd-moblist ul li a {
    font-weight: 400;
    letter-spacing: .5px;
	color: var(--white);
}
.lmd-moblist ul li  a:hover {
	color: var(--success);
}

/* Layouts */
.lmd-main .container {
	padding-top: 1.5rem;
	padding-bottom: 1rem;
}

/* Footer */
.lmd-footer {
	background-color: var(--dark);
	color: var(--white);
}
.copyright, .socmed {
	text-align: center;
}

.lmd-footer a {
	color: var(--white);
}
.lmd-footer a:hover {
	color: var(--success);
}

.footer-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-menu li {
	display: inline-block;
}
.footer-menu li:not(:last-child) {
    margin-right: .5rem;
}


/***** WordPress *****/
.excerpt {
	transition: all 0.4s;
	overflow: hidden;
}

.post-thumbnail {
	position: relative;
}

.excerpt .post-title {
	font-size: 20px;
	line-height: 26px;
	font-weight: 600;
}
.excerpt .post-title a:hover {
	color: var(--linkhover);
}

/* related post */
.lmd-related-post {
	margin-top: 2rem;
	background-color: var(--white);
	padding: .5rem;
	border-radius: 8px;
}
.excerpt.related .post-title {
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
}
.lmd-related-post .post-thumbnail img {
	border-radius: 4px;
}

.post-meta {
	font-size: .7rem;
	font-weight: 600;
}

.excerpt .post-body p {
	font-size: .8rem;
	display: -webkit-box;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}


/* Perusahaan */
.excerpt.excerpt-perusahaan {
	font-size: 12px;
}

.excerpt.excerpt-perusahaan .post-thumbnail {
	width: 35%;
	padding-right: 5px;
}
.excerpt.excerpt-perusahaan .post-thumbnail img, .excerpt.excerpt-loker .post-thumbnail img, .ph-logo img, .sl-logo img {
    width: 100%;
    max-width: 100%;
    height: 100px;
    object-fit: cover;
    border-style: solid;
    border-width: 0px;
    border-radius: 10px;
	vertical-align: middle;
	display: inline-block;
}

.sl-logo img {
    object-fit: contain;
}

.excerpt.excerpt-perusahaan .post-content {
	width: 65%;
}
.excerpt.excerpt-perusahaan .post-title {
	font-size: 14px;
}
.link-profile {
	font-size: 12px;
	font-weight: 300;
}


/* Loker */
.excerpt.excerpt-loker {
	font-size: 11px;
}
.excerpt.excerpt-loker .excerpt-inner {
	flex-direction: column;
}

.loker-info {
	width: 100%;
}

.excerpt.excerpt-loker .post-title {
	font-size: 13px;
}
.excerpt-info li a {
	font-weight: 600;
}

.excerpt.excerpt-loker .post-thumbnail {
	width: 30%;
	padding-right: 5px;
}
.excerpt.excerpt-loker .post-content {
	width: 70%;
	padding-left: 10px;
}
.excerpt.excerpt-loker .loker-apply {
	width: 100%;
}

.post-expired {
    color: #D80303;
    font-size: 12px;
    font-weight: 600;
}

.post-like {
	justify-content: start;
}
.post-like span {
	background-color: var(--border);
	color: var(--gray);
	border-radius: 50%;
	font-size: 16px;
	width: 32px;
	height: 32px;
}

.lmd-overlay .post-like {
	justify-content: end;
	margin: 10px 8px;
}
.lmd-overlay .post-like span {
	color: var(--link);
}
.lmd-overlay .post-like span:hover {
	color: var(--linkhover);
}

.post-like span.voted, .lmd-overlay .post-like span.voted {
	color: red;
}

/* Archives - Page - Single Post */
.archive-title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.single-post-title {
	font-size: 28px;
	font-weight: 500;
}

.single-post-thumbnail img {
	border-radius: 8px 8px 0 0;
}
.sborder-radius {
	border-radius: 0 0 8px 8px;
}


/* Single Perusahaan/loker */
.lmd-main.single-loker .container {
	padding-top: 1rem;
}

/*  banner */
.perusahaan-banner, .loker-banner {
	position: relative;
	height: 220px;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 10px 10px 0px 0px;
    background-size: contain;
}

.lmd-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
	background-color: rgba(0,0,0,.3);
	border-radius: 10px 10px 0px 0px;
}

/* ph header */
.ph-logo-wrapper {

}
.ph-logo {
	position: relative;
	margin-top: -60px;
	padding: 10px;
}
.ph-logo img {
    border-radius: 0;
}

.ph-name-subtitle, .sl-name-subtitle {
	font-size: 12px;
	font-weight: 500;
	color: var(--lightdark);
}
.ph-name-title, .sl-name-title {
	font-size: 15px;
}
.ph-name-icon {
	color: var(--success);
	font-size: 18px;
}

.ph-follow-since, .sl-expired {
	font-weight: 500;
	text-align: left;
}
.ph-follow-buttons {
	justify-content: center;
}

.table-ringkasan th {
	font-weight: 400;
}

.sl-desc.post-body h2 {
	font-size: 18px;
	font-weight: 500;
}
.sl-desc.post-body h3 {
	font-size: 16px;
	font-weight: 500;
}
.sl-desc.post-body h4, .sl-desc.post-body h5, .sl-desc.post-body h6 {
	font-size: 14px;
	font-weight: 500;
}

.ph-subtitle, .sl-subtitle {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 1rem;
}

.sl-expired {
    color: #D80303;
}

/* Loker Share */
.loker-share {
	margin: 1rem 0;
}
.loker-share-subtitle {
	margin: 0;
	padding: 0 0 .5rem;
	font-size: 14px;
}
.loker-share .lmd-single-share {
	padding: 0 0 !important;
}

/* Loker Terkait */
.loker-terkait-subtitle {
	font-size: 17px;
}

.row-icon {
	display: flex;
	align-items: center;
	margin-bottom: .75rem;
}
.col-icon {
	font-size: 24px;
	width: 24px;
	margin-right: .5rem;
}
.col-text-tax {
	font-size: 11px;
	font-weight: 500;
}
.col-text-term {
	font-size: 13px;
	font-weight: 600;
}
.col-text-term a, .col-text-term a:hover, .col-text-term a:focus {
	color: var(--fontcolor);
	text-decoration: none;
	cursor: auto;
}

.loker-kontak p {
	margin: 0;
}


/* Homepage */
.lmd-home-banner {
	position: relative;
	background-size: cover;
	background-position: center center;
}
.lmd-home-banner .form-wrapper {
	z-index: 1;
}
.lmd-home-banner .container {
	min-height: 368px;
	color: var(--white);
}
.lmd-home-banner .container .row {
	--bs-gutter-x: .5rem;
}

.search-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--success);
}
.search-subtitle {
	font-size: 14px;
	font-weight: 400;
}
.search-info {
	font-weight: 400;
}

/* Single Post Tags */
.lmd-post-tags .post-tags {
    font-size: 13px;
}
.lmd-post-tags a, .tagcloud a {
    background-color: #aaa;
    border-radius: 0 2px 2px 0;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    line-height: 13px;
    margin: 0 0 5px 10px;
    padding: 4px 7px 3px;
    position: relative;
    text-transform: uppercase;
}
.lmd-post-tags a::before, .tagcloud a::before {
    border-top: 10px solid transparent;
    border-right: 8px solid #aaa;
    border-bottom: 10px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.lmd-post-tags a::after, .tagcloud a::after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 4px;
    position: absolute;
    top: 8px;
    left: -2px;
    width: 4px;
}

.lmd-post-tags a:hover, .tagcloud a:hover {
    background: #444;
    color: #FFF;
	text-decoration: none;
}

/*PostImage*/
.post-body img {
	max-width: 100%;
	height: auto;
}
.alignleft, img.alignleft {
	display:inline;
	float:left;
	margin-right:10px;
}

.alignright, img.alignright {
	display:inline;
	float:right;
	margin-left:10px;
}

.aligncenter, img.aligncenter{
	clear:both;
	display:block;
	margin-left:auto;
	margin-right:auto;
}

img.alignleft, img.alignright, img.aligncenter{
	margin-bottom:10px;
}

.wp-caption{
	margin-bottom:10px;
	max-width:100% !important;
}

.wp-caption .wp-caption-text{
	font-size:10px;
	margin:10px;
	text-align:center;
}

/* WordPress Gallery */
.gallery .gallery-item {
	display: inline-block;
	vertical-align: top;
	padding: 0 0 10px;
	text-align: center;
}
.gallery-columns-2 .gallery-item {
	width: 50%;
}
.gallery-columns-3 .gallery-item {
	width: 33.33333333333333%;
}
.gallery-columns-4 .gallery-item {
	width: 25%;
}
.gallery-columns-5 .gallery-item {
	width: 20%;
}
.gallery-columns-6 .gallery-item {
	width: 16.66666666666667%;
}
.gallery-columns-7 .gallery-item {
	width: 14.28571428571429%;
}
.gallery-columns-8 .gallery-item {
	width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	width: 11.11111111111111%;
}

.gallery .gallery-item img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.gallery-caption {
	font-size: smaller;
}

/* Sidebar - Widgets */
.widget {
	margin: 0 0 30px;
	padding: 0;
	position: relative;
}

.widget .widget-title {
	font-weight: 400;
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.widget ul li {
	padding: 5px 0;
}

.widget.widget_recent_comments li a {
	font-weight: 600;
}

/**Calendar**/
table#wp-calendar{
	width:100%;
}

table caption {
	font-weight:bold;
	text-align:center;
	padding-bottom:5px;
}

table#wp-calendar td#prev {
	text-align:left;
	padding-left:3px;
}

table#wp-calendar td#next {
	text-align:right;
	padding-right:3px;
}

table#wp-calendar th, table#wp-calendar td {
	padding: 5px;
	text-align:center;
	border:1px solid var(--border);
}

/***** Comments *****/
.comment-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.children {
	margin-top: 1em;
	list-style-type: none;
}

.comment-list li.comment {
	margin-bottom: 30px;
	background-color: var(--white);
	padding: .5rem;
	border-radius: 8px;
}

.children li.comment {
	border-top: 1px solid var(--border);
	border-radius: 0px;
}

.comment-body, .comment-meta, .cancel-comment-reply {
	margin-bottom: 10px;
}
.avatar {
	float: left;
	margin-right: 15px;
	border-radius: 50%;
}
.comment-metadata {
	font-size: smaller;
}

.comment-reply-link {
	padding: 5px 10px;
	background-color: var(--success);
	color: var(--white) !important;
	font-size: 0.8em;
	border-radius: 4px;
	border: none;
	text-transform: uppercase;
	font-weight: 600;
}

.comment-reply-link:hover {
	background-color: var(--gray);
}

#commentform input, #commentform textarea, .widget select {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	background-color: var(--white);
	background-clip: padding-box;
	border: 1px solid var(--border);
	-moz-box-shadow: 0 2px 4px rgba(204,204,204,0.4) inset;
	-webkit-box-shadow: 0 2px 4px rgba(204,204,204,0.4) inset;
	box-shadow: 0 2px 4px rgba(204,204,204,0.4) inset;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
#commentform textarea {
	height: calc(8em + .75rem + 2px);
}
#commentform input:focus, #commentform textarea:focus, .widget select:focus, .form-control:focus {
	 background-color:var(--white);
	 border-color: var(--border);
	 outline:0;
	 box-shadow: 0 2px 4px rgba(204,204,204,0.4) inset;
}

#commentform .btn-primary {
	background-color: var(--success);
	color: var(--white) !important;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
	border: 1px solid var(--border);
	padding: 0.5em 1.5em;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	text-transform: uppercase;
	font-weight: 600;
}
#commentform .btn-primary:hover {
	background-color: var(--gray);
}


/* Pagination */
.navigation {
	padding-top: 1em;
	padding-bottom: 1em;
}
.navigation:after {
	content: "";
	display: table;
	clear: both;
}

.navigation-single {
	font-size: 1.3em;
}

.prev-posts {
	float: left;
	width: 48%;
	text-align: left;
}

.next-posts {
	float: right;
	width: 48%;
	text-align: right;
}

.pagination {
	align-items: center;
	margin-bottom: 0;
}
.page-item {
	margin: 0 0;
}

.page-link {
	font-weight: 500;
	box-shadow: none;
	color: var(--gray);
	background-color: transparent;
	border: none;
}
.page-link:focus {
	color: var(--white);
	border: none;
	box-shadow: none;
	background-color: transparent;
}

.page-item.active .page-link {
    color: var(--link);
    background-color: transparent;
	border: none;
}
.page-link:hover {
    color: var(--linkhover);
	background-color: transparent;
	border: none;
}

/*** Plugins ***/
/* Widget Recent Posts */
.lmd-recent-post {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lmd-recent-item {
	margin: 0 0 10px;
}

.lmd-recent-item .post-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 5px;
    letter-spacing: normal;
	display: -webkit-box;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--link);
}
.lmd-recent-item .post-meta li, .lmd-terpopuler .post-meta li {
    font-size: .7rem !important;
    color: var(--gray);
}

.lmd-recent-item .post-title:hover {
	color: var(--linkhover);
}

/* Terpopular */
.lmd-terpopuler-item {
	padding: .5rem;
	border-bottom: 1px solid var(--border);
}
.lmd-terpopuler-item:last-child {
	border-bottom: none;
}
.lmd-terpopuler-item .lmd-terpopuler-thumb {
	font-size: 24px;
}
.lmd-terpopuler-item .post-title {
	font-size: 16px;
}

/* Popular Tags */
.lmd-popular-tags a::before {
	content: '#';
	margin-right: 5px;
}

/* Related Posts */
.related-post-title {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 2em;
}
.related-thumbnail {
	position: relative;
	margin-bottom: 10px;
}

/* AJax Filters */
.fetch-title {
	font-size: 14px;
}

/* Buttons */
.btn {
	font-size: 14px;
	font-weight: 300;
}
.btn:hover {
	text-decoration: none;
	color: var(--white);
}

.btn-success {
	background-color: var(--success);
	border-color: var(--success);
	color: var(--white);
}
.btn-success:hover {
	background-color: var(--successhover);
	border-color: var(--successhover);
}
.btn-warning {
	background-color: var(--linkhover);
	border-color: var(--linkhover);
	color: var(--white);
}

.text-danger a {
	color: var(--danger);
}

/* share buttons - using fontawesome 6*/
.lmd-single-share {
	padding: 1rem 0;
}
.lmd-single-share .row {
    --bs-gutter-x: .5rem;
}

.btn-share {
	width: 100%;
	display: flex;
	align-items: center;
	background-color: var(--dark);
	color: var(--white);
	border: none;
	border-radius: 0;
	padding: .5rem .5rem;
	margin-bottom: .5rem;
}
.btn-share:focus {
	color: var(--white);
	text-decoration: none;
	box-shadow: none;
	border: none;
}
.btn-share:hover {
	opacity: .9;
}

.btn-share .fab {
	font-size: 22px;
}

.btn-facebook {
	background-color: #3b5998;
}
.btn-twitter {
	background-color: #1da1f2;
}
.btn-whatsapp {
	background-color: #25d366;
}
.btn-telegram {
	background-color: #2ca5e0;
}

.alert {
	border-left-width: 5px;
}
.alert-title {
	display: block;
	font-size: 15px;
	font-weight: 600;
}

.rounded-5 {
	border-radius: 10px;
}

/* Ajaxs */
#ajaxOverlay {
	display: none;
}
#ajaxOverlay.loading {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	width: 100%; /* Full width (cover the whole page) */
	height: 100%; /* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.3); /* Black background with opacity */
	z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.loker-terkait {
	position: relative;
	padding-bottom: 4.5rem;
}
.lmd_loadmore {
	position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);

	background-color: var(--warning);
	color: var(--white);
	border-radius: 4px;
	display: inline-block;
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing:1px;
	cursor:pointer;
	padding: 10px 20px;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}
.lmd_loadmore:hover{
	background-color: var(--warninghover);
	color: var(--white);
}

/* Iklan */
.lmd_ads {
	
}

.lmd_ads img {
	max-width: 100%;
}


/***** Media Queries *****/
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  
	.excerpt .post-body p {
		-webkit-line-clamp: 5;
	}
}
 
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {
	.excerpt .post-body p {
		-webkit-line-clamp: 6;
	}

	.excerpt.excerpt-loker .excerpt-inner {
		flex-direction: row;
	}
	.loker-info {
		width: 75%;
	}
	.excerpt.excerpt-loker .post-thumbnail {
		width: 25%;
		padding-right: 5px;
	}
	.excerpt.excerpt-loker .post-content {
		width: 75%;
		padding-left: 10px;
		padding-right: 10px;
	}
	.excerpt.excerpt-loker .loker-apply {
		width: 25%;
		padding-left: 5px;
		text-align: right;
	}

	.excerpt.excerpt-loker {
		font-size: 12px;
	}
	.excerpt.excerpt-loker .post-title {
		font-size: 15px;
	}
	.excerpt-info-perusahaan {
		font-size: 14px;
	}
	
	.post-like, .ph-follow-buttons {
		justify-content: end;
	}

	.excerpt.excerpt-perusahaan {
		font-size: 13px;
	}
	.excerpt.excerpt-perusahaan .post-title {
		font-size: 16px;
	}

	.ph-name-title, .sl-name-title {
		font-size: 25px;
	}
	.ph-name-subtitle, .sl-name-subtitle {
		font-size: 14px;
	}

	.sl-logo img {
		object-fit: cover;
	}

	/* Homepage */
	.search-subtitle {
		font-size: 22px;
	}

	.copyright {
		text-align: left;
	}
	.socmed, .ph-follow-since {
		text-align: right;
	}
}
 
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.container {
		max-width: 800px;
	}

	.post-type-archive-loker .container, .post-type-archive-perusahaan .container, .single-loker .container, .tax-lokasi-loker .container, .tax-lokasi-perusahaan .container, .tax-pendidikan .container, .tax-jenis-loker .container {
		max-width: 960px;
	}

	/* Navbar Auto Dropdown  */
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

	.excerpt .post-body p {
		-webkit-line-clamp: 7;
	}

	.post-like.desktop {
		display: flex;
	}
	.post-like.mobile {
		display: none;
	}
}
 
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
	.container {
		max-width: 1000px;
	}

	.page .container, .post-type-archive-loker .container, .post-type-archive-perusahaan .container, .single-loker .container, .tax-lokasi-loker .container, .tax-lokasi-perusahaan .container, .tax-pendidikan .container, .tax-jenis-loker .container {
		max-width: 800px;
	}
}
