
:root {
  --theme1: #ff8e01;
  --theme1-hover: #fecb00;
  
  --theme2: #27304E;
  --theme2-hover: #8cb6f5;
}

body {
	font-family: "Poppins", Helvetica, Arial, sans-serif;
	line-height: 1.6;
	font-size: 1.05rem;
	color: #555;
}

h1, .h1 {font-size: 1.4em;}
h2, .h2 {font-size: 1.2em;}
h3, .h3 {font-size: 1em; font-weight: bold;}

a, a:hover {text-decoration: none; color: #000;}

a.decorated {
	color: blue;
}

a.decorated:hover {
	color: var(--theme1);
	text-decoration: underline;
}

.text-theme-1 { color: var(--theme1); }
.text-theme-2 { color: var(--theme2); }

.bg-theme-1 { background: var(--theme1); }
.bg-theme-2 { background: var(--theme2); }

.fa-rounded-theme-2 {
	display: block;
	padding: 20px;
	border: 1px dashed var(--theme2);
	color: var(--theme2);
	border-radius: 50%;
	margin-top: 0.5em;
}

.nav-link {
	color: #000;
}

.nav-link:hover {
	color: #ccc;
}

#header a, #header a:hover {
  text-decoration: none;
  color: #000;
}

#header a:hover {
	color: #ccc;
}

.logo {
	max-width: 140px;
}

.cursor-pointer {
	cursor: pointer;
}

.hidden {
	display: none;
}

.language-img {
	padding: 3px;
	border-radius: 50%;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.shopping-cart-container {
	display: block;
	position: relative;
	width: 25px;
}

.shopping-cart-container span {
	display: block;
	position: absolute;
	top: -15px;
	right: -8px;
}

.sticky-cart {
	position: fixed;
	font-size: 23px;
	bottom: 40px;
	right: 40px;
	width: 60px;
	height: 60px;
	padding: 12px 15px;
	margin: 2px;
	border-radius: 30px;
	z-index: 9990;
	background: var(--theme1);
	color: #fff;
	box-shadow: 0 0 0 0 var(--theme1);
	animation: pulse 2s infinite;
}

.counter-shopping-cart-sticky {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background: var(--theme1);
	color: #fff;
	font-size: 13px;
	text-align: center;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 142, 1, 0.7);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(255, 142, 1, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 142, 1, 0);
	}
}

