:root {
	--bg-color: #f8f6ee;
	--main-color: #B4BB6B;
	--secondary-color: #232a34;
	--tertiary-color: #8a9141;
	--bg-color2: #9f2348;
	--body-color: #7a7976;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

ul,
ul li {
	margin: 0;
	padding: 0;
	list-style-position: inside;
}

svg {
	max-height: 100%;
	fill: currentColor;
	fill-rule: evenodd;
	stroke: currentColor;
	stroke-width: 0;
}

input:focus {
    border-color: inherit;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

body,
html {
	font-family: 'Times New Roman', Times, serif;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	overflow-x: hidden;
	background: var(--bg-color);
	color: var(-body-color);
}

strong {
	font-weight: 700;
}

@font-face {
    font-family: 'BPG';
    src: url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.eot'); /* IE9 Compat Modes */
    src: url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.woff') format('woff'), /* Pretty Modern Browsers */
         url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.svg#bpg_nino_mtavruliregular') format('svg'); /* Legacy iOS */
}

@font-face {
	font-family: 'CLG';
	src: url('../fonts/3d/calligraphy.ttf') format('TrueType');
}

/*body,form {
	background: #FFF;
	font-size: 13px;
	margin: 0px;
	padding: 0px;
}

input, textarea {
	padding: 2px;
	font-size: 14px;
}

select {
	padding: 2px;
	font-size: 14px;
}

br {
	clear: both;
}

fieldset {
	border: 1px solid #999;
	border-radius: 7px;
	padding: 2px;
	margin: auto;
}

legend {
	margin-left: 10px;
	color: #000;
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: normal;
}

a {
	color: #000;
	text-decoration: none;
}*/


.loader {
	position: relative;
	z-index: 9999;
	left: 50%;
	top: 50%;
	width: 250px;
	height: 250px;
	margin-top: -125px;
	margin-left: -125px;
	background: url('../images/loader.gif');
}

.tp-bullet-title { display: none; }

.header {
	padding: 10px 0;
	background: var(--bg-color);
}
.header .header-right {
	position: static;
	padding-top: 18px;
}


.block-title {
	text-align: center;
}

.seach-button {
	float: right;
	position: absolute;
	left: 0;
	top: 0;
	margin-right: 5px;
	background: var(--main-color);
	border-radius: 50%;
	border: 0;
	padding: 14px;
	color: var(--bg-color);
	cursor: pointer;
	transition: all 0.3s;
}
.seach-button i {
	font-size: 18px;
}
.search-input {
	opacity: 0;
	width: 0px;
	margin: 8px 0 0 50px;
	transition: all 0.3s;
	font-size: 16px;
	padding: 5px;
	border: none;
	background: none;
	cursor: context-menu;
}
.search-input.active {
	opacity: 1;
	width: 80px;
	cursor: auto;
}

.basket-button {
	float: right;
	position: relative;
	background: var(--main-color);
	border-radius: 50%;
	border: 0;
	padding: 14px;
	color: var(--bg-color);
	cursor: pointer;
	transition: all 0.3s;
}
.basket-button i {
	font-size: 18px;
}
.basket-button .total {
	background: #6c0808;
	position: absolute;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	bottom: -10px;
	right: -15px;
	text-align: center;
}
.seach-button:hover ,.basket-button:hover {
	background: var(--secondary-color);
}


.product-filter {}

.filter-btn {
	background: var(--secondary-color);
	color: #fff;
	border: none;
	padding: 10px 10px;
	border-radius: 3px;
}

.front-products {
	text-align: center;
}
.front-products .img-wrapper {
	position: relative;
	padding: 20px 0;
}
.front-products .img-wrapper .img-hover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; left: 0;
	transition: ease-out 0.3s;
	opacity: 0;
}
.front-products .img-wrapper .img-hover:before {
	content: ' ';
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; left: 0;
	background: #000;
	opacity: 0.8;
}
.front-products .img-wrapper .img-hover:hover {
	opacity: 1;
}
.front-products .img-wrapper .img-hover .more {
	position: relative;
	display: inline-block;
	background: var(--main-color);
	padding: 10px 20px;
	color: var(--bg-color);
	margin-top: 130px;
	z-index: 2;
	transition: ease-out 0.3s;
}
.front-products .img-wrapper .img-hover .more:hover {
	background: var(--bg-color2);
}
.front-products .img-wrapper img {
	height: 270px;
}
.front-products .price {
	font-size: 16px;
	font-weight: 600;
	color: var(--bg-color2);
}

.front-products.product {
	background: #fff;
	margin-bottom: 30px;
}
.front-products.product .price {
	font-size: 18px;
}
.front-products.product .product-add-to-cart {
	display: block;
	margin: 10px 10px 0 10px;
	padding: 10px;
	width: calc(100% - 20px);
	background: var(--main-color);
	color: #fff;
	transition: 0.3s;
	border: none;
	cursor: pointer;
}
.front-products.product .product-add-to-cart:hover {
	background: var(--secondary-color)
}

.front-bottom-products {
	text-align: center;
}
.front-bottom-products .img-wrapper {
	position: relative;
}
.front-bottom-products .img-wrapper .img-hover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; left: 0;
	transition: ease-out 0.3s;
	opacity: 0;
}
.front-bottom-products .img-wrapper .img-hover:before {
	content: ' ';
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; left: 0;
	background: var(--bg-color2);
	opacity: 0.8;
}
.front-bottom-products .img-wrapper .img-hover:hover {
	opacity: 1;
}
.front-bottom-products .img-wrapper .img-hover .more {
	position: absolute;
	display: inline-block;
	background: var(--secondary-color);
	padding: 10px 20px;
	color: var(--bg-color);
	left: 0; bottom: 0;
	z-index: 2;
	transition: ease-out 0.3s;
}
.front-bottom-products .img-wrapper .img-hover .more:hover {
	background: var(--bg-color2);
}
.front-bottom-products .img-wrapper img {
	width: 100%;
}
.front-bottom-products .price {
	font-size: 16px;
	font-weight: 600;
	color: var(--bg-color2);
}

