/**================================
Frontend CSS file - by LWEGATECH
==================================**/
:root {
  --abc-font: 'Roboto', sans-serif;
  --abc-font-2: 'DM Sans', sans-serif;
  --abc-base: #cf173c;
  --abc-base-rgb: 207, 23, 60;
  --abc-gray: #7f7873;
  --abc-gray-rgb: 127, 120, 115;
  --abc-white: #ffffff;
  --abc-white-rgb: 255, 255, 255;
  --abc-black: #1a1c23;
  --abc-black-rgb: 26, 28, 35;
  --abc-primary: #CC0001;
  --abc-font-size: 16px;
}
* {
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}
html,
body{
font-family: var(--abc-font);
font-size: var(--abc-font-size);
overflow-x: hidden;
}
.btn-primary{color: #fff; background: var(--abc-primary) !important;}
.btn-primary:hover{color: #fff; background: #5f0404 !important;}
.abc-title{color: var(--abc-primary);font-weight: 600;}
@media only screen and (min-width: 600px) {
.container {
  width: 90% !important;
}
}
@media only screen and (min-width: 1300px) {
.container {
  width: 88% !important;
  max-width: unset !important;
}
}
a:hover {
  color: var(--abc-primary);
} 
a,
a:hover,
a:visited,
a:active,
a:link {
text-decoration: none;
-webkit-font-smoothing: antialiased;
-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 600;
} 
p {
  margin: 0;
  font-weight: 300;
}
a{color: #CC0001;}
a, a:hover{text-decoration: none;}
::-webkit-scrollbar {width: 8px; background:#5f0404;}
::-webkit-scrollbar-thumb {	background: #CC0001; }
/*===========================================================
# Back to top button
===========================================================*/
.back-to-top {  position: fixed;  visibility: hidden;  opacity: 0;  right: 15px;  bottom: 15px;  z-index: 99999;  background: #CC0001;  width: 40px;  height: 40px;  border-radius: 4px;  transition: all 0.4s;}
.back-to-top i {  font-size: 24px;  color: #fff;  line-height: 0;}
.back-to-top:hover {background: #ee7a3f;  color: #fff;}
.back-to-top.active {visibility: visible;  opacity: 1;}

/*============================================================
# Preloader
==============================================================*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
#preloader2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff82;
}

#preloader2:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #8A2C2C;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**========================================================
TOOLBAR
=========================================================**/
.top_bar {width: 100%;height: 40px;background: #3AB549;	border-bottom: solid 1px rgba(0, 0, 0, 0.05);line-height: 40px;	color: #fff;}
.header.scrolled .top_bar {	display: none;}
.top_bar_menu {display: flex;justify-content: end;align-self: center;}
.top_bar_menu a, .top_bar_menu a:hover{color: #fff; }
.top_bar_menu li {padding-left: 13px;padding-right: 13px;list-style:none;}
.side-stay {position: sticky;  top: 60px;}
.side-stay .btn{min-width: 100%; margin-bottom: 10px;}
.side-stay  .collection a.collection-item {display: block; -webkit-transition: .25s; transition: .25s;  color: #CC0001;}
.side-stay  .collection a.collection-item:hover{color: #000;}
.side-stay  .collection a.collection-item:active{color: #000;}

/**=======================================================
HEADER 
===========================================================***/
.top_header{background: #CC0001 !important;color:#fff;line-height: 64px !important;}
.top_header .logo{line-height: 64px !important;display: inline-block;}
.top_header .logo>img {position: absolute;top: 50%;transform: translateY(-50%);}
.top_header .socials{align-self: center;}
.top_header .socials i{margin-right: 2px;}
.top_header .socials li a { padding: 0 5px !important;}



/** ============================================================
LOGIN PAGE
==============================================================**/

.login{background: #781032;}
.login-page{background-image:url(../images/bg1.png);background-repeat: no-repeat;background-size: cover;object-fit: fill;object-position: center;background-position: center;}
.login .container{max-width: 350px !important;margin:0 auto;border-radius:10px !important;background-color:rgba(253, 253, 253, 0.90);}
.login .footer{color: #3c75a7}
.login .loginbox{width: 400px; color: var(--abc-black); padding: 40px; background: #fff;box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); }
.login h4{color: #eee;}
.login a{color: #781032;}
.login .loginbox:before {
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
  filter: blur(10px);
  background: inherit;
}
.login .btn-login{border-radius: 40px; color: #fff; padding:15px; background-color: #781032; border-color: #781032;}
.login .icon{border-radius: 50%; padding: 10px 12px; font-size: 15px;}
.login .f{background: #3b5998; color: #fff;}
.login .g{background: #ea4335; color: #fff;}
.login .t{background: #00acee; color: #fff;}






/** ===========================================
* Mobile Version
*============================================***/

@media screen and (max-width: 992px) {
.stellarnav > ul > li > a {
  padding: 20px 18px !important;
  font-weight: 500;
  font-size: 15px;
}
.card-product .product-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
.featured_products .deals img {
  width: 100%;
  height: 250px;
  padding: 15px;
  object-fit: contain;
}
.featured_products h3{
  font-size: 18px;
}
.category img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
}

/**Small devices (landscape phones, 576px and up)**/
@media (max-width: 576px) 
{ 
  .login .container {max-width: 320px !important;font-size: 14px;}

.login .loginbox {width: 100%;color: var(--abc-black);padding: 40px;background: #fff;box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); }
.login-page{background-image:url(../images/bg1.png);background-repeat: no-repeat;background-size: auto;object-fit: fill;object-position: center;background-position: center;margin-top: 10%;}
.card.horizontal {display: block !important;}
.card.horizontal .card-image img {min-width: 300px !important;max-width: 400px !important; object-fit: cover; }
.footer{margin-top:5%;font-size:12px;}
}

/** Medium devices (tablets, 768px and up)**/
@media (min-width: 768px) {

}

/** Large devices (desktops, 992px and up)**/
@media (min-width: 992px) {  }

/** X-Large devices (large desktops, 1200px and up)**/
@media (min-width: 1200px) {  }

/** XX-Large devices (larger desktops, 1400px and up)**/
@media (min-width: 1400px) {  }




