.typewriter-element .typewriter-fixed {
    display: inline-block;
    float: right;
    margin-left: 3px;
    font-size: 23px;
}

.typewriter-element .Typewriter__wrapper{
    font-size: 23px;
}

.typewriter-element.typewriter-box-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.typewriter-element.typewriter-box-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.typewriter-element.typewriter-box-right {
    display: flex;
    justify-content: right;
    align-items: center;
}

.typewriter-element .Typewriter__cursor {
    -webkit-animation: Typewriter-cursor 1s infinite;
    animation: Typewriter-cursor 1s infinite;
    margin-left: 1px;
    font-size: 23px;
}

.typewriter-element .typewriter {
    display: inline-block;
    margin: 0 6px;
}

@-webkit-keyframes Typewriter-cursor {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes Typewriter-cursor {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}.ahura-element-main-menu .siteside {
    box-shadow: 0 0 35px #00000061;
}

@media screen and (max-width: 1024px){
    .ahura-element-main-menu .menu-wrapper {
        display: none;
    }
}.ahura-search-form-element {
    position: relative;
}

.ahura-search-form-element.with-cat {
    display: flex;
    gap: 9px;
}

.ahura-search-form-element.with-cat.template-3 {
    flex-direction: row-reverse;
}

.ahura-search-form-element.with-cat select {
    border: none;
    height: 50px;
    width: 150px;
    border-radius: 7px;
    background-color: #f0f0f0;
    padding: 8px;
    font-size: 13px;
    color: #505050;
    outline: 0;
}

.ahura-search-form-element .s-input {
    position: relative;
}

.ahura-search-form-element.with-cat .s-input {
    width: calc(100% - 150px);
}

.ahura-search-form-element:not(.with-cat) .s-input {
    width: 100%;
}

.ahura-search-form-element button {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    box-shadow: none;
    width: 50px;
    height: 100%;
    padding: 0;
    top: 0;
    font-size: 19px;
    color: #9e9fb1;
}

.ahura-search-form-element input[type=text] {
    box-shadow: 0 7px 35px 0 rgba(0,0,0,0.1);
}

.ahura-search-form-element #ajax_search_loading {
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.ahura-search-form-element #ajax_search_loading.show-loader {
    opacity: 1;
}

.ahura-search-form-element.with-btn #ajax_search_loading {
    width: 110px;
}

.ahura-search-form-element .search-item .item-cover {
    width: 50px;
}

.ahura-search-form-element .search-item .item-cover img {
    border-radius: 7px;
    object-fit: cover;
}

.ahura-search-form-element #ajax_search_res .search-item a {
    display: flex;
    gap: 10px;
}