@media only screen and (min-width: 1200px){
    .mobile-app {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: center;
    }
}
@media only screen and (max-width:1199px) {
    .mobile-app {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center;
    }
}
.lang-ru {
    font-size: 16px !important;
    margin-bottom: 0!important;
}
.app-logo {
    width: 100px;
    height: 100px;
    background-size: cover;
}
.app-content {
    text-align: center;
    margin: 0;
    z-index: 1;
    position: relative;
}
.play-img {
    height: 55px;
    background-size: cover;
}
.play-img-footer {
    height: 40px;
    background-size: cover;
}
.app-link {
    padding-left: 10px;
}
.app-play-btn {
    padding: 10px;
    margin-top: 20px !important;
}

.app-slider-img {
    width: 200px;
    background-size: cover;
}
.form-search {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.search-result {
    width: 100%;
    max-height: 200px;
    overflow: auto;
    background-color: #fff;
    padding: 20px;
    position: absolute;
    display: none;
}
.search-item {
    padding: 5px;
    text-align: left;
}
.search-item:hover {
    background-color: #3d65fb;
    color: #fff;
}