.page-head-line {
	background: #f7f7f7;
	line-height: 1.5;
	padding: 1rem 0;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.breadcrumb {
	margin: 0px;

}

.privacy-terms {
	position: fixed;
	max-width: 400px;
	left: 10px;
	bottom: 10px;
	background: rgb(0, 0, 0, 0.9);
	color: #fff;
	padding: 15px;
	margin-right: 10px;
	text-align: center;
	z-index: 100;
	border-radius: 10px;
}


.social-button {
	padding: 6px;
	margin-right: 3px;
	font-size: 20px;
	width: 30px;
	height: 30px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
}

.social-button:hover {
	opacity: 0.7;
}

.fa-facebook.social-button {
	background: #3B5998;
	color: white;
}

.fa-twitter.social-button {
	background: #55ACEE;
	color: white;
}

.fa-pinterest.social-button  {
	background: #cb2027;
	color: white;
}

.fa-envelope.social-button {
	background: #00b489;
	color: white;
}

.comment-avatar {
	width: 50px; 
	height: 50px; 
	text-align: center; 
	background: var(--theme2);
	padding-top: 11px; 
	border-radius: 25px; 
	color: #fff; 
	font-weight: bold;
}

.comment-images {
	height: 80px;
	width: auto;
	float: left;
	padding-right: 2px;
}

.rating-select-area {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
}

.rating-select-area>input {
    display: none
}

.rating-select-area>label {
    position: relative;
    width: 1em;
    font-size: 30px;
    color: #FFD600;
    cursor: pointer
}

.rating-select-area>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating-select-area>label:hover:before,
.rating-select-area>label:hover~label:before {
    opacity: 1 !important
}

.rating-select-area>input:checked~label:before {
    opacity: 1
}

.rating-select-area:hover>input:checked~label:before {
    opacity: 0.4
}

.nav-pills .nav-link {
	background: 0 0;
	border: 0;
	border-radius: .25rem;
	background: #f3f3f3;
	margin-right: 3px;
}

.carousel-control-prev i, .carousel-control-next i {
	font-size: 20px;
	color: #fff;
	background: var(--theme2);
	width: 45px;
	height: 45px;
	padding: 8px;
	border: 4px solid #fff;
	border-radius: 50%;
}

.btn-theme-1 { 
	color: #fff !important;
	background-color: var(--theme1);
	background-image: linear-gradient(135deg, var(--theme1-hover), var(--theme1), var(--theme1-hover));
	background-size: 200% auto;
	transition: all 0.3s ease-in-out;
	border-color: var(--theme1-hover);
	padding: 10px 20px;
}
 
.btn-theme-1:hover, 
.btn-theme-1:focus, 
.btn-theme-1:active, 
.btn-theme-1.active, 
.open .dropdown-toggle.btn-theme-1 { 
	color: #fff !important; 
	background-color: var(--theme1-hover);
	background-image: linear-gradient(90deg, var(--theme1-hover), var(--theme1), var(--theme1-hover));
	background-position: 100%;
	border-color: var(--theme1-hover);
} 
 
.btn-theme-1:active, 
.btn-theme-1.active, 
.open .dropdown-toggle.btn-theme-1 { 
	background-image: none; 
}

.btn-theme-2 { 
	color: #fff !important;
	background-color: var(--theme1);
	border-color: var(--theme1);
	padding: 6px 20px;
}
 
.btn-theme-2:hover, 
.btn-theme-2:focus, 
.btn-theme-2:active, 
.btn-theme-2.active, 
.open .dropdown-toggle.btn-theme-2 { 
	color: #fff !important; 
	background-color: var(--theme1-hover);
	border-color: var(--theme1-hover);
} 
 
.btn-theme-2:active, 
.btn-theme-2.active, 
.open .dropdown-toggle.btn-theme-2 { 
	background-image: none; 
}

.form-group {
	padding-bottom: 15px;
}

.form-group label{
	padding-bottom: 6px;
	font-size: 13px;
}

.decorated-icon {
	position: relative;
}

.decorated-icon input {
	padding: 10px
}

.form-control::placeholder {
    color: #d2d8dd;
    opacity: 1;
    font-weight: normal !important;
}

.decorated-icon .fa {
	position: absolute;
	right:20px;
	top:45px;
}

.price-table .price-icon i {
	text-align: center;
	color: #fff;
	display: inline-block;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 25px;
	background: var(--theme1);
}

.price-table .price-icon div {
	border-bottom: 5px solid var(--theme1);
	padding: 7px;
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 20px;
}

.price-table .price-header {
	position: absolute;
	top: 30px;
	left: 10px;
	writing-mode: tb-rl;
	padding-bottom: 5px;
	font-size: 20px;
}

.pagination {
	padding-left: 0;
	margin: 20px 0;
}

.pagination > li > a {
	position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.4;
    color: var(--theme1);
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}

.pagination-active a {
	background-color: var(--theme1) !important;
	color: #fff !important;
}

.front-edit-button {
	color: #fff;
	cursor: pointer;
	padding: 5px;
	background: #999fbc;
	border-radius: 50%;
	opacity: 0.8;
	border: 2px solid #fff;
}

.bottom-badges {
	position: absolute;
	bottom: -15px;
	right: 10px;
	/* width: 100px; */
	text-align: right;
}

.front-edit-button:hover {
	opacity: 1;
}

.rating-stars {
	color: #cacaca;
}

.price {
	font-size: 17px;
}

.old-price {
	font-size: 14px;
	color: #9e9e9e;
	text-decoration: line-through;
	margin-right: 10px;
}

.preloader {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: rgb(0, 0, 0, 0.5);
	height: 100%;
	width: 100%;
	z-index: 20;
}

.preloader img {
margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
}

.hidden-file-input {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
}

.delete-file {
	position: absolute;
	font-size: 23px;
	line-height: 1;
	top: 5px;
	right: 5px;
	background: #fff;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	color: red;
}

footer {
	background: var(--theme2);
	color: #f1f1f1;
}

footer a , footer a:hover {
	color: #f3a99d;
}

footer h6 {
	font-family: 'Oswald', Verdana, Arial, Lucida, sans-serif;
	font-size: 17px;
	letter-spacing: 0.02em;
}

footer .social {
	border-bottom: 1px solid #5b5b5b;
}

footer .copyright {
	font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
	background: #000;
	color: #f1f1f1;
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 50%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-15 {
        width: 33%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

.zoom {
	transition: transform 0.5s;
}

.zoom:hover {
	-ms-transform: scale(1.5); /* IE 9 */
	-webkit-transform: scale(1.5); /* Safari 3-8 */
	transform: scale(1.3);
	transition: transform 0.5s;
}