/*
* MY STYLE SHOPIFY
* Author: 768 (Web2)
*/

/* Theme Color */

/* Primary Text */
.primary-txt{
  color: #000 !important;
}

/* Primary Background */
.primary-bg, .product-description:before, .shopify-challenge__container .btn{
  background-color: #a51890  !important;
  color:#fff;
  transition: all 0.3s ease;
}

.primary-bg:hover, .shopify-challenge__container .btn:hover{
  background-color: #000  !important;
  color:#fff;
  outline: none;
  text-decoration: none;
}

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

/* End Theme Color */

.product-variants select, .product-qty, .add-to-cart-btn, .primary-bg{
  font-family:inherit;
}

.hidden{
  display: none !important;
}

.hide, .visually-hidden{
  display: none;
}

.products-list {
  background: white;
  padding: 10px;
  text-align: center;
  min-height: 500px;
}

.no-products {
    font-size: 45px;
    line-height: 1;
    margin-top: 2em;
}

.product {
  background: white;
  width: 23%;
  margin: 7px;
  display: inline-block;
  vertical-align: top;
}

.product img{
width: 100%;
  height: 350px;
  object-fit: contain;
}

.product .product-details{
  padding: 25px 10px;
  text-align: left;
}

.product h1{
  line-height: 1.3;
  font-size:2em;
  font-weight: bold;
}

.product span{
  line-height: 1;
  font-size:25px;
  display: block;
}

.product button{
  line-height: 1;
  font-size:20px;
  display:block;
  width: 100%;
  background: white;
  margin: 20px auto 0;
  border: none;
  padding: 9px;
  transition: all 0.3s ease;
  cursor:pointer;
  text-transform:uppercase;
  font-size:1em;
  outline: none;
  border: .3px solid #ddd;
}

.product button:hover{
  background: #333;
  color:#fff;
}

.single-product-details{
  display: flex;
}

.product-name{
  font-size: 2em;
  line-height: 1.6;
  font-weight: bolder;
  font-weight: normal;
  margin-top: .5em;
  text-transform: uppercase;
}

