input {
	font-family: inherit;
}

input[type='radio'] {
	accent-color: dimgray;
	font-size: 20px;
}

.btn-link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 18px;
	background: var(--primary-color);
	padding: 7px 40px 7px;
	min-width: 180px;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none;
	color: #fff;
	position: relative;
	transition: 0.3s;
}

.btn-link:hover {
	opacity: 0.8;
}

.btn-link.btn-round {
	border-radius: 20px;
	font-weight: 500;
}

.btn-link.icon-plus {
	padding-left: 50px;
	padding-right: 50px;
}

.btn-link.icon-plus::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: url('../../shared/img/icons/icon_plus.png') no-repeat center
		center/100%;
	width: 14px;
	height: 14px;
	right: 30px;
}

.btn-link.btn-type2 {
	position: relative;
	background: var(--black-2);
}

.btn-link.btn-type2::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: url('../img/icons/arrow_left.png') no-repeat center center/100%;
	width: 16px;
	height: 16px;
	left: 10px;
}

.pagination {
	display: flex;
	justify-content: center;
}

.pagination li {
	padding: 0 10px;
	line-height: 1;
	font-weight: bold;
	font-size: 18px;
	color: var(--primary-color);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.pagination li a {
	display: block;
	width: 100%;
	height: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.pagination li + li::after {
	content: '';
	position: absolute;
	top: calc(50% + 2px);
	transform: translateY(-50%);
	height: 100%;
	width: 1px;
	background: var(--primary-color);
	left: -1px;
}

.pagination li.active {
	color: #000;
}

.drop-down1 {
	font-weight: 500;
	position: relative;
	cursor: pointer;
	border: 1px solid var(--gray-2);
	border-radius: 10px;
	padding: 22px 12px 6px 12px;
}

.drop-down1 .select-label {
	display: block;
	color: var(--gray-2);
	font-size: 13px;
	position: absolute;
	top: 2px;
	left: 10px;
	z-index: 2;
}

.drop-down1 select {
	border: none;
	outline: none;
	font-size: 16px;
	width: 100%;
	position: relative;
	cursor: pointer;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.drop-down1.multiple {
	padding-top: 25px;
}

.drop-down1.multiple select {
	color: rgba(0, 0, 0, 0);
}

.drop-down1.multiple option {
	color: #000;
}

.drop-down1.multiple .list-item {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.drop-down1.multiple .list-item li {
	display: inline-block;
	background: var(--gray-3);
	border-radius: 20px;
	padding: 5px 50px 5px 20px;
	display: inline-flex;
	line-height: 1;
	position: relative;
}

.drop-down1.multiple .list-item li .close {
	background: var(--gray-2);
	border-radius: 50%;
	font-size: 14px;
	color: #fff;
	padding: 2px 3px;
	cursor: pointer;
	display: inline-block;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	height: calc(100% - 6px);
	line-height: 1;
}

.drop-down1 .chosen-choices {
	border: none;
	box-shadow: none;
	background: none;
}

.drop-down2 {
	font-weight: 500;
	display: inline-block;
	position: relative;
}

.drop-down2 .select-label {
	display: block;
	color: var(--gray-2);
	font-size: 13px;
	white-space: nowrap;
}

.drop-down2 select {
	border: 1px solid var(--gray-2);
	font-size: 16px;
	position: relative;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 4px 40px 4px 10px;
	display: inline-block;
}

.drop-down2.multiple select {
	color: rgba(0, 0, 0, 0);
}

.drop-down2.multiple option {
	color: #000;
}

.drop-down2.multiple .list-item {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.drop-down2.multiple .list-item li {
	display: inline-block;
	background: var(--gray-3);
	border-radius: 20px;
	padding: 5px 50px 5px 20px;
	display: inline-flex;
	line-height: 1;
	position: relative;
}

.drop-down2.multiple .list-item li .close {
	background: var(--gray-2);
	border-radius: 50%;
	font-size: 14px;
	color: #fff;
	padding: 2px 3px;
	cursor: pointer;
	display: inline-block;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	height: calc(100% - 6px);
	line-height: 1;
}

.drop-down2 .chosen-choices {
	border: none;
	box-shadow: none;
	background: none;
}

.drop-down2.multiple {
	padding-top: 25px;
}

.text-field {
	border: 1px solid var(--gray-2);
	border-radius: 6px;
	outline: none;
	padding: 3px 7px 3px;
	font-weight: 500;
	min-height: 47px;
}

.text-field .text-label {
	color: var(--gray-2);
	font-size: 13px;
	display: block;
}

.text-field input,
.text-field textarea {
	border: none;
	display: block;
	outline: none;
	padding: 2px 10px 1px;
	max-width: 100%;
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
}

.text-field2 {
	border: 1px solid var(--gray-2);
	border-radius: 10px;
	outline: none;
	padding: 1px 5px 2px;
	font-weight: 500;
	min-height: 47px;
}

.text-field2 input,
.text-field2 textarea {
	border: none;
	display: block;
	outline: none;
	padding: 2px 10px 1px;
	max-width: 100%;
	width: 100%;
}

.text-label {
	color: var(--gray-2);
	font-size: 13px;
	display: block;
}

.form-img-item {
	position: relative;
	display: inline-block;
}

.form-img-item .list-controls {
	position: absolute;
	bottom: 6px;
	right: 0;
	left: 0;
	width: 100%;
	padding: 0 12px;
	box-sizing: border-box;
}

.form-img-item .img-group {
	position: relative;
	line-height: 1;
	min-height: 100px;
	border: 1px solid var(--gray-2);
}

.form-img-item .img-group img {
	width: 100%;
	height: auto;
}

.form-img-item .thumb {
	width: 100%;
	height: 100%;
	display: block;
}

.form-img-item .thumb img {
	max-width: 100%;
	height: auto;
	width: auto;
}

.form-img-item .small-device {
	min-height: 180px;
}

.list-controls img {
	max-width: 30px;
	height: auto;
}

.form-gr1 {
	border: 1px solid var(--gray-2);
	padding: 12px 85px 12px 45px;
	position: relative;
}

.form-gr1 .shop-brand {
	max-width: 90px;
}

.form-gr1 .form-delete {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	border-left: 1px solid var(--gray-2);
}

.form-gr1 .form-delete img {
	max-width: 22px;
}

.form-gr1 .form-control {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	border-left: 1px solid var(--gray-2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form-gr1 .form-control > * {
	padding: 2px 3px;
	flex: 1;
	width: 100%;
	display: flex;
	justify-content: center;
}

.form-gr1 .form-control .up {
	align-items: flex-end;
}

.form-gr1 .form-control .down {
	align-items: flex-start;
}

.form-gr1 .form-control .drop-down1 {
	align-items: flex-start;
}

.form-gr1 .form-control button {
	line-height: 1;
}

.form-gr1 .form-control img {
	max-width: 10px;
	line-height: 1;
}

.form-gr2 {
	border: 1px solid var(--gray-2);
	padding: 12px 45px 12px 45px;
	position: relative;
}

.wrap {
	max-width: 1059;
}

.shop-status {
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1.2;
	font-size: 18px;
}

.shop-status .status-dot {
	width: 14px;
	height: 14px;
	display: block;
	border-radius: 50%;
	background: var(--gray-2);
	margin-top: 2px;
}

.shop-status.is-published .status-dot {
	background: var(--green-4);
}

.shop-status.is-pendding .status-dot {
	background: var(--primary-color);
}

.shop-status.is-updated-pendding .status-dot {
	background: var(--purple-2);
}

.shop-item {
	border: 1px solid var(--gray-2);
	padding: 10px 20px 10px;
	position: relative;
}

.shop-item + .shop-item {
	margin-top: 20px;
}

.shop-item .shop-top {
	display: flex;
	align-items: center;
	gap: 30px;
}

.shop-item .shop-top .shop-logo {
	width: 74px;
}

.shop-item .shop-top .shop-logo img {
	max-width: 100%;
	height: auto;
}

.shop-item .shop-top .info-top {
	font-size: 18px;
	font-weight: 500;
}

.shop-item .shop-top .info-title {
	font-size: 22px;
	font-weight: 500;
}

.shop-item .shop-bottom {
	border-top: 1px solid var(--gray-2);
	align-items: center;
	font-weight: 500;
	align-items: center;
	padding: 10px 20px 5px;
	width: 100%;
	display: flex;
}

.shop-item .shop-bottom .shop-date {
	font-size: 14px;
	margin-left: 20px;
}

.shop-item .shop-bottom .shop-bottom-txt {
	font-size: 14px;
	margin-left: 20px;
}

.shop-item .shop-bottom .shop-buttons {
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
	white-space: nowrap;
	padding-left: 20px;
}

.shop-item .shop-bottom .shop-buttons li + li .shop-button {
	position: relative;
}

.shop-item .shop-bottom .shop-buttons li + li .shop-button::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 100%;
	width: 1px;
	background: currentColor;
	left: 0;
}

.shop-item .shop-bottom .shop-buttons .shop-button {
	padding: 0 10px;
	line-height: 1;
	font-size: 16px;
}

.shop-item .shop-bottom .shop-buttons .shop-button:hover {
	text-decoration: underline;
}

.shop-item .item-tag {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--red-2);
	color: #fff;
	display: block;
	font-weight: bold;
	font-size: 13px;
	padding: 3px 10px 3px;
}

.shop-item1 {
	padding: 10px 20px 10px;
}

.shop-item2 {
	padding: 8px 20px 8px;
	display: flex;
	gap: 15px;
	align-items: center;
}

.shop-item2 .shop-thumb {
	width: 20%;
	line-height: 1;
	height: 100%;
}

.shop-item2 .shop-thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.shop-item2 .info-title {
	padding: 0 0 10px;
}

.shop-item2 .shop-right {
	flex: 1;
	padding: 0 0 10px;
}

.shop-item3 {
	border: 1px solid var(--gray-2);
	padding: 8px 20px 8px;
	display: flex;
	gap: 15px;
}

.shop-item3 .shop-thumb {
	width: 23%;
	line-height: 1;
	height: 100%;
}

.shop-item3 .shop-thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.shop-item3 .info-title {
	padding: 0 0 10px;
}

.shop-item3 .shop-right {
	flex: 1;
	padding: 0 0 10px;
}

.shop-item3 .shop-bottom {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
}

.shop-item3 .shop-logo {
	width: 60px;
	text-align: right;
	margin-left: 60px;
}

.shop-item3 .shop-buttons {
	align-self: flex-start;
}

.shop-item3 .shop-date-gr {
	display: flex;
	margin-left: 4px;
}

.shop-item3 .shop-date-gr .shop-date {
	margin-left: 0;
}

.color-picker .label-txt {
	display: block;
	color: var(--gray-2);
	font-size: 13px;
	padding-left: 2px;
}

.color-picker input {
	display: block;
	width: 99px;
	height: 38px;
	border: none;
	outline: none;
	background: none;
}

.color-pricker-preview .list-preview {
	font-weight: bold;
	line-height: 2;
}

.course-item {
	border: 2px solid currentColor;
	padding: 1px 6px;
	box-sizing: border-box;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.7;
}

.tag-item {
	border: 2px solid currentColor;
	padding: 1px 10px;
	box-sizing: border-box;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1.7;
}

.media-item {
	line-height: 1;
	width: 100%;
	height: 100%;
	display: block;
}

.media-item.active {
	position: relative;
}

.media-item.active::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 5px solid var(--primary-color);
}

.media-item.active::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background:
		url('../img/icons/icon_check.png') no-repeat center center / 24px auto,
		var(--primary-color);
	width: 30px;
	height: 30px;
}

#media-detail .detail-thumb {
	text-align: center;
}

.media-upload .drop-area {
	width: 100%;
	min-height: 350px;
	border: 2px dashed var(--gray-2);
	border-radius: 10px;
	position: relative;
}

.media-upload .drop-area.active {
	border-color: var(--primary-color);
	opacity: 0.6;
	background: var(--gray-3);
}

.media-upload .drop-area .drop-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.media-upload .drop-area .drop-btn {
	position: absolute;
	top: calc(50% + 100px);
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

@media (max-width: 1200px) {
	.shop-item3 .shop-logo {
		margin-left: 20px;
	}
}

.warning-filed {
    border: 1px solid red !important;
}
