/*
Theme Name: artincoins-theme
Author: WTS
Version: 1
*/

html {
  overflow-x: hidden;
}

body {
  background-color: black !important;
  overflow-x: hidden;
}

@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900");

/*font-family: 'Poppins', sans-serif;*/

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: black !important;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  color: #282828;
  font-size: 16px;
  line-height: 22px;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 55px;
  line-height: 58px;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 76px;
}

h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #feb620;
  font-family: roboto;
}

h3 {
}

h4 {
}

ul {
  margin-left: 0px;
}

h1 span {
  color: #fff;
  font-weight: 700;
  font-size: 65px;
  line-height: 76px;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #feb620;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #d7a327;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.form-control,
select {
  background-color: lightgrey;
  width: 100%;
  height: 39px;
  padding: 0 16px;
  border: none !important;
}
textarea {
  background-color: lightgrey !important;
  border: 2px solid #fff;
  padding: 12px 16px;
  width: 100%;
  height: 148px;
}
select {
  width: 100%;
  padding: 0 11px;
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
  color: #fff !important;
  text-transform: uppercase;
  font-size: 11px !important;
  font-weight: 400;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  outline: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
input[type="button"],
input[type="submit"] {
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
  color: #fff;
  height: 41px;
  padding-left: 15px;
  padding-right: 15px;
  border: 2px solid #fff;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 115px;
  text-align: center;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
}
input[type="button"]:hover,
input[type="submit"]:hover {
  background-image: none;
  background-color: #cf940f;
  color: #000;
}
::-webkit-input-placeholder {
  opacity: 1;
  color: #282828;
}
:-ms-input-placeholder {
  opacity: 1;
  color: #282828;
}
::-moz-placeholder {
  opacity: 1;
  color: #282828;
}
:-moz-placeholder {
  opacity: 1;
  color: #282828;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */
.form_input_check {
  position: relative;
  margin: 0;
  padding-left: 40px;
}
.form_input_check span {
  margin: 0;
  padding: 0;
}
.form_input_check input[type="checkbox"] {
  visibility: hidden;
  display: none;
}
.form_input_check input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border: 2px solid #feb620;
  background: #fff;
}
.form_input_check input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/checked.svg) no-repeat center center;
  background-size: 15px;
}
.form_input_check input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* .form_input_check input[type="checkbox"]:checked + span::before {
  
} */
.form_input_check input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.featuresitm_text .cart-wish {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.featuresitm_text .cart-wish h5 {
  margin: 0 10px 0 0;
}
.featuresitm_text.arrvl_txt h2,
.featuresitm_text.arrvl_txt h4 {
  margin-bottom: 15px;
}
.featuresitm_text.arrvl_txt h2 {
  line-height: 1;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border: 2px solid red;
  border-radius: 5px;
  color: #000;
  background-color: lightgrey;	
}

/* custom radio */
.form_input_radio {
  position: relative;
  margin: 0;
  padding-left: 30px;
}
.form_input_radio span {
  margin: 0;
  padding: 0;
}
.form_input_radio input[type="radio"] {
  visibility: hidden;
  display: none;
}
.form_input_radio input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid #cbcbcb;
  border-radius: 100%;
  background: #fff;
}
.form_input_radio input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form_input_radio input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* .form_input_radio input[type="radio"]:checked + span::before {
  
} */
.form_input_radio input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#backtotop {
  display: inline-block;
  background-color: #ff9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#backtotop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#backtotop:hover {
  cursor: pointer;
  background-color: #333;
}
#backtotop.show {
  opacity: 1;
  visibility: visible;
}

/* navbar*/
.navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.navbar-nav li {
  position: relative;
  list-style: none;
}
.navbar-nav > li {
  margin: 0 15px;
  padding: 10px 0;
  position: relative;
}
.navbar-nav > li:last-child {
  margin-right: 0;
}
.navbar-nav > li:first-child {
  margin-left: 0;
}
.navbar-nav > li > a {
  color: #425964;
  font-size: 17px;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
}
.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: #d7a327;
}

