.admin-remove-comment {
	width: 25px;
	height: 25px;
	display: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 5px;
	position: absolute;
	bottom: 10px;
    left: 10px;
	background: #fff;
	z-index: 999;
	box-shadow: 0px 0px 7px rgb(50 50 50 / 60%);
}
.admin-remove-comment i {
	color: #cb1111;
	width: 100%;
	text-align: center;
}
.admin-remove-comment:hover {
	background: #cb1111;
	box-shadow: none;
}
.admin-remove-comment:hover i {
	color: #fff;
}
.comments-level, .add-reply {
	margin-left: auto !important;
	width: 97%;
}
.comments-container p {
	color: #0e0e0e;
}
.add-comment-container {
	display: flex;
	margin: 40px 0px;
}
.add-comment-content {
	width: 100%;
}
.add-comment-content * {
	box-sizing: border-box;
}
.add-comment-owner {
	display: flex;
}
.add-comment-owner > div:first-child {
	margin-right: 15px;
}
.comment-form-label label {
	display: block;
	font-size: 16px;
}
.comment-form-label input {
	display: block;
	font-size: 14px;
	padding: 10px 18px;
}
.add-comment-textarea {
	width: 100%;
	min-height: 80px;
	resize: none;
	padding: 0;
	margin: 0;
	outline: 0;
	border: none;
	border-bottom: 1px dashed #aaaaaa;
	margin-top: 10px;
	font-size: 14px;
}

textarea:focus {
	border: 0;
	border-bottom: 1px solid #48556e;
}

.add-comment-content__bottom--space-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.add-comment-content__bottom .comment-phonenumber {
	display: none !important;
}
.add-comment-content__buttons {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 15px;
}
.add-comment-content__recaptcha {
	margin-top: 5px;
}
.add-comment-user-avatar, .comment-user-avatar {
	display: flex;
    justify-content: center;
    align-items: flex-start;
}
.add-comment-user-avatar img {
	width: 80px;
	height: 80px;
	object-fit: cover;
}
.comment-user-avatar img {
	width: 40px;
	height: 40px;
	object-fit: cover;
        font-size: 10px; /* Dla alta zdjęcia w przypadku brakującego zdjęcia*/
}
.add-comment-user-avatar i {
	margin-top: 21px;
}
.comment-icon {
	margin-right: 15px;
}
.comment-icon i {
	font-size: 40px;
	text-align: center;
	width: 100%;
}
.add-comment-stars {
	margin-top: 15px;
}

.clear-comment {
	margin-right: 15px;
	visibility: visible;
	opacity: 1;
	transition: visibility 0s, opacity 0.5s linear
}
.clear-comment--hidden {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0s linear
}

.comment {
	margin-bottom: 15px;
	border: 1px solid #aaaaaa;
	padding: 10px;
	position: relative;
}
.comment:hover .admin-remove-comment {
	display: flex;
}
.comment.to-delete {
	background: #ffd7d7;
}
.comment-container {
	display: flex;
	align-items: stretch;
}
.comment-content {
	width: 100%;
}
.comment-content p {
	font-size: 16px;
}
.comment-content__info {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.comment-content__info p {
	line-height: 21px;
}
.comment-content__text {
	border-top: 1px dashed #aaaaaa;
}
.content-owner__right, .content-owner__left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.content-owner__left {
	margin-right: 10px;
}
.content-owner__right {
	margin-left: auto;
	justify-content: flex-end;
}
.content-owner__left > p {
	font-weight: 600;
}
.content-owner__left p:first-child  {
	margin-right: 10px;
}
.content-owner__right .comment-rating {
	margin-left: 10px;
	cursor: default !important;
	pointer-events: none;
}
.comment-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.comment-actions p {
	font-size: 14px;
	line-height: 18px;
}
.comment-actions.space-between {
	justify-content: space-between
}
.comment-action-button {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	user-select: none;
}

.comment-action-button i {
	margin-right: 5px;
}

.comment-action-button:hover p {
	text-decoration: underline;
}

.comments-read-more {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.comment-error.active {
	width: fit-content;
	display: block;
    font-size: 12px;
    color: #fff;
    background: #d56a6a;
    margin: 10px 0;
    padding: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.comment-notification {
	margin-top: 5px;
}
.comment-notification .sf-ch-wrapper label {
	font-size: 13px;
}
.comment-notification .sf-ch-wrapper label .sf-ch-default {
	width: 20px;
	height: 20px;
}
.notification-cancel__body {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.notification-cancel__box {
	max-width: 960px;
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
	padding: 40px;
}
.notification-cancel__body h2 {
	margin-bottom: 15px;
}
.notification-cancel__body p {
	font-size: 16px;
	margin-bottom: 15px;
}
.notification-cancel__body span {
	margin-bottom: 5px;
	display: block;
}
.notification-cancel__body span a {
	color: #2f6dc9;
}
.nontification-cancel__header {
	display: flex;
	justify-content: center;
	align-items: center;
}
.nontification-cancel__header a {
	max-width: 200px;
	margin-bottom: 30px;
}
.nontification-cancel__header a img {
	width: 100%;
	height: 100%;
}
.notification-cancel__buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cancel-notification {
	background: #cb1111;
	border: 1px solid #cb1111;
}
.cancel-notification:hover {
	color: #cb1111;
}

.submit-comment:hover
{
    background: #48556e;
    color: white;
}

@media all and (max-width: 768px){
	.add-comment-user-avatar img {
		width: 60px;
		height: 60px;
	}
	.comment-icon i {
		font-size: 30px;
	}
	.comment-icon {
		margin-right: 10px;
	}
	.comment-content__info p {
		font-size: 14px;
	}
	.comment-content p {
		font-size: 14px;
		line-height: 21px;
	}
	.comment-actions p {
		font-size: 13px !important;
	}
	.comment-string {
		margin: 5px 0px;
	}
}

@media all and (max-width: 540px){
	.comment-content__info {
		flex-direction: column;
	}
	.content-owner__left {
		width: 100%;
		justify-content: flex-start;
		margin-right: 0px;
	}
	.content-owner__right {
		width: 100%;
		justify-content: space-between;
	}
	.content-owner__right .comment-rating {
		margin: 0px;
	}
	.comment-content p {
		font-size: 14px;
		line-height: 18px;
	}
	.add-comment-user-avatar img {
		width: 40px;
		height: 40px;
	}
	.comment-rating .jq-star {
		width: 20px !important;
		height: 20px !important;
	}
	.comment-actions p {
		font-size: 12px !important;
	}
}