.product-view .price {
	font-size: 16px;
	font-weight: 600;
	color: var(--bg-color2);
}
.product-view .title {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--bg-color2);
	font-weight: 700;
}
.product-view .text {
	margin-top: 15px;
}
.product-view .line {
	clear: both;
	border-bottom: 1px solid #E4E7E8;
	margin: 15px 0;
}
.product-view .product-categories li {
	color: var(--main-color);
	margin: 4px 0 ;
}
.product-view .product-categories li a {
	color: var(--body-color);
}
.product-view .new-products {
	margin-top: 15px;
	clear: both;
}
.product-view .new-products .img-wrapper {
	float: left;
	margin-right: 15px;
}
.product-view .new-products .new-products-price {
	color: var(--bg-color2);
}
.product-view .new-products .new-product-title a {
	color: var(--secondary-color);
}
.product-view .size {
	padding: 5px;
	width: 100%;
	max-width: 200px;
}
.product-view .quantity {
	float: left;
}
.add-to-cart {
	margin-left: 5px;
	line-height: 42px;
	border: none;
	color: #fff;
	background: var(--secondary-color);
	padding: 0 15px;
	font-size: 14px;
	transition: all 0.3s;
	cursor: pointer;
}
.add-to-cart:disabled {
	background: #ceadc2;
	cursor: auto;
}


.bottom-slider {
	background: #f7f4cf;
	padding: 20px 0;
	max-height: 2000px;
	overflow: hidden;
}


#top-panel {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    height: auto;
    color: #777777;
    padding: 10px 0 8px 0;
    border-top: 4px solid #222;
}
ul.top-links li { padding: 5px 0; }
.top-contact ol li {
    margin-left: 20px;
    font-weight: 400;
}
#main-menu {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    background: #222222;
}
#sticky {
    padding: 0.5ex;
    width: 600px;
    background-color: #333;
    color: #fff;
    font-size: 2em;
    border-radius: 0.5ex;
}

ol.social-icons li {
	position: relative;
	top: -3px;
	width: 30px;
	height: 30px;
	margin-left: 5px !important;
}
ol.social-icons li a {
	color: #ffffff;
	background: #222222;
	font-size: 20px;
	border-radius: 50%;
	padding: 3px 6px !important;
}


