/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #222
	Headers 	: #222
	Primary 	: #D10024
	Grey 		: #E4E7ED #FBFBFC #8D99AE

Fonts: Cairo-Regular

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ RTL
------ Buttons
------ Inputs
------ Section
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > PRODUCT
------ Product
------ Widget product
5 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
6 > ADD IPHONE PAGE
7 > SOCIAL SECTION
8 > FOOTER
9 > FAQ SECTION
10 > SLIDER
11 > WHATSAPP ICON
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

@font-face {
  font-family: 'Cairo-Regular';
  src: url(../fonts/Cairo-Regular.ttf) format('truetype');
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo-Regular';
  font-weight: 400;
  color: #222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #222;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover,
a:focus {
  color: #D10024;
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/*----------------------------*\
	RTL
\*----------------------------*/

.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
  float: right;
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #D10024;
  border: none;
  border-radius: 40px;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover,
.primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

.form-group textarea {
  resize: none;
}

.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

.success {
  color: #228B22;
  text-align: center;
  font-weight: bold;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  margin: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin: 0 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #D10024;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/
#top-header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #D10024;
}

.top-header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li a {
  color: #fff;
}

.header-links li a:hover {
  color: #222;
}

.header-links li i {
  color: #fff;
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  /*border-bottom: 3px solid #D10024;*/
}

.header-logo {
  float: right;
}

.header-logo .logo img {
  display: block;
  width: 100%;
}

/*=========================================================
	03 -> Navigation
===========================================================*/
/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
}

.main-nav>li>a:hover,
.main-nav>li>a:focus,
.main-nav>li.active>a {
  color: #D10024;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #D10024;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after,
.main-nav>li>a:focus:after,
.main-nav>li.active>a:after {
  width: 100%;
}

li.nav-toggle {
  display: none;
}

.menu-toggle {
  display: none;
  text-align: center;
}

.menu-toggle a {
  font-size: 24px;
  color: #D10024;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .menu-toggle {
    display: inline-block;
  }

  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }

  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }

  .main-nav {
    margin: 0px;
    float: none;
  }

  .main-nav>li {
    display: block;
    float: none;
  }

  .main-nav>li+li {
    margin-left: 0px;
  }

  .main-nav>li>a {
    padding: 15px;
    color: #222;
  }
}

/*=========================================================
	04 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

#store .row .col-md-3 {
  padding: 0;
}

.product {
  position: relative;
  margin: 15px 0px;
  border: 1px solid #E4E7ED;
  text-align: center;
  padding: 10px;
  margin: 5px;
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.product .product-img .product-label {
  position: absolute;
  top: 5px;
  right: 5px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 0 3px;
  font-size: 11px;
}

.product .product-img .product-label .delete {
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
  padding: 2px 5px;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.product .product-body .product-name:hover,
.product .product-body .product-name:focus {
  color: #D10024;
}

.product .product-body p {
  color: #D10024;
}

.product .product-body .product-price {
  font-size: 18px;
  font-weight: 700;
}

.product .product-body .product-price span {
  font-size: 14px;
}

.main-btn {
  position: relative;
  border: 2px solid transparent;
  height: 30px;
  padding: 0 30px;
  background-color: #D93A3A;
  color: #FFF;
  font-weight: 500;
  border-radius: 5px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-btn:hover {
  background-color: #FFF;
  color: #D10024;
  border-color: #D10024;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
  display: flex;
  flex-direction: row;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  width: 65%;
  margin: 0 20px;
}

.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-img .product-label {
  position: absolute;
  top: 5px;
  right: 5px;
}

.product-widget .product-img .product-label>span {
  border: 2px solid;
  padding: 0 3px;
  font-size: 9px;
}

.product-widget .product-img .product-label .delete {
  background-color: #D10024;
  border-color: #D10024;
  color: #FFF;
  padding: 2px 5px;
}

.product-widget .product-body {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-widget .product-body .product-name {
  margin-bottom: 10px;
}

.product-widget .product-body .product-name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.product-widget .product-name:hover,
.product-widget .product-body .product-name:focus {
  color: #D10024;
}

.product-widget .product-body p {
  color: #D10024;
}

.product-widget .product-body .product-price {
  font-size: 18px;
  font-weight: 700;
}

.product-widget .product-body .product-price span {
  font-size: 14px;
}

.product-widget .product-body .product-title {
  font-weight: 600;
}

/*=========================================================
	05 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

.product-preview {
  margin: 0px 5px;
  /*border: 1px solid #E4E7ED;*/
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  font-size: 18px;
  margin-top: 10px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 18px;
  /*margin-top: 10px;*/
  /*margin-bottom: 15px;*/
  color: #D10024;
}

.product-details .product-price span {
  font-size: 14px;
}

