.has-feedback .smk-error-msg {
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: right;
    color: #E90003;
}
.form-group {
	margin-bottom: 1.25rem;
	position: relative;
}
.has-error input.form-control {
	border:2px solid #E90003; 	
}
.has-error input.form-control:focus {
	background-color: #EEE;
	border-color: none;
	box-shadow: none;
}
#toast-container > div {
	box-shadow:none;
	border:none;
	opacity:1;
	font-size:16px;
	width:500px;
	padding:20px 20px 20px 50px;
	border-radius:0;
}
#toast-container > :hover {
	box-shadow:1px 0px 20px rgba(0,0,0,0.07);	
}
.toast-close-button {
	top:0;	
}
@media (min-width: 320px) and (max-width: 575.8px) {
	#toast-container > div {
		width:300px !important;
	}
}






.post-desc h2 {
    font-size: 24px;
    margin: 32px 0 8px;
}
.post-excerpt.post-desc.bg-gray-light-color {
    background-color: #fff !important;
}
ul.docs {
    margin-top: 40px;
    font-size: 14px;
    display: flex;
    gap: 32px;
}


/** float container */
.control input {
	border: none;
	font-size: 16px;
	outline: 0;
	padding: 18px 16px 8px;
	width: 100%;
	background-color: #eef1f5;
	border-radius: 4px;
}
.control label {
	font-size: 16px;
	position: absolute;
	transform-origin: top left;
	transform: translate(16px, 14px) scale(1);
	transition: all 0.1s ease-in-out;
	pointer-events: none;
}
.control.active label {
	transform: translate(16px, 4px) scale(0.7);
}
input.wpcf7-form-control.wpcf7-submit {
	border: 0;
	padding: 12px 24px;
	background-color: #2c3782;
	color: #fff;
	border-radius: 4px;
}
.form-to-sber {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 16px;
    row-gap: 16px;
}


.freelancers-block {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	column-gap: 16px;
	row-gap: 16px;
}
.freelancer-card {
	box-shadow: 0 0 20px 3px rgb(0 0 0 / 10%);
	border-radius: 10px;
	transition: all .25s;
	height: 8.8rem;
	background: #fff;
	position: relative;
	z-index: 10;
	overflow: hidden;
}
.freelancer-card:hover {
	z-index: 15;
	overflow: visible;
}
.information-in {
	position: relative;
	padding: 24px;
}
.information-in:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 8px 20px 3px rgb(0 0 0 / 15%);
	transition: 0.25s;
	opacity: 0;
	visibility: hidden;
}
.freelancer-card:hover .information-in:after {
	opacity: 1;
	visibility: visible;
}


.about-freelancer {
	display: flex;
}
.freelancer-info {
	width: 60%;
}
.freelancer-image img {
	object-fit: cover;
	width: 64px;
	height: 64px;
	border-radius: 50%;
}
.freelancer-name {
	font-size: 18px;
	line-height: 20px;
	word-spacing: 9999px;
	margin-bottom: 0;
}
.freelancer-status {
	color: #E43225;
	font-size: 13px;
	font-weight: 700;
}

.freelancer-rating {
	margin-top: 8px;
	display: flex;
	margin-bottom: 18px;
}
.freelancer-reviews {
	font-size: 14px;
	margin-top: 2px;
}


.rating-star {
	position: relative;
	width: 80px;
	margin-right: 8px;
}
.cornerimage {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
 }

.rating-star img {
	height: auto;
	max-width: 100%;
}

.cornerimage img{
   max-width: 80px;
 }
.shop-name {
	background-color: #eee;
	margin-right: 4px;
	margin-bottom: 4px;
	padding: 0px 6px;
	display: inline-block;
	font-size: 12px;
	color: #111;
	border-radius: 4px;
}
.freelancer-shops {
	margin-top: 8px;
}
.shop-comments {
	display: flex;
	flex-direction: column;
}
.shop-comment:before {
	content: "";
	display: inline-block;
	width: 5px;
	margin-right: 8px;
	height: 5px;
	border-radius: 50%;
	background: #048621;
}
.freelancer-image {
	margin-right: 16px;
}
.freelancer-shops h3 {
	font-size: 14px;
	line-height: 1.2;
}

.overlay {
   opacity: 0;
   visibility: hidden;
   
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, .5);
   z-index: 80;
   transition: .3s all;
}


/* Стили для модальных окон */

