.like, .liked { 
	float: right;
	width: 16px;
	height: 16px;
	margin-left: 1px;
	margin-bottom: -3px;
	background-size: 16px 16px;
}

.like_info, .liked_info { 
	float: left;
	width: 16px;
	height: 12px;
	margin-left: 1px;
}
	
.like, .liked {
	position: relative;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 1.4rem;
    margin-left: 0.5rem;
}
.like {
    background-image: url(../../../images/paw_outline_dark.svg);
}
.like:hover{
	background-image: url(../../../images/paw_outline_light.svg);
}
.liked {
    background-image: url(../../../images/paw_fill_dark.svg);
}
.liked:hover{
	background-image: url(../../../images/paw_fill_light.svg);
}

.like_info {
	position:relative;
}
.like_info:before {
	font-family: FontAwesome;
	top:0;
	left:-5px;
	padding-right:10px;
	font-size: 1.35em;
	content: "\f08a";
	color: var(--secondary-color);
}
.liked_info {
	position:relative;
}
.liked_info:before {
	font-family: FontAwesome;
	top:0;
	left:-5px;
	padding-right:10px;
	font-size: 1.35em;
	content: "\f004";
	color: var(--secondary-color);
	font-weight: bold;
}

.postlove-button::hover {
	color: #BF552B;
}

.postlove-count {
    color: var(--secondary-color);
}

.postlove {
  color: #385e51;
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: left;
}

.postlove .liked {
  float: left;
  margin: 0;
  margin-right: 0.5rem;
  width: 1rem;
  height: 1.8rem;
  background-image: url(../../../images/paw_fill_green.svg);
}

/* MODALS */
.modal {
  display: none;
  width: 95%;
  height: 80%;
  background: #fff;
  padding-right: 12px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .inner {
	width: 100%;
	height: 100%;
	overflow: scroll;
	overflow-x: hidden;
}
.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  z-index: 999;
  background: url(./images/close.png) no-repeat 0 0;
}

.modal-spinner {
  display: none;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -32px;
  margin-top: -32px;
  background: url(./images/spinner.gif) #111 no-repeat center center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.dialog_background {
	position: fixed;
	z-index: 10000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.5;
}

.dialog {
	position: fixed;
	z-index: 10001;
	top: 50%;
	left: 50%;
	background-color: white;
	max-width: 90vw;
	max-height: 90vh;
	border: 1px solid var(--dark-border-color);
	transform: translate(-50%, -50%);
	min-width: 35rem;
}

.dialog_header {
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 2.2rem;
	color: var(--black);
	border-bottom: 1px solid var(--dark-border-color);
	padding: 1.2rem;
	background: var(--white);
	display: flex;
	justify-content: space-between;
	align-content: center;
	letter-spacing: 0.3px;
}

.dialog_body {
	max-height: 25rem;
	overflow: auto;
}

.dialog_body .likers {
	padding: 0.5rem;
  padding-left: 2.5rem;
}

.dialog_body .likers li {
	padding: 0.5rem 0;
}

.dialog_footer {
	font-weight: bold;
	color: var(--black);
	border-top: 1px solid var(--dark-border-color);
	padding: 0.9rem 1.2rem;
	background: var(--white);
	text-align: right;
}

.dialog_footer button {
	border: 1px solid var(--dark-border-color);
	padding: 0.4rem 1.2rem;
	border-radius: 0.2rem;
	letter-spacing: 0.3px;
	font-size: 1.2rem;
}