.geo-font:lang(ge) {
	font-family: BPG;
}



.front-text img {
	width: 95%;
	height: auto;
}






.project-list .link {
	display: inline-block;
	background: #93ad4b;
	color: #fff;
	padding: 10px;
	border-radius: 3px;
}
.project-list .image-container .image {
	width: 100%;
}
.project-list .text {
	padding: 20px;
}


.slideup {
    animation-duration: 0.5s;
    animation-name: slideup;
}


.article-details-title {
	background: #222222;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	padding: 10px 10px;
}


.project-description-list {
	list-style-type: none;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.project-description-list li {
	margin-top: 10px;
}
.project-description-list li .fa {
	position: relative;
	top: 8px;
	float: left;
	font-size: 28px;
	color: red;
}
.project-description-list li .project-description-title {
	float: left;
	margin-left: 10px;
}
.project-description-list li .project-description-title strong {
	font-weight: 800;
}

.project-ins-pictures {
	margin-top: 40px;
	justify-content: center;
}
.project-ins-pictures img {
	width: 90%;
	transform: scale(1.1);
	transition: all 0.3s;
}
.project-ins-pictures img:hover {
	width: 90%;
	transform: scale(1.2);
}


.logo img {
	max-height: 80px;
	width: auto;
}

@media (min-width:768px) {
	.project-text img {
		float: left;
		margin-right: 20px;
	}
}
@media (max-width:768px) {
	.project-text img {
		width: 100%;
	}
}

@keyframes slideup {
    from {
		transform: translate(0, 10px);
    }
    to {
        transform: translate(0, 0);
    }
}


@media (max-width: 640px) {
	.logo{ margin-right: 0}
	.top-contact ol li {
		margin-left: 0;
		margin: 0 10px;
	}
	h1 {
		font-size: 30px;
		line-height: 30px;
		letter-spacing: 0;
	}
	#header-slider .carousel-indicators {bottom: 20px }
	a.btn{ margin-top: 15px}
	.widget,
	.news,
	.service { margin-bottom: 40px; }
	.hover-bg:hover .hover-text.off {
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}
	#en-portfolio .item p{ font-size: 14px}
	#itemsWork.col3 .hover-bg .hover-text.off { height: 80%}
}
  
@media (max-width: 320px) { 
	.logo {font-size: 20px;}
	small, 
	p{ font-size: 12px}
	#en-header .breadcrumb li a,
	#en-header .breadcrumb li.active{
		font-size: 10px;
	}
}



.content {
	margin: auto;
	width: 100%;
	max-width: 1250px;
}
.content .left-side {
	border-right: 1px solid var(--secondary-color);
	
}

.content .left-side2 {
	display: flex;
	justify-content: center;
	max-width: 80%;
	margin-bottom: 9px;
	 
	
}
.content .right-side {
	/*padding-top: 20px;*/
	background-color: #e0e4b8;
	border-radius: 3px;
}

.languages {
	float: right;
	display: inline-block;
	list-style-type: none;
	list-style: none;
	padding: 0;
	margin: 0;
}
.languages li {
	float: left;
	margin-right: 5px;
	/*border-right: 1px solid rgb(94, 94, 94);*/
}
.languages li:last-child {
	border-right: none;
}
.languages li a {
	background: var(--main-color);
	display: block;
	color: #fff;
	padding: 10px;
	font-weight: 600;
}
.languages li a img {
	transition: all 0.5s ease-in-out 0s;
	width: 40px;
}
.languages li a img:hover {
	transform: scale(1.64);
}
.languages li a:hover ,.languages li a.selected {
	background: var(--secondary-color);
}


.front-news {
	position: relative;
	overflow: hidden;
	background: #fff;
}
.front-news .bottom-panel {
	display: block;
	padding: 10px 15px;
}
.front-news .img-wrapper img {
	width: 100%;
	height: auto;
}
.front-news .hover-object {
	position: absolute;
	background: #333;
	background: var(--main-color);
	width: 100%;
	height: 100%;
	padding: 25px;
	color: #fff;
}
.front-news .hover-object .title a {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
}
.front-news .hover-object .text {
	font-size: 16px;
}
.front-news .bottom-panel .date {
	color: var(--bg-color2);
	font-family: 'BPG';
}
.front-news .hover-object .more {
	position: absolute;
	bottom: 25px;
	left: 20px;
	background: #000;
	padding: 10px 15px;
	transition: ease 0.3s;
	color: #fff;
}
.front-news .hover-object .more:hover {
	background: var(--bg-color2);
}


