.modal-dipce {
    height: 100%;
    width: 100%;
    position: fixed;
    margin: auto;
    top: 0;
    bottom: 0;
    display: block;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), rgba(36, 192, 235, .8);
    opacity: 0;
    transition: 0.5s;
    z-index: 0;
    overflow: auto;
}

.modal-dipce.active {
    z-index: 1100;
    opacity: 1;
}

.modal-dipce-content {
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    display: block;
}

.preloader__main {
    width: 100%;
    height: 100vh;
}

.preloader__flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-bottom: 4px solid #1FA3C8;
    border-left: 4px solid transparent;
}

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

.prod-sort__list-inner {
    cursor: pointer;
}

.pagination__link:active {
    background: #1FA3C8;
    color: #fff;
}


/*.product__name{
  word-break: break-all;
}*/

.autocomplete {
    position: relative;
}

.autocomplete-results {
    padding: 0;
    margin: 0;
    border: 1px solid #eeeeee;
    height: 120px;
    min-height: 1em;
    max-height: 6em;
    overflow: auto;
}

.autocomplete-result {
    list-style: none;
    text-align: left;
    padding: 4px 2px;
    cursor: pointer;
}

.autocomplete-result:hover {
    background-color: #1FA3C8;
    color: white;
}

.product__img img {
    max-height: 100%;
}

.page-enter-active,
.page-leave-active {
    transition: opacity 2s;
}

.page-enter,
.page-leave-active {
    opacity: 0;
}

.modal-dipce-content {
    min-height: 100%;
}

.modal-dipce {
    padding: 20px 0;
}

.main-slide__img-block img {
    max-width: 85%;
    -webkit-transform: translate(0, 15%);
    -ms-transform: translate(0, 15%);
    transform: translate(0, 15%);
}

@media (min-width: 680px) {
    .main-slide__img-block img {
        max-width: 100%;
        -webkit-transform: translate(-15%, 5%);
        -ms-transform: translate(-15%, 5%);
        transform: translate(-15%, 5%);
    }
}

@media (min-width: 992px) {
    .main-slide__img-block img {
        max-width: 100%;
        -webkit-transform: translate(-10%, 5%);
        -ms-transform: translate(-10%, 5%);
        transform: translate(-10%, 5%);
    }
}

.divtext>p {
    line-height: 1.35;
    margin-bottom: 8px;
}