#new-filter {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px; }
  #new-filter .new-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 48px; }
    #new-filter .new-filter-wrap .new-filter-filter {
      width: 33.333%; }
      #new-filter .new-filter-wrap .new-filter-filter button {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 5px; }
        #new-filter .new-filter-wrap .new-filter-filter button svg {
          width: 18px;
          height: 18px;
          margin-right: 4px; }
    #new-filter .new-filter-wrap .new-filter-count {
      width: 33.333%;
      text-align: center; }
    #new-filter .new-filter-wrap .new-filter-sortby {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      width: 33.333%; }
      @media (max-width: 767px) {
        #new-filter .new-filter-wrap .new-filter-sortby select {
          text-align: right; } }
      #new-filter .new-filter-wrap .new-filter-sortby svg {
        width: 18px;
        height: 18px;
        margin-right: 4px;
        transform: rotate(90deg); }
        @media (max-width: 767px) {
          #new-filter .new-filter-wrap .new-filter-sortby svg {
            display: none; } }

.new-filter-popup.open .new-filter-popup-main {
  visibility: visible;
  transform: translateX(0%); }

.new-filter-popup.open .new-filter-overlay {
  visibility: visible;
  opacity: 1; }

.new-filter-popup .new-filter-popup-main {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 600px;
  width: 100%;
  background: #fff;
  z-index: 10000000;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all .3s; }
  .new-filter-popup .new-filter-popup-main .new-filter-popup-wrap {
    height: 100%;
    position: relative;
    padding: 60px 0; }
    .new-filter-popup .new-filter-popup-main .new-filter-popup-wrap .new-filter-popup-head {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 60px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 0 0 0 15px; }
      .new-filter-popup .new-filter-popup-main .new-filter-popup-wrap .new-filter-popup-head button {
        width: 42px;
        height: 42px; }
        .new-filter-popup .new-filter-popup-main .new-filter-popup-wrap .new-filter-popup-head button svg {
          height: 24px;
          width: 24px; }
    .new-filter-popup .new-filter-popup-main .new-filter-popup-wrap .new-filter-popup-body {
      padding: 15px; }
    .new-filter-popup .new-filter-popup-main .new-filter-popup-wrap .new-filter-popup-foot {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      display: flex;
      flex-wrap: wrap;
      background: #000;
      padding-top: 2px; }
      .new-filter-popup .new-filter-popup-main .new-filter-popup-wrap .new-filter-popup-foot button {
        width: 50%;
        color: #fff; }
        .new-filter-popup .new-filter-popup-main .new-filter-popup-wrap .new-filter-popup-foot button:first-child {
          background: #fff;
          color: #000; }

.new-filter-popup .new-filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999999;
  visibility: hidden;
  opacity: 0;
  transition: all .3s; }

.new-filter-popup-body {
  overflow: auto;
  height: 100%; }

.new-collection-filter-item {
  color: #000; }
  .new-collection-filter-item .new-collection-filter-item-title {
    font-weight: 500;
    font-size: 15px; }
  .new-collection-filter-item input[type="checkbox"], .new-collection-filter-item input[type="radio"] {
    margin-top: 0;
    vertical-align: top;
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    margin: 0 5px 0 0;
    cursor: pointer;
    outline: 0 !important; }
  .new-collection-filter-item input[type="checkbox"]:after, .new-collection-filter-item input[type="radio"]:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #676767;
    cursor: pointer;
    border-radius: 50%; }
  .new-collection-filter-item input[type="checkbox"]:before, .new-collection-filter-item input[type="radio"]:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -moz-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    -o-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    content: "";
    position: absolute;
    left: 0px;
    right: 0;
    top: 5px;
    margin: auto;
    z-index: 1;
    width: 10px;
    height: 5px;
    border: 1px solid #fff;
    border-top-style: none;
    border-right-style: none; }
  .new-collection-filter-item input[type="checkbox"]:checked:after, .new-collection-filter-item input[type="radio"]:checked:after {
    background-color: #2E2E2E;
    border-color: transparent; }
  .new-collection-filter-item input[type="checkbox"]:checked:before, .new-collection-filter-item input[type="radio"]:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -moz-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    -o-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1); }
  .new-collection-filter-item ul li {
    margin-top: 8px; }