#en-services {
    padding: 80px 0;
    background: #fafafa;
    background-image: url(../images/04.png);
    background-repeat: repeat;
    color: #ffffff;
}
.section-title.text-left hr { margin-left: 0 }
.section-title.text-center {
    width: 60%;
    margin: auto;
    margin-bottom: 60px;
}
.section-title h2 { line-height: 26px; font-family: BPG; }
.section-title hr {
    border-color: #ffb642;
}
.service h4 { margin-top: 20px; font-family: BPG; }
.service>a h4,
.service>a img {
    transition: all 0.5s;
    opacity: 0.8;
}
.service:hover>a h4 { color: #ffb642 }
.service:hover>a img { opacity: 1 }


a.read-more { font-family: BPG; }
a.read-more,
a.read-more>span {
    color: #ffb642;
    font-style: normal;
    font-weight: 900;
    transition: all 0.5s;
    transform: translate(50%, -10%);
}
a.read-more:hover { font-weight: 900 }
a.read-more:hover>span {
    transform: translate(210%, -10%);
}



.footer {
	margin-top: 20px;
	position: relative;
	background: var(--secondary-color);
	padding-top: 30px;
	color: var(--bg-color);
}
.footer.main-page {
	margin-top: 0px!important;
}
.footer > .container {
	position: relative;
}
.footer-img {
	position: absolute;
	bottom: 0;
	right: -150px;
	display: block;
	width: 440px;
	-webkit-filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.3));
}
@media (max-width:992px) {
	.footer-img {
		position: relative;
		width: 80%;
		left: 10%;
	}
}
.footer-social-list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	margin-top: 15px;
}
.footer-social-list > li {
	float: left;
	margin-right: 10px;
	margin-top:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.footer-social-list > li .fa {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	color: #fff;
}
.footer-social-list > li .fa.fa-facebook {
	background: #46629e;
}

.footer-social-list > li .fa.fa-twitter {
	background: #55acee;
}
.footer-social-list > li .fa.fa-youtube {
	background: #FF0000;
}
.footer-social-list > li .fa.fa-instagram {
	background: #457399;
}
.footer-social-list > li .fa.fa-google-plus {
	background: #dd4b39;
}
.footer-social-list > li .fa:hover {
	
	-webkit-transform: rotate(15deg) scale(1.4);
	transform: rotate(15deg) scale(1.4);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	margin:2px;
}
.footer-tag-list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.footer-tag-list > li {
	margin-right: 10px;
	margin-bottom: 10px;
	list-style: none;
	float: left;
}
.footer-tag-list > li > a {
	font-size: 14px;
	display: block;
	padding: 8px 14px;
	background: var(--main-color);
	color: #fff;
	position: relative;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
	box-shadow: 0 1px 1px rgba(0,0,0,0.15);
 }
.footer-tag-list > li > a:hover {
	text-decoration: none;
	background: var(--tertiary-color);
 }

.widget-title {
	font-family: BPG;
}
.widget li i,
.widget a {
	color: var(--secondary-color);
	transition: all 0.5s;
}
.widget li:hover a { color: var(--main-color) }
.widget li:hover i {
	margin-left: 10px;
	color: var(--secondary-color);
}
ul.list-block li:first-child {
	margin: 10px 0;
}
ul.list-block li {
	margin: 20px 0;
	font-size: 16px;
}
ul.list-block i { margin-right: 20px; }
ul.list-block img {
	width: 70px;
}
ul.list-block .image-wrapper {
	float: left;
	margin-right: 10px;
}
ul.list-block .title {
	font-size: 16px;
	font-weight: 600;
	color: var(--bg-color);
}
ul.list-block .text * {
	font-size: 14px;
	font-weight: 200;
	text-align: left;
}

.position {
	width: 46px;
}
.visibility a {
	color: #0b1b38;
	font-size: 22px;
}
.edit a {
	color: #1b4f06;
	font-size: 18px;
	font-weight: bold;
}
.delete a {
	color: #6c0808;
	font-size: 20px;
}

.comments-slider {
	background: var(--main-color);
	padding: 80px 0;
}
.comments-slider .image-wrapper  {
	position: relative;
	width: 200px;
	height: 200px;
	overflow: hidden;
	border-radius: 50%; 
}
.comments-slider img {
	width: 100%;
	height: auto;
}
.comments-slider .text {
	margin-top: 20px;
	color: var(--bg-color);
	font-size: 16px;
	text-align: center;
}
.comments-slider .title {
	margin-top: 10px;
	color: var(--bg-color);
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.search {
	margin-right: 10px;
	height: 45px;
	max-width: 250px;
	width: 100%;
	border-radius: 50px;
	border: 1px solid #656565;
	padding: 5px 0;
}
.search input {
	float: left;
	font-size: 16px;
	padding: 5px 5px 5px 15px;
	width: calc(100% - 50px);
	color: #fff;
	background: transparent;
	border: transparent;
}
.search button {
	float: right;
	margin: 6px 15px 0 0;
	font-size: 18px;
	background: transparent;
	border: transparent;
	color: #fff;
	cursor: pointer;
}


.news {
	display: block;
	position: relative;
	margin-top: 10px;
	padding-bottom: 10px;
	clear: both;
	min-height: 200px;
	transition: color 0.25s;
	border-bottom: 1px solid #dfddd6;
}
.news .date {
	font-weight: 500;
	padding: 10px 0;
	color: #000;
}
.news .image-wrapper {
	display: block;
	position: relative;
	margin-right: 10px;
	max-height: 600px;
	overflow: hidden;
	margin-bottom: 15px;
}
.news .image-wrapper .link {
	position: absolute;
	left: 50%;
	margin-left: -40px;
	margin-top: -40px;
	bottom: 0;
	transition: all ease 0.3s;
	opacity: 0;
	background: var(--main-color);
	border-radius: 50%;;
	padding: 30px;
}
.news .image-wrapper .link i {
	font-size: 32px;
	color: #fff;
}
.news .image-wrapper img {
	width: 100%;
	transition: all 0.3s;
}
.news .image-wrapper img:hover {
	transform: scale(1.2);
}
.news .image-wrapper:hover .link {
	bottom: 50%;
	opacity: 1;
}

/*@media (max-width: 640px) {
	.news .image-wrapper {
		display: block;
		width: 100%;
		margin: 0 0 10px 0!important;
	}

	.news .image-wrapper img {
		display: block;
		width: 100%;
	}
}*/


.news .title a {
	font-size: 35px;
	color: #000;
}
.news .text {
	text-align: justify;
	padding-right: 20px;
}
.ui-list {
	margin-top: 5px;
	list-style: none;
}
.ui-list li {
	float: left;
	color: var(--bg-color2);
}
.ui-list li.separator {
	padding: 0 8px;
}

.more {
	display: inline-block;
	box-sizing: inherit;
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: ease;
	cursor: pointer;
	font-size: 16px;
	line-height: 35px;
	margin: 10px 0 2em;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	padding: 4px 15px;
	background: #000000;
	border: none;
}

.more:hover{
	background-color:#c78383;
}


.about-list .image-wrapper {
	display: block;
}
.about-list .image-wrapper img {
	width: 100%;
}
.about-list .title {
	margin-top: 30px;
	font-size: 32px;
	text-align: center;
	color: var(--main-color);
	font-weight: 700;
}


.contact .more {
	position: static;
}


.full-news {

}
.full-news .news-title {
	background: #222222;
	padding: 10px;
}
.full-news .news-bar {
	margin: 0;
    padding: 0;
    list-style: none;
}
.full-news .news-bar li {
    color: #676767;
	font-size: 16px;
}
.full-news .news-bar li i {
    margin-right: 5px;
}
.full-news .title {
	margin-top: 6px;
	color: #fff;;
	font: bold 18px BPG;
}
.full-news .text {
	text-align: justify;
}
.full-news .image-wrapper img {
	margin-top: 5px;
	width: 100%;
}


.archive {
	color: var(--main-color);
}
.archive a {
	color: var(--secondary-color);
}
.archive a:hover {
	text-decoration: underline;
}


.order-form {
	visibility: hidden;
	position: fixed;
	background: #f0f0f0;
	width: 90%;
	left: 5%;
	top: 10px;
	z-index: 999999;
	padding: 10px;
	transition: all 0.3s;
	transform: translate(0, -1000px);
	overflow-y: scroll;
	max-height: 100%;
}
.order-form.show {
	visibility: visible;
	transform: translate(0, 0);
}
.order-form .submit-wrapper {
	position: relative;
}
.order-form .submit-wrapper .loader-img {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
}
.order-form .submit {
	background: var(--tertiary-color);
	padding: 12px 30px;
	border: 0;
	border-radius: 2px;
	transition: all 0.3s;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
}
.order-form .submit:hover {
	background: var(--main-color);
}
.order-form .success {
	display: none;
	margin-top: 10px;
	color: #1b4f06;
}

.order-menu {
	display: block;
	background: #ebf8f9;
	height: 350px;
	padding: 50px 10px 0 10px;
	border-radius: 2px;
}
.order-menu .title {
	text-align: center;
}
.order-menu .line {
	display: block;
	width: 80px;
	margin: 20px auto 0 auto;
	height: 5px;
	background: red;
}
.order-menu .text {
	margin-top: 20px;
}


.gallery .link {
	margin-top: 20px;
	display: inline-block;
	position: relative;
}

.gallery .link .title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 5px 8px;
	z-index: 2;
	color: #000;
	font: bold 14px BPG;
	background-color: rgba(180, 187, 107, 0.8);
}

.photo-gallery {
	padding-top: 20px;
}
.photo-gallery .col-sm-4 {
	height: 540px;
}
.photo-gallery a img {
	width: 100%;
	max-width: 320px;
	-webkit-box-shadow: 5px 5px 15px 5px #000000; 
	box-shadow: 5px 5px 15px 5px #000000;
}
.photo-gallery a img:hover {
	transition: all 0.3s;
	max-width: 330px;
}



.clear {
	clear: both;
}

.input {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 7px 10px;
	height: auto;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.input:focus {
	border-color: #999;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.input.is-invalid ,.select.is-invalid {
	border-color: red;
}



.contact .captcha {
	display: flex;
}
.contact .captcha .cell {
	flex: 1;
}
.contact .captcha .reload {
	margin-left: 2px;
	width: 40px;
	height: 40px;
	font-size: 24px;
}
.contact .captcha .form-control {
	margin-left: 2px;
}


.checkbox {
	float: left;
	padding: 0px;
}

.meta input[type=text] {
	width: 300px;
	font-size: 14px;
	padding: 2px 4px;
	border: 1px solid #567c90;
	border-radius: 2px;
}

.meta input[type=text]:focus {
	background: #fafafa;
}

.meta textarea {
	width: 370px;
	height: 50px;
	padding: 2px 4px;
	border: 1px solid #567c90;
}

.meta textarea:focus {
	background: #fafafa;
}

.manual_link {
	display: none;
}

.manual_link textarea {
	width: 370px;
	height: 50px;
	padding: 2px 4px;
	border: 1px solid #567c90;
}

.select {
	width: 100%;
	border: 1px solid #ccc;
	font-size: 14px;
	padding: 7px 10px;
	color: #555;
	border-radius: 3px;
	background: #fff;
}

.details {
	float: left;
	margin: 3px;
	width: 340px;
}

.details legend {
	font-weight: bold;
}

.details .m_select {
	width: 96%;
	height: 200px;
}


#progressBar {
	height: 3px;
	background: #057dc1;
	width: 0;
}


.inner-menu {
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	margin: 2px 0 5px 0;
}
.inner-menu  a {
	display: inline-block;
	padding: 10px 15px;
	background: #ececec;
}
.inner-menu  a.active ,.inner-menu  a:hover{
	background: #063566;
	color: #fff;
}

.search-panel .title {
	min-width: 45px;
}
.search-panel .checkbox {
	margin: 10px 10px 0 10px;
}

.filter-panel .title {
	min-width: 80px;
	border: 1px solid;
}

.delete_checkbox {
	margin: 0 0 0 6px;
	padding: 0px;
}

.position {
	padding: 1px;
}

.position a {
	padding: 1px;
	margin: 2px;
}

.language_bar {
	display: none;
	padding: 2px 0 2px 0;
	margin: 10px 8px;
}

.language_bar select {
	width: 250px;
	border: 1px solid #567c90;
	font-size: 14px;
	padding: 2px;
}


.details {
	display: block;
	padding: 2px 0 2px 0;
}

.details #main_div {
	float: left;
	width: 380px;
	padding: 1px 5px 1px 4px;
}