/* navbar submenu*/
.sub-menu {
  background-image: linear-gradient(
    120deg,
    #c9cbd1,
    #414246,
    #66686c,
    #080808 85%
  ) !important;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 140px;
  padding: 0;
}
.sub-menu > li > a {
  color: #fff;
  display: block;
  width: 100%;
  padding: 5px 10px;
}
.sub-menu > li {
  width: 100%;
  display: block;
}
.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a {
  background: #d7a327;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

.navbar-nav > li.menu-item-has-children {
  padding-right: 13px;
}
.navbar-nav > li.menu-item-has-children {
  position: relative;
}
.navbar-nav > li.menu-item-has-children:after {
  position: absolute;
  right: -3px;
  top: 50%;
  background: url(images/arrow_bottom.svg) no-repeat center center;
  background-size: 13px;
  content: "";
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

.cmn-gap {
  padding-bottom: 1px;
}

.up_header {
  width: 100%;
  padding: 14px 100px 35px;
}
.form_ckbox {
  margin-top: 55px;
  clear: both;
}
.up_header {
  background: #000000;
}
.social_links li img {
  width: 13px;
}
.social_links ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.social_links li {
  display: inline-block;
  list-style: none;
  margin: 0px 1px;
}
.social_links li:first-child {
  margin-left: 0px;
}
.login_links li img {
  width: 16px;
}
.login_links li {
  display: inline-block;
}
.login_links {
  text-align: right;
}
.login_links li {
  margin-left: 13px;
}
.login_links ul {
  margin-bottom: 0px;
}
.login_links ul li.langu img {
  width: auto;
}
.main_hdr {
  padding: 12px 0px;
  position: relative;
  margin-top: -28px;
}
.new_page ul li {
  display: inline-block;
  margin-left: 25px;
}
.new_page ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
/* .new_page ul li{margin} */
.new_page ul {
  text-align: right;
}
.right_hdr {
  padding-right: 70px;
}
.search_box {
  background: #ffbc00;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 0px;
  z-index: 3;
}
.search_box img {
  width: 17px;
  margin: auto;
}
.main_hdr .container-fluid {
  position: relative;
  padding: 0 100px;
}
.search_box a {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new_page ul li a:hover {
  color: #d7a327;
}

/*banner_section*/
.banner_section {
  position: relative;
  line-height: 0px;
  border-top: 4px solid #feb620;
}
.itm {
  position: relative;
}
.banner_section figure {
  margin-bottom: 0px;
}
.banner_section figure img {
  width: 100%;
}
.banner_section .slick-prev {
  transition: 1.5s ease-in-out;
  left: 25px;
  background: transparent
    url(https://www.artincoins.com/wp-content/uploads/2022/02/Arrows-Left-Slider.png)
    no-repeat center center;
  background-size: 80px;
  width: 80px;
  height: 80px;
  z-index: 1;
}
.banner_section .slick-next {
  transition: 0.5s ease-in-out;
  right: 25px;
  background: transparent
    url(https://www.artincoins.com/wp-content/uploads/2022/02/Arrows-Right-Slider.png)
    no-repeat center center;
  background-size: 80px;
  width: 80px;
  height: 80px;
  z-index: 1;
  position: absolute;
  top: 50%;
}

.banner_text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 100%;
  text-align: center;
}
.banner_section .slick-prev:before,
.banner_section .slick-next:before {
  display: none;
}

/*video_section*/
.video_section {
  line-height: 0px;
  position: relative;
}
.video_section video {
  width: 100%;
  background-size: 100% 100% !important;
  object-fit: cover !important;
  max-height: 850px;
}
.play_botton {
  position: absolute;
  left: 0px;
  top: 15%;
  right: 0px;
  margin: 0 auto;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 6px solid rgba(199, 194, 194, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 9;
  margin: 0 auto;
  background-image: url(images/play.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0%;
  right: 0%;
  bottom: 0%;
  margin: auto;
  background-size: 35px;
  background-position: center;
  cursor: pointer;
}
.play_botton img {
  width: 45px;
  margin: auto;
}
.arrivls_box {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 38px 16px;
  min-height: 391px;
  background: #fff;
}
.add_tocrt {
  padding: 9px 7px 9px 25px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  text-transform: uppercase;
  color: #282828;
  background: url(images/cart.svg) no-repeat left 9px center;
  background-size: 12px;
  font-size: 9px;
  display: inline-block;
}
.add_to_wishlist {
  padding: 9px 7px 9px 25px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  text-transform: uppercase;
  color: #282828;
  background: url(images/like.svg) no-repeat left 9px center;
  background-size: 12px;
  font-size: 9px;
  display: inline-block;
}
.ftr_bx {
  text-align: center;
  padding: 20px;
}

/*new_arrivalssection*/
#rev_slider_30_3_forcefullwidth .rs_splitted_lines{
	margin: 8px 0 0 0 !important;	
}
.new_arrivalssection {
  position: relative;
  position: relative;
  z-index: 2;
  margin-top: -5px;
}
.new_arrivalssection:before {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 477px;
  height: 387px;
  background-size: 477px;
  content: ""; /*background:url(images/curve1.png)no-repeat center;*/
  z-index: -1;
}
.new_arrivalssection:after {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 514px;
  height: 560px;
  background-size: 514px;
  content: ""; /*background:url(images/curve2.png)no-repeat center;*/
  z-index: -1;
}
.arrivls_box {
  text-align: center;
}
.arrivls_box h4 {
  color: #d7a327;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  width: 100%;
}
.arrivls_box p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
.arrivls_box p:hover {
  color: lightgrey;
}
.arrivel_slider.slick-initialized.slick-slider {
  margin-top: 25px;
  margin-right: -10px;
  margin-bottom: 0px;
  margin-left: -10px;
}
.arrivel_slider.slick-initialized.slick-slider .slick-slide {
  padding: 0px 10px;
}
.arrivel_slider .arrvl_txt {
  padding: 15px 3px;
}
.arrivel_slider .slick-list {
  padding-bottom: 60px;
}
.arrivel_slider .slick-prev {
  left: -16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  background: transparent
    url(https://www.artincoins.com/wp-content/uploads/2022/02/Arrows-Left.png)
    no-repeat center center;
  background-size: 50px;
  position: absolute;
  top: 27%;
  transition: 0.5s ease-in-out;
}
.arrivel_slider .slick-prev:before,
.arrivel_slider .slick-next:before {
  display: none;
}
.arrivel_slider .slick-next {
  transition: 0.5s ease-in-out;
  right: -16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  background: transparent
    url(https://www.artincoins.com/wp-content/uploads/2022/02/Arrows-Right.png)
    no-repeat center center;
  background-size: 50px;
  position: absolute;
  top: 27%;
}

.arrivls_box figure {
  width: 220px;
  height: 220px;
  margin: 0 auto 48px;
}
.new_arrivalssection h2 {
  text-align: center;
  color: #feb620;
}
.arrivel_slider_area:last-child {
  margin-bottom: 0px;
}

/*luxery_coins_slider*/
.luxery_coins_section {
  background-size: cover !important;
  min-height: 763px;
  padding: 65px 0px;
  background-attachment: fixed !important;
  display: none;
}
.luxery_box {
  background: #fff;
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  transition: 0.3s;
}
.luxery_box h4 {
  font-size: 28px;
  line-height: 35px;
  color: #282828;
  font-weight: 600;
  text-transform: uppercase;
}
.luxery_slider .slick-list {
  padding: 80px 0px !important;
}
.luxery_slider .slick-center .luxery_box {
  transform: scale(1.3);
}
.luxery_slider .slick-prev {
  left: -16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff url(images/left-arrow.svg) no-repeat center center;
  box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  background-size: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.luxery_slider .slick-prev:before,
.luxery_slider .slick-next:before {
  display: none;
}
.luxery_slider .slick-next {
  right: -16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff url(images/left-arrow.svg) no-repeat center center;
  box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  background-size: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.big_fight_area {
  border-radius: 15px;
  margin: 0px 30px;
}
.big_fight_area .feture_box {
  padding: 75px 120px;
  border-radius: 15px;
  transform: skew(11deg);
}
.product-categories li:before {
  position: absolute;
  left: 0px;
  top: 6px;
  background: url(images/left-arrow.svg) no-repeat center center;
  transform: rotate(-180deg);
  background-size: 12px;
  content: "";
  width: 15px;
  height: 15px;
}

.feture_box ul li:before {
  position: absolute;
  left: 0px;
  top: 6px;
  background: url(images/left-arrow.svg) no-repeat center center;
  transform: rotate (-180deg);
  background-size: 12px;
  content: "";
  width: 15px;
  height: 15px;
}
.feture_box ul {
  padding-left: 0px;
}
.read_more {
  color: #d7a327;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  display: inline-block;
  margin-top: 20px;
}
.read_more:before {
  position: absolute;
  right: -18px;
  top: 3px;
  background: url(images/yello.svg) no-repeat center center;
  transform: rotate(-180deg);
  background-size: 12px;
  content: "";
  width: 15px;
  height: 15px;
  transition: 0.3s;
}
.read_more:hover:before {
  right: -28px;
}
.features_pic img {
  transform: scale(1.1);
  border-radius: 11px;
}
.fea_itm_pic {
  border-radius: 12px;
}
.feature_item_area {
  margin-top: 60px;
  border-radius: 15px;
  border: 2px solid #feb620;
  margin-bottom: 25px;
}
.feature_pic_slider figure {
  margin: 0 auto 15px;
  text-align: center;
}
.feature_pic_slider .add_to_wishlist,
.feature_pic_slider .add_tocrt {
  font-size: 14px;
}
.feature_pic_slider .slick-prev {
  left: -16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  background: transparent
    url(https://www.artincoins.com/wp-content/uploads/2022/02/Arrows-Left.png)
    no-repeat center center;
  background-size: 50px;
  position: absolute;
  top: 50%;
  transition: 1.5s ease-in-out;
}
.feature_pic_slider .slick-prev:before,
.feature_pic_slider .slick-next:before {
  display: none;
}
.feature_pic_slider .slick-next {
  right: -16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  background: transparent
    url(https://www.artincoins.com/wp-content/uploads/2022/02/Arrows-Right.png)
    no-repeat center center;
  background-size: 50px;
  position: absolute;
  top: 50%;
}
.featuresitm_text {
  padding-left: 5px;
  padding-right: 10px;
}
.featuresitm_text h4 {
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  font-weight: 600;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
.featuresitm_text h4:hover {
  color: lightorange;
}
.featuresitm_text .price_h5 {
  font-size: 20px;
  line-height: 24px;
  color: #d7a327;
  font-weight: 600;
}
.letst_text ul {
  padding-left: 0px;
}
.letst_text ul li {
  display: inline-block;
  padding-left: 17px;
  margin: 0px 6px;
  font-size: 14px;
  line-height: 33px;
}
.letst_text ul {
  margin-bottom: 0px;
}
.latest_news_section {
  margin-top: 25px;
}
.letst_text ul li.date {
  position: relative;
}
.letst_text ul li.date:before {
  position: absolute;
  left: 0px;
  top: 50%;
  background: url(images/calendar.svg) no-repeat center center;
  background-color: #db35d6;
  background-size: 12px;
  width: 12px;
  height: 12px;
  content: "";
  transform: translateY(-50%);
}
.letst_text ul li.cmnts {
  position: relative;
}
.letst_text ul li.cmnts:before {
  position: absolute;
  left: 0px;
  top: 50%;
  background: url(images/cmmnts.svg) no-repeat center center;
  background-color: #db35d6;
  background-size: 12px;
  width: 12px;
  height: 12px;
  content: "";
  transform: translateY(-50%);
}
.letst_text ul {
  text-align: center;
  color: #fff;
}
.letst_text {
  text-align: center;
  border-radius: 15px;
  padding: 25px;
  width: 96%;
  margin: 0 auto;
}
.latest_new_box figure {
  border-radius: 15px;
  height: 388px;
}
.latest_new_box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.letst_text {
  text-align: center;
  border-radius: 15px;
  padding: 25px 10px 50px;
  width: 100%;
  margin: -10px auto 0px;
  background: transparent;
  position: relative;
  z-index: 0;
  color: #fff;
}
.ftr_bx figure img {
  margin: 0 auto;
  border-radius: 8px;
}
.latest_slider.slick-initialized.slick-slider {
  margin: 0px -15px;
}
.latest_slider.slick-initialized.slick-slider .slick-slide {
  padding: 0px 15px;
}
.latest_slider .slick-list {
  padding-bottom: 50px;
}
.letst_text h4 {
  font-size: 19px;
  line-height: 22px;
  color: #feb620;
  margin-bottom: 10px;
  font-weight: 600;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
.letst_text h4:hover {
  color: #fff;
}
.latest_slider .slick-prev {
  left: -16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  background: transparent
    url(https://www.artincoins.com/wp-content/uploads/2022/02/Arrows-Left.png)
    no-repeat center center;
  background-size: 50px;
  position: absolute;
  top: 28%;
}

.latest_slider .slick-prev:before,
.latest_slider .slick-next:before {
  display: none;
}

.latest_slider .slick-next {
  right: -16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  background: transparent
    url(https://www.artincoins.com/wp-content/uploads/2022/02/Arrows-Right.png)
    no-repeat center center;
  background-size: 50px;
  position: absolute;
  top: 28%;
}

.chose_pic {
  /*width: 60px;*/
  width: 100%;
}
.chose_text {
  /*width: calc(100% - 70px);*/
  margin-left: auto; /*padding-left: 15px;*/
  width: 100%;
}
.choose_section {
  margin-top: 50px;
  padding: 0px 12px;
}
.choose_bx {
  /*border: 1px solid #d9d9d9;*/
  padding: 25px 25px 25px 15px; /*border-radius: 10px; transform: skew(-11deg); background:#fff;*/
}

.inchoose {
  /*display: inline-block;*/
  text-align: center;
  min-height: 150px;
}
.chose_text h4 {
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 12px;
  font-weight: 600;
}
.chose_text p {
  font-size: 14px;
  line-height: 25px;
}
.choose_bx {
  min-height: 188px;
}

.header_art {
  display: none;
  align-items: center;
  text-align: center;
}

.header_art-L {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  margin-right: 5px;
}

.header_art-L figure,
.header_art-L h2 {
  display: inline-block;
}
.header_art-R {
  display: inline-block;
  box-sizing: border-box;
  margin-left: 5px;
}

.twitter-feed {
  margin-top: 35px;
}

/*recognize_area*/
.recognize_area {
  margin-top: 80px;
  padding: 25px 25px 25px 15px;
  border-radius: 10px;
  margin-bottom: 50px;
}
.recog_hdng {
  box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  max-width: 826px;
  margin: 0 auto;
  text-align: center;
  padding: 25px 15px;
  transform: skew(-11deg);
  border-radius: 10px;
  margin-top: -64px;
  background: #989292;
}
.recog_hdng h2 {
  font-size: 30px;
  transform: skew(11deg);
  color: gold !important;
}

.recog_boxes_slider.slick-initialized.slick-slider {
  margin: 0px -10px;
  margin-top: 38px;
}
.recog_boxes_slider.slick-initialized.slick-slider .slick-slide {
  padding: 0px 10px;
}
/*.recog_boxes .recog_box{-ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; padding:0px 10px;}*/
.recog_box {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 110px;
  display: flex;
  align-items: center;
  max-width: 185px;
  margin: 0 auto;
}
.recog_box img {
  margin: auto;
}

/*Checkout page*/
.ts-product-image {
  display: inline-block;
}
/*END*/

/*footer*/
.footer {
  background-color: #222121;
  width: 100%;
  float: left;
  border-top: 4px solid #feb620;
}
.up_foooter {
  padding: 50px 0px 30px;
  position: relative;
}
.ft_menu_links ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.ft_menu_links ul li {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0px 10px;
  margin-bottom: 3px;
  list-style: none;
}
.ft_menu_links ul li a {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}
.ft_menu_links ul li a:hover {
  color: #d7a327;
}
.footer h4 {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.ft_menu_links ul {
  padding-left: 0px;
}
.ft_quick_links ul li {
  list-style: none;
}
.ft_quick_links ul li,
.ft_quick_links ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
}
.ft_quick_links ul li a:hover {
  color: #d7a327;
}
.ft_quick_links ul {
  padding-left: 0px;
}
.ft_quick_links ul li {
  margin-bottom: 15px;
  list-style: none;
}
.social_links li a img {
  transition: 0.3s;
}
.social_links li a:hover img {
  transform: scale(1.1);
}
.up_foooter p {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
}
.ft_form_box {
  background-color: darkorange;
  transform: skew(-11deg);
  border-radius: 10px;
}
.in_ft_form {
  transform: skew(11deg);
  position: relative;
}
.ft_form_box input[type="text"],
.ft_form_box input[type="email"] {
  background: transparent;
  border: 0px;
  padding-right: 50px;
  color: #fff;
  outline: none;
  height: 100%;
}
.ft_form_box input[type="submit"] {
  background: url(images/paper-plane.svg) no-repeat center center;
  background-size: 20px;
  outline: none;
  height: 45px;
  cursor: pointer;
  border: 0px;
  min-width: auto;
  padding: 0px 23px;
}
.form_box_submit {
  position: absolute;
  right: 0;
  top: 0;
}
.mid_footer {
  padding-bottom: 45px;
}
.ft_form_box input[type="text"]::placeholder {
  color: #fff;
}
.ft_form_box input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  color: #fff;
}
.ft_form_box input[type="text"]:-ms-input-placeholder {
  opacity: 1;
  color: #fff;
}
.ft_form_box input[type="text"]::-moz-placeholder {
  opacity: 1;
  color: #fff;
}
.ft_form_box input[type="text"]:-moz-placeholder {
  opacity: 1;
  color: #fff;
}

.ft_form_box input[type="email"]::placeholder {
  color: #fff;
}
.ft_form_box input[type="email"]::-webkit-input-placeholder {
  opacity: 1;
  color: #fff;
}
.ft_form_box input[type="email"]:-ms-input-placeholder {
  opacity: 1;
  color: #fff;
}
.ft_form_box input[type="email"]::-moz-placeholder {
  opacity: 1;
  color: #fff;
}
.ft_form_box input[type="email"]:-moz-placeholder {
  opacity: 1;
  color: #fff;
}
.ft_form_box .form_box,
.ft_form_box .form_box_submit {
  height: 45px;
}
.in_md_ft {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft_rate_logo {
  margin: 0px 25px;
}
.ft_rate_logo img {
  max-width: 127px !important;
}
.down_footer .copyright {
  text-align: center;
}
.down_footer {
  padding: 22px 0px;
  background: #151515;
}
.copyright {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
.down_footer ul li {
  display: inline-block;
  list-style: none;
  margin-left: 7px;
}
.down_footer p {
  margin-bottom: 0px;
}
.down_footer ul {
  padding-left: 0px;
  margin-bottom: 0px;
  text-align: right;
}
.down_footer {
  position: relative;
}
.online_chats {
  position: absolute;
  top: auto;
  bottom: 0;
  display: flex;
  align-items: center;
  background: #212121;
  min-height: 48px;
  padding: 10px 10px;
  border-radius: 10px;
  left: 9%;
}
.new_page ul {
  margin-bottom: 0px;
}
.online_chats img {
  margin-right: 15px;
}
.down_footer p {
  color: #fff;
}
.languge_box {
  position: absolute;
  right: 15px;
  top: 82px;
}
.arrvl_txt .add_tocrt {
  padding: 5px 7px 5px 25px;
}
.arrvl_txt .add_to_wishlist {
  padding: 5px 7px 5px 25px;
}
.features-sections {
  position: relative;
}
.features-sections:before {
  position: absolute;
  right: 0px;
  top: 30%;
  width: 476px;
  height: 952px;
  background-size: 476px;
  content: "";
  z-index: -1;
  transform: translateY(-50%);
}

.features-sections:after {
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 468px;
  height: 952px;
  background-size: 468px;
  content: "";
  /* background: url(images/arrival_curve2.png)no-repeat center; */
  z-index: -1;
  transform: inherit;
}

.choose_section h2 {
  text-align: center;
}
/*innnrpage*/
.innrpg_bnnr_section figure {
  margin-bottom: 0px;
}
.innrpg_bnnr_section figure img {
  width: 100%;
  max-height: 170px;	
}
.breadcamp ul li {
  display: inline-block;
}
.innrpg_bnnr_section {
  position: relative;
}
.innnr_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.innnr_txt h1 {
  color: #fff;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.breadcamp ul li,
.breadcamp ul li a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.breadcamp ul li img {
  width: 11px;
}
.abotpg_pic {
  position: relative;
  width: 351px;
}
.abt_pic_lg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  right: 0px;
  margin: 0 auto;
}
.about_pg_boxex {
  display: flex;
  flex-wrap: wrap;
}
.about_pg_text {
  width: calc(100% - 355px);
  margin-left: auto;
  padding-left: 25px;
}
.about_pg_text p a {
  font-weight: 600;
  position: relative;
  font-size: 16px;
}
.about_pg_text p a:after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 1px;
  width: 100%;
  background: #d3a128;
  content: "";
}
.about_pg_text h5 {
  color: #282828;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about_pg_text h6 a {
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.about_pg_text h6 a:after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 1px;
  width: 100%;
  background: #d3a128;
  content: "";
}
.abt_brordcst_box ul li {
  margin-bottom: 14px;
  color: #d3a128;
  font-size: 12px;
  line-height: 20px;
  list-style: none;
  font-weight: 600;
}
.abt_brordcst_box ul li a {
  color: #d3a128;
}
.abt_brordcst_box ul li a:hover {
  color: #282828;
}
.abt_brordcst_box ul {
  padding-left: 0px;
}
.abt_brordcst_box {
  padding: 30px 15px;
  text-align: center;
  min-height: 356px;
}
.about_pg_bradcast {
  margin-top: 70px;
}
.abt_brordcst_box {
  border: 2px solid gold;
}
.about_pg_text h4 {
  font-size: 25px;
  line-height: 32px;
  font-weight: 600;
  color: #feb620;
  margin-bottom: 17px;
}
.abt_brordcst_box h4 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
}

.blog_pg_section h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog_pg_section h5 a {
  color: #212726;
}
.blog_pg_section ul li {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #212726;
  list-style: none;
  display: inline-block;
  padding-left: 19px;
  margin: 10px 2px 0px 2px;
}
.blog_pg_section ul {
  padding-left: 0px;
}
.blog_pg_section ul li.dat {
  position: relative;
}
.blog_pg_section ul li.dat:before {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: url(images/calendar2.svg) no-repeat center center;
  background-size: 12px;
  content: "";
}
.blog_pg_section ul li.cmnt {
  position: relative;
}
.blog_pg_section ul li.cmnt:before {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: url(images/comments2.svg) no-repeat center center;
  background-size: 12px;
  content: "";
}
.blog_pg_section ul li.usr {
  position: relative;
}
.blog_pg_section ul li.usr:before {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: url(images/user2.svg) no-repeat center center;
  background-size: 12px;
  content: "";
}
.readmore_btn {
  font-size: 11px;
  line-height: 15px;
  color: #282828;
  border: 1px solid #000;
  padding: 8px 9px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 21px;
}
.readmore_btn:hover {
  background: #000;
  color: #fff;
}
.blog_pst_box {
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 34px 12px;
  transition: 0.3s;
  background: #fff;
}
.blg_bx {
  margin-bottom: 23px;
}
.blog_pst_box:hover h5 a {
  color: #ce902b;
}
.blog_pst_box:hover {
  box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
}

.blog_right_post h5 {
  font-size: 17px;
  margin-bottom: 5px;
}
.blog_right_post ul li {
  font-size: 12px;
  line-height: 20px;
}
.blog_right_post {
  border-bottom: 2px solid gold;
  padding: 20px 0px;
}
.blog_right_post:last-child {
  border-bottom: 0px;
}
.in_blogpost_right {
  border: 1px solid #d9d9d9;
  padding: 0px;
  border-radius: 5px;
  background: #fff;
}
.blog_postright h3 {
  margin-bottom: 0px;
  padding: 20px 11px;
  font-size: 28px;
  color: #fff;
  line-height: 32px;
  font-weight: 600;
  border-bottom: 2px solid gold;
}
.blog_right_post {
  padding: 20px 11px;
  text-align: left;
}
.blog_right_post ul li:first-child {
  margin-left: 0px;
}
.blog_right_post p {
  font-size: 13px;
  line-height: 21px;
}
.blog_right_post h5 a:hover {
  color: #ce902b;
}
.blog_pg_section {
  position: relative;
  background: white;
}
.contactpg_section,
.faq_pg_section {
  position: relative;
}
.blog_pg_section:after/*, .faq_pg_section:after*/ {
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 540px;
  height: 582px;
  background-size: 540px;
  content: "";
  background: url(images/curve3.png) no-repeat center;
  z-index: -1;
  transform: inherit;
}
.pagination {
  text-align: center;
  width: 100%;
  margin-top: 25px;
}
.pagination a {
  display: block;
  width: 100%;
}
.colection_box h4 {
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.colection_box {
  text-align: center;
  border: 2px solid gold;
  border-radius: 5px;
  padding: 15px 15px 25px;
  margin-top: 30px;
  transition: 0.3s;
}
.colection_box:hover {
  box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
}
/*accordian*/
.accordian_area .set {
  position: relative;
  width: 100%;
  height: auto;
  background-color: transparent;
  margin-bottom: 2px;
  margin-bottom: 22px;
}
.accordian_area .set > a {
  display: block;
  padding: 16px 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  background: #333;
  border-radius: 6px;
  text-transform: uppercase;
}
.accordian_area .set > a:after {
  position: absolute;
  right: 17px;
  top: 0px;
  width: 35px;
  height: 100%;
  content: "";
  background: url(images/bottom_arrow_wht.svg) no-repeat center;
  background-size: 15px;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}
.accordian_area .set > a.active:after {
  transform: rotate(-180deg);
}
.accordian_area .set > a i {
  float: right;
  margin-top: 2px;
}
.accordian_area .set > a.active {
  background-color: #646060;
  color: #ce902b;
  border-radius: 5px;
}
.accordian_area .content {
  /*background-color: #fff;*/
  padding: 16px 15px;
  display: none;
  padding-right: 15px;
}
.accordian_area .content p {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
  color: #fff;
}
.faq_pg_section .text-center {
  font-size: 26px;
  line-height: 22px;
  color: #feb620;
  margin-bottom: 30px;
}
.innrpg_cmngap {
  padding: 40px 0px;
}
.contact_boxes_area p a {
  color: #fff;
}
.contact_boxes_area p a:hover {
  color: #ce902b;
}
.social_icons ul li {
  display: inline-block;
  margin-left: 5px;
}
.social_icons ul li img {
  width: 16px;
}
.social_icons ul {
  padding-left: 0px;
}
.newsltterform .in_ft_form {
  transform: skew(0);
  background: #f2f2f2;
  height: 45px;
}
.newsltterform .in_ft_form input[type="text"] {
  background: #f2f2f2;
  border: 0px;
  outline: none;
  height: 48px;
  padding: 0px 50px 0px 15px;
}
.newsltterform .in_ft_form .form_box {
  height: 45px;
}
.newsltterform .in_ft_form input[type="submit"] {
  background: url(images/black_send.svg) no-repeat center center;
  background-size: 20px;
  outline: none;
  height: 48px;
  cursor: pointer;
  border: 0px;
  min-width: auto;
  padding: 0px 23px;
}
.tinv-wishlist table td,
.tinv-wishlist table th {
  color: #fff;
  font-size: 18px;
}
.tinv-wishlist .product-thumbnail {
  min-width: 120px;
}
.tinv-wishlist .tinv-lists-nav>span {color: #fff;}

.woocommerce-message {
  border-top-color: #feb620;
}

.woocommerce-message::before {
  color: #feb620;
}

.woocommerce img,
.woocommerce-page img {
  max-width: 100%;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
  font-size: 12px !important;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  padding: 8px 15px !important;
}
.woocommerce-product-gallery--columns-4 .wpb-wiz-woocommerce-product-gallery__wrapper #wpb_wiz_gallery .woocommerce-product-gallery__image {margin-top: 25px; margin-right: 10px;}

.woocommerce .woocommerce-customer-details address {margin-top: -25px;}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {color: orange;}

.woo-orders-tracking-shortcode-timeline-container {display: none!important;}

.vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row .vi-woo-orders-tracking-form-search-tracking-number-btnclick {color: orange!important;}

.news_leter {
  margin-top: 30px;
}
.news_leter h4 {
  font-size: 20px;
  color: orange;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 12px;
}
.in_left_conbx {
  border: 2px solid #feb620;
  padding: 30px;
  border-radius: 5px;
}
.in_left_conbx h3 {
  font-size: 25px;
  line-height: 34px;
  color: orange;
  font-weight: 600;
}
.in_left_conbx p {
  color: #fff;
}
.contactpg_form_box .form_box {
  margin-bottom: 25px;
}
.contactpg_form_box .form_box label {
  font-size: 18px;
  line-height: 22px;
  color: #f4bc03;
}
.map_area {
  line-height: 0px;
}
.map_area iframe {
  height: 492px;
  width: 100%;
  border: 0px;
}
.blog_right_post h5,
.blog_pst_box h5 {
  transition: 0.3s;
}
.blog_pst_box a,
.blog_right_post a {
  color: #db35d6;
  display: inline-block;
}
.colection_bx a {
  color: #feb620 !important;
  display: inline-block;
}
.colection_bx p a {
  color: #fff !important;
  display: inline-block;
}
.blog_pst_box:hover h5,
.blog_right_post:hover h5 {
  color: #ce902b;
}
.tes_box {
  margin-bottom: 60px;
}
.testimo_box {
  /*border:1px solid #d9d9d9;*/
  text-align: center;
  padding: 25px;
}
.col-md-4.tes_box {
  max-width: 31.3%;
  margin: 0 1% 60px;
  border: 1px solid #d9d9d9;
}
.test_coma {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  margin-top: -54px;
  margin-bottom: 25px;
}
.test_coma img {
  margin: auto;
}
.testimo_box h4 {
  font-size: 17px;
  font-weight: 600;
  color: #cf902b;
  margin-bottom: 15px;
}
.testimo_box h6 {
  margin-bottom: 25px;
  color: white;
}
.testimo_box p {
  font-size: 14px;
  color: white;
}
::-webkit-media-controls {
  display: none !important;
}
video::-webkit-media-controls {
  display: none !important;
}
video::-webkit-media-controls-enclosure {
  display: none !important;
}
.nav_menu .cmn_s,
.nav_menu .nw_ar,
.nav_menu .hot_s {
  display: none !important;
}
.navbar-nav > li:nth-child(5) {
  margin-right: 0px !important;
}
.ft_menu_links li.current-menu-item a {
  color: #ce902b;
}
.in_md_ft {
  justify-content: flex-start;
}
.ft_rate_logo:first-child {
  margin-left: 0px;
}

.w3_wprs-col,
.w3_wprs-half,
.w3_wprs-quarter,
.w3_wprs-third,
.w3_wprs-threequarter,
.w3_wprs-twothird {
  margin-top: 25px !important;
}

.wprevpro_t1_DIV_2 {
  border: none !important;
}

/*----------------*/

nav.navigation.post-navigation h2.screen-reader-text {
  display: none;
}
.nav-links {
  width: 100%;
  float: left;
  margin: 20px 0;
}
.nav-previous a,
.nav-next a {
  font-size: 11px;
  line-height: 15px;
  color: #282828;
  border: 1px solid #000;
  padding: 8px 9px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0;
}

.breadcamp a {
  color: #fff;
}
.breadcamp {
  color: #fff;
  font-weight: 700;
}
ul.logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.logo-list li {
  margin: 0 2px;
  list-style: none;
}

.colection_box p {
  font-size: 14px;
}

/*------ Woocommerce -----*/
section.widget.woocommerce.widget_product_categories {
  //border: 1px solid #ddd;
}
h2.widget-title {
  font-size: 1.5em;
  text-align: center;
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}
.product-categories li {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  list-style: none;
  transition: all 0.4s;
}
.product-categories li:before {
  position: absolute;
  left: 0px;
  top: 6px;
  background: url(images/left-arrow.svg) no-repeat center center;
  transform: rotate(-180deg);
  background-size: 12px;
  content: "";
  width: 15px;
  height: 15px;
}
.product-categories {
  padding: 15px 15px 0;
}
.product-categories li a {
  color: #000;
}
.product-categories li:hover {
  padding-left: 30px;
}
.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
  border: 2px solid gold;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  transition: all 0.4s;
}
.woocommerce ul.products.columns-3 li.product:hover,
.woocommerce-page ul.products.columns-3 li.product:hover {
  box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -webkit-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
  -moz-box-shadow: 0px 5px 32px 0px rgb(0 0 0 / 21%);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 5px 0;
  line-height: 120%;
  height: 90px;
  overflow: hidden;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}
.woocommerce-shop
  .woocommerce
  ul.products
  li.product
  .woocommerce-loop-product__title {
  color: #fff;
}
.woocommerce ul.products li.product .price {
  color: #d7a327;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400 !important;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  font-weight: 400;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  margin-top: 10px;
  font-size: 11px;
  line-height: 15px;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 22px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  border-radius: 0;
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: #000;
  color: #fff;
}
.woocommerce div.product .product_title {
  color: #282828;
  font-weight: 600;
  font-size: 2em;
  line-height: 130%;
  margin-bottom: 20px;
}
.woocommerce div.product p.price {
  color: #ae7b21;
  line-height: 22px;
  font-weight: 600;
  font-size: 1.5em;
}
.woocommerce div.product p.stock {font-size: 28px;}

.woocommerce div.product .out-of-stock {color: #8f5e23;}

.woocommerce div.product div.summary {margin-top: 100px;}

/*----Wocommerce varticle gallery -----*/
.woocommerce-product-gallery {
  display: flex;
}
.woocommerce-product-gallery .flex-control-thumbs {
  order: -10;
  margin-top: 0 !important;
  margin-right: 10px !important;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  width: 100%;
  padding-top: 0;
  padding-bottom: 5px;
}
/*----Wocommerce varticle gallery -----*/
input.minus,
input.plus {
  padding: 0;
  min-width: 40px;
  height: 40px;
  vertical-align: top;
  background: #3f3f3f;
}
input.input-text.qty.text {
  height: 40px;
  background: #a19e9e;
  margin: 0 2px;
}

form.cart {
  margin-top: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background-color: transparent;
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 0;
  margin: 0;
  padding: 0 1em;
  font-size: 25px;
  font-weight: 400 !important;
  text-transform: uppercase;
}
.woocommerce div.product form.cart .variations label {
  text-transform: uppercase;
}

.pwgc-field-container {
  margin-top: 14px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 10px 0;
  border-top: 1px solid grey;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 500;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  box-shadow: none;
  border-width: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: transparent;
  background-color: transparent;
  color: #000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li#tab-title-description {
  width: 100%;
  position: relative;
  padding-left: 35px;
}
.woocommerce
  div.product
  .woocommerce-tabs
  ul.tabs
  li#tab-title-description:after {
  position: absolute;
  left: 0;
  top: 13px;
  content: "";
  background: url("images/des-icon.png") no-repeat;
  width: 25px;
  height: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  bottom: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: 1px solid grey;
}
.woocommerce .cart .button,
.woocommerce .cart input.button {
  margin-top: 0 !important;
  height: 35px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 200px;
  height: 35px;
  font-size: 13px;
  padding: 0 10px;
  background: transparent;
  border-color: #fff;
  color: #fff;
  margin-right: 10px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text::placeholder {
  color: rgba(199, 194, 194, 0.9);
}
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
}
/* .woocommerce-cart .woocommerce a.button.alt {
    background: #fff;
    color: #000;
} */
.woocommerce-cart table.cart img {
  width: 110px !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: #fff;
  color: #000;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  flex: none;
  max-width: 48%;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-content {
  border: 2px dashed gold;
}
.woocommerce form .form-row label,
span.woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background-color: lightgray;
  border: 1px solid #000;
  height: 55px;
  border-radius: 8px;
  color: #000;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  height: 40px;
  border-radius: 8px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 40px;
  height: 40px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 7px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  background: #fff;
  border: 1px solid #000;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 2px solid gold;
  padding: 10px;
  text-align: center;
  border-radius: 5px;	
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  border: 2px dashed gold;
  padding: 15px 15px 0;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  margin-top: 9px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  list-style: none;
  transition: all 0.4s;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:before {
  position: absolute;
  left: 0px;
  top: 6px;
  background: url(images/left-arrow.svg) no-repeat center center;
  transform: rotate(-180deg);
  background-size: 12px;
  content: "";
  width: 15px;
  height: 15px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 15px 15px 0;
}
/*.woocommerce-account .woocommerce-MyAccount-navigation ul li a {color: #000;}*/
.woocommerce-account .woocommerce-MyAccount-navigation ul li:hover {
  padding-left: 30px;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: 68%;
  border: 2px dashed gold;
  padding: 30px 20px;
}
span.password-input {
  width: 100%;
}
.login_links li.cart span {
  width: 15px;
  height: 15px;
  background: #feb620;
  display: inline-block;
  font-size: 10px;
  line-height: 15px;
  border-radius: 50%;
  text-align: center;
  margin-left: 5px;
}
.login_links li.cart a {
  color: #000;
}
.slick-slide .arrivls_box img {
  max-height: 220px;
}
.arrvl_txt .add_to_cart_button,
.arrvl_txt a.button.product_type_grouped {
  padding: 5px 14px 5px 14px;
  text-align: center;
  border: 2px solid #fff;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  float: left;
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
  font-weight: 600;
}
.arrvl_txt a.button.product_type_simple {
  padding: 5px 14px 5px 14px;
  height:33px;
  text-align: center;
  border: 2px solid #fff;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  float: left;
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
  font-weight: 600;
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
}
.arrvl_txt a.button.product_type_simple:hover {
  background-image: none;
  background-color: #cf940f;
  color: #000 !important;
}
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background-color: grey;
  margin-bottom: 15px;
}
#add_payment_method .cart-collaterals .cart_totals table small, .woocommerce-cart .cart-collaterals .cart_totals table small, .woocommerce-checkout .cart-collaterals .cart_totals table small {
	color: #fff;
}
.variations select,
select.orderby {
  background: url(images/down-arrow-blk.png) no-repeat 95% center grey !important;
  background-size: 18px !important;
}
form.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first {
  width: auto !important;
  margin-top: 0;
}
form.checkout_coupon.woocommerce-form-coupon p.form-row.form-row-last {
  width: auto;
  float: left;
  margin-top: 0;
}
form.checkout_coupon.woocommerce-form-coupon .input-text {
  width: 200px;
  height: 40px !important;
}
form.checkout_coupon.woocommerce-form-coupon .button {
  height: 40px;
  margin-top: 0 !important;
}

.woocommerce table.shop_table {
  border: 2px solid transparent;
}

.woocommerce table.shop_table td {
  border-top: 2px solid gold;
}

.woocommerce-cart table.shop_table th {
  color: #fff !important;
  font-size: 18px;
}

.woocommerce-cart table.shop_table td {
  color: #fff !important;
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table th,
.woocommerce table.shop_table tfoot td {
  font-weight: 400;
}
#woocommerce_product_categories-3 {
  display: none;
}

.u-column1.col-1.woocommerce-Address {
  width: 100%;
  max-width: 100%;
  border-bottom: 2px solid gold;
  margin-bottom: 15px;
}
.u-column2.col-2.woocommerce-Address {
  width: 100%;
  max-width: 100%;
}
.woocommerce-account .addresses .title .edit {
  float: right;
  background: #282828;
  padding: 5px 15px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
#carusel_poduct_related ul.products .button,
#carusel_poduct_sells ul.products a.button {
  margin: 0 0 10px 10px;
}
#carusel_poduct_related ul.products li.product .onsale {
  display: none;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #d7a327;
  color: #fff;
}
.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: 1px solid #ddd;
  margin: 0 2px;
  width: 34px;
  border-radius: 3px;
}
.woocommerce span.onsale {
  padding: 0;
  font-size: 0.75em;
  font-weight: 400;
}
.woocommerce ul.products li.product .button {
  float: left;
}

ul.products li .tinv-wraper.tinv-wishlist:hover {
  background-color: #000;
  color: #fff;
}
ul.products li.product .tinvwl_add_to_wishlist_button,
.arrvl_txt .tinvwl_add_to_wishlist_button {
  margin-top: 0;
}
ul.products
  li
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
.arrvl_txt
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before {
  font-size: 18px;
  margin-right: 2px;
}
ul.products li .tinv-wraper.tinv-wishlist {
  font-size: 11px;
  float: right;
  border: 1px solid #000;
  padding: 0 5px;
  height: 33px;
  line-height: 35px;
  margin-top: 5px;
  text-transform: uppercase;
}
.arrvl_txt .tinv-wraper.tinv-wishlist {
  font-size: 9px;
  color: orange;
  float: right;
  border: 2px solid #fff;
  padding: 0 5px;
  height: 33px;
  line-height: 35px;
  margin-top: 0;
  text-transform: uppercase;
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
}
.arrvl_txt .tinv-wraper.tinv-wishlist:hover {
  color: #000 !important;
  background-color: #ffffff;
}

.arrivel_slider .arrvl_txt {
  display: inline-block;
  width: 100%;
}
.arrivls_box {
  padding: 38px 10px 0;
}
.ftr_btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
section#text-2 {
  border: 1px solid #ddd;
  margin-top: 15px;
}
section#woof_widget-2 h2 {
  font-size: 20px;
  text-align: center;
  padding: 15px 0;
}
section#woof_widget-2 {
  border: 1px solid #ddd;
  padding: 0;
  margin-top: 15px;
}
.woof_container_inner h4 {
  font-size: 20px;
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.woof_container_inner ul {
  padding: 0 10px;
  margin: 0;
}
ul.woof_list.woof_list_checkbox li input[type="checkbox"] {
  margin-top: 0;
}

.search-bar {
  display: none;
  background: #feb620;
  width: 100%;
  padding-top: 8px;
  padding-right: 0px;
  padding-bottom: 3px;
  padding-left: 0px;
  box-shadow: inset 0px 1px 30px -2px rgba(0, 0, 0, 0.75);
  transition: all 0.8s;
}
.current {
  display: block;
}
.search-form label {
  width: 80%;
}
.search-form input[type="search"] {
  border: 1px solid #000;
  width: 100%;
  background: #fff;
  height: 40px;
}

div#gtranslate_wrapper {
  width: 115px;
  background-color: #222121;
  right: 0 !important;
  top: 55% !important;
  transform: translateY(-50%);
  padding: 10px 0;
  display: none;
  margin-top: 170px;
}
div#gtranslate_wrapper .glink {
  display: block;
  padding: 0 10px;
  font-size: 10px !important;
}
a.glink span {
  font-size: 12px;
  color: #fff;
}

.btn-lang {
  position: fixed;
  top: 55%;
  right: 26px;
  transform: translateY(-50%);
  z-index: 9999;
  display: inline-block;
}
.show {
  display: block !important;
}

.btn-lang img {
  max-width: 90%;
}

form.woocommerce-currency-switcher-form.woocs_show_flags .dd-select {
  display: flex;
  align-items: center;
}
form.woocommerce-currency-switcher-form.woocs_show_flags label.dd-selected-text,
form.woocommerce-currency-switcher-form.woocs_show_flags label.dd-option-text {
  line-height: 100% !important;
  font-size: 13px !important;
  font-weight: 400;
}
.dd-option-image,
.dd-selected-image {
  width: 20px !important;
  margin-top: 5px;
}
form.woocommerce-currency-switcher-form.woocs_show_flags ul.dd-options li {
  margin-left: 0;
  width: 100%;
}
.woocommerce-currency-switcher-form .dd-selected {
  padding: 3px 10px !important;
}

.chosen-container-single .chosen-single {
  padding: 0 0 0 5px !important;
}
.wcuCurrencySwitcherWidget {
  text-align: center;
}
.chosen-container-single .chosen-single {
  background: transparent !important;
  border-color: #fff !important;
  border-radius: 0;
  box-shadow: none;
}
.chosen-container-single .chosen-single span {
  color: #fff !important;
}

.chosen-container .chosen-results {
  max-height: none !important;
  overflow-y: hidden !important;
  background-image: linear-gradient(
    120deg,
    #c9cbd1,
    #414246,
    #66686c,
    #080808 85%
  );
  padding: 0 !important;
  margin: 0 !important;
}
.chosen-container .chosen-results li.active-result {
  color: #fff !important;
  margin: 0 !important;
}
.chosen-container .chosen-results li.active-result:hover {
  background: #feb620;
  color: #000 !important;
}
.chosen-container .chosen-results li.active-result.result-selected {
  background: #feb620;
  color: #000 !important;
}

.luxery_slider .slick-slide.slick-active {
  opacity: 0.7;
}
.luxery_slider .slick-slide.slick-current.slick-active.slick-center {
  opacity: 1;
  z-index: 99;
  position: relative;
}

.speci_table {
  margin-bottom: 20px;
}
.speci_table tr:nth-child(odd) {
  background: #e6bc6e;
}
.speci_table tr:nth-child(even) {
  background: #f0f0f0;
}
.speci_table td {
  font-size: 16px;
  padding: 10px;
}
h3.speci_hdng {
  position: relative;
  padding: 15px 0 15px 35px;
  font-size: 25px;
  text-transform: uppercase;
  border-bottom: 1px solid grey;
  border-top: 1px solid grey;
}
h3.speci_hdng:after {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  background: url("images/spec-icon.png") no-repeat;
  width: 25px;
  height: 20px;
}

ul.extra_links {
  margin: 30px 0 30px;
  padding: 0;
  width: 100%;
  float: left;
}
ul.extra_links li {
  width: 32.3%;
  margin: 0 1% 0 0;
  float: left;
  display: inline-block;
  list-style: none;
  transition: all 0.8s;
}
ul.extra_links li a {
  display: block;
  border: 1px solid #000;
  padding: 10px;
  text-align: center;
  color: #000;
  transition: all 0.8s;
}
ul.extra_links li:first-child a {
  padding: 15px 0;
}
ul.extra_links li img {
  width: auto !important;
}
ul.extra_links li:hover a {
  border: 1px dashed #000;
}

section.related.products {
  clear: both;
}

section.related.products h2 {
  position: relative;
  margin-top: 20px;
  padding: 10px 35px;
  font-size: 25px;
  text-transform: uppercase;
  border-bottom: 1px solid grey;
  border-top: 1px solid grey;
}
section.related.products h2:after {
  position: absolute;
  left: 0;
  top: 22px;
  content: "";
  background: url("images/link-icon.png") no-repeat;
  width: 27px;
  height: 23px;
}

section.related.products h2.woocommerce-loop-product__title {
  border: 0;
  padding: 0;
}
section.related.products h2.woocommerce-loop-product__title:after {
  width: 0;
}
section.related.products .tinv-wraper.tinv-wishlist {
  margin-right: 10px;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
  border: 1px solid #000;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
  border: 1px solid #ddd;
}

.wdp_pricing_table {
  width: 100%;
  margin: 10px 0 20px;
}
span.wdp_pricing_table_footer {
  display: none;
}

.woocommerce
  ul.products
  li.product
  button.xoo-wl-action-btn.xoo-wl-open-form-btn.button.btn.xoo-wl-btn-popup {
  display: none;
}
.summary.entry-summary .shared-counts-wrap.shortcode.style-classic {
  margin-top: 10px;
}
.wdp_pricing_table td {
  border: 0 !important;
  text-align: left !important;
}
.wdp_pricing_table {
  border: 1px solid #ddd;
}
.wdp_pricing_table thead {
  background-color: #fff !important;
  color: #000;
}
.wdp_pricing_table tr:nth-child(even) td {
  background-color: #646161 !important;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: grey;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: grey transparent transparent transparent;
}

.cust_reviews {
  text-align: center;
  margin-top: 35px;
  display: block;
}

.google_cust_reviews h4 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

#wpcf7-f323-p255-o1 label {
  width: 100%;
}
.product_cat-gift-cards .variations td.label label {
  margin-top: 13px;
}

.ticker-div {
  width: 100%;
  display: inline-block;
}

/* Slideout outer button */

#slideout {
  position: fixed;
  top: 14%;
  padding-left: 2px;
  padding-right: 2px;
  left: -360px;
  cursor: pointer;
  width: 370px;
  background-color: transparent;
  z-index: 9999;
}
.left-banner-active {
  left: 0px;
}
#slideout .outer-text {
  -webkit-transform: translate(50%, -50%) rotate(270deg);
  -moz-transform: translate(50%, -50%) rotate(270deg);
  -o-transform: translate(50%, -50%) rotate(270deg);
  transform: translate(50%, -50%) rotate(270deg);
  position: absolute;
  right: 1px;
  top: 50%;
  font-weight: bold;
  color: #fff;
  background-color: #8d5f2f;
  padding: 8px 12px;
  letter-spacing: 5px;
}
#slideout .inner-text {
  width: 95%;
  height: 100%;
  background-color: #000;		
  background-size: cover;
  text-align: center;
  color: #fff;
  padding-top: 30px;
  border-top: 3px solid gold;
  border-right: 3px solid gold;
  border-bottom: 3px solid gold;	
  text-transform: uppercase;
}
#slideout .outer-text p {
  margin-bottom: 0px;
}
#slideout .inner-text p {
  width: 90%;
  margin: 0 auto;
  font-size: 16px;
  padding-bottom: 20px;
  font-weight: 700;
}
#slideout .inner-text img {
  width: 180px;
  text-align: center;
}
#slideout .inner-text a {
  color: #000;
  background-color: #feb620;
  padding: 10px 20px;
  font-weight: 500;
  border: 0;
  font-weight: 600;
  transition: all 0.5s ease;
}
#slideout .inner-text a:hover {
  color: #8c8888;
  border-color: #000;
}
#slideout .banner-code p {
  font-size: 30px;
  color: #e9d11d;
  font-weight: 800;
}

