/*
Theme Name: Hello Elementor Child
Author: 
Description: Your description goes here
Version: 1.0
Template: hello-elementor

This is the child theme for Hello Elementor theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

.sec_banner img {
/*     height: 700px !important; */
	animation: upDown 2s ease-in-out infinite;
}
.book_sec img, .prod_single img, .author_sec img {
    height: 600px !important;
    object-fit: contain;
}
.woocommerce-product-gallery {
    opacity: 1 !important;
}
.custom-qty button.qty-btn:hover, .custom-qty button.qty-btn:focus {
    background: #0000 !important;
}
.custom-qty input:focus-visible {
    outline: none !important;
}
.custom-qty {
  display: flex;
  align-items: center;
  border: 1px solid #444;
  background: #0000;
  height: 56px;
}
.custom-qty input.qty {
  width: 60px;
  text-align: center;
  border: none;
  background: transparent;
  color: #fff;
}
.qty-btn {
  width: 40px;
  height: 45px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
input.qty::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.qty {
  -moz-appearance: textfield;
}
.custom-qty button.qty-btn {
    border: unset !important;
    color: #fff !important;
    font-size: 1.5rem;
    line-height: 0;
}
.prod_single a.ajax_add_to_cart {
    background: #d69217 !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0 !important;
    text-transform: capitalize;
    transition: 0.5s !important;
    border: 1px solid #d69217 !important;
}
.prod_single a.ajax_add_to_cart:hover {
    color: #d69217 !important;
    background: #fff !important;
}
.prod_single form.cart {
    width: 100% !important;
	padding-top: 25px !important;
}
.prod_single p {
    margin: 0 !important;
}
.prod_single .quantity:before {
    content: 'Quantity:';
    font-size: 16px;
    color: #fff;
    font-family: 'Poppins' !important;
    font-weight: 500;
    position: absolute !important;
    left: 0;
    top: 0;
}
.prod_single .woocommerce-product-gallery {
    width: 100% !important;
}
.prod_single .woocommerce-product-gallery {
    margin: 0 !important;
}
.prod_single .elementor-widget-woocommerce-product-images {
    display: flex;
    justify-content: center;
}
.elementor-star-rating i:before {
    content: "★" !important;
}
.main_footer ul.e-n-menu-heading {
    flex-direction: column !important;
}
.main_footer p {
    margin: 0 !important;
}
.main_footer label {
    display: none !important;
}
.main_footer input#tnp-1 {
    background: #010f1a6e !important;
    border-radius: 0 !important;
}
.main_footer form {
    display: flex;
    align-items: center;
    width: 100%;
}
.main_footer .tnp-field-email {
    width: 100%;
}
.main_footer input.tnp-submit {
    background: #d69217 !important;
    border-radius: 0 !important;
    padding-right: 20px;
    padding-left: 20px !important;
    border: 1px solid #d69217 !important;
    margin-left: 5px !important;
}
.main_footer input.tnp-submit:hover {
    color: #d69217 !important;
    background: #0000 !important;
}
.main_footer input {
    height: 50px !important;
}
.main_footer .tnp {
    margin: 0 !important;
}
.main_footer ul.e-n-menu-heading li div {
    padding: 0 0 10px 0 !important;
}
.main_footer input.tnp-email::placeholder, .main_footer input.tnp-email {
    color: #fff !important;
}











@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}