.details label {
	float: left;
	width: 150px;
	margin: 1px;
}

.path  {
	margin: 5px 0;
	padding: 2px 5px;
	background: #f8f8f8;
	border: 1px solid #efefef;
	border-radius: 3px;
}
.path a {
	display: inline-block;
	font-size: 13px;
	padding: 5px 4px;
	color: #4c4c4c;
}
.path a:hover {
	text-decoration: underline;
}
.path .slash {
	color: #4c4c4c;
}
.path .slash:after {
	position: relative;
	top: 3px;
	content: '\2794';
	font-size: 20px;
}

.date input[type=text] {
	display: inline-block;
}

.date input[type=reset] {
	border: none;
	width: 20px;
	height: 14px;
	background: url(calendar/img.gif);
	margin: 2px 0 0 2px;
	cursor: pointer;
}

.date input[type=text]:focus {
	background: #fafafa;
}


.html_id {
	clear: both;
	margin-top: 10px;
}

.html_id label {
	padding: 0 14px 0 4px;
}

.html_id input {
	width: 280px;
	border: 1px solid #567c90;
}

.obj-form {
	margin-top: 5px;
	border: 1px solid #e5e5e5;
	font-size: 14px;
}
.obj-form .title {
	background: #567c90;
	font: bold 16px BPG;
	padding: 8px 15px;
	margin-bottom: 10px;
	border-bottom: 3px solid #1b0434;
	color: #fff;
}