section.related.products ul.products li.product {
  margin-right: 1%;
  width: 24.3%;
}

.choose-parallax {
  background-size: cover !important;
  padding: 65px 0px 80px;
  background-attachment: fixed !important;
}
.wcuCurrencySwitcherWidget select {
  background: transparent !important;
  color: #fff !important;
  border: 0 !important;
  display: none;
}
p.stock.in-stock {
  //background: #387e38;
  color: #7c5b43!important;
  //width: 100px;
  //padding: 5px 10px;
  //text-align: center;
  //border: 2px solid darkorange;
}
.product_cat-coming-soon p.stock.in-stock {
  //background: orange;
}
p.arr_dt {
  background: #cf940f;
  border: 2px solid #565252;
  padding: 5px 15px 5px 15px;
  display: table;
}

a.added_to_cart {
  display: none !important;
}
.woocommerce #respond input#submit.added::after,
.woocommerce a.button.added::after,
.woocommerce button.button.added::after,
.woocommerce input.button.added::after {
  display: none;
}
.button.add_to_cart_button.ajax_add_to_cart.loading:after {
  display: none;
}
.button.add_to_cart_button.ajax_add_to_cart.loading {
  padding-right: 9px;
}

.chosen-container.chosen-container-single {
  width: 80px !important;
}

.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
  display: none;
}

.txt-shadow {
  text-shadow: 3px 3px 10px white, -3px -3px 10px grey, 3px 3px 10px grey;
  color: #000;
}
.dotted-line {
  width: 90px;
  height: 1px;
  border-top: 2px dashed #feb620;
  display: inline-block;
  vertical-align: middle;
}
.heading-star {
  font-size: 30px;
}
/* .about_pg_section {background: white;} */
.about_pg_section p,
.about_pg_section h5 {
  color: #fff;
}
.chose_text h4,
.chose_text p {
  color: white;
}
.chose_text h4 {
  font-size: 20px;
}
.chose_text p {
  font-size: 18px;
}

/* ----------*/
.featuresitm_text h2,
.featuresitm_text h4,
.featuresitm_text p {
  color: white;
}
.fea_itm_pic .arrvl_txt p,
.fea_itm_pic .arrvl_txt h4 {
  color: white;
}
.recognize_area {
  background: white;
}
.fea_itm_pic .arrvl_txt a.button.product_type_simple {
  color: white;
}
.fea_itm_pic .arrvl_txt .tinvwl_add_to_wishlist_button {
  color: orange;
}

