/* Global settings */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

body{
    overflow-x: hidden;
    background-color: var(--Platonic);
    height: 100vh;
}

:root{
    --Platonic: #F5F5F5;
    --Tło: #171940;
    --Napisy_główne: #171940;
    --Napisy: #D9B97E;
}

/* Main section */

.fixed-fix {
    height: 197px;
}

/* Left section FIXED */

.left-section-fixed {
    flex-direction: row-reverse;
    width: 100%;
    height: 107px;
    background-color: var(--Platonic);
}

.left-section-search-box {
    width: 90%;
}

.left-section-form-search {
    width: 100%;
    background-color: var(--Platonic);
}

.help-input-box {
    width: 100%;
}

.left-section-search-bar {
    width: 95%;
}

.icon-submit {
    right: 5%;
}

.left-side-filtrs {
    width: 10%;
    height: auto;
}

.dots-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;

    background-color: var(--Platonic);
}

.dots {
    display: flex;
    align-items: center;
    width: 5px;
    height: 43px;
}

.dots-active .dots {
    width: 31.9px;
}

.dots-inner {
    display: flex;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transition: .1s ease-in-out;

    background-color: var(--Napisy_główne);
}


.dots-inner:before {
    position: absolute;
    top: -14px;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transition: transform .25s ease-in-out; 

    background-color: var(--Napisy_główne);
}

.dots-inner:after {
    position: absolute;
    top: 14px;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transition: transform .25s ease-in-out; 

    background-color: var(--Napisy_główne);
}

.dots-active .dots-inner {
    background-color: transparent;
}


.dots-active .dots-inner:before {
    width: 45px;
    height: 2.5px;
    transform: translateY(14px) rotate(45deg);
    border-radius: 0;
}

.dots-active .dots-inner:after {
    width: 45px;
    height: 2.5px;
    transform: translateY(-14px) rotate(-45deg);
    border-radius: 0;
}

.left-side-filtrs-heading {
    display: none;
}

.left-side-filtrs-options {
    display: none;
}

.filtrs-menu {
    display: none;
    flex-direction: column;
}

.filtrs-menu--active {
    display: flex;
    animation: fadeIn 0.2s ease-in-out;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

/* Search results */

.search-results {
    height: auto;
    min-height: 70px;
}

.search-results-p {
    padding-left: 35px;
}

/* Central flex section */

.left-section-fixed-fix {
    display: none;
}

.central-section {
    width: 100%;
}