.config input[type=text] {
	width: 250px;
}

.config textarea {
	width: 420px;
	height: 50px;
	padding: 2px 4px;
}

#submit {
	border: 1px solid #999;
	background: linear-gradient(#f1f1f1, #d1d1d1);
	cursor: pointer;
	font: normal 18px BPG;
	border-radius: 4px;
	padding: 12px 0 8px 0;
	width: 180px;
}
#submit:hover {
	border: 1px solid #999;
	background: linear-gradient(#d1d1d1, #f1f1f1);
}

.search-submit {
	float: left;
	margin-left: 3px;
	border: none;
	border-radius: 4px;
	width: 35px;
	height: 35px;
	font-size: 20px!important;
	background: #f8f8f8;
	cursor: pointer;
}

.pagination {
	clear: both;
	padding: 10px 0 10px 0;
	font-size: 12px;
}
.pagination a {
	color: #000;
	margin: 0 2px;
	font-size: 12px;
	text-decoration: none;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #f7f7f7;
	padding: 4px 6px;
}
.pagination a:hover {
	background: #eaeaea;
}
.pagination span {
	margin: 0 2px;
	color: #ccc;
	border: 1px solid #f1f1f1;
	border-radius: 3px;
	background: #fbfbfb;
	padding: 4px 6px;
}
.pagination b {
	margin: 0 2px;
	color: #000;
	border: 1px solid #bababa;
	border-radius: 3px;
	background: #e7e7e7;
	padding: 4px 6px;
}