/*---- Mega Menu ----*/
.mega-menu-description {
  display: none !important;
}
.navbar {
  width: 100%;
  display: inline-block;
}
.nav_menu {
  width: 100%;
  /* top: 47%; 
    right: 0; 
    position: absolute; */
  margin-bottom: -54px;
  position: relative;
  z-index: 2;
}
.main-head {
  position: relative;
}
ul#mega-menu-menu-1 {
  padding: 12px 100px !important;
  padding-right: 158px !important;
}
.mega_list .textwidget ul {
  margin: 0;
  padding: 0;
}
.mega_list .textwidget ul li {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.mega_list .textwidget ul li a {
  color: #fff;
}
.mega_list .textwidget ul li a:hover {
  color: #d7a327;
}
.list-title {
  float: left;
  font-size: 16px;
}
.view-all-brands {
  float: right;
}
.heading_line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
a.btn.btn-2 {
  background: #8d5f2f;
  color: white;
  border-radius: 0;
  margin: 0 auto;
  display: table;
}
p.cart-empty.woocommerce-info::before {
  color: orange;
}
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: transparent;
  color: #fff;
  border: 2px solid #feb620;
  border-radius: 5px;	
}
div#cookie-law-info-bar {
  background: black !important;
  z-index: 99999999999;
}
div#cookie-law-info-bar {
  color: white !important;
}
.fea_itm_pic .arrvl_txt a.button.product_type_simple {
  padding-left: 15px;
  padding-right: 15px;
}
/* .woocommerce-cart .about_pg_section, .woocommerce-checkout .about_pg_section, .woocommerce-account .about_pg_section,  */
/* .page-id-290 .about_pg_section, .page-template-collection .contactpg_section {background: white !important;} */
.woocommerce td.product-quantity {
  min-width: 175px;
}
.woocommerce td.product-name .wc-item-meta p,
.woocommerce td.product-name .wc-item-meta:last-child,
.woocommerce td.product-name dl.variation p,
.woocommerce td.product-name dl.variation:last-child {
  display: none;
}
.woocommerce-Tabs-panel {
  color: #222;
}
.woocommerce-Tabs-panel p,
.woocommerce-Tabs-panel h3,
.woocommerce-Tabs-panel h4,
.woocommerce-Tabs-panel h2,
.woocommerce-Tabs-panel h1,
.woocommerce-Tabs-panel h5,
.woocommerce-Tabs-panel h6,
.woocommerce-product-details__short-description p {
  color: #222;
}
.woocommerce-account p,
.woocommerce-account h3,
.woocommerce-account h4,
.woocommerce-account h2,
.woocommerce-account h1,
.woocommerce-account h5,
.woocommerce-account h6,
.woocommerce-account {
  color: #fff;
}
.about_pg_section p label {
  color: #fff;
}
.white-bg {
  background: white;
}

.arrivel_slider .arrivls_box {
  background: transparent;
  border: 0;
}
.arrivel_slider .arrivls_box figure {
  height: 254px;
  margin: 0 0 20px;
  background: white;
  padding: 15px;
  border-radius: 17px;
  width: 100%;
}
.arrivel_slider .arrivls_box img {
  object-fit: contain;
}

.wdp_bulk_table_content .wdp_pricing_table_caption {
  display: none;
}
.mega_col_img .mega-menu-item img {
  margin-top: -50px;
}

.woocommerce-billing-fields .form-row label,
.woocommerce-additional-fields__field-wrapper label {
  display: none !important;
}
.woocommerce-info::before {
  color: #f4bc03;
}
.woocommerce-info {
  border-top-color: #f4bc03;
}

/* 06-12-21 */

.up_header {
  padding: 8px 100px 23px;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 {
  visibility: visible;
  text-align: right;
  padding-top: 0px !important;
}
span.woocommerce-Price-amount.amount {
  text-decoration: none;
}
.search-bar {
  position: absolute;
  bottom: -76px;
  z-index: 99;
}
#mega-menu-wrap-menu-1
  #mega-menu-menu-1
  > li.mega-menu-item
  > a.mega-menu-link {
  line-height: 25px;
  height: 15px;
}
.arrivel_slider .arrvl_txt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.arrivel_slider .arrivls_box figure {
  height: 254px;
  margin: 0 auto 20px;
  background: white;
  padding: 15px;
  border-radius: 17px;
}
form.woocommerce-form.woocommerce-form-login.login {
  padding-top: 20px;
  padding-bottom: 0px;
}
form.checkout_coupon.woocommerce-form-coupon {
  padding-top: 0px;
}
form.checkout_pw_gift_card.woocommerce-form-coupon {
  /* margin-top: -20px; */
  margin-bottom: 20px;
}
p.form-row.form-row-first {
  margin-top: -20px;
}
p.form-row.form-row-last {
  margin-top: -20px;
}
ins {
  text-decoration: none !important;
}

/* 07.12.2021 */

.woocommerce form .form-row input.input-text {
  height: 40px !important;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 49% !important;
}
.form-row-last .button {
  height: 40px;
  margin-top: 0 !important;
}
.search-bar label {
  width: 100%;
}
.search-bar .search-field {
  padding-right: 125px;
  padding-left: 50px;
  border-radius: 50px;
}
.search-bar .search-submit {
  position: absolute;
  top: 0;
  right: 13px;
  height: 59px;
  border-radius: 0 50px 50px 0;
  background: #282828;
  color: #fff;
}
.search-bar .search-submit:hover {
  color: #282828;
  background-color: #fff;
  border-color: #fff;
}
.checkout_coupon .button {
  margin-left: 20px !important;
}
.nav-search-area {
  position: relative;
}

.search-results .page-title {
  color: #d7a327;
}

.search-results .abotpg_pic {
  width: 35%;
  flex: 0 0 35%;
}
.search-results .abotpg_pic img {
  height: auto;
  width: 75%;
}
.search-results .post-thumbnail-inner {
  text-align: center;
}
.search-results .about_pg_text {
  width: calc(100% - 35%);
}
.search-results .about_pg_boxex {
  align-items: center;
}
.search-results .about_pg_text p a {
  color: #fff;
}
.search-results .about_pg_text p a:hover {
  padding-right: 20px;
}

/* 08.12.2021 */

.woocommerce-page ul.products li.product .tinv-wraper.tinv-wishlist {
  height: 35px !important;
  line-height: 33px !important;
  padding: 0 4px !important;
  border: 2px solid #fff !important;
  margin-top: 5px;
  margin-left: 8px;
}
.tinv-wraper.tinv-wishlist a {
  line-height: 0;
  padding-top: 2px;
}
.tinv-wraper.tinv-wishlist a:before {
  font-size: 24px !important;
}
.woocommerce-page ul.products li.product .button {
  margin-top: 2px !important;
  height: 40px;
  line-height: 18px;
  border-width: 2px;
}
.tinvwl_add_to_wishlist-text {
  font-size: 0;
  line-height: 0;
}
.tinvwl_add_to_wishlist_button:before {
  margin: 0;
}
.product-template-default .about_pg_section {
  overflow: hidden;
}
.woof_container {
  margin-bottom: 0;
  padding-bottom: 0;
}
.woof_container_inner h4 {
  margin-bottom: 0;
  border-top: 1px solid #ddd;
  border-bottom: none;
}
.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tinv-wraper.tinv-wishlist {
  margin-left: 10px;
}
h2.widget-title {
  font-size: 20px;
  padding: 15px 5px;
}
.woof_list label {
  margin-bottom: 0;
}
.woocommerce-shop .woof_submit_search_form_container {
  margin: 0;
  text-align: center;
  padding: 0 15px;
  justify-content: center;
}
.woof_submit_search_form_container button:nth-child(2) {
  margin-left: 5px !important;
}
.woof_submit_search_form_container button {
  margin: 9px 0 15px 0 !important;
  width: 90%;
}
.woof_container_inner h4 {
  position: relative;
  color: #fff;
}
a.woof_front_toggle {
  font-size: 0;
  line-height: 0;
}
a.woof_front_toggle_closed:before {
  position: absolute;
  content: "+";
  top: 50%;
  right: 15px;
  color: #feb620;
  font-size: 20px;
}
a.woof_front_toggle_opened:before {
  position: absolute;
  content: "-";
  top: 50%;
  right: 15px;
  color: #feb620;
  font-size: 20px;
}
.woof_products_top_panel li span {
  padding-right: 25px;
}
ul.woof_authors li.woof_list {
  display: flex;
  align-items: center;
}
.woof_radio_term_reset_visible {
  padding-top: 0;
  line-height: 0;
}
.woof_container_inner ul {
  margin-bottom: 15px;
}

a#mybtn {
  border: 2px solid #000;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit {
  border: 2px solid #000;
}

/* 09.12.2021 */

.woocommerce-form-login .woocommerce-form__label {
  width: auto !important;
  margin-bottom: 0;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  margin-left: 20px;
}
.woocommerce-form-login p {
  margin-bottom: 15px;
}
.checkout_coupon p {
  margin-bottom: 15px;
}
.woocommerce form.login {
  padding: 0 15px 15px;
  margin: 0 0 15px;
}
.woocommerce form.checkout_coupon {
  padding: 15px 15px;
  margin: 0 0 15px;
}
.woocommerce-info {
  margin-bottom: 15px;
}
form.checkout_pw_gift_card.woocommerce-form-coupon {
  border: 2px solid gold;
  border-radius: 5px;
  padding: 15px 10px;
}
.checkout_pw_gift_card.woocommerce-form-coupon p {
  margin-bottom: 15px;
}
.checkout_pw_gift_card.woocommerce-form-coupon .form-row-first {
  margin-bottom: 5px;
  margin-top: 0;
}
.checkout_pw_gift_card.woocommerce-form-coupon .form-row-last {
  margin-bottom: 5px;
  margin-top: 0;
}
.woocommerce-checkout .woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: transparent !important;
  color: #fff;
  border: 2px solid gold !important;
  border-radius: 5px;
}
/*.woocommerce-checkout
  .woocommerce
  form
  .form-row
  input.input-text::placeholder {
  color: rgba(199, 194, 194, 0.9);
}*/
/*.woocommerce-checkout .woocommerce form .form-row textarea::placeholder {
  color: rgba(199, 194, 194, 0.9);
}*/
.woocommerce-checkout .select2-selection--single {
  background: transparent;
  border-color: lightgray;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #fff;
  background: transparent !important;
  border: 2px solid gold !important;
  border-radius: 5px;
}

.select2-container--default .select2-results__option {
  color: #000;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background: lightgray;
}

.woocommerce-checkout .about_pg_section h3 {
  color: #fff;
}
.woocommerce-checkout .woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-color: #fff;
  color: #fff;
}
.woocommerce-checkout input.input-text.qty.text {
  border-color: #fff;
  color: #fff;
}
#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-top: 2px solid gold;
}

.woocommerce-checkout .button:hover {
  background: #fff !important;
  color: #000 !important;
}
.woocommerce-checkout input.button:hover {
  background: #fff !important;
  color: #000 !important;
}
.woocommerce-cart .button:hover {
  background: #fff !important;
  color: #000 !important;
}
.woocommerce-cart input.button:hover {
  background: #fff !important;
  color: #000 !important;
}
.woocommerce-checkout .about_pg_section p label {
  color: #fff;
}
.woocommerce-checkout .woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
  color: #fff;
  border-color: gold;
}
.woocommerce-checkout table.shop_table td {
  border-color: gold;
  color: #fff;
}
.woocommerce-checkout table.shop_table td.product-name {color: #fff;}
.woocommerce table.shop_table td del {color: #ae7b21;}

.woocommerce-checkout table.shop_table th {
  color: #fff;
  font-size: 16px;	
}
.woocommerce-checkout table.shop_table {
  border-color: gold;
}
.woocommerce-terms-and-conditions-checkbox-text {
  color: #222 !important;
}
.woocommerce-cart table.shop_table {
  border-color: gold;
}
.woocommerce-cart table.shop_table td {
  border-color: gold;
  color: rgba(255, 255, 255, 0.7);
}
.woocommerce-cart table.shop_table th {
  border-color: gold;
  color: rgba(255, 255, 255, 0.7);
}
.woocommerce-cart input.input-text.qty.text {
  border-color: #fff;
  color: #fff;
}
.woocommerce-cart a.button.alt:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}
.logo_holder a {
  display: inline-block;
  position: relative;
  z-index: 4;
}
.woocommerce-cart .about_pg_section {
  background: #000;
}
.woocommerce-checkout .about_pg_section {
  background: #000;
}
.woocommerce-cart .about_pg_section p {
  color: #000;
}
.woocommerce-checkout .about_pg_section p {
  color: #fff;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border-radius: 5px;
  border: 2px solid gold;
}

/*--------------24.12.2021------------*/
.sticky {
  left: -350px !important;
  transition: 0.2s all;
}
.sticky:hover {
  left: 0px !important;
}
/*--------------24.12.2021 end------------*/

/* 11/02/2022 d */

.ft_quick_links ul li {
  position: relative;
  padding-left: 20px;
}
.ft_quick_links ul li span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.widget-area .wcuCurrencySwitcherWidget {
  margin-bottom: 0 !important;
}

.banner_section .slick-prev:hover {
  transform: translate (-10px);
}
.banner_section .slick-next:hover {
  transform: translate (10px);
}
.arrivel_slider .slick-prev:hover {
  transform: translate (-10px);
}
.arrivel_slider .slick-next:hover {
  transform: translate (10px);
}
.feature_pic_slider .slick-prev:hover {
  transform: translate (-10px);
}
.feature_pic_slider .slick-next:hover {
  transform: translate (10px);
}
.latest_slider .slick-prev:hover {
  transform: translate (-10px);
}
.latest_slider .slick-next:hover {
  transform: translate (10px);
}

/* 11/02/2022 d */

/* 23/02/2022 d */

.main-head .ddTitle {
  background-color: transparent !important;
  padding: 2px !important;
}
.main-head .ddArrow {
  display: none !important;
}
.main-head .ddlabel {
  display: none !important;
}
.main-head .ddChild {
  border: none !important;
  background-color: #000 !important;
  overflow-y: inherit !important;
  max-height: inherit !important;
}
.main-head .ddChild li {
  background: #000 !important;
  border-color: #000 !important;
  width: 75% !important;
}
.main-head .ddArrow:hover {
  background-position: inherit;
}
.ddChild li.selected {
  background: #d5d5d5 !important;
}
.ddChild li.selected .ddlabel {
  color: #000 !important;
}
.dd {
  border: none !important;
}
.dd .ddTitle .ddTitleText img {
  max-width: 44px !important;
}
.dd .ddChild li img {
  max-width: 38px !important;
}

/* 23/02/2022 d */

/*30/3/2022*/
.arrvl_txt .tinv-wraper.tinv-wishlist a:hover {
  color: #000000 !important;
}
.tooltip .arrow {
  background-color: transparent;
}
.tooltip .arrow:before,
.tooltip .arrow:before {
  border-top-color: #7f7f7d;
  border-right-color: transparent;
  border-bottom-color: #7f7f7d;
  border-left-color: transparent;
}
.tooltip .tooltip-inner {
  background-color: #7f7f7d;
}
.arrivel_slider .slick-arrow,
.latest_slider .slick-arrow,
.feature_pic_slider .slick-arrow {
  transition: 0.5s;
}
.arrivel_slider .slick-arrow:hover,
.latest_slider .slick-arrow:hover,
.feature_pic_slider .slick-arrow:hover {
  width: 60px;
  height: 60px;
  background-size: 60px;
}
.banner_section .slick-arrow {
  transition: 0.5s;
}
.banner_section .slick-arrow:hover {
  width: 90px;
  height: 90px;
  background-size: 90px;
}
/*30/3/2022*/

/*  17-05-2022 modify start */
.woocommerce-account footer.footer .ft_rate_logo img {
  max-width: 127px;
}
.ft_rate_logo a {
  display: inline-block;
}
/*  17-05-2022 modify end */

/* 06/06/2022 d */

.tinv-wishlist .product-remove button {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: red !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  background: transparent;
  padding: 0;
  outline: none;
  border: 0;
}
.tinv-wishlist .product-remove button:hover {
  color: #fff !important;
  background: red;
}
.tinvwl-to-left .tinvwl-no-full {
  display: none;
}
.tinv-wishlist tfoot .tinvwl-to-right {
  width: 100%;
}
#enquiremodal .modal-header h5 {
  color: #282828;
}
#enquiremodal .modal-body label {
  width: 100%;
  color: #282828;
}
#enquiremodal .modal-body label input[type="text"],
#enquiremodal .modal-body label input[type="email"],
#enquiremodal .modal-body label input[type="number"] {
  background: lightgray;
  color: #000;
}
.tinv-wishlist .cart-empty,
.woocommerce-cart .cart-empty {
  background: transparent;
  border: 2px solid gold;
  color: #fff !important;
  border-radius: 5px;
}
.tinv-wishlist .cart-empty .return-to-shop a {
  margin-top: 0;
}
.woocommerce-account .woocommerce-error {
  border: 3px solid #f00;
  background: transparent;
}
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info {
  background: transparent;
  color: #fff;
  border: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before {
  top: 23px;
}
.woocommerce-account .woocommerce-message .woocommerce-Button,
.woocommerce-account .woocommerce-info .woocommerce-Button,
.woocommerce-cart .cart-empty .button {
  margin-top: 0;
  order: 2;
}
.single-product .stock {
  //display: none;
}
.single-product .glide__arrow--left {
  background: transparent
    url(https://developer.wordpress-developer.us/artincoins/wp-content/uploads/2022/02/Arrows-Left.png)
    no-repeat center center !important;
  background-size: 50px;
  width: 50px;
  height: 50px;
  background-color: none !important;
  box-shadow: none;
  border: 0;
}
.single-product .glide__arrow--right {
  background: transparent
    url(https://developer.wordpress-developer.us/artincoins/wp-content/uploads/2022/02/Arrows-Right.png)
    no-repeat center center !important;
  background-size: 50px;
  width: 50px;
  height: 50px;
  background-color: none !important;
  box-shadow: none;
  border: 0;
}
.single-product .glide__arrow--left img,
.single-product .glide__arrow--right img {
  display: none;
}
.single-product ul.products li.product .tinv-wraper.tinv-wishlist {
  border: 0 !important;
  padding: 0 !important;
  height: auto !important;
  margin-top: 2px !important;
}
.single-product
  ul.products
  li.product
  .tinv-wraper.tinv-wishlist
  .tinvwl_add_to_wishlist_button {
  margin-left: 0 !important;
}
.single-product
  ul.products
  li.product
  .tinv-wraper.tinv-wishlist
  .tinvwl_add_to_wishlist_button:hover {
  background: #000;
}
.single-product ul.products li.product .button {
  //background: #fff !important;
  //color: #000 !important;
  border: 2px solid #000 !important;
}
.single-product ul.products li.product .button:hover {
  background: #000 !important;
  color: #fff !important;
}
.single-product ul li .woocommerce-loop-product__title,
.single-product ul li .woocommerce-loop-product__title {
  color: #000 !important;
  font-weight: 400 !important;
  font-size: 16px !important;
}
.single-product ul li .woocommerce-loop-product__title:hover,
.single-product ul li .woocommerce-loop-product__title:hover {
  color: #d7a327 !important;
}
.page-template-contact .wpcf7-submit {
  border-color: #fff;
}
.page-template-contact .wpcf7-submit:hover {
  background: #fff;
}
.wpcf7 form.spam .wpcf7-response-output {border-color: red; border-radius: 5px;}

.blog_pg_section .discussion-avatar-list li,
.blog_pg_section .comment-list li {
  margin-bottom: 20px;
  padding-left: 20px;
}
.blog_pg_section .discussion-avatar-list,
.blog_pg_section .comment-list {
  padding-left: 20px;
}
.blog_pg_section .discussion-meta,
.blog_pg_section .comment-list .comment-author {
  margin-bottom: 20px;
}
.blog_pg_section .comment-list .comment-author img {
  margin-right: 15px;
  width: 50px;
  height: 50px;
}
.blog_pg_section .comment-metadata {
  margin-bottom: 10px;
  font-size: 14px;
}
.blog_pg_section .comment-awaiting-moderation,
.blog_pg_section .comment-content {
  font-size: 15px;
  margin-bottom: 15px;
}
.blog_pg_section .comment-reply,
.blog_pg_section .form-submit {
  margin-bottom: 20px;
}
.blog_pg_section .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog_pg_section .comment-form-author input[type="text"],
.blog_pg_section .comment-form-email input[type="email"],
.blog_pg_section .comment-form-url input[type="url"] {
  background: lightgray;
  color: #000;
}

/* 06/06/2022 d */

/* 07/06/2022 d */

.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-coupon-toggle
  .woocommerce-info,
.woocommerce-checkout .about_pg_section .woocommerce-form-login-toggle {
  display: none;
}

.woocommerce-checkout .about_pg_section .checkout_coupon,
.woocommerce-checkout .about_pg_section .checkout_pw_gift_card,
.woocommerce-checkout .about_pg_section .woocommerce-form-login {
  display: block !important;
}

.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_pw_gift_card
  input[type="text"],
.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_coupon
  input[type="text"],
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="text"],
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="password"],
.woocommerce-cart table.cart td.actions .coupon .input-text {
  background: lightgray !important;
  color: #000 !important;
  border-color: transparent !important;
}

.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_pw_gift_card
  input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_pw_gift_card
  input[type="text"]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_pw_gift_card
  input[type="text"]::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_pw_gift_card
  input[type="text"]:-moz-placeholder {
  opacity: 1;
  color: #000;
}

.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_coupon
  input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_coupon
  input[type="text"]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_coupon
  input[type="text"]::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce
  .checkout_coupon
  input[type="text"]:-moz-placeholder {
  opacity: 1;
  color: #000;
}

.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="text"]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="text"]::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="text"]:-moz-placeholder {
  opacity: 1;
  color: #000;
}

