/* сброс стилей для всех элементов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* сброс стилей для элементов форм */
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input,
textarea {
    border: 0;
    border-radius: 0;
}

input:focus,
textarea:focus {
    outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* сброс стилей для ссылок */
a {
    color: inherit;
    text-decoration: none;
}

/* сброс стилей для изображений */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* сброс стилей для таблиц */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* сброс стилей для заголовков */
h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-size: inherit; */
    /* font-weight: inherit; */
}


/* сброс стилей для кнопок */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

/* сброс стилей для списков */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Скрываем скролл */
/* Скрываем scrollbar для Chrome, Safari и Opera */
.popup__inner::-webkit-scrollbar,
.popup__container::-webkit-scrollbar,
.search__tagBlock .tagGroup::-webkit-scrollbar{
    display: none;
}

/* Скрываем scrollbar для IE, Edge и Firefox */
.popup__inner,
.popup__container .search__tagBlock .tagGroup {
    -ms-overflow-style: none;
    /* IE и Edge */
    scrollbar-width: none;
    /* Firefox */
}



/* Скрываем скролл END */