.product-price{
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.product-description {
    font-size: 14px;
    line-height: 18px;
}

.left-container, .right-container {
  width: 49%;
  padding: 25px;
}

.slick-slide img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.product-images{
  transition: all 0.3s ease;
}

.product-images-nav {
  margin: 0 auto;
}

.product-images-nav img{
  height:120px;
  object-fit: cover;
  padding: 0 4px;
}

.section-header h2{
  font-size: 35px;
  line-height: 1;
  margin: 1em 0;
}


.product-recommendations {
  padding-top: 25px;
  padding-bottom: 25px;

}
.product-recommendations__loading-dots {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-recommendations__loading-dot {
  animation: dot-keyframes 1.5s infinite ease-in-out;
  background-color: #333;
  border-radius: 10px;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 3px;
}

.product-recommendations__loading-dot:nth-child(2){
  animation-delay: 0.5s;
}

.product-recommendations__loading-dot:nth-child(3){
  animation-delay: 1s;
}

@keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
}

.recommendations-list{
text-align:center;
}

.product-card {
  width: 20%;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  transition: 0.3s ease;
  margin: 0px 1em 2em;
}

.product-card:hover {
  opacity: .7;
}

.product-card img{
width:100%;
height: 300px;
margin-bottom: 1em;
object-fit: cover;
}

.product-recommendations{
  margin: 50px 0;
  padding: 15px;
}

.product-card-title{
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}

.qty-btn{
width:24%;
font-size: 31px;
}

.product-qty-container{
margin:1em 0;
}

.product-qty {
  border: 0;
  text-indent: 15px;
  font-size: 23px;
  width: 79px;
  outline: none;
  border: 1px solid #ddd;
  line-height: 2;
}

.comingsoon-text{
color: indianred;
}

.product-description:before{
  content: '';
  height: 6px;
  display: block;
  width: 40px;
  margin: 1em 0;
  background: #333;
}

.product-description{
  margin-top: 50px;
}

.product-variants{
display: block;
margin: 20px 0;
}

.product-variants select{
display:block;
font-size: 15px;
line-height: 1;
padding: 10px;
-webkit-appearance: menulist;
}

.add-to-cart-btn{
  width: 250px;
  border: none;
  padding: 15px;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 40px;
  border-radius: 0px;
}
.compare-price {
  color: indianred;
  text-decoration: line-through;
  font-size: 20px;
  vertical-align: top;
}

.shopify-cart{
  padding: 4em 25px;
}

span.delete-item {
    padding: 5px;
    background: #333;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

span.delete-item:hover{
    background:#555
}

table.cart-items {
    width: 100%;
    border-bottom: 1px solid #ccc;
}

table.cart-items img {
    width: 80px;
    height:80px;
    object-fit:cover;
}

table.cart-items .product-qty{
  font-size:18px;
}

table.cart-items td:nth-child(1){
    width: 10%;
    text-align: center;
}

table.cart-items th{
  text-align:left;
  font-size: 23px;
  line-height: 3;
  font-weight: 900;
  text-transform: uppercase;
}

table.cart-items td{
  vertical-align:middle;
  padding: 1em 0;
}

table.cart-items td a{
  color:#333 !important
}

.cart-actions {
    margin-top: 2em;
    text-align: right;
    padding-top: 2em;
}

.primary-btn{
    padding: 15px 20px;
    text-transform:uppercase;
    border: none;
    margin-left: 20px;
}

.table-container{
  overflow-x: auto;
  border: 1px solid #eee;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 1em #bbb;
  padding: 25px;
}

.pagination-con .page, .pagination-con span a   {
  color: #333 !important;
  font-size:25px !important;
}

.pagination-con .page   {
  color: #333 !important;
  font-size:25px !important;
  margin: 0 5px;
}

.collections-list{
  text-align: center;
  padding: 15px;
}

.collections-list .collection{
  vertical-align: top;
  width: 22%;
  background:white;
  display: inline-block;
  margin: auto;
  border: 1px solid #eee;
  box-shadow: 0 0 1em #eee;
  padding:15px;
  transition: all 0.3s ease-in-out
}

.collections-list .collection:hover{
  transform: scale(1.02);
}

.collections-list .collection img{
  width:100%;
}

.collections-list .collection .collection-info {
  display:block;
}

.collections-list .collection .collection-info .collection-name{
  font-size:25px;
  color: #333;
  text-transform: uppercase;
  min-height:100px;
  display:block;
  padding: 1em 0
}

nav.breadcrumb {
    margin: 1.5em 0;
    font-size: 25px;
}

.cart-empty{
  text-align: center;
}

.cart-empty h1{
  font-size: 2em;
  line-height: 2;
}

.cart-empty .shop-now-btn{
  padding:5px 10px;
}

.other-info {
    justify-content: flex-end;
    display: flex;
    margin-top: 50px;
}

.other-info .box-info {
    width: 40%;
}

.other-info h1 {
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1em;
}

.box-info .info-row {
    display: flex;
    border-bottom: .3px solid #ccc;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0;
}

.article-list{
  text-align: center;
}


div.contact-form {
  text-align: center;
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border: 2px solid #ececec;
  background: #fefefe;
  border-radius: 10px;
  margin-top: 25px;
}

form.contact-form{
  width: 100%;
  padding: 30px 25px 10px 25px;
  text-align:left;
}

form.contact-form p, form.contact-form span,  form.contact-form label{
  color: #000 !important;
  opacity: 1;
  font-size: 20px;
  line-height: 2;
}

form.contact-form span{
  color: red !important;
}

form.contact-form input,  form.contact-form textarea{
  padding: 20px 15px;
  font-size: 15px;
  border: 2px solid #e5e5e5;
  outline: none;
  width: 100%;
  font-family:inherit;
  margin-bottom:15px
}

form.contact-form label{
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

form.contact-form .btn:hover {
  background: #333
}

form.contact-form .btn{
  display:block;
  width: 200px;
  height: 74px;
  border: 0;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
  text-shadow: 1px 1px 3px #999;
  position: relative;
}

.shopify-challenge__container {
  padding: 25px;
  background: white;
  border-radius: 5px;
  margin: 2em auto;
}

.shopify-challenge__container .btn{
  padding: 1em;
  margin-top: 3em;
  border: none;
  font-family: inherit;
  color: white;
  text-transform: uppercase;
  width: 70%;
  transition: 0.3s ease;
}

.login-con{
  margin: 2em auto 5em;
  max-width: 500px;
  width: 100%;
}

.login-con a{
  color: #333;
  font-size: 15px;
  font-weight: bold;
}

.login-con .btn{
  padding: 10px 2em;
  border:none;
  margin: 1em 0;
}

.login-con .login-header {
  font-size: 41px;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.login-con form > input{
  display:block;
  width: 100%;
  border: 1px solid #bbb;
  font-size: 1em;
  padding: 15px;
  font-family: inherit;
  margin: 4px 0 20px;
}

.login-con .form-message{
  border: 2px solid #333 !important;
  color: #333 !important;
  padding: 1em;
  margin-bottom: 2em;
}

.login-con .form-message--error, .input--error{
  border: 2px solid indianred !important;
  color: indianred !important;
}

.login-con .form-message--error a{
  color:indianred;
}

.login-con .form-message .errors li{
  font-size:15px;
  list-style-type:disc;
  margin-left:1em;
}

.input-error-message {
  font-weight: bold;
  color: indianred;
}

.collection-description {
    border: 1px solid #555;
    padding: 20px;
    margin-bottom:25px;
}

.collection-description p{
    margin:0;
}

.swal2-confirm.swal2-styled {
    display: ;
    background: #a51890 !important;
    border-radius: 0px !important;
    width: 30%;
}





.btm2_box5 {
    margin-top: 170px;
}