.shootz-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, .4);
}

.shootz-modal .modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 960px;
    position: relative;
    height: calc(100% - 100px);
    overflow: auto;
    margin: 30px auto;
}

.shootz-modal .close {
  color: #aaaaaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  display: block;
  line-height: 20px;
  text-align: center;
}

.shootz-modal .close:hover,
.shootz-modal .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.shootz-modal .modal-content .search-area {
    position: sticky;
    top: -20px;
    background: #fff;
    padding: 5px 0;
    z-index: 1;
}
.shootz-modal .modal-content .input-search {
  display: inline-flex;
}
.shootz-modal .modal-content .input-search input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 100%;
  width: 250px;
}
.shootz-modal .modal-content .input-search button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  left: -1px;
}
.shootz-actions {
  display: none;
}
.shootz-model-list .shootz-image-wrapper .read-more_button,
.shootz-model-list .shootz-image-wrapper .wishlist-toggle {
  display: none;
}
.shootz-model-list .woocommerce-loop-product__link {
  text-decoration: none;
  pointer-events: none;
}
.shootz-model-list li.product:hover {
  cursor: pointer;
}
.shootz-ajax-loading:not(.hidden) {
    display: flex;
    justify-content: center;
}
.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #F37B54;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}