.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="password"]::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="password"]:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="password"]::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  input[type="password"]:-moz-placeholder {
  opacity: 1;
  color: #000;
}

.woocommerce-cart
  table.cart
  td.actions
  .coupon
  .input-text::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-cart
  table.cart
  td.actions
  .coupon
  .input-text:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-cart table.cart td.actions .coupon .input-text::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-cart table.cart td.actions .coupon .input-text:-moz-placeholder {
  opacity: 1;
  color: #000;
}

.page-template-blog .blog_pg_section {
  background: black;
}

.page-template-blog .blog_pg_section .blog_pst_box,
.page-template-blog .blog_pg_section .in_blogpost_right {
  background: transparent;
  border: 2px solid gold;
}

.page-template-blog .blog_pg_section .blog-box-img {
  max-width: 230px;
  margin: 0 auto 30px auto;
}

.page-template-blog .blog_pg_section h5,
.page-template-blog .blog_pg_section p,
.page-template-blog .blog_pg_section ul li {
  color: #fff;
}

.page-template-blog .blog_pg_section ul li::before {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.page-template-blog .blog_pg_section .readmore_btn {
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
  color: #fff;
  border: 2px solid #fff;
}

.page-template-blog .blog_pg_section .readmore_btn:hover {
  background: #fff;
  color: #000;
}

.page-template-blog .blog_pg_section a:hover h5 {
  color: gold;
}

.page-template-blog .blog_pg_section .blog_right_post {
  border-color: gold;
}

.woocommerce-checkout .place-order .woocommerce-privacy-policy-text p a,
.woocommerce-checkout
  .place-order
  .woocommerce-terms-and-conditions-checkbox-text
  a {
  text-decoration: underline !important;
}

.woocommerce-checkout .about_pg_section .woocommerce-form-login p {
  color: #fff;
}

.woocommerce-checkout .woocommerce-form-login .form-row label {
  display: none;
}

.woocommerce-checkout .about_pg_section .woocommerce-form-login .form-row {
  margin-top: 5px;
}
.woocommerce-checkout
  .about_pg_section
  .woocommerce-form-login
  .form-row
  button[type="submit"] {
  margin: 0;
}
.logo-sec a {
  display: inline-block;
  width: 100%;
}
.logo-sec a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 07/06/2022 d */

/**********09.06.2022**************/
.search-results .about_pg_text h3 {
  color: #fff;
}
.search-results .readmore_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.search-results .link-more {
  display: inline-block;
}

.search-results .arrvl_txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.search-results .arrvl_txt h4 {
  margin-bottom: 0;
  margin-right: 10px;
}
.search-results .arrvl_txt .prod-butL {
  margin-right: 10px;
}
.woocommerce-ordering select.orderby {
  background: url(images/down-arrow-blk.png) no-repeat 95% center lightgrey !important;
  background-size: 14px !important;
  border: none;
  padding: 6px 18px;
  /* //border-radius: 10px; */
  color: #000 !important;
  font-size: 14px !important;
  font-weight: bold;	
  padding-right: 27px;
}
.woocommerce-shop .content-area {
  background: #000;
  padding: 15px;
}

.woocommerce-shop
  a.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-position-after.tinvwl-loop::before {
  color: #d7a327 !important;
  transition: all 0.5s ease;
}
.woocommerce-shop
  a.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-position-after.tinvwl-loop:hover::before {
  color: #fff !important;
}
.woocommerce-shop .widget-area {
  background: #000;
}
.product-categories li a {
  color: #fff;
}
span.count {
  color: #fff;
}
.woocommerce-shop .cat-item::before {
  background: url(images/left-arrow-white.svg) no-repeat center center !important;
  background-size: 12px !important;
}
.woocommerce-shop
  .woof_price_search_container
  .price_slider_amount
  .price_label {
  text-align: left !important;
  color: #fff;
  margin-left: 10px;
  font-size: 13px;
}
.woocommerce-shop
  .woocommerce
  .widget_price_filter
  .price_slider_amount
  .button {
  margin-top: 0;
  margin-right: 5px;
}
.woocommerce-shop .woof_list li label {
  color: #fff;
}
section#block-4 h3 {
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
}
section#block-4 {
  margin-top: 20px;
}
h3.woocommerce-suggested {
  color: #fff;
  margin: 30px 0;
}
.woocommerce-shop span.onsale {
  min-height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
}
.woocommerce-shop ul.products li.product a img {
  height: 220px;
}
.woocommerce-shop .widget_price_filter .price_slider_amount .button {
  margin: 0 5px 5px 0 !important;
  font-size: 12px !important;
}
.woocommerce-shop .widget_price_filter .ui-slider .ui-slider-range {
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
}
.woocommerce-shop .widget_price_filter .ui-slider .ui-slider-handle {
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
}
.woocommerce-shop
  .widget_price_filter
  .price_slider_wrapper
  .ui-widget-content {
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
}
.single-product
  ul.products
  li.product
  .tinv-wraper.tinv-wishlist
  .tinvwl_add_to_wishlist_button {
  margin-left: 0 !important;
  margin-top: 0 !important;
}
.single-product span.onsale {
  min-height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  );
}
.single-product .extra_links li a {
  padding: 10px 5px;
}
.home .prod-butR {
  margin-left: 10px;
}



/*10.6.22*/
.tax-product_cat main#main{background: #000; padding:15px;}
.tax-product_cat .product-categories li:before{background: url(images/left-arrow-white.svg) no-repeat center center !important;
    background-size: 12px !important;}
.tax-product_cat .widget-area {
    background: #000;
}

.tax-product_cat .woof_submit_search_form_container{    justify-content: center; padding: 0 15px;}
.tax-product_cat .woof_list label {
    margin-bottom: 0;
    color: #fff;
}



/* custom checkbox */

.woocommerce-shop .woof_list li label,  .tax-product_cat .woof_list li label{
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}



.woocommerce-shop .woof_list li input[type="checkbox"], .tax-product_cat .woof_list li input[type="checkbox"]{
    visibility: hidden;
    display: none;
}

.woocommerce-shop .woof_list li input[type="checkbox"]+label::before,  .tax-product_cat .woof_list li input[type="checkbox"]+label::before{
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 1px solid #c3af1e;
    background: #c3af1e;
}

.woocommerce-shop input[type="checkbox"]+label::after, .tax-product_cat input[type="checkbox"]+label::after{
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.woocommerce-shop input[type="checkbox"]:not(:checked)+label::after, .tax-product_cat input[type="checkbox"]:not(:checked)+label::after{
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.woocommerce-shop input[type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.tax-product_cat input[type="checkbox"]:checked+label:after{
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}





.tax-product_cat ul.products
  li
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
.tax-product_cat .arrvl_txt
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before {
  
color: #d7a327 !important;
    transition: all 0.5s ease;}
.tax-product_cat ul.products
  li
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:hover:before, .tax-product_cat .arrvl_txt
  .tinv-wishlist
  .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:hover:before{color: #fff !important;}
  .woof_price_search_container .price_slider_amount .price_label {
    text-align: left !important;
    margin-left: 10px;
    color: #fff;
}
.tax-product_cat .widget_price_filter .ui-slider .ui-slider-range {
    background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );
}

.tax-product_cat .widget_price_filter .ui-slider .ui-slider-handle{background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );}
.tax-product_cat .woocommerce .widget_price_filter .ui-slider .ui-slider-handle{background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );}
.tax-product_cat .widget_price_filter .price_slider_amount .button{    margin: 0 5px 5px 0 !important;}
.tax-product_cat ul.products li.product .onsale{min-height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );}

.tax-product_cat .woocommerce-ordering{z-index: 0;}
.tax-product_cat .woof_reset_button_2, .woocommerce-shop .woof_reset_button_2{
    margin-top: 0px;
    font-size: 11px;
    line-height: 15px;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 22px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
    border-radius: 0;
    background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );}

.tax-product_cat .woof_reset_button_2:hover, .woocommerce-shop .woof_reset_button_2:hover{background: #000;
    color: #fff;}

#mega-menu-306-1 .btn.btn-2.view-pro{margin: 0px auto 0px}

.tax-product_cat .woof_products_top_panel_ul li ul li{color:#fff;}




.woocommerce-checkout .woocommerce form .form-row input.input-text, .form-row select, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single .select2-selection__rendered {
    background: lightgray !important;
    color: #000;
    border: 2px solid lightgray !important;
    border-radius: 5px;
}
.woocommerce-checkout .woocommerce form .form-row input::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout .woocommerce form .form-row input:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout .woocommerce form .form-row input::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce-checkout .woocommerce form .form-row input:-moz-placeholder {
  opacity: 1;
  color: #000;
}
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input{color: #000;}

.woocommerce-checkout ul.order_details li, .woocommerce-checkout .woocommerce-customer-details address{color: #fff;}
.woocommerce-checkout ul.order_details{padding-left: 0px;}
.woocommerce-checkout ul.order_details li{margin-bottom: 5px;}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% ) !important;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce #respond input#submit.alt:focus, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
       background: #fff !important;
    color: #000 !important;
}
.woof_products_top_panel, .woocommerce-ordering{    z-index: 1;}


/*
.single-product .entry-summary .tooltip {
  position: relative;
  display: inline-block;
}

.single-product .entry-summary .tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: grey;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: 0px;
  right:0;
}*/

/*.single-product .tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: grey transparent transparent transparent; display: none !important;
}*/




.single-product .entry-summary .tooltip:hover .tooltiptext {
  visibility: visible;
}
ul.extra_links{    display: flex;
    flex-wrap: wrap;}
ul.extra_links li {
    width: 33.3333%; justify-content: space-between; margin:0px; padding: 0px 0.5%;}
ul.extra_links li:last-child{padding-right: 0px;}
#carusel_poduct_sells ul li, #carusel_poduct_related ul li{    margin-right: 12px !important;}

.single-product .entry-summary .tooltip .arrow {
  background-color: #7f7f7d !important; 
}
.single-product .entry-summary .tooltip .arrow:before,
.single-product .entry-summary .tooltip .arrow:before {
  border-top-color: transparent !important;
  border-right-color: #7f7f7d !important;
  border-bottom-color: transparent !important;
  border-left-color: #7f7f7d !important; 
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #7f7f7d;
  border-left-color: transparent;
  border-top-color: transparent;
   border-bottom-color: transparent;
}

/* 16.06.22 */

.product-remove .ftinvwl.ftinvwl-times {
  font-size: 24px;
  transition: .3s all;
}
.tinv-wishlist .product-remove button {
  font-size: 24px;
  width: 24px;
  height: 24px;
}
.tinvwl-table-manage-list .preorder_value {
  font-size: 11px;
}
.wc_payment_methods.payment_methods li p {
  color: #000;
}

/*date 20/6/22 */

.woocommerce-checkout .checkout_pw_gift_card p:last-child{
  float: left;
}
.woocommerce-checkout .woocommerce table.shop_table{
  border-collapse: collapse;
}
.woocommerce-checkout .woocommerce table.shop_table .cart-subtotal td:last-child {
  border-bottom: 2px solid gold;
}
.woocommerce-checkout .rememberme span{
  color: #fff;
}
.woocommerce-checkout #order_review .cart_item .product-name .cqoc_product_name{
    float: left;
}
.woocommerce-checkout  #order_review .cart_item .product-name .ts-product-image{
  float: left;
  width: 80px !important;
  height: 80px  !important;
  margin-right: 10px;
}
#order_review .cart_item .product-name .quantity{
  /*margin-left: auto;*/
  float: right;
}
.woocommerce-checkout  .form-row.form-row-wide.woocommerce-validated label,
.woocommerce-checkout .form-row.form-row-first.woocommerce-validated label,
.woocommerce-checkout .form-row.form-row-last.woocommerce-validated label{
  color: #fff;
}
.woocommerce-cart .quantity{
  display: flex;
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
	border-top: 2px solid gold;
	border-bottom: 2px solid gold;
}

/*support 22/6/2022*/

.single-product .entry-summary button.xoo-wl-action-btn{
  border: 2px solid #000000;
  line-height: normal;
  padding: 12px 15px !important;
  margin-top: 0;
  float: left;

}
.single-product .entry-summary p.price{
  padding-bottom: 22px;
  margin-bottom: 0;
}
.privacy-policy .about_pg_section a{
  text-decoration: underline !important;
}


.privacy-policy .about_pg_section a[data-title]{
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.privacy-policy .about_pg_section a[data-title]:hover:after {
  opacity: 1;
  transition: all 0.2s ease 0.6s;
  visibility: visible;
}
.privacy-policy .about_pg_section a[data-title]:after {
  content: attr(data-title);
  position: absolute;
  padding: 4px 8px 4px 8px;
  color: #fff;
  border-radius: 5px;  
  top: auto;
  bottom:28px;
  font-weight: 400;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  margin-top: 0; 
  background-color: #7f7f7d ;               
  visibility: hidden;
}
.privacy-policy .about_pg_section a[data-title]:before{
  visibility: hidden;
  position: absolute;
  left: 50%;
  z-index: 99999;
  content: '';
  margin-left:0;
  width: 0;
  height: 0;
  top: auto;
  left: 50%;
  transform: translate(-50%,-50%);
  bottom:0;
  border:10px dashed transparent;
  border-top: 10px solid #7f7f7d;
  font-size: inherit;
}
.privacy-policy .about_pg_section a[data-title]:hover:before{

  opacity: 1;
  transition: all 0.2s ease 0.6s;
  visibility: visible;
}



.single-product .tip[data-title]{
  position: relative;
  display: inline-block;
}
.single-product .tip[data-title]:hover:after {
  opacity: 1;
  transition: all 0.2s ease 0.6s;
  visibility: visible;
}
.single-product .tip[data-title]:after {
  content: attr(data-title);
  position: absolute;
  padding: 4px 8px 4px 8px;
  color: #fff;
  border-radius: 5px;  
  top: auto;
  bottom: 30px;
  font-weight: 400;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  margin-top: 0;
  background-color: #7f7f7d ;               
  visibility: hidden;
}
.single-product .tip[data-title]:before{
  visibility: hidden;
  position: absolute;
  left: 50%;
  z-index: 99999;
  content: '';
  margin-left:0;
  width: 0;
  height: 0;
  top: auto;
  left: 50%;
  transform: translate(-50%,-50%);
  bottom:0;
  border:10px dashed transparent;
  border-top: 10px solid #7f7f7d;
  font-size: inherit;
}
.single-product .tip[data-title]:hover:before{

  opacity: 1;
  transition: all 0.2s ease 0.6s;
  visibility: visible;
}

.single-post .comments-area .comments-title{
  color:#d7a327;
}
/*support 22/6/2022*/

/*support 06/07/2022*/
.shop_table tr.shipping{
	position: relative;
	top: inherit;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  border-radius: 8px;
  padding: 0 13px;
}
.select2-container--default .select2-selection--single{
	border-radius: 8px !important;
}
.woocommerce form .form-row {
  padding: 3px 0;
}
.select2-container--open .select2-dropdown {
  top: -25px;
}
/*support end 06/07/2022*/


/* 22/07/2022 d */

.woocommerce span.onsale{ z-index: 1 !important; }

.woocommerce-error{ padding: 15px 15px 15px 50px !important; }

.woocommerce-message .wc-forward,
.woocommerce-error .wc-forward{ margin-top: 0 !important; }

.woocommerce-message{ line-height: 2 !important; }

.single-product .waiting-list,
.single-product  .prod-butR{ display: inline-block; }

.single-product .waiting-list .button{ margin-top: 0; padding: 10.5px 15px !important; }

.single-product  .prod-butR .tinvwl-icon-heart{ 
  position: relative;
}

/* 22/07/2022 d */

/* New CSS */

form#mc4wp-form-1 {
  border: 2px solid #feb620;
  padding: 30px;
  border-radius: 5px;
  max-width: 700px;
  margin: 0 auto;
}

