.is-hidden { display: none !important; }
/*.loader {*/
/*  width: 96px;*/
/*  box-sizing: content-box;*/
/*  height: 48px;*/
/*  background: #FFF;*/
/*  border-color: var(--pink);*/
/*  border-style: solid;*/
/*  border-width: 2px 2px 50px 2px;*/
/*  border-radius: 100%;*/
/*  position: relative;*/
/*  animation: 3s yinYang linear infinite;*/
/*  margin-top: 16em;*/
/*}*/

.loader {
    width: 90px;
    height: 90px;
    border: 8px solid #FFF;
    border-bottom-color: var(--pink);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-top: 10em;
}

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

/*.loader:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 0;*/
/*  background: #FFF;*/
/*  border: 18px solid var(--pink);*/
/*  border-radius: 100%;*/
/*  width: 12px;*/
/*  height: 12px;*/
/*  box-sizing: content-box;*/
/*}*/

/*.loader:after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  background: var(--pink);*/
/*  border: 18px solid #FFF;*/
/*  border-radius: 100%;*/
/*  width: 12px;*/
/*  height: 12px;*/
/*  box-sizing: content-box;*/
/*}*/

@keyframes yinYang {
  100%{transform: rotate(360deg)}
}

.infinite-row-loader {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.row-loader{
    position: absolute;
    background: #f7f7f794;
    width: 100%;
    z-index: 199;
    height: -webkit-fill-available;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(4px);
    min-height: calc(16em + 150px);
}

.search-popup__content .catalog__items{
    position: relative;
}
.search-popup__content .catalog__items .row-loader{
    background: rgba(247, 247, 247, 0.15);
    backdrop-filter: blur(8px);
}