.product-details .product-btns li {
  display: inline-block;
  font-size: 14px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-title {
  font-weight: 700;
  font-size: 14px;
}

.product-details .product-cond {
  background-color: #efefef;
  padding: 10px;
}

.product-details-list {
  font-size: 14px;
}

.product-details-list ul {
  margin: 20px 0;
}

.product-details-list table,
th,
td {
  border: 1px solid #999;
  text-align: center;
  padding: 10px;
}

.product-details-list img {
  width: 100%;
}

.product-details .loc i {
  color: #D10024;
}

/*=========================================================
	06 -> ADD IPHONE PAGE
===========================================================*/

.product .product-logo-img>img {
  width: 60%;
}

.add-iphone-details {
  margin-bottom: 30px;
}

.iphone-img {
  position: relative;
  padding: 0px 20px 20px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.iphone-img:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.iphone-img .iphone-submit {
  display: block;
  margin-top: 30px;
  width: 100%;
}

/*=========================================================
	7 -> SOCIAL SECTION
===========================================================*/

#social.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 2px solid #E4E7ED;
  margin-top: 30px;
}

.social-row {
  float: none;
}

.social .social-follow {
  text-align: center;
}

.social .social-follow li {
  display: inline-block;
  margin-right: 5px;
}

.social .social-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.social .social-follow li a:hover,
.social .social-follow li a:focus {
  background-color: #E4E7ED;
  color: #D10024;
}

/*=========================================================
	8 -> FOOTER
===========================================================*/

#footer {
  background: #FBFBFC;
}

#bottom-footer {
  border-top: 2px solid #E4E7ED;
}

#bottom-footer .col-md-12 {
  float: none;
}

.footer {
  margin: 30px 0px;
  text-align: center;
}

.footer .footer-title {
  color: #D10024;
  margin: 0px 0px 20px;
}

.footer img {
  width: 300px;
}

.footer p {
  margin: 10px 0;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links li {
  font-size: 12px;
  display: inline;
  margin: 10px;
}

.footer p i {
  color: #D10024;
}

.footer-links li img {
  color: #D10024;
  width: 40px;
}

.footer-links li a:hover {
  color: #D10024;
}

.copyright {
  display: block;
  font-size: 12px;
}

.copyright a {
  color: #D10024;
}

/*=========================================================
  9 -> FAQ SECTION
===========================================================*/

.panel-heading {
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

/* plus glyph for showing collapsible panels */
.panel-heading .accordion-plus-toggle:before {
  font-family: FontAwesome;
  content: "\f068";
  float: right;
  color: silver;
  margin-left: 5px;
}

.panel-heading .accordion-plus-toggle.collapsed:before {
  content: "\f067";
  color: silver;
}

.panel-heading .accordion-arrow-toggle.collapsed:before {
  content: "\f054";
  color: silver;
}

/* sets the link to the width of the entire panel title */
.panel-title>a {
  display: block;
}

/*=========================================================
  10 -> SLIDER
===========================================================*/

.carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel .list {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carousel .list .item {
  min-width: 100%;
  /*height: 70vh;*/
}

.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dots .dot {
  aspect-ratio: 1 / 1;
  width: 3px;
  border-radius: 100%;
  background-color: #FBFBFC;
  border: 1px solid #E4E7ED;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: none;
}

.dots .dot.active {
  background-color: #D10024;
}

@media only screen and (min-width: 992px) {
  .carousel .list .item {
    height: 70vh;
  }
}

/*=========================================================
  11 -> WHATSAPP ICON
===========================================================*/

#Whatsapp .Wtsapp {
  position: fixed;
  transform: all .5s ease;
  background-color: #25d366;
  display: block;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  border-right: none;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  bottom: 70px;
  left: 20px;
  border: 0;
  z-index: 9999;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

#Whatsapp .Wtsapp::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;

}

#Whatsapp .Wtsapp:focus {
  border: none;
  outline: none;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*=========================================================
	12 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }

  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }

  .header-logo {
    float: none;
    text-align: center;
  }

  .header-logo .logo {
    display: inline-block;
  }
}

@media only screen and (max-width: 480px) {
  #store-row {
    display: none;
  }
}

@media only screen and (min-width: 481px) {
  .header-logo .logo img {
    width: 70%;
  }

  .product-widget .product-img {
    width: 30%;
  }

  .logo-text {
    display: none;
  }

  .top-header-row {
    display: block;
  }

  #widget-row {
    display: none;
  }
}

@media screen and (max-width: 991.5px) and (min-width: 480px) {
  .logo-con {
    width: 50%
  }
  .menu-toggle {
    position: relative;
    top: 10px;
  }
  .product-sec .product-preview {
    padding: 0 20%;
  }
  .product .product-body .product-name>a {
    font-size: 16px;
  }
  .product .product-body .product-price {
    font-size: 16px;
  }
  .product .product-logo-img>img {
    width: 30%;
  }
}

@media screen and (max-width: 991px) and (min-width: 480px) {
  .product .product-body .product-name>a {
    font-size: 12px;
  }
  .product .product-body .product-price {
    font-size: 12px;
  }
  .product .product-body p {
    font-size: 10px;
  }
}

@media only screen and (min-width: 992px) {
  .navbar-nav>li {
    float: right;
  }
}

@media only screen and (max-width: 992px) {
  #main-header {
    margin-bottom: 70px;
  }

  #main-header h2 {
    margin-top: 20px;
  }
}