.tooltip {
	position: relative;
	display: inline-block;
	cursor: help;
}
.tooltip-content {
	opacity: 0;
	visibility: hidden;
	text-align: center;
	border-color: #aaa #555 #555 #aaa;
	border-style: solid;
	border-width: 1px;
	width: auto;
	padding: 15px;
	position: absolute;
	bottom: 40px;
	left: 50%;
	margin-left: -76px;
	background-color: #fff;
	z-index: 100;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .1)
		), to(rgba(255, 255, 255, 0) ) );
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, .1),
		rgba(255, 255, 255, 0) );
	background-image: -moz-linear-gradient(rgba(0, 0, 0, .1),
		rgba(255, 255, 255, 0) );
	background-image: -ms-linear-gradient(rgba(0, 0, 0, .1),
		rgba(255, 255, 255, 0) );
	background-image: -o-linear-gradient(rgba(0, 0, 0, .1),
		rgba(255, 255, 255, 0) );
	background-image: linear-gradient(rgba(0, 0, 0, .1),
		rgba(255, 255, 255, 0) );
	-moz-box-shadow: 1px 1px 0 #555, 2px 2px 0 #555, 3px 3px 1pxrgba(0, 0, 0,
		.3 ), 0 1px 0 rgba(255, 255, 255, .5) inset;
	-webkit-box-shadow: 1px 1px 0 #555, 2px 2px 0 #555, 3px 3px 1pxrgba(0, 0,
		0, .3 ), 0 1px 0 rgba(255, 255, 255, .5) inset;
	box-shadow: 1px 1px 0 #555, 2px 2px 0 #555, 3px 3px 1pxrgba(0, 0, 0, .3
		), 0 1px 0 rgba(255, 255, 255, .5) inset;
	-webkit-transition: bottom .2s ease, opacity .2s ease;
	-moz-transition: bottom .2s ease, opacity .2s ease;
	-ms-transition: bottom .2s ease, opacity .2s ease;
	-o-transition: bottom .2s ease, opacity .2s ease;
	transition: bottom .2s ease, opacity .2s ease;
}
.tooltip-content img {
	max-width: 250px;
	border: none;
}
.tooltip-content:after,.tooltip-content:before {
	border-right: 16px solid transparent;
	border-top: 15px solid #fff;
	bottom: -15px;
	content: "";
	position: absolute;
	left: 35%;
	margin-left: -10px;
}
.tooltip-content:before {
	border-right-width: 25px;
	border-top-color: #555;
	border-top-width: 15px;
	bottom: -15px;
}
.tooltip:hover .tooltip-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}


