::-webkit-selection {
	background: #ffb22b;
}
::-moz-selection {
	background: #ffb22b;
}
::selection {
	background: #ffb22b;
}

body {
	font-size: 14px;
}

.loader {
	position: fixed;
	top: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	align-items: center;
	justify-content: center;
}

.loader img {
	width: 150px;
}

/*--------------------------------------------------------------------------------------------------------------*/

.content-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.content-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.content-flex {
		flex-direction: column;
		align-items: baseline;
	}
}

.mainMenu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #00acc1;
}
.mainMenu-left a {
	display: none;
	color: #fff;
	background-color: transparent;
	background-image: none;
	padding: 15px 20px;
	font-size: 20px;
	font-family: fontAwesome;
}
.mainMenu-left a:before {
	content: "\f0c9";
}
.mainMenu-left a span.title-menu {
	font-family: "Exo 2", sans-serif;
	margin-left: 7px;
}
.mainMenu-right > ul {
	display: flex;
	align-items: center;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.mainMenu-right > ul > li {
	position: relative;
}
.mainMenu-right > ul > li > a {
	font-size: 1.05rem;
	padding: 0px 20px;
	line-height: 60px;
	display: flex;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
	background: transparent;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.mainMenu-right > ul > li > a:hover,
.mainMenu-right > ul > li.active > a {
	background: rgba(0, 0, 0, 0.1);
}
.mainMenu-right > ul > li > a span.fa {
	margin-right: 10px;
}
.mainMenu-right > ul > li > a span.fa-angle-down {
	margin-right: 0px;
	margin-left: 10px;
}
.mainMenu-right > ul ul {
	display: none;
	position: absolute;
	right: 0px;
	list-style: none;
	margin: 2px 0px 0px 0px;
	padding: 0px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(120, 130, 140, 0.13);
}
.mainMenu-right > ul ul.show {
	display: block;
}
.mainMenu-right > ul ul > li {
	min-width: 260px;
	position: relative;
}
.mainMenu-right > ul ul > li > a {
	font-size: 1.05rem;
	padding: 12px 15px;
	line-height: 1.3rem;
	display: flex;
	align-items: center;
	color: #67757c;
	text-decoration: none;
	background: #fff;
	transition: 0.1s linear;
}
.mainMenu-right > ul ul > li > a:hover,
.mainMenu-right > ul ul > li.active > a {
	text-decoration: none;
	background: #e4e4e4;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.mainMenu-right > ul ul > li > a span.fa {
	margin-right: 10px;
	min-width: 20px;
}

.mainMenu-right > ul ul > li.li-dropdown2:hover > ul {
	display: block;
	right: 100%;
	top: -3px;
	padding-right: 2px;
}

@media (max-width: 970px) {
	.mainMenu {
		align-items: normal;
		flex-direction: column;
	}
	.mainMenu-left a {
		display: block;
	}
	.mainMenu-right > ul {
		display: none;
		align-items: normal;
		flex-direction: column;
		border-top: 1px solid #fff;
	}
	.mainMenu-right > ul.show {
		display: flex;
	}
	.mainMenu-right > ul > li > a:hover,
	.mainMenu-right > ul ul > li > a:hover {
		background: transparent;
	}
	.mainMenu-right > ul ul {
		position: initial;
		margin: 0px;
		border: 0px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	.mainMenu-right > ul ul > li > ul {
		display: block;
	}
	.mainMenu-right > ul ul > li > ul > li > a {
		padding-left: 76px;
	}
	.mainMenu-right > ul ul > li > a {
		background: #00acc1;
		color: #ffffff;
		padding: 20px 15px 20px 45px;
	}
	.mainMenu-right > ul ul > li > a:hover,
	.mainMenu-right > ul ul > li.active > a {
		background: rgba(0, 0, 0, 0.1);
	}
}

/*--------------------------------------------------------------------------------------------------------------*/

.btn-grid {
	padding: 0.5rem 0.9rem;
}

.pages-items {
	padding-left: 0px;
	display: flex;
	flex-direction: column;
}
.pages-items .pages-item-city {
	line-height: 30px;
}
.pages-items .city-name {
	padding: 0px 5px;
	display: flex;
	align-items: center;
	cursor:pointer;
	margin: 2px 0px;
}
.pages-items .city-name.active .show-childs i {
	transform: rotate(90deg);
}
.pages-items .city-name + .city-container {
	height: 0px;
	overflow: hidden;
}
.pages-items .city-name.active + .city-container {
	height: auto;
	overflow: auto;
	padding: 2px 0px;
}

.pages-items .city-name i {
	margin-right: 7px;
}
.pages-items .pages-item .link {
	display: flex;
	align-items: center;
}
.pages-items .pages-item .link:hover,
.pages-items .pages-item.active > .link {
	background-color: #f0f0f0;
}
.pages-items .childs-container {
	cursor: pointer;
}
.pages-items .show-childs {
	width: 17px;
	height: 17px;
	margin-right: 5px;
}
.pages-items .show-childs i {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}
.pages-items .show-childs:hover i {
	background-color: #b4b4b4;
}
.pages-items .show-childs i:before {
	margin: 1px 0px 0px 1px;
}
.pages-items .pages-item.open > .link .show-childs i {
	transform: rotate(90deg);
}
.pages-items .pages-item a {
	color: inherit;
	display: block;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}
.pages-items .pages-item {
}
.choose_parent_pages.active {
	box-shadow: 0px 0px 5px #00acc1;
}
.parent_pages > option {
	display: none;
}

.box-title-tabs {
	padding: 10px 20px;
	margin: -10px 10px -15px 0 !important;
	font-weight: 600;
	cursor: pointer;
}
.box-title-tabs:hover {
	border-bottom: 2px solid #d2d6de;
}
.box-title-tabs.active {
	border-bottom: 2px solid #00acc1;
}
.box-content-tabs {
	display: none;
}
.box-content-tabs.active {
	display: block;
}
.box-content-tabs .tab-content {
	padding-right: 0px;
}
.box-content-tabs .nav-tabs .nav-link {
	padding-left: 0px;
}
.box-contextmenu {
	display: none;
	position: absolute;
	z-index: 1;
	background: #fff;
	padding: 2px 0;
	border: 1px solid #d8dbe2;
	border-right: 4px;
	box-shadow: 0px 0px 5px #d8dbe2;
}
.box-contextmenu.show {
	display: block;
}
.contextmenu-header {
	padding: 4px 10px;
	font-weight: 600;
	border-bottom: 1px solid #d8dbe2;
}
.box-contextmenu .item {
	padding: 4px 10px;
	cursor: pointer;
}
.box-contextmenu .item:hover {
	background-color: #00acc1;
	color: #fff;
}
.box-contextmenu.gallery-item-contextmenu .item-delete {
	font-weight: 600;
}
.box-contextmenu.gallery-item-contextmenu .item-link-position {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #eee;
	color: #00acc1;
	background-color: inherit;
}

.progress-container .item {
	border: 1px solid #cccccc;
	padding: 5px 10px 10px 10px;
	margin-bottom: 10px;
}
.progress-container .item .item-filename {
	margin-bottom: .4rem;
}
.progress-container .item .progress {
	margin-bottom: 0;
}

.upload-additional-value-container img {
	border: 1px solid #aaa;
	padding: 2px;
	max-width: 250px;
}

.upload-gallery-value-container .gallery-list {
	display: flex;
	flex-wrap: wrap;
}
.upload-gallery-value-container .gallery-list .item {
	padding: 5px;
	width: 33.3333%;
	max-width: 250px;
	min-width: 150px;
}
.upload-gallery-value-container .gallery-list .item img {
	border: 1px solid #aaa;
	padding: 2px;
}
.upload-gallery-value-container .gallery-list .item > div {
	text-align: center;
}
.gallery-list-button {
	padding: 5px;
}
.gallery-list-quality {
	margin: 20px 5px;
}
.upload-files-value-container .files-list .item {
	background-color: #f6f6f6;
	margin-bottom: 10px;
	padding: 5px;
}
.upload-files-value-container .files-list .item:last-child {
	margin-bottom: 15px;
}
.upload-files-value-container .files-list .item a {
	display: inline-block;
	margin-top: 5px;
}


.upload-cover-container {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.cover-img-preview {
	border: 1px solid #aaa;
	padding: 2px;
	max-width: 250px;
	max-height: 250px;
	width: 100%;
}

.upload-single-gallery-container {
	display: flex;
	flex-wrap: wrap;
}
.upload-single-gallery-container .item {
	padding: 5px;
	width: 33.3333%;
	max-width: 250px;
	min-width: 150px;
}
.upload-single-gallery-container img {
	border: 1px solid #aaa;
	padding: 2px;
}

.select2-container--default .select2-selection--single, .select2-selection .select2-selection--single {
	height: 36px;
}

/*.select-products-category-parent label:hover {*/
/*	background-color: #f1f1f1;*/
/*}*/
/*.select-products-category-parent label {*/
/*	display: block;*/
/*	cursor: pointer;*/
/*}*/
/*.select-products-category-parent label.active {*/
/*	background-color: #c8e5e8;*/
/*}*/

.select-products-category-parent label:before,
.select-products-category-parent label:after {
	display: none;
}
.select-products-category-parent label {
	padding-left: 0px !important;
	display: block !important;
	animation: none !important;
	-webkit-animation: none !important;
}

.select-products-category-parent [type="radio"]:checked + label {
	background-color: #9bdae1;
}
.select-products-category-parent label:hover {
	background-color: #e6e6e6;
}
.label-span-line {
	width: 15px;
	height: 1px;
	display: inline-block;
	background: #495057;
	margin: 4px 2px 4px 0px;
}

@media (max-width: 970px) {

}