@import url('variables.css');

.bottom-navigator-main{
    border-radius: 30px 30px 0px 0px;
    padding: 0px 30px;
}
.bottom-navigator-item{
    padding: 10px 0px;
}
.bottom-navigator-image{
    width: 40px;
    height: 40px;
}
.bottom-navigator-image path {
    fill: gray;
}
.bottom-navigator-image rect {
    fill: none;
}
.bottom-navigator-item{
    border-top: 5px solid transparent;
}
.bottom-navigator-item.active{
    box-sizing: border-box;
    border-top: 5px solid var(--main-color);
}
.bottom-navigator-item.active path {
    fill: var(--main-color);
}
.bottom-navigator-item.active .text-block-35 {
    color: var(--main-color);
}
.exposed{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    position: relative;
    top: 0%;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.exposed path{
    fill: white;
}
.exposed .bottom-navigator-image {
    width: 40px;
    height: 40px;
}
#close-mobile-search{
    display: none;
}

@media screen and (max-width: 991px) {
    .bottom-navigator-image{
        width: 40px;
        height: 40px;
    }
}
@media screen and (max-width: 767px) {
    .bottom-navigator-image{
        width: 35px;
        min-height: 35px;
    }
}
@media screen and (max-width: 479px) {
    .exposed{
        position: absolute;
        top: -25%;
    }
    .bottom-navigator-image{
        width: 30px;
        min-height: 30px;
    }
    .bottom-navigator-main{
        padding: 0px 20px;
    }
    .bottom-navigator-item{
        padding: 5px 0px;
    }
    .exposed .bottom-navigator-image {
        width: 40px;
    }
}