.modal-reports {
   opacity: 0;
   visibility: hidden;
   width: 100%;
   max-width: 600px;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 90;
   box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2); 
   padding: 30px;
   border-radius: 3px;
   background-color: #fff;
   transition: 0.3s all;
}
.modal-reports.active,
.overlay.active{
   opacity: 1;
   visibility: visible;
}
.modal__cross {
   width: 15px;
   height: 15px;
   position: absolute;
   top: 20px;
   right: 20px;
   fill: #444;
   cursor: pointer;
}
.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23048621'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:focus {box-shadow: none;}
.accordion-button {padding: 16px 0;border: 0 !important;}
.accordion-button:focus {border-top: 0 !important;}
.accordion-button:not(.collapsed) {background-color: transparent;border-bottom: 1px solid #048621 !important;color: #048621;}
.accordion-body {
	padding: 1rem 0;
}
.accordion-item h4 {
	font-size: 14px;
}
.seller-comment {
	margin-bottom: 1.5rem;
}
.accordion h3 {margin-bottom: 16px;}
.accordion h3 span {
	display: block;
	font-size: 16px;
	margin-top: 4px;
	color: #555;
	font-weight: 600;
}
.accordion-item:last-of-type .accordion-collapse {
	border: 0;
}
a.js-open-modal.btn {
	background-color: #6b6b6b;
	width: fit-content;
	color: #fff;
	padding: 4px 8px;
	margin-bottom: 8px;
}
a.js-open-modal:hover {
	background-color: #444;
}

/* Страница фрилансера */
.fr-detail {
	padding: 40px 0 15px;
}
.freelancer-profile-img img {
	border-radius: 50%;
}
.fr-hero-details-information {
	display: flex;
	flex-direction: column;
}
.fr-hero-details-content .fr-hero-details-information h1, .fr-hero-details-content .fr-hero-details-information .fr-hero-m-deails ul li {
	color: #111;
}
.freelancer-profile-img {
	padding: 0;
}
.fr-product-description h3 {
	margin-bottom: 24px;
}
.fr-hero-details-information .freelancer-status {
	font-size: 16px !important;
}
.fr-product-description .accordion-item {
	background-color: #fff;
	margin-bottom: 8px;
	padding: 0 24px;
	border-radius: 4px;
}
.fr-product-description {
	padding-top: 60px;
}
.fr-product-description .freelancer-shops {
 display: grid;
 grid-template-columns: repeat(2,1fr);
 column-gap: 8px;
 row-gap: 8px;
}
.fr-product-description .accordion-collapse .from-seller {
	padding-bottom: 40px;
}
.fr-product-description .from-seller .rating-star {
	margin-bottom: 24px;
}
.fr-product-description .accordion-button {
	border: 0 !important;
	justify-content: space-between;
}
.fr-product-description .shop-name {
	font-size: 11px;
    padding: 16px 0;
    background-color: #fff;
    color: #666;
    height: 56px;
    display: flex;
    font-weight: 600;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
	line-height: 1.2;
}
.fr-product-description .shop-name:hover {
	background-color: #048621;
	color: #fff;
}
.fr-product-description .accordion-button::after {
	margin-left: 0;
}
.fr-product-description .accordion-button .rating-star {
	margin-left: 8px;
	margin-top: -2px;
}
.ocenka {
	display: flex;
}
.ocenka span {
    color: #212529;
}
.report-title {
    font-weight: 600;
    min-width: 255px;
    text-align: left;
}
.accordion-item:hover .report-title {
	color: #048621;
}
img.footer {
	height: 110px;
	width: auto;
}
.fr-footer .fr-bottom p {
	color: #fff;
}
.fr-footer .fr-bottom {
	text-align: left;
	padding: 40px 0;
}

.fr-bottom a {
	color: #fff !important;
}
.fr-menu .sb-menu ul li.fr-list .btn-theme, .fr-menu .sb-menu ul li a.btn-for-shops, .fr-menu .sb-menu ul li a.btn-for-fl {
	font-weight: 700 !important;
	font-size: initial;
	text-transform: none !important;
}

@media (max-width: 1024px) {
	.freelancers-block {
	grid-template-columns: repeat(3,1fr);
}
.fr-product-description .accordion {
	margin-bottom: 80px;
}
.modal-reports {
   max-height: 420px;
   overflow-y: auto;
}
}
@media (max-width: 868px) {
	.freelancers-block {
	grid-template-columns: repeat(2,1fr);
}
}
@media (max-width: 768px) {
.ocenka span {
    display: none;
}
}

@media (max-width: 640px) {
	.freelancers-block {
	grid-template-columns: repeat(2,1fr);
}
}
@media (max-width: 540px) {
.freelancer-name {
	font-size: 15px;
}
.information-in {
	padding: 24px 16px;
}
.freelancer-status {
	font-size: 12px;
}
.freelancer-profile-img {
	margin-bottom: 24px;
}
}
@media (max-width: 420px) {
	.freelancers-block {
	grid-template-columns: repeat(1,1fr);
}
.report-title {
    max-width: 150px;
    min-width: auto;
}
}