form#mc4wp-form-1 label {
  font-size: 18px;
  line-height: 22px;
  color: #f4bc03;
  width: 100%;
}

form#mc4wp-form-1 input[type="text"], form#mc4wp-form-1 input[type="email"], form#mc4wp-form-1 input[type="url"], form#mc4wp-form-1 input[type="password"], form#mc4wp-form-1 input[type="search"], form#mc4wp-form-1 input[type="number"], form#mc4wp-form-1 input[type="tel"]{
  width: 100%;
}

span.subsc_butn {
  width: 100%;
  margin: 16px 0px 25px 0px;
  display: block;
}

.subsc_butn a{
  background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );
  color: #fff;
  height: 41px;
  padding: 7px 30px;
  border: 2px solid #fff;
  text-transform: uppercase;
  cursor: pointer;
  max-width: 115px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
}

.subsc_butn a:hover {
  background-image: none;
  background-color: #cf940f;
  color: #000;

}

.mc4wp-alert.mc4wp-success p {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

.woocommerce ul.products li.product .prod-butL{
  height: auto;
  display: block;
}
.woocommerce ul.products li.product .prod-butR{
  display: table;
  margin-left: auto;
}

/* 09.08.22 */

.product-name div{font-size: 13px !important;}
.wc-review-order-table,
.woocommerce-cart-form {
  border-radius: 5px;
  border: 2px solid gold;
  margin-bottom: 24px;
}
.woocommerce-checkout .wc-review-order-table  table.shop_table,
.woocommerce .woocommerce-cart-form  table.shop_table {border: none;margin-bottom: 0;}
.woocommerce table.shop_table td {padding: 13px 12px;}
.woocommerce-checkout-review-order-table .preorder_value{display: none;}
/*-------- Responsive --------*/


@media (min-width: 1025px) {
  /* navbar*/
  .clickD {
    display: none;
  }
  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media (max-width: 1199px) {
  .up_header,
  .main_hdr {
    width: 100%;
    padding: 14px 50px;
  }
  .navbar-nav > li > a {
    font-size: 14px;
    line-height: 20px;
  }
  .navbar-nav > li {
    margin: 0 12px;
    padding: 10px 0;
  }
  .arrivls_box figure {
    width: 165px;
    height: 168px;
  }
  .luxery_box h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .big_fight_area .feture_box {
    padding: 75px 93px;
  }
  .features-sections:before {
    width: 339px;
    background-size: 339px;
    height: 707px;
  }
  .letst_text ul li {
    margin: 0px 3px;
    font-size: 13px;
  }
  .letst_text h4 {
    font-size: 14px;
    line-height: 20px;
  }
  .letst_text p {
    font-size: 13px;
  }
  .features-sections:after {
    width: 368px;
    background-size: 368px !important;
  }
  .choose_bx {
    min-height: 237px;
  }
  .up_foooter h4 {
    font-size: 22px;
    font-weight: 600;
  }
  .ft_menu_links ul li a {
    font-size: 13px;
    line-height: 16px;
    color: #fff;
  }
  .down_footer ul li img {
    width: 25px;
  }
  .abt_brordcst_box {
    min-height: 369px;
  }

  section.related.products ul.products li.product {
    margin-right: 1%;
    width: 33.3%;
  }

  /* 07.12.2021 */

  .up_header {
    padding: 8px 15px 23px;
  }
  .main_hdr {
    padding: 14px 0;
  }
  .logo_holder a {
    display: inline-block;
    width: 260px;
  }
  ul#mega-menu-menu-1 {
    padding: 12px 15px !important;
    padding-right: 73px !important;
  }
  .main_hdr .container-fluid {
    padding: 0 15px;
  }

  /* 08.12.2021 */

  .woof_container_inner h4 {
    font-size: 18px;
  }
  .subsc_butn a{
    display: inline-block;
    max-width: inherit;
    width: auto;
    height: auto;
  }
  span.subsc_butn{
    margin-top: -2px;
  }
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    cursor: pointer;
    display: block;
    background-size: 10px;
  }
  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }
  .sub-menu.show {
    display: block;
  }
}

@media (max-width: 991px) {
  /* navbar*/
  .navbar-nav .clickD {
    top: 6px;
    right: 10px;
  }
  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
  }
  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }
  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }
  .navbar-nav > li > a {
    padding: 6px 10px;
    display: inline-block;
    width: 100%;
  }
  .sub-menu > li > a {
    padding-left: 20px;
  }
  .sub-menu .sub-menu > li > a {
    padding-left: 40px;
  }
  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }
  .navbar-toggler {
    padding: 0px;
    width: 25px;
    outline: none;
    border: 0px;
  }
  .navbar-toggler:focus {
    outline: 0px;
  }
  .luxery_box {
    padding: 30px;
  }
  .luxery_box h4 {
    font-size: 18px;
    line-height: 26px;
  }
  h1 {
    font-size: 41px;
  }
  h1 span {
    font-size: 50px;
    line-height: 63px;
  }
  .new_arrivalssection:before {
    width: 307px;
    background-size: 307px !important;
    height: 245px;
  }
  .new_arrivalssection:after {
    width: 307px;
    background-size: 307px !important;
    height: 245px;
  }
  html,
  body {
    overflow-x: hidden;
  }
  .search_box a {
    width: 35px;
    height: 35px;
  }
  .new_page ul {
    padding-left: 0px;
  }
  .new_page ul li {
    display: inline-block;
    margin-left: 11px;
  }
  .right_hdr {
    padding-right: 40px;
  }
  .up_header,
  .main_hdr {
    width: 100%;
    padding: 14px 15px;
  }

  .right_hdr {
    padding-right: 0px;
  }
  .navbar-toggler {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav_menu .cmn_s,
  .nav_menu .nw_ar,
  .nav_menu .hot_s {
    display: block;
  }
  .new_page {
    display: none;
  }
  .search_box {
    right: 0px;
  }
  .big_fight_area .feture_box {
    padding: 45px 33px 45px 50px;
  }
  h2 {
    color: gold !important;
    font-size: 29px;
    line-height: 37px;
    margin-bottom: 25px;
  }
  .feture_box ul li {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 9px;
  }

  .luxery_coins_section {
    min-height: 645px;
  }
  .feature_pic_slider .add_to_wishlist,
  .feature_pic_slider .add_tocrt {
    font-size: 10px;
  }
  .features-sections:before {
    width: 295px;
    background-size: 295px;
    height: 671px;
  }
  .choose_bx {
    min-height: auto;
    margin-bottom: 25px;
  }
  .recog_hdng h2 {
    font-size: 23px;
  }
  .recog_box img {
    margin: auto;
    width: 90px;
  }
  .up_foooter h4 {
    font-size: 17px;
    font-weight: 600;
  }
  .ft_quick_links ul li,
  .ft_quick_links ul li a {
    color: #fff;
    font-size: 13px;
  }
  .features-sections:before {
    width: 205px;
    background-size: 205px;
    height: 671px;
  }
  .featuresitm_text {
    padding-left: 20px;
  }
  .down_footer ul {
    margin-top: 8px;
    text-align: center;
  }
  .mid_footer {
    padding-bottom: 28px;
  }
  .languge_box {
    position: absolute;
    right: 15px;
    top: 16px;
  }
  .navbar-collapse {
    position: absolute;
    top: 24px;
    left: 0px;
    width: 100%;
    background: #fff;
    z-index: 9;
  }
  .navbar {
    position: static;
  }
  .navbar-nav > li > a {
    color: #000;
  }
  .clickD {
    transition: 0.3s;
  }
  .clickD.toggled {
    transform: rotate(180deg);
  }
  .navbar-nav > li.current-menu-item > a,
  .navbar-nav > li > a:hover,
  .navbar-nav > li.menu-item-has-children:hover > a {
    background: #d7a327;
    color: #fff;
  }
  .navbar-nav > li.menu-item-has-children:after {
    display: none;
  }
  .navbar-nav > li.current-menu-item > a {
    border-bottom: 1px solid #fff;
  }
  .innnr_txt h1 {
    color: #fff;
    font-size: 26px;
    line-height: 22px;
  }
  .abotpg_pic {
    position: relative;
    width: 264px;
    margin: 0 auto;
  }

  .about_pg_text {
    width: 100%;
    margin-left: auto;
    padding-left: 0;
    padding-top: 25px;
    text-align: center;
  }
  .abt_brordcst_box {
    min-height: auto;
  }
  .abt_brdcst {
    margin-bottom: 15px;
  }
  .abt_brdcst:last-child {
    margin-bottom: 0px;
  }
  .about_pg_bradcast {
    margin-top: 46px;
  }
  .col-lg-8.blog_postleft {
    order: 1;
    padding-top: 27px;
  }
  .col-lg-4.blog_postright {
    order: 2;
  }
  .contactpg_form_box {
    padding-top: 25px;
  }
  .in_left_conbx p br {
    display: none;
  }
  .contactpg_section:after {
    width: 254px;
    height: 245px;
    background-size: 254px !important;
  }

  .accordian_area .set > a {
    display: block;
    padding: 22px 15px;
  }
  .accordian_area .set > a {
    font-size: 15px;
  }
  .breadcamp ul {
    margin-bottom: 0px;
  }
  .blog_pg_section:after,
  .faq_pg_section:after {
    width: 350px;
    height: 378px;
    background-size: 350px !important;
  }
  .footer h4 {
    font-size: 17px;
    font-weight: 600;
  }

  section.related.products ul.products li.product {
    margin-right: 2%;
    width: 48%;
  }

  /* 07.12.2021 */

  .search-results .abotpg_pic {
    width: 50%;
    flex: 0 0 50%;
  }
  .search-results .about_pg_text {
    width: calc(100% - 50%);
    text-align: left;
    padding-left: 25px;
  }
  .login_links ul {
    text-align: center;
    padding-left: 0;
  }
  .social_links ul {
    text-align: center;
  }
  .up_header {
    padding: 8px 100px;
  }
  #mega-menu-wrap-menu-1
    .mega-menu-toggle
    .mega-toggle-blocks-right
    .mega-toggle-block {
    margin-top: 6px;
  }
  .main_hdr .container-fluid {
    padding: 0 65px;
    padding-left: 0;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 {
    position: absolute !important;
    width: 100% !important;
    padding-left: 15px !important;
    z-index: 4;
  }

  /* 08.12.2021 */

  h2.widget-title {
    font-size: 18px;
    padding: 5px 10px;
  }
  .woof_container_inner h4 {
    font-size: 16px;
  }
  /*support 22/6/2022*/
  .single-product .entry-summary button.xoo-wl-action-btn{
    width: auto;
  }
    /*support 22/6/2022*/

/* 08.12.2021 */
/*support 06/07/2022*/

.woocommerce-cart .quantity {
  display: flex;
  justify-content: end;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: left;
}
.shipping-calculator-form p{
	text-align:center;
}
	
}
@media (min-width: 769px) and (max-width: 991px) {
  .woocommerce-page ul.products.columns-3 li.product {
    width: 47.75% !important;
  }
  .woocommerce-page ul.products.columns-3 li.product:nth-child(2n) {
    margin-right: 0 !important;
  }
  .woocommerce-page ul.products li.last {
    margin-right: 3.8%;
  }
  .woocommerce-page ul.products li.first {
    clear: initial;
  }
}

@media (max-width: 767px) {
  #user_links .wcuCurrencySwitcherWidget img.fnone {
    width: 30px !important;
  }
  .featuresitm_text .cart-wish {
    justify-content: center;
  }
  .featuresitm_text.arrvl_txt {
    padding: 0px 10px;
  }
  .featuresitm_text.arrvl_txt {
    padding-top: 0px;
  }
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .navbar-toggler {
    position: absolute;
    right: 0px;
    top: -32px;
  }
  .navbar-collapse {
    position: absolute;
    top: 12px;
  }
  .logo_holder {
    width: 166px;
  }
  h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .banner_section .slick-prev {
  }
  .arrvl_txt .add_tocrt {
    padding: 5px 7px 5px 25px;
    margin-bottom: 9px;
  }
  .banner_section .slick-prev {
    width: 40px;
    height: 58px;
  }
  .banner_section .slick-next {
    width: 40px;
    height: 58px;
  }
  .play_botton {
    width: 86px;
    height: 86px;
  }
  .arrivel_slider_area h2 {
    margin-bottom: 39px;
  }
  .luxery_box figure {
    width: 130px;
    margin: 0 auto;
  }
  .luxery_slider .slick-center .luxery_box {
    transform: scale(1);
  }
  .luxery_box h4 {
    font-size: 21px;
    line-height: 26px;
  }
  .luxery_coins_section {
    min-height: 468px;
  }
  .luxery_coins_section {
    padding: 19px 0px;
  }
  .features_pic img {
    transform: scale(1);
    width: 100%;
  }

  .big_fight_area {
    transform: skew(0deg);
    margin: 0px 0px;
  }
  .big_fight_area .feture_box {
    transform: skew(0deg);
  }
  .feature_pic_slider .add_to_wishlist,
  .feature_pic_slider .add_tocrt {
    font-size: 13px;
  }
  .featuresitm_text {
    padding-left: 0px;
    padding-top: 42px;
    text-align: center;
  }
  .recog_boxes_slider.slick-initialized.slick-slider {
    margin-top: 31px;
  }

  .latest_news_section h2 {
    text-align: center;
  }
  .ft_bx {
    margin-bottom: 20px;
  }
  .ft_bx:last-child {
    margin-bottom: 25px;
  }
  .ft_menu_links ul {
    margin-bottom: 0px;
  }
  .up_foooter h4 {
    margin-bottom: 10px;
  }
  .online_chats {
    left: 0;
  }
  .ft_rate_logo {
    margin: 0px 25px;
    width: 126px;
  }
  .tes_box:last-child {
    margin-bottom: 0px;
  }
  /*.innnr_txt {
    position: static;
    transform: inherit;
    background: #282828;
    padding: 20px 0px;
  }*/
  .in_md_ft {
    justify-content: center;
  }
  .luxery_slider .slick-prev {
    left: -7px;
  }
  .luxery_slider .slick-next {
    right: -7px;
  }
  .down_footer ul li img {
    width: 21px;
  }
  .ft_post_bx {
    margin-top: 25px;
  }
  .navbar-toggler {
    position: absolute;
    right: 15px;
    top: -21px;
  }
  .feature_pic_slider .slick-prev {
    left: -8px;
  }
  .feature_pic_slider .slick-next {
    right: -8px;
  }
  .latest_slider .slick-prev {
    left: 7px;
  }
  .latest_slider .slick-next {
    right: 7px;
  }

  /*------------*/
  .col-md-4.tes_box {
    max-width: 98%;
    margin: 0 1% 40px;
  }
  #woocommerce_product_categories-3 {
    display: block;
  }
  #woocommerce_product_categories-2 {
    display: none;
  }
  #woocommerce_product_categories-3
    .select2-container--default
    .select2-selection--single {
    border: 1px solid #000;
    border-radius: 0;
    height: 40px;
  }
  #woocommerce_product_categories-3
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 40px;
  }
  #woocommerce_product_categories-3
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 7px;
  }
  #woocommerce_product_categories-3 {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  #woocommerce_product_categories-3 .select2-container {
    width: 96% !important;
    margin: 5% 2%;
  }
  select.orderby {
    display: none;
  }
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1,
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    max-width: 100%;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    margin-top: 20px;
  }
  .woocommerce-account .addresses .title h3 {
    font-size: 1em;
  }
  .woocommerce-account .woocommerce-MyAccount-content p,
  .woocommerce-account .woocommerce-MyAccount-content address {
    font-size: 12px;
  }

  ul.extra_links li {
    width: 100%;
    margin: 0 0 10px;
  }

  section.related.products ul.products li.product {
    margin-right: 0;
    width: 100%;
  }

  .dotted-line {
    display: none;
  }
  .heading-star {
    display: none;
  }

  /* 07.12.2021 */

  p.form-row.form-row-first,
  p.form-row.form-row-last {
    margin-top: 0px !important;
  }

  #mega-menu-wrap-menu-1
    .mega-menu-toggle
    .mega-toggle-blocks-right
    .mega-toggle-block {
    margin-right: 0px !important;
    margin-top: 15px;
  }
  .main_hdr {
    padding: 10px 30px !important;
  }
  .nav_menu {
    padding: 5px 0;
    /* z-index: 11; */
  }
  .checkout_coupon .button {
    margin-left: 0px !important;
  }

  /* 08.12.2021 */

  #woocommerce_product_categories-3 {
    padding-bottom: 0;
  }
  h2.widget-title {
    font-size: 18px;
    padding: 15px 10px;
  }
  /*30/3/2022*/
  .banner_section .slick-arrow:hover {
    width: 50px;
    height: 50px;
    background-size: 50px;
  }
  .banner_section .slick-arrow {
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
  /*30/3/2022*/

  .fter_box{
    margin-bottom: 20px;
  }

  .subsc_butn a{
    padding: 8px 26px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 24px;
    line-height: 30px;
  }
  h1 span {
    font-size: 31px;
    line-height: 49px;
  }
  .arrivel_slider .slick-prev {
    left: 0;
  }
  .arrivel_slider .slick-next {
    right: 0px;
  }
  .arrivel_slider_area {
    margin-bottom: 30px;
  }
  .arrivel_slider .arrivls_box figure {
   width: 80%;
  }
  .arrivel_slider_area h2 {
    margin-bottom: 27px;
  }
  .luxery_box figure {
    width: 167px;
    margin: 0 auto;
  }
  .cmn-gap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .luxery_slider .slick-list {
    padding: 44px 0px !important;
  }
  .luxery_coins_section {
    min-height: 410px;
  }
  .big_fight_area .feture_box {
    padding: 45px 33px 45px 33px;
  }
  .recognize_area {
    margin-top: 70px;
  }
  .recog_hdng h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .online_chats img {
    margin-right: 6px;
    width: 20px;
  }
  .search_box {
    right: 38px;
  }
  .latest_slider .slick-prev {
    left: 0;
  }
  .latest_slider .slick-next {
    right: 0;
  }
  .login_links img {
    width: 16px !important;
  }
  .login_links ul li.langu img {
    width: 25px !important;
  }
  .up_header,
  .main_hdr {
    width: 100%;
    padding: 14px 15px;
  }
  .choose_section h2 {
    text-align: center;
  }
  .choose_bx {
    transform: skew(0deg);
  }
  .inchoose {
    transform: skew(0deg);
  }
  .up_header,
  .main_hdr {
    width: 100%;
    padding: 10px 0px !important;
  }
  .navbar-toggler {
    right: 15px;
  }
  .search_box {
    right: 45px;
  }

  .breadcamp ul {
    padding-left: 0px;
    margin-bottom: 0px;
  }

  .map_area iframe {
    height: 300px;
  }
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  textarea,
  .form-control,
  select {
    height: 50px;
  }
  textarea {
    height: 120px;
  }
  .in_left_conbx h3 br {
    display: none;
  }
  .in_left_conbx {
    text-align: center;
  }
  .accordian_area .set > a {
    display: block;
    padding: 17px 15px;
  }
  .accordian_area .set:last-child {
    margin-bottom: 0px;
  }
  .ft_post_bx {
    margin-top: 25px;
  }
  .ft_pst img {
    width: 100%;
  }
  .ft_pst {
    margin-bottom: 30px;
  }
  .play_botton {
    width: 76px;
    height: 76px;
    top: 38%;
  }
  .luxery_box {
    min-height: 300px;
  }
  .feature_pic_slider .slick-prev {
    left: -8px;
  }
  .feature_pic_slider .slick-next {
    right: -8px;
  }
  .latest_slider .slick-prev {
    left: 7px;
  }
  .latest_slider .slick-next {
    right: 7px;
  }

  /* 07.12.2021 */

  .search-bar .search-submit {
    height: 50px;
  }
  .main_hdr .container-fluid {
    max-width: 540px;
    padding: 0 15px !important;
  }
  .search-bar .search-field {
    padding-left: 20px;
  }
  .about_pg_boxex {
    display: block;
    flex-wrap: wrap;
  }
  .search-results .abotpg_pic {
    flex: 0 0 100%;
    width: 100%;
  }
  .search-results .about_pg_text {
    width: 100%;
  }
  #mega-menu-wrap-menu-1
    .mega-menu-toggle
    .mega-toggle-blocks-right
    .mega-toggle-block {
    margin-right: 15px !important;
  }

  /* 09.12.2021 */

  .woocommerce-checkout form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    width: 100% !important;
    margin-bottom: 5px;
  }
}

