/*========================================
        PRODUCT DETAILS PAGE STYLE
=========================================*/
.details-gallery {
  position: relative;
}

.details-label-group {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.details-label {
  font-size: 14px;
  padding: 6px 10px;
  margin-bottom: 6px;
  line-height: 13px;
  border-radius: 3px;
  text-transform: capitalize;
  text-align: center;
  color: var(--white);
}

.details-label:last-child {
  margin-bottom: 0px;
}

.details-label.off {
  background: var(--red);
}

.details-label.new {
  background: var(--green);
}

.details-label.sale {
  background: var(--orange);
}

.details-label.feat {
  background: var(--purple);
}

.details-label.rate {
  background: var(--yellow);
}

.details-preview {
  margin-bottom: 16px;
}

.details-preview li img {
max-height: 380px;
    width: 100%;
    border-radius: 8px;
}

.details-thumb li {
  margin: 0px 8px;
  cursor: pointer;
}

.details-thumb li img {
    max-height: 97px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--white);
}

.details-thumb .slick-current img {
  border: 1px solid var(--primary);
}

.product-navigation {
  margin-bottom: 25px;
  padding: 20px 25px;
  border-radius: 8px;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-navigation li a {
  color: var(--text);
  text-transform: capitalize;
  position: relative;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.product-navigation li a:hover {
  color: var(--primary);
}

.product-navigation li a:hover .product-nav-popup {
  visibility: visible;
  opacity: 1;
}

.product-nav-popup {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 3;
  width: 100px;
  height: auto;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
  border-radius: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.product-nav-popup::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: -3px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.product-nav-popup img {
  width: 100%;
}

.product-nav-popup small {
  font-size: 14px;
  line-height: 18px;
  display: inline-block;
}

.details-content {
  padding: 35px 35px;
  border-radius: 8px;
  background: var(--white);
}

.details-name {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.details-name a {
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-name a:hover {
  color: var(--primary);
}

.details-meta {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.details-meta p {
  font-size: 13px;
  margin-left: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--placeholder);
}

.details-meta span,
.details-meta a {
  margin-left: 5px;
  color: var(--placeholder);
}

.details-meta a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.details-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
}

.details-rating i,
.details-rating a {
  font-size: 15px;
  margin-right: 3px;
  color: var(--gray);
}

.details-rating a {
  margin-left: 8px;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-rating a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.details-rating .active {
  color: var(--yellow);
}

.details-price {
  margin-bottom: 20px;
}

.details-price del {
  color: var(--red);
  margin-left: 25px;
}

.details-price span {
  color: var(--primary);
  white-space: nowrap;
}

.details-price span small {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.details-desc {
  margin-bottom: 25px;
}

.details-list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 25px;
}

.details-list-group:last-child {
  margin-bottom: 0px;
}

.details-list-title {
  font-weight: 500;
  margin-left: 15px;
  color: var(--heading);
  text-transform: capitalize;
}

.details-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.details-tag-list li {
  margin-left: 8px;
}

.details-tag-list li a {
  font-size: 14px;
  line-height: 12px;
  padding: 8px 10px;
  border-radius: 5px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-tag-list li a:hover {
  color: var(--white);
  background: var(--primary);
}

.details-share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.details-share-list li {
  margin-left: 8px;
}

.details-share-list li a {
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-share-list li a:hover {
  color: var(--white);
  background: var(--primary);
}

.details-add-group {
  margin: 45px 0px 15px;
}

.details-add-group .product-add,
.details-add-group .action-input {
  padding: 10px 0px;
  color: var(--white);
  background: var(--primary);
  text-transform: uppercase;
}

.details-add-group .action-minus i,
.details-add-group .action-plus i {
  background: var(--chalk);
}

.details-action-group {
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative;
}

.details-action-group a {
  padding: 10px 0px;
  border-radius: 8px;
  color: var(--text);
  background: var(--chalk);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-action-group a:hover {
  color: var(--primary);
}

.details-action-group a i {
  font-size: 16px;
  margin-left: 8px;
}

.details-action-group a span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.details-wish.active {
  color: var(--white);
  background: var(--primary);
}

.details-wish.active:hover {
  color: var(--white);
  background: var(--primary);
}

.product-details-frame {
  padding: 50px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: var(--white);
}

.product-details-frame:last-child {
  margin-bottom: 0px;
}

.frame-title {
  margin-bottom: 30px;
  text-transform: capitalize;
}

.tab-descrip {
  position: relative;
}

.tab-descrip ul {
  list-style: disc;
  margin-right: 20px;
  margin-top: 25px;
}

.tab-descrip ul li {
  margin-bottom: 8px;
}

.tab-descrip ul li:last-child {
  margin-bottom: 0px;
}

.tab-descrip img {
  width: 100%;
  border-radius: 8px;
}

.tab-descrip a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 80px;
  height: 80px;
  font-size: 22px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background: rgba(15, 199, 86, 0.8);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: var(--primary-bshadow);
          box-shadow: var(--primary-bshadow);
  text-shadow: var(--primary-tshadow);
}

.table-bordered {
  margin-bottom: 0px;
}

.table-bordered th,
.table-bordered td {
  padding: 12px 25px;
  text-align: right;
}

.table-bordered th {
  font-weight: 500;
}

.table-bordered td:last-child {
  border-left: 1px solid var(--border);
}

.review-item {
  padding: 45px 45px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: var(--chalk);
  border: 1px solid var(--border);
}

.review-item:last-child {
  margin-bottom: 0px;
}

.review-media {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.review-avatar {
  margin-left: 15px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.review-avatar img {
  width: 65px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.review-meta {
  text-transform: capitalize;
}

.review-meta a {
  color: var(--heading);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.review-meta a:hover {
  color: var(--primary);
}

.review-meta span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}

.review-meta span b {
  font-weight: 500;
  color: var(--primary);
}

.review-rating {
  margin-bottom: 10px;
}

.review-rating li {
  font-size: 16px;
  margin-left: 5px;
  color: var(--yellow);
  display: inline-block;
}

.review-desc {
  margin-bottom: 20px;
}

.review-reply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.review-reply input {
  width: 100%;
  padding: 7px 18px;
  border-radius: 6px;
  margin-left: 20px;
  background: var(--white);
}

.review-reply button {
  font-size: 15px;
  padding: 6px 15px;
  border-radius: 6px;
  color: var(--white);
  background: var(--primary);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.review-reply button:hover {
  background: var(--heading);
}

.review-reply button i {
  margin-left: 5px;
}

.review-reply-list {
  margin-right: 80px;
  margin-top: 35px;
  border-top: 1px solid var(--border);
}

.review-reply-item {
  padding: 30px 0px;
  border-bottom: 1px solid var(--border);
}

.review-reply-item:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.review-form .btn {
  width: 100%;
  padding: 12px 30px;
}

@media (max-width: 991px) {
  .product-navigation {
    margin: 25px 0px;
  }
}

@media (max-width: 575px) {
  .details-content {
    padding: 20px;
  }
  .details-name {
    font-size: 22px;
    line-height: 30px;
  }
  .product-details-frame {
    padding: 20px;
  }
  .review-item {
    padding: 20px 15px;
  }
  .review-reply {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-reply input {
    margin: 0px 0px 15px;
  }
  .review-reply-list {
    margin-right: 25px;
  }
  .star-rating label {
    margin: 0px 6px;
  }
}

.header_top_product {
 color: #fff;
    box-sizing: border-box;
    display:inline-block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.header_top_product li  {
display: inline-block;
    padding-left: 25px
}

.header_top_product li span:first-child  {
    font-weight: bold;
    -webkit-text-stroke: 1px black;
}


.header_top_product li  span:last-child {
    color: #eee;
    font-weight: 300;
    font-size: 13px;
    -webkit-text-stroke: 1px black;
} 

.product_first_image
{
    width: 48vw;
    height: auto;
    
    top: 0px;
        border-radius: 8px;
    border: 0;
    transition: box-shadow .2s;
}

      img.background_product {
      position: absolute;
      left: 0px;
      top: 0px;
      z-index: -1;
      width: 100%;
      height: 100%;
      -webkit-filter: blur(5px); /* Safari 6.0 - 9.0 */
      filter: blur(5px);
      }


.col_meta_pr
{
flex: 1;
}
.col_meta_img
{
    flex: 0 0 226px;
    width: 48vw;
    position: relative;
}


@media (min-width: 576px) and (max-width: 767px) {
  .review-reply-list {
    margin-right: 30px;
  }
}


.panigale-event__title {
    position: relative;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 20px;
    padding: 11px 0 15px;
}

.panigale-event_white-shadow {
    background-color: #fff;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 5%);
    padding: 24px;
    width: 100%;
    border-radius: 8px;
}

.panigale-event a {
    display: flex;
    cursor: pointer;
}

.panigale-event__sans-item {
    margin: 0;
    height: 66px;
    background-color: #fafafa;
    position: relative;
    margin-bottom: 20px;
}

.panigale-event__sans-item-part_dark {
    border: 1px solid #3c3c3c;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    background-color: #3c3c3c;
    color: #fff;
    padding: 0 20px;
    position: relative;
    left: 2px;
    z-index: 1;
    width: 350px;

        flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.panigale-event__sans-item-part_light {
    border-radius: 8px 0 0 8px;
    border: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    margin: 0 -10px 0 0;
    overflow: hidden;
    position: relative;

    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.panigale-event__sans-item-part_light .panigale-event-detail_list {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
}
@media (min-width: 992px)
.ninja-col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
}


.panigale-event__sans-item-part_light .panigale-event-detail_list li {
    float: right;
    display: inline-block;
    position: relative;
    margin: 0 2%;
    padding-right: 10px;
    max-width: 45%;
}

.panigale-event__sans-item-part_light .panigale-event-detail_list li:after {
    position: absolute;
    top: 10px;
    right: 1px;
    width: 5px;
    height: 5px;
    background: #6f1ec3;
    border-radius: 50%;
    content: "";
}


.ninja-text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}




.panigale-event__sans-item .panigale-event__sans-item-part_light button {
    border: 1px solid #3c3c3c;
    background: #3c3c3c;
    color: #fff;
}

.showtime-toggle-icon {
    padding: 8px;
    font-size: 24px;
    color: #888;
}



.clearfix {
    clear: both;
}

.clearfix::after {
    content: " ";
    clear: both;
    display: block;
}

.panigale-event__sans-item .ninja-badge-pill {
    position: absolute;
    top: -7px;
    right: -7px;
}
.ninja-badge-pill_sm {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    box-shadow: 0 0 10px 0 rgb(111 30 195 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    overflow: hidden;
}

.ninja-badge-danger {
    color: #fff;
    background-color: #6f1ec3;
}

.ninja-badge {
        overflow: hidden;
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;

        padding-right: 0.0em;
    padding-top: 0.7em;
    padding-left: 0.7em;
    border-radius: 10rem;

    position: absolute;
    top: -7px;
    right: -7px;
}

.panigale-event__sans-item_date {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    margin: 0 0px;
    width: 128px;
}

.panigale-event__sans-item_time {
    margin: 0 5px 0 8px;
    padding-left: 10px;
    border-left: 1px solid #787878;
    width: 50px;
}

.panigale-event__sans-item_price {
    max-width: calc(100% - 207px);
}
.panigale-event__sans-item_dotted {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: auto;
    height: 100%;
    width: 5px;
}

.panigale-event__sans-item_dotted span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    display: block;
    margin: 3px 0;
    position: relative;
    right: 1px;
}

.ninja-btn {
    height: 40px;
    font-size: 14px;
    color: #fff;
    padding-top: 0;
    padding-bottom: 0;
    max-width: 140px;
    width: 100%;
    border-radius: 25px;
    box-shadow: none;
    line-height: 2.8;
}


.ninja-btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.panigale-event__sans-item .panigale-event__sans-item-part_light button:hover {
    border: 1px solid #6f1ec3!important;
    background: #6f1ec3!important;
}

    .ninja-btn:hover,
    .ninja-btn:focus {
        color: #561797;
    }

.ninja-btn-secondary:hover {
    color: #fff;
    background-color: #5c19a2;
    border-color: #561797;
}


.panigale-event__sans-item_price .price-row {
    font-size: 14px;
    line-height: 24px;
    display: block;
    text-align: center;
}

.panigale-event__sans-item_price span {
    margin: 0 2px;
}

.panigale-event__sans-item_price .is-line-through {
    color: #a8a8a8;
    text-decoration: line-through;
    font-size: 12px;
}


.showtimes-toggle-item .item {
    display: flex;
    margin: 4px 0 4px 20px;
    padding: 0;
    background: #fff;
    border-radius: 8px;
    min-width: 150px;
    color: #333;
    border: 1px solid #ddd;
}

.showtimes-toggle-item.open {
    padding: 35px 8px 8px 8px;
    max-height: fit-content;
    border: 1px solid #ccc;
    border-top: 0;
}

.showtimes-toggle-item {
    max-height: 0;
    overflow: hidden;
    border: none;
    padding: 0 8px;
    background: #fff;
    margin: -20px 0 20px 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 2px 5px 9px -2px rgb(0 0 0 / 10%);
    position: relative;
    flex-wrap: wrap;
}

.showtimes-toggle-item h6 {
    position: absolute;
    top: 10px;
}

.showtimes-toggle-item .item i {
    vertical-align: middle;
    margin-left: 4px;
    border-left: 1px dashed #afacac;
    line-height: 28px;
    background: #a9a9a9;
    padding: 2px 6px;
    color: #fff;
    border-radius: 0 8px 8px 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.showtimes-toggle-item .item span {
    padding: 3px 6px;
    display: inline-block;
}


.ct-ticket-count-select-box {
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    margin-bottom: 15px;
}

.ct-ticket-count-select-wrapper label {
    display: block;
}
.ct-ticket-count-select-wrapper .select-wrapper {
    display: block;
    width: 100%;
}
.select-wrapper {
    padding: 6px;
    position: relative;
    background-color: #fff;
    height: 40px!important;
    min-width: 152px;
    border-radius: 25px;
    overflow: hidden;
    display: inline-block;
    color: #3c3c3c;
}

.select-wrapper:after {
     font-size: 16px;
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 1px;
    width: 25px;
    height: 40px;
    display: flex;
    align-items: center;
    z-index: 1;
    content: "\f13a";
    font-family: "Font Awesome 5 Free";
    text-align: center;
}

.my_add_button {
    border: 1px solid #3c3c3c;
    background: #3c3c3c;
    color: #fff;
}

select.ninja-form-control {
    padding: 1px 20px 1px 35px;
    position: relative;
    background-color: rgba(0,0,0,0)!important;
    outline: none!important;
    -webkit-appearance: none;
    -moz-appearance: none;

   border-radius: 8px;
    text-transform: none;
        font-family: inherit;
    display: block;
    width: 100%;

    z-index: 2;
}