.add_result {
	padding: 5px;
}

.add_result .error_message {
	color: red;
	font-weight: bold;
}

.add_result .success_message {
	color: green;
	font-weight: bold;
}

.add_result a:hover{
	color: green;
	text-decoration: underline;
}

.img-upload {
	float: left;
	margin-right: 8px;
}


.button {

}

.sbm {
	display: inline-block;
	position: relative;
	background: #345a7e;
	border-radius: 3px;
	border: none;
	color: #fff;
	font: normal 14px BPG;
	margin-top: 15px;
	padding: 6px 45px 6px 20px;
	cursor:pointer;
	text-transform: uppercase;
	transition: all 0.3s;
}
.sbm:not(:last-child) {
	margin-right: 10px;
}
.sbm:before {
	position: absolute;
	font: normal normal normal 14px/1 FontAwesome;
	content: " ";
	background: #057dc1;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	border-left: 1px solid #0b2e43;
	padding-top: 6px;
	right: 0; top: 0;
	width: 30px;
	height: 100%;
	transition: all 0.3s;
	text-align: center;
}
.sbm:hover {
	background: #0b2e43;
}
.sbm:focus {
	box-shadow: 3px 3px 7px 1px #ccc;
}
.sbm:hover:before {
	background: #056da8;
}
.sbm.save:before {
	content: "\f0c7";
}
.sbm.add:before {
	content: "\f067";
}
.sbm.cls:before {
	content: "\f057";
}
.sbm.return:before {
	content: "\f0e2";
}
.sbm.remove {
	background: #c23236;
}
.sbm.remove:before {
	background: #952528;
	content: "\f014";
}
.sbm.remove:hover {
	background: #751b1d;
}
.sbm.remove:before:hover {
	background: #561314;
	content: "\f014";
}

.upload {
	display: inline-block;
	border: 1px solid #345a7e;
	padding: 5px;
	border-radius: 2px;
	cursor: pointer;
}
.upload i {
	margin-right: 5px;
}

.trash {
	cursor: pointer;
	color: #c23236;
}