@media (max-width: 479px) {
  .ft_form_box .form_box,
  .ft_form_box .form_box_submit {
    height: 54px;
  }
  .ft_form_box input[type="submit"] {
    height: 54px;
  }
  .choose_section {
    margin-top: 25px;
  }
  .featuresitm_text h4 {
    margin-bottom: 12px;
  }
	
  .down_footer p {
    color: #fff;
    font-size: 12px;
  }
  .online_chats {
    min-height: 32px;
    padding: 4px 10px;
  }
  .up_foooter {
    padding: 50px 0px 11px;
    position: relative;
  }
  .inchoose {
    display: block;
  }
  .inchoose .chose_text {
    width: 100%;
  }
  .chose_pic {
    width: 60px;
    width: 100%;
    margin: 0 auto;
  }
  .chose_text {
    text-align: center;
    padding-left: 0px;
  }
  h2 {
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 25px;
  }
  .big_fight_area .feture_box {
    padding: 28px 33px 29px 33px;
  }
  .feature_item_area {
    margin-top: 57px;
  }
  .feature_pic_slider .add_tocrt {
    margin-bottom: 10px;
  }
  .banner_text {
    position: static;

    transform: inherit;
  }
  .banner_text {
    background: #000;
    padding: 25px 0px;
  }
  .banner_text h1 {
    color: #fff;
  }
  .login_links ul {
    padding-left: 0px;
  }
  .play_botton {
    top: 50%;
  }
  .play_botton {
    width: 76px;
    height: 76px;
    top: 38%;
  }
  .new_arrivalssection:before {
    width: 120px;
    background-size: 120px !important;
    height: 98px;
  }
  .big_fight_area .feture_box {
    padding: 28px 15px 29px 15px;
  }
  .abt_brordcst_box ul li {
    margin-bottom: 6px;
  }
  .about_pg_text h6 a {
    position: relative;
    font-size: 15px;
  }
  .innnr_txt h1 {
    color: #fff;
    font-size: 22px;
    line-height: 22px;
  }
  .innnr_txt h1 {
    color: #fff;
    font-size: 22px;
    line-height: 28px;
  }
  .breadcamp ul li,
  .breadcamp ul li a {
    font-size: 12px;
  }
  .login_links li {
    margin-left: 7px;
  }
  .testimo_box h6 {
    margin-bottom: 20px;
  }
  .blog_postright h3 {
    margin-bottom: 0px;
    padding: 11px 11px;
    font-size: 23px;
  }
  .blog_right_post {
    padding: 22px 11px;
    text-align: center;
  }
  .in_left_conbx {
    padding: 15px;
  }
  .in_left_conbx h3 br {
    display: none;
  }
  .ft_pst h4 {
    margin-bottom: 15px;
  }
  .feature_pic_slider .slick-prev {
    left: -8px;
  }
  .feature_pic_slider .slick-next {
    right: -8px;
  }
  .latest_slider .slick-prev {
    left: 7px;
  }
  .latest_slider .slick-next {
    right: 7px;
  }

  /*-----------------*/
  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    font-size: 14px;
  }
  .woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 152px;
  }
  .woocommerce-additional-fields h3,
  .woocommerce-billing-fields h3,
  h3#order_review_heading {
    font-size: 22px;
    margin: 10px 0;
  }
  .woocommerce form .form-row .input-text,
  .woocommerce-page form .form-row .input-text,
  .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    font-size: 12px;
  }
  .woocommerce-privacy-policy-text p,
  .woocommerce form .form-row label.checkbox,
  .woocommerce-page form .form-row label.checkbox {
    font-size: 12px;
  }
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    width: 100%;
  }
  .woocommerce-product-gallery {
    display: inline-block;
  }
  .woocommerce div.product div.images .flex-control-thumbs li {
    width: 60px;
    margin: 5px 5px 5px 0;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    font-size: 10px;
    padding: 0 5px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: 400;
  }
  .woocommerce div.product .product_title {
    font-size: 1.5em;
  }
  .woocommerce div.product p.price {
    font-size: 1.25em;
  }

  /*----------*/
  .social_links li img {
    width: 12px;
  }
  .nav_menu {
    top: 70%;
  }
  ul#mega-menu-menu-1 {
    padding: 12px 10px !important;
  }
}

/*04-11-21 Sg*/
.woocommerce-checkout #billing_offers_field {
  display: flex;
  width: 100%;
}
.woocommerce-checkout #billing_offers_field .woocommerce-input-wrapper {
  width: 20px !important;
  position: relative;
  height: 20px;
}
.woocommerce-checkout #billing_offers_field label {
  width: max-content;
  padding-left: 10px;
  display: block !important;
  margin: 0;
  order: 2;
}
.woocommerce-checkout #billing_offers_field {
  align-items: center;
  padding-top: 5px !important;
  padding-bottom: 0;
}
#order_review .cart_item .product-name {
  /*display: flex;*/
  /*align-items: center;*/
  /*flex-wrap: wrap;*/
}
#order_review .cart_item .product-name .ts-product-image {
  margin-left: 10px;
  order: 2;
}
#order_review .cart_item .product-name .remove {
  order: 1;
}
.woocommerce-checkout #billing_offers_field .woocommerce-input-wrapper input {
  display: none;
}
#order_review .cart_item .product-name .cqoc_product_name {
  order: 3;
  padding-right: 25px;
  max-width: 285px;
  font-size: 17px;
  line-height: 1.4;
  color: #fff;
  margin-left: 8px;	
}
.woocommerce-checkout #billing_offers_field .woocommerce-input-wrapper .radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 0;
  padding: 0;
  border: 1px solid #feb620;
}
.woocommerce-checkout
  #billing_offers_field
  .woocommerce-input-wrapper
  input:checked
  ~ .radio {
  background-color: #feb620;
}
.woocommerce-checkout
  #billing_offers_field
  .woocommerce-input-wrapper
  .radio::after {
  content: "";
  left: 6px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
}
.woocommerce-checkout
  #billing_offers_field
  .woocommerce-input-wrapper
  input:checked
  ~ .radio::after {
  display: block;
}

#order_review .cart_item .product-name .quantity {
  order: 4;
}

@media (max-width: 479px) {
  .woocommerce-checkout #billing_offers_field label {
    font-size: 15px;
  }
   #slideout {
	 top: 40%;
  }
  /* 07.12.2021 */

  .logo_holder a {
    display: inline-block;
    width: 200px;
  }

  #mega-menu-wrap-menu-1
    .mega-menu-toggle
    .mega-toggle-blocks-right
    .mega-toggle-block {
    margin-right: 10px !important;
    margin-top: 5px;
  }
	/*support 06/07/2022*/
	.woocommerce-page table.shop_table_responsive tr td {
  		text-align: left !important;
	}
	.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
  		margin-right: 10px;
	}
}

@media (max-width: 578px) {
  .search-bar {
    position: absolute;
    bottom: -66px;
    z-index: 99;
  }
  p.form-row.form-row-first {
    margin-top: -92px;
  }
}
/* @media (max-width: 575px){
.search_box {
    right: 61px!important;
}
} */

@media (min-width: 1200px) {
  .up_header {
    margin-top: -25px;
  }

  .main_hdr {
    margin-top: -28px;
  }
  .right_hdr {
    margin-top: -20px;
  }
}

/********** 16/12/2021 **********/

header .search-bar {
  bottom: -65px;
}
header .search-form input[type="search"],
header .search-bar .search-field {
  border: 0;
  height: 46px;
}
header .search-bar .search-submit {
  height: 46px;
}
.big_fight_area {
  text-align: center;
}
.big_fight_area figure {
  margin-top: 1rem;
}
.woocommerce div.product form.cart .button {
  background-image: linear-gradient(
    120deg,
    #956114,
    #c3af1e,
    #a37818,
    #4a1c01 85%
  ) !important;
  border: 2px solid #000 !important;
  height: 40px !important;
  transition-duration: 0.7s !important;
  -webkit-transition-duration: 0.7s !important;
}
.woocommerce div.product form.cart .button:hover {
  background: #000 !important;
  color: #fff !important;
}

.a2a_svg svg,
.a2a_svg {
  display: none !important;
}
.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service) > span {
  width: auto !important;
}
.a2a_kit .a2a_label {
  position: relative !important;
  width: auto !important;
  clip-path: none;
  overflow: inherit;
  font-size: 16px;
  color: #fff;
  line-height: 20px !important;
}
.a2a_button_facebook {
  background-color: rgb(24, 119, 242) !important;
  border-radius: 5px;
  padding: 0 15px 0 45px !important;
  position: relative;
  line-height: 1.2;
  margin: 10px 10px 0 0;
}
.a2a_button_facebook:before {
  content: "\f09a";
  font-family: FontAwesome;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  border-right: 1px solid #fff;
  padding-right: 10px;
}
.a2a_button_twitter {
  background-color: #5da9dd !important;
  margin: 0 10px;
  border-radius: 5px;
  padding: 0 15px 0 50px !important;
  position: relative;
  margin: 10px 10px 0 0;
}
.a2a_button_twitter:before {
  content: "\f099";
  font-family: FontAwesome;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  border-right: 1px solid #fff;
  padding-right: 10px;
}
.a2a_button_reddit {
  background-color: #ff4500 !important;
  border-radius: 5px;
  padding: 0 15px 0 55px !important;
  position: relative;
  margin: 10px 10px 0 0;
}
.a2a_button_reddit:before {
  content: "\f281";
  font-family: FontAwesome;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  border-right: 1px solid #fff;
  padding-right: 10px;
}
.a2a_button_pinterest {
  background-color: #b7081b !important;
  border-radius: 5px;
  padding: 0 15px 0 50px !important;
  position: relative;
  margin: 10px 10px 0 0;
}
.a2a_button_pinterest:before {
  content: "\f231";
  font-family: FontAwesome;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 20px;
  border-right: 1px solid #fff;
  padding-right: 10px;
}

/*single product images slider */

.product_gallery .a3-dgallery .a3dg-nav .a3dg-forward, .product_gallery .a3-dgallery .a3dg-nav .a3dg-back {
   border: 0 !important;
}
.a3-dgallery  .fa-angle-right, .a3-dgallery .fa-angle-left {font-weight: 900;}

/* END single product images slider */

.addtoany_list.a2a_kit_size_32 a {
  /* min-width: 140px; */
}
.single-product .tinv-wishlist-clear {
  display: none;
}
.single-product .tinvwl_add_to_wishlist_button {
  margin-top: 0 !important;
  padding: 6px !important;
  text-align: center;
  border: 2px solid #000;
  margin-left: 5px !important;
  background: #cf940f;
  color: #fff;
}
.single-product .tinvwl_add_to_wishlist_button:before {
  margin-right: 0 !important;
}
.woocommerce form .form-row.mailchimp-newsletter .input-checkbox {
  display: inline;
  margin: 7px 8px 0 0;
  text-align: center;
  vertical-align: middle;
  width: 20px;
  float: left;
}
.woocommerce form .form-row.mailchimp-newsletter label.inline {
  display: inline;
  float: left;
  width: 90%;
  cursor: pointer;
}
.woocommerce form .form-row.mailchimp-newsletter input[type="checkbox"]:after {
  width: 15px;
  height: 15px;
  border-radius: 0px;
  top: -6px;
  left: 1px;
  position: relative;
  background-color: #000000;
  outline: 2px solid #feb620;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000000;
  line-height: 10px;
  font-size: 12px;
  display: inline-block;
  visibility: visible;
}

.woocommerce
  form
  .form-row.mailchimp-newsletter
  input[type="checkbox"]:checked:after {
  width: 15px;
  height: 15px;
  border-radius: 0px;
  top: -4px;
  left: 1px;
  position: relative;
  background-color: #000;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  visibility: visible;
  border: 3px solid #000;
  color: #feb620;
  line-height: 10px;
  font-size: 9px;
}

.arrvl_txt a:hover {
  color: gold !important;
}

@media all and (max-width: 767px) {
  input.input-text.qty.text {
    background: transparent;
    border: 1px solid #000;
    margin: 0 2px;
    width: 30px;
    padding: 0 5px;
    font-size: 12px;
  }

  input.minus,
  input.plus {
    padding: 0;
    vertical-align: top;
  }
  .woocommerce form .form-row.mailchimp-newsletter label.inline {
    display: inline;
    float: left;
    width: 90%;
    cursor: pointer;
    font-size: 14px;
  }

  .woocommerce form .form-row.mailchimp-newsletter .input-checkbox {
    display: inline;
    margin: 7px 8px 0 0;
    text-align: center;
    vertical-align: middle;
    width: 20px;
    float: left;
  }
}

