/*
 * @package     AJAX ReportOn
 * @copyright   Copyright (C) 2017 JoomFox http://www.joomfox.com All rights reserved.
 * @license     GNU General Public License version 3 or later; see LICENSE.txt
 */

.item-page { 
	position: relative;
}
.ajaxreporton {
	clear: both;
	display: block;
	margin: 0 0 -16px 0;
	padding: 0;
	position: relative;
	top: 18px;
	right: 0px;
	width: 16px;
	height: 16px;
	text-align: center;
	float: right;
/*	z-index: 99; */
}

.ajaxreporton a.report-btn {
	cursor: pointer;
	font-size: 12px;
	color:#cfd4dc;
}
a.report-btn:hover {
	color:#a0a9ba;
}

/* Joomla Icon */

.icon-info:before {
	content: "\e220";
}
.icon-info-2:before,
.icon-info-circle:before {
	content: "\e221";
}
.icon-notification:before {
	content: "\e223";
}
.icon-notification-2:before,
.icon-notification-circle:before {
	content: "\e224";
}

/* ----- */

#modalreporton {z-index: 1050; text-align: left; }

#modalreporton.modal.fade.in {
    top: 30%;
}

.ajaxreporton_status .alert {
	margin:-15px;
	font-size: 13px;
}
.ajaxreporton_status .alert h4 {
	margin-bottom:4px;
}

/*	For Admin */

.reportadmin a.report_add {
	font-size: 16px;
	color:#e3482c;
}

.reportadmin .text-error {
    color: #e3482c;
}

.reportadmin .text-success {
    color: #50b86b;
}

.reportadmin .ajaxreporton_status {
	display: block;
	margin: 0;
	padding:0;
	position:absolute;
	top: 0px;
	right: -126px;
	width:80px;
	height:16px;
	text-align: left;
	font-size: 12px;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  }
  50% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  90% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  100% {
  opacity: 0;
  }
  }
  @keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  }
  50% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  90% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  100% {
  opacity: 0;
  }
  }