.new-collection-filter-item-size ul, .new-collection-filter-item-color ul, .new-collection-filter-item-large ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  margin-top: 10px; }
  .new-collection-filter-item-size ul li, .new-collection-filter-item-color ul li, .new-collection-filter-item-large ul li {
    width: calc(100% / 9);
    margin: 0;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000; }
    .new-collection-filter-item-size ul li label, .new-collection-filter-item-color ul li label, .new-collection-filter-item-large ul li label {
      display: block;
      padding: 7px;
      text-align: center; }
      .new-collection-filter-item-size ul li label:hover, .new-collection-filter-item-color ul li label:hover, .new-collection-filter-item-large ul li label:hover {
        cursor: pointer;
        background: #f1f1f1; }
    .new-collection-filter-item-size ul li input, .new-collection-filter-item-color ul li input, .new-collection-filter-item-large ul li input {
      display: none; }
      .new-collection-filter-item-size ul li input:checked + label, .new-collection-filter-item-color ul li input:checked + label, .new-collection-filter-item-large ul li input:checked + label {
        background: #c5d3d9; }

.new-collection-filter-item-color ul li {
  width: calc(100% / 4); }
  @media (max-width: 767px) {
    .new-collection-filter-item-color ul li {
      width: calc(100% / 2); } }
  .new-collection-filter-item-color ul li label {
    display: flex;
    align-items: center;
    justify-content: center; }
    .new-collection-filter-item-color ul li label span {
      display: inline-block;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      margin-right: 5px; }

.new-collection-filter-item-large ul li {
  width: calc(100% / 4); }

.new-collection-banner .new-collection-banner-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px; }
  @media (max-width: 767px) {
    .new-collection-banner .new-collection-banner-list {
      flex-wrap: wrap;
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none; }
      .new-collection-banner .new-collection-banner-list::-webkit-scrollbar {
        display: none; } }
  .new-collection-banner .new-collection-banner-list .new-collection-banner-item {
    width: 33.3333%;
    position: relative;
    overflow: hidden; }
    @media (max-width: 767px) {
      .new-collection-banner .new-collection-banner-list .new-collection-banner-item {
        min-width: 220px;
        width: 100%; } }
    .new-collection-banner .new-collection-banner-list .new-collection-banner-item img {
      transition: all .3s; }
    .new-collection-banner .new-collection-banner-list .new-collection-banner-item:hover img {
      transform: scale(1.05); }
    .new-collection-banner .new-collection-banner-list .new-collection-banner-item a {
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      display: inline-block;
      padding: 8px 36px; }
      @media (max-width: 768px) {
        .new-collection-banner .new-collection-banner-list .new-collection-banner-item a {
          padding: 5px 10px;
          bottom: 20px;
          width: max-content; } }

.new-collection-breadcrumb {
  background: #000;
  color: #fff; }
  .new-collection-breadcrumb .col-12.title h1 {
    color: #fff; }
  .new-collection-breadcrumb .breadcrumb {
    background: none;
    margin: 0;
    padding-left: 5px;
    padding-right: 5px;
    padding: 11px 0; }
    .new-collection-breadcrumb .breadcrumb li {
      position: relative;
      margin-right: 21px; }
      .new-collection-breadcrumb .breadcrumb li:not(.active):after {
        content: "/";
        position: absolute;
        top: 1px;
        right: -14px;
        color: #999; }
      .new-collection-breadcrumb .breadcrumb li a {
        font-family: 'Work Sans' !important;
        color: #fff;
        font-size: 12px;
        font-weight: 500; }
      .new-collection-breadcrumb .breadcrumb li span {
        font-family: 'Work Sans' !important;
        color: #fff;
        font-size: 12px;
        font-weight: 500; }

#new-collection__list {
  display: flex;
  flex-wrap: wrap; }
  #new-collection__list .product_item__grid {
    padding: 0; }
    #new-collection__list .product_item__grid .product_item {
      height: auto; }

.new-collection-insider-images {
  display: none; }

.insider-banner {
  width: 25%;
  padding: 0px 5px 25px;
  position: relative; }
  @media (max-width: 991px) {
    .insider-banner {
      width: 33.33333%; } }
  @media (max-width: 767px) {
    .insider-banner {
      width: 50%; } }
  .insider-banner .insider-banner-img {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; }
    .insider-banner .insider-banner-img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all .3s; }
  .insider-banner:hover img {
    transform: scale(1.05); }
  .insider-banner a {
    position: absolute;
    display: inline-block;
    padding: 5px 10px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    white-space: nowrap; }

.new-collection-desc .new-collection-desc-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 30px;
  text-align: center; }

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  z-index: 99999999; }
  .lds-ellipsis.open {
    visibility: visible;
    opacity: 1; }
    .lds-ellipsis.open + .new-filter-overlay {
      visibility: visible;
      opacity: 1; }

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0); }

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite; }

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite; }

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite; }

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite; }

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0); } }

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(24px, 0); } }

.new-collection-paginate {
  width: 100%; }

.new-pagination {
  padding: 10px 0; }
  .new-pagination ul {
    display: flex;
    justify-content: center; }
    .new-pagination ul li {
      margin: 0 5px; }
      .new-pagination ul li .new-pagination-item {
        display: inline-flex;
        width: 32px;
        height: 32px;
        background: #f1f1f1;
        justify-content: center;
        align-items: center;
        color: #000;
        border-radius: 50%; }
      .new-pagination ul li .new-pagination-item-active {
        background: #d1d1d1; }

@media (max-width: 767px) {
  #collection__page .container {
    padding-left: 10px;
    padding-right: 10px; } }

.new-filter-selected {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px 10px; }
  .new-filter-selected button {
    display: inline-flex;
    padding: 4px 10px 4px 6px;
    font-size: 12px;
    background: #f1f1f1;
    margin-right: 10px;
    align-items: center; }
    .new-filter-selected button svg {
      width: 12px;
      height: 12px;
      margin-right: 5px; }