/**/
.mega-block-title {
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin-bottom: 15px !important;
  padding-top: 40px !important;
  font-size: 14px !important;
}
.mega-sub-menu li {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
header .heading_line {
  border: 0 !important;
}

.social_links li a:hover img {
  transform: scale(1);
}
header .view-all-brands {
  float: left;
}
.view-all-brands {
  padding-left: 45%;
}

/*18-02-22*/
.btn.btn-2.view-pro {
  margin-left: 0;
  margin-top: 0px;
}
.mega_col_img .mega-menu-item img {
  margin-top: 20px;
}
.sldr_class.feature_pic_slider .slick-next {
  right: 58.5%;
}

@media all and (max-width: 767px) {
  .sldr_class.feature_pic_slider .slick-prev {
    left: 0;
    top: 23%;
  }
  .sldr_class.feature_pic_slider .slick-next {
    right: 0;
    top: 23%;
  }
  .arrivls_box {
    padding: 0px 10px 0;
  }
}

body .ddcommon {
  max-width: 80px !important;
}
body #wcuFlagsSelectBoxDropdown_2_child > ul > li {
  display: flex;
  flex-wrap: nowrap;
}
body #wcuFlagsSelectBoxDropdown_2_child > ul > li .ddlabel {
  order: 1;
}
.woocommerce-MyAccount-content a:not(.button) {
  text-decoration: underline !important;
}
.woocommerce-error {
  border: 2px solid #f00;
  color: #fff;
}
.woocommerce-error::before {
  color: #f00;
}
.woocommerce-error li a {
  text-decoration: underline !important;
}
.arrivls_box p {
  height: 90px;
  overflow: hidden;
}
.sldr_class.feature_pic_slider .slick-next {
  right: 60%;
}
.feature_pic_slider .slick-prev {
  left: 0;
}
.tinv-wraper.tinv-wishlist {
  margin-left: 0;
}
/* .single-product .tinvwl_add_to_wishlist_button {
  margin: 5px 0 0 2px !important;
} */
.content_page {
    max-width: 700px;
    margin: auto;
}
.content_page h4{
	font-size: 38px;
    line-height: 32px;
    font-weight: 600;
    color: rgb(193, 150, 32);
    margin:0 0 25px 0;text-align:center;
} 
.content_page p{
	font-weight: 400;
    color: #fff;
    font-size: 27px;
    line-height: 50px;
}
.page-id-180 .innrpg_cmngap{
	padding:0 0 40px;	
}
.page-id-180 p{
	margin-bottom: 0;
}
/*#rev_slider_37_1_wrapper,  rs-fullwidth-wrap{
	display:none !important; 	
}
#rev_slider_36_1_forcefullwidth rs-slides{
	display:none !important;
}*/
.about_pg_section {
    position: relative;
}
.Payment_pg{
	position:absolute;top:100px;
    left: 0;
    right: 0;
    z-index: 1;
}
.page-id-180 rs-fullwidth-wrap{
	height:1200px !important;	
}
.text_center, .page-id-197 h4{
	text-align:center;
}
.text_center .alignnone{
	margin:0 10px;	
}
.shipping h5 {
	font-size: 29px;line-height: 32px;
    font-weight: 600;
    color: rgb(193, 150, 32);
    margin: 0 0 25px 0;
}
.shipping.content_page p{
	font-size: 17px;
    line-height: 24px;
}
.content_page h6{
	font-size: 21px;
    font-weight: 700;color: rgb(193, 150, 32); margin: 0 0 20px 0;
}
.shipping{
	position: absolute;
    top: 100px;
    left: 0;
    right: 0;z-index:1;
}
/*.page-id-197 rs-fullwidth-wrap{
	height:1300px !important;	 
}*/
.content_page h2{
	font-size:42px;	font-weight: 600;
    color: rgb(193, 150, 32);text-align:center;
}
.content_page.term_condition p {
    font-size: 20px;
    line-height: 26px;
}
.arrivls_box {
    padding: 0px 10px 0;
}
@media all and (max-width: 1199px) {
	.container {
		max-width: 100%;
		padding: 0 15px;
	}
	.arrivel_slider .slick-prev,
	.arrivel_slider .slick-next {
		top: 29%;
	}
	.arrivel_slider .slick-prev {
		left: 10px;
	}
	.arrivel_slider .slick-next {
		right: 8px;
	}
	.new_arrivalssection {
		margin-top: 0;
	}
	
	.arrivls_box p {
		font-size: 17px;
		line-height: 19px;
	}
	.arrivls_box p {
		height: 76px;
	}
	.arrivls_box {
		padding: 0 10px 0;
	}
	.letst_text {
		padding: 15px 10px 20px;
	}
	.latest_slider .slick-list {
		padding-bottom: 20px;
	}
	.latest_slider .slick-prev {
		left: 14px;
	}
	.latest_slider .slick-next {
		right: 14px;
	}
	.latest_slider .slick-prev,
	.latest_slider .slick-next {
		top: 33%;
	}
	.footer .ft_pst {
		margin-top: 10px;
	}
	.feature_pic_slider .slick-prev,
	.feature_pic_slider .slick-next {
		top: 48%;
	}
	.cust_reviews {
		margin: 35px auto 0;
	}
	.glide__arrow--left {
		left: 0 !important;
	}
	.glide__arrow--right {
		right: 0 !important;
	}
  	.content_page p {
		font-size: 23px;
		line-height: 34px;
	}
	.shipping h5 {
		font-size: 27px;
		line-height: 30px;
	}
	.testimonials_section .row{
		margin-right: 0;
		margin-left: 0;
	}
	.abt_pic_lg{
		left:-1px;	
	}
	#slider-33-slide-87-layer-0, slider-32-slide-86-layer-0{
		margin: -13px 0 0 0 !important;	
	}
	#slider-30-slide-84-layer-0, #slider-31-slide-85-layer-0{
		margin: -15px 0 0 0 !important;	
	}
	
}
@media all and (max-width: 990px) {
	.nav-search-area{
		z-index:1;	
	}
  .btn-lang img {
    max-width: 65%;
  }
  .btn-lang {
    right: 0px;
  }
  .arrivls_box p {
    height: 56px;
  }
  .arrivel_slider .slick-list {
    padding-bottom: 30px;
  }
  .arrivel_slider .arrvl_txt {
    padding: 10px 3px;
  }
  .arrivel_slider .slick-prev,
  .arrivel_slider .slick-next {
    top: 30%;
  }
  .featuresitm_text h4 {
    font-size: 18px;
    line-height: 21px;
  }
  h2 {
    font-size: 27px;
  }
  .latest_slider .slick-list {
    padding-bottom: 0;
  }
  .social_links ul {
    text-align: left;
  }
  .footer .col-md-6.ft_pst:last-child {
    max-width: 100%;
    text-align: center;
    flex: unset;
    margin-top: 20px;
  }
  .copyright {
    text-align: center !important;
  }
  .up_foooter {
    padding: 30px 0px 0px;
  }
  .latest_slider .slick-prev,
  .latest_slider .slick-next {
    top: 34%;
  }
  .innnr_txt h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .about_pg_text h4 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 12px;
  }
  .google_cust_reviews h4 {
    font-size: 28px;
  }
  .abt_brordcst_box ul li {
    margin-bottom: 10px;
  }
  .abt_brordcst_box {
    padding: 20px 15px 10px;
  }
  .w3_wprs-col {
    margin-top: 13px !important;
  }
  .innrpg_cmngap {
    padding: 30px 0px 20px;
  }
  body.woo-variation-gallery .col-md-3,
  body.woo-variation-gallery .col-md-9 {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
	.tax-product_cat .widget_price_filter .price_slider_amount .button {
		margin: -7px 5px 5px 0 !important;
	}
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    /*height: 49px;*/
    height: auto;
  }
  .woocommerce ul.products li.product a img {
    /*height: 300px;*/
    height: auto;
  }
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    margin: 0 0 15px !important;
  }
  .woocommerce div.product .product_title {
    font-size: 27px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .woocommerce div.product p.price {
    font-size: 19px;
    margin: 0;
  }
  .woocommerce div.product div.summary,
  .woocommerce div.product .woocommerce-tabs ul.tabs,
  h3.speci_hdng {
    margin-bottom: 15px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 7px 0;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li,
  h3.speci_hdng {
    font-size: 23px;
  }
  .woocommerce
    div.product
    .woocommerce-tabs
    ul.tabs
    li#tab-title-description:after {
    top: 5px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 5px 0;
  }
  p {
    margin: 0 0 15px 0;
  }
	h3{
	  font-size: 27px;
	}
  h3.speci_hdng:after,
  section.related.products h2:after {
    top: 11px;
  }
  h3.speci_hdng {
    padding: 9px 0 9px 35px;
  }
  ul.extra_links {
    margin: 0px 0 15px;
  }
  section.related.products h2 {
    padding: 4px 0 4px 35px;
    font-size: 23px;
    margin-bottom: 15px;
  }
  .content_page p {
    font-size: 21px;
  }
  .content_page h4 {
    font-size: 35px;
  }
	.shipping.content_page p {
		font-size: 16px;
		line-height: 22px;
	}
	.content_page h6 {
		font-size: 20px;
		margin: 0 0 15px 0;
	}
	.shipping h5 {
		font-size: 25px;
	}
	.faq_pg_section .text-center {
    	font-size: 24px;
	}
	.accordian_area .set{
		margin:0 0 10px 0;	
	}
	.col-md-4.tes_box {
    	max-width: 48%;
	}
	.testimonials_section .col-md-4 {
   	 -ms-flex: 0 0 50%;
    	flex: 0 0 50%;
	}
	.testimo_box{
		padding:20px 10px;	
	}
	.testimonials_section.cmn-gap {
		margin: 10px 0 0 0;
	}
	.blog_postright h3 {
		padding: 15px 11px;
		font-size: 25px;
		line-height: 25px;
	}
	.blog_right_post {
    	padding: 17px 10px;
	}
	.col-lg-8.blog_postleft{
		padding-top:25px;	
	}
	.blog_pst_box{
		padding:25px 12px;	
	}
	.about_pg_section h5{
		margin-bottom:18px;	
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
		padding: 20px 20px;
		margin: 20px 0 5px 0;
	}
	.woocommerce-Address-title.title h3 {
		font-size: 25px;margin:0 0 20px 0;
	}
	.tinv-wishlist table td, .tinv-wishlist table th {
    	padding: 0.3rem;
	}
	tr.wishlist_item {
		border: 2px dashed gold; 
		width: 100%;
		margin: 0 0 10px 0;
		float: left;
		padding: 10px 0;
	}
	.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2{
		max-width: 100%;	
	}
	.woocommerce .col2-set .col-2 h2{
		margin-top:35px;
	}
	.feature_item_area{
		margin:50px 0 0;	
	}
	#slider-33-slide-87-layer-0 {
		margin: -3px 0 0 0 !important;
	}
	 #slider-31-slide-85-layer-0{
		margin: -8px 0 0 0 !important;	
	}
	 #slider-32-slide-86-layer-0{
		margin: -3px 0 0 0 !important;	
	}
}
@media all and (max-width: 767px) {
  .btn-lang img {
    max-width: 65%;
  }
  .btn-lang {
    right: 0px;
  }
  .arrivel_slider .slick-prev,
  .arrivel_slider .slick-next {
    top: 31%;
    width: 37px;
    height: 30px;
    background-size: 40px;
  }
  .latest_slider .slick-prev,
  .latest_slider .slick-next {
    background-size: 40px;
    width: 37px;
    height: 30px;
  }
  .arrivls_box p {
    font-size: 15px;
  }
  .arrivls_box h4 {
    font-size: 16px;
  }
  .cmn-gap {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .feature_item_area .pt-4 {
    padding-top: 0 !important;
  }
  .featuresitm_text h4 {
    font-size: 17px;
    line-height: 20px;
  }
  .featuresitm_text.arrvl_txt h2,
  .featuresitm_text.arrvl_txt h4 {
    margin-bottom: 10px;
  }
	h2 {
		font-size: 25px;
	}
	h3 {
		font-size: 24px;
	}
  .featuresitm_text .price_h5 {
    font-size: 18px;
  }
  .sldr_class.feature_pic_slider .slick-next {
    right: 0;
  }
  .sldr_class.feature_pic_slider .slick-next,
  .sldr_class.feature_pic_slider .slick-prev {
    top: 28%;
    width: 37px;
    height: 30px;
    background-size: 40px;
  }
  .single-product .glide__arrow{
	width: 51px;
    height: 30px;
    background-size: 40px;
  }
  .innnr_txt h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .innnr_txt .breadcamp{
    font-size: 13px;
  }
  .innrpg_bnnr_section figure img{
    height: 170px;
    object-fit: cover;
    object-position: center;
  }
  body {
    font-size: 15px;
  }
  .in_left_conbx h3 br {
    display: none;
  }
  .in_left_conbx h3 {
    font-size: 23px;
    line-height: 27px;
    margin: 0 0 15px 0;
  }
  .in_left_conbx p {
    margin: 0 0 10px 0;
  }
  .news_leter h4 {
    font-size: 18px;
  }
  .contactpg_form_box .form_box label {
    font-size: 16px;
    line-height: 17px;
    margin: 0 0 7px 0;
  }
  .abt_brordcst_box h4 {
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 15px 0;
  }
  .cust_reviews {
    margin: 25px auto 0;
  }
  .google_cust_reviews h4 {
    font-size: 26px;
  }
  .woocommerce ul.products li.product .price {
    font-size: 16px;
  }
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product .price {
    margin: 0 0 5px 0;
  }
  .content_page p {
    font-size: 19px;line-height: 28px;
  }
  .content_page h4 {
    font-size: 32px;
  }
  .faq_pg_section .text-center {
    font-size: 22px;
  }
  .accordian_area .content p {
    font-size: 16px;
    line-height: 18px;
  }
	.testimo_box{
		padding:20px 0px;	
	}
	.testimonials_section.cmn-gap {
		margin: 30px 0 0 0;
	}
	.blog_postright h3 {
		padding: 12px 10px;
		font-size: 23px;
		line-height: 23px;
	}
	.blog_right_post {
    	padding: 12px 10px;
	}
	.blog_pg_section ul {
		margin-bottom: 10px;
	}
	.blog-box-cont{
		height:auto !important;	
	}
	.blog-box-cont p{
		margin-bottom:10px;
	}
	.blog-box-cont p.link-more{
		margin-bottom:0;
	}
	.about_pg_section h5{
		font-size:18px;	
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		padding:20px;
	}
	.feature_item_area{
		margin:40px 0 25px;	
	}
	.woo-variation-product-gallery{
		margin:0;	
	}
	#slider-33-slide-87-layer-0 {
		margin: 0px 0 0 0 !important;
	}
	#slider-30-slide-84-layer-0{
		margin: -12px 0 0 0 !important;	
	}
	 #slider-31-slide-85-layer-0{
		margin: -4px 0 0 0 !important;	
	}
	#slider-32-slide-86-layer-0{
		margin: 0 !important;	
	}
}
@media all and (max-width: 479px) {
  #user_links .ar_currency {
  margin-right: -4px !important;
}
  .btn-lang img {
    max-width: 65%;
  }
  .btn-lang {
    right: 0px;
  }
  .arrivel_slider .slick-prev,
  .arrivel_slider .slick-next {
    top: 33%;
  }
  .arrivls_box p {
    height: auto;
    margin-bottom: 10px;
  }
  .arrivls_box h4 {
    margin-bottom: 10px;
  }
  .arrivel_slider .slick-list {
    padding-bottom: 0;
  }
  .sldr_class.feature_pic_slider .slick-next,
  .sldr_class.feature_pic_slider .slick-prev {
    top: 25%;
  }
  .about_pg_text h5 {
    font-size: 15px;
  }
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    height: auto;
  }
	h3{
		font-size: 22px;
	}
	.faq_pg_section .text-center {
		font-size: 20px;
	}
	.accordian_area .col-md-6:last-child {
		margin: 10px 0 0 0;
	}
	.testimonials_section .col-md-4 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
	.col-md-4.tes_box {
		max-width: 98%;
	}
	.testimonials_section.cmn-gap {
		margin: 20px 0 0 0;
	}
	.readmore_btn{
		margin-top:10px;	
	}
	.blg_bx {
		margin-bottom: 15px;
	}
	.woo-variation-product-gallery {
    	width: 100%;
	}

	.woo-variation-gallery-wrapper{
		min-height:auto !important;	
	}
	.single-product  .glide__arrow{
		top:36% !important;	
	}
	#slider-33-slide-87-layer-0 {
		margin: -18px 0 0 0 !important;
	}
	.arrivel_slider_area {
		margin-bottom: 0;
	}
	#slider-30-slide-84-layer-0 {
		margin: -40px 0 0 0 !important;
	}
	#slider-31-slide-85-layer-0 {
		margin: -18px 0 0 0 !important;
	}
	#slider-32-slide-86-layer-0{
		margin: -11px 0 0 0 !important;	
	}
}

/*start 21-07-2022*/
.tax-product_tag .about_pg_section.white-bg {
	background: transparent;
}

.tax-product_tag .about_pg_section.white-bg .woocommerce-breadcrumb{
	display: none;
}

.tax-product_tag ul.products li.product .onsale {
    min-height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );
}

.tax-product_tag ul.products li .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before, .tax-product_tag .arrvl_txt .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before {
    color: #d7a327 !important;
    transition: all 0.5s ease;
}

.tax-product_tag ul.products li .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:hover:before, .tax-product_tag .arrvl_txt .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:hover:before {
    color: #fff !important;
}

.tax-product_tag .product-categories li:before {
    background: url(images/left-arrow-white.svg) no-repeat center center !important;
    background-size: 12px !important;
}

.tax-product_tag .widget_price_filter .ui-slider .ui-slider-range {
    background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );
}

.tax-product_tag  .widget_price_filter .ui-slider .ui-slider-handle {
    background-image: linear-gradient( 120deg, #956114, #c3af1e, #a37818, #4a1c01 85% );
}

.tax-product_tag  .widget_price_filter .price_slider_amount,
.tax-product_cat .widget_price_filter .price_slider_amount {
	display: flex;
	flex-direction: column;
}

.tax-product_tag  .widget_price_filter .price_slider_amount .button,
.tax-product_cat .widget_price_filter .price_slider_amount .button {
    margin: 0 0 10px auto!important;
    width: 90px;
}

.tax-product_tag  .woof_submit_search_form_container {
    justify-content: center;
    padding: 0 15px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
    margin: 0 2px 10px;
}

.woocommerce-checkout table.shop_table th.product-price,
.woocommerce-checkout table.shop_table td.product-price {
	padding-left: 136px;
}

.woocommerce-checkout table.shop_table th.product-total,
.woocommerce-checkout table.shop_table td.product-total {

}

#order_review ul#shipping_method li input {
  margin: 4px 0.4375em 0 0;
}

.tax-product_tag .woof_list label {
    margin-bottom: 0;
    color: #fff;
}

.woocommerce-shop .woof_list li label, .tax-product_tag .woof_list li label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.woocommerce-shop .woof_list li input[type="checkbox"], .tax-product_tag .woof_list li input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.woocommerce-shop .woof_list li input[type="checkbox"]+label::before, .tax-product_tag .woof_list li input[type="checkbox"]+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 1px solid #c3af1e;
    background: #c3af1e;
}

.woocommerce-shop input[type="checkbox"]+label::after, .tax-product_tag input[type="checkbox"]+label::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.woocommerce-shop input[type="checkbox"]:not(:checked)+label::after, .tax-product_tag input[type="checkbox"]:not(:checked)+label::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.tax-product_tag input[type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.tax-product_tag main#main {
  background: #000;
  padding: 15px;
}

.woocommerce-cart .woocommerce ul#shipping_method li input {
  margin: 5px 0.4375em 0 0;
}

@media (max-width: 768px) {
  .woocommerce ul#shipping_method {
    padding-left: 75px;
  }
}

@media (max-width: 767px) {
  #order_review {
    /* overflow-x: unset;
    padding: 15px;
    border: 1px solid #ddd; */
  }

  .review-order-table-checkout {
    overflow-x: scroll;
    margin: 0 0 6px;
  }
}

@media (max-width: 575px) {
  .woocommerce-cart .woocommerce ul#shipping_method li input {
    margin: 4px 0.4375em 0 0;
  }

  .woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 100%;
    margin: 0 0 10px 0!important;
  }

  .woocommerce-cart table.cart td.actions .coupon .button {
    width: 100%;
  }
}

/*end 21-07-2022*/
.cart_table {
    border: 2px solid #fad700;
    border-radius: 5px;
}
.cart_table table.shop_table.shop_table_responsive {
    border: 0;
}

/*  */
.mega-menu-wrap .mega-menu .mega-Image .mega-menu-item.widget_media_image { 
  text-align: center !important;
}
@media (min-width: 993px) {
.mega-menu-wrap .mega-menu .mega-Image .mega-menu-item.widget_media_image {
  padding-top: 50px !important; 
}
}

#order_review tfoot tr.woocommerce-shipping-totals.shipping > th:first-child {
    width: 200px;
}

.woocommerce-checkout-review-order-table tfoot table.orderTfoot td:last-child {
    text-align: right;
}
.woocommerce-checkout-review-order-table tfoot table.orderTfoot td ul#shipping_method {
    padding-left: 0px;
}
#order_review table.shop_table.woocommerce-checkout-review-order-table {
    width: 100%;
}
#order_review.woocommerce-checkout-review-order {
    padding: 0px;
    border: none;
}

	


@media only screen and (min-width: 320px) and (max-width: 767px)  {
.woocommerce-checkout-review-order-table tfoot table.orderTfoot td:last-child {
    text-align: left;
    width: 100%;
}
#order_review table.shop_table.woocommerce-checkout-review-order-table {
/*     min-width: 600px; */
    width: 100%;
}
#order_review table.shop_table.woocommerce-checkout-review-order-table .product-price {
    padding-left: 12px;
}
/* 	 */
#order_review.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table thead {
    display: none;
}	
#order_review.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tr.cart_item {
    display: flex;
    flex-wrap: wrap;
}
#order_review.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tr.cart_item td {
    flex: 0 0 100%;
}
#order_review.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tr.cart_item td.product-price:before {
    width: 75px;
    content: "Price:- ";
    font-size: 16px;
    display: inline-block;
}
#order_review.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tr.cart_item td.product-total:before {
    width: 75px;
    content: "Subtotal:-";
    font-size: 16px;
    display: inline-block;
}	
#order_review.woocommerce-checkout-review-order .wc-review-order-table {
    padding-top: 0px;
}
#order_review.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tr.cart_item td {
    border-top-width: 0px !important;
}	
#order_review.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table tr.cart_item + tr.cart_item td:first-child {
    border-top-width: 1px !important;
}
/*  */
.choose-parallax.lazy .choose_section img.lazy.loaded {
    width: 110px;
    height: auto;
}	 
.choose-parallax.lazy { 
    background-position: center;  
    background-attachment: inherit !important;
}
}