.app-container {
    display:none;
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 4px;
    padding: 20px 16px;
    position: fixed;
    top:0;
    z-index: 20;
}

.app-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.app_header_logo {
    width: 60px;
    height: 60px;
}
.app-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.app-title {
    font-family:'circular';
    font-weight: 400;
    color: #453283;
    margin-bottom: 0px;
}
.app-funnel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.close-app-funnel_btn{
    width:10px;
    height:10px;
    position:absolute;
    right:16px;
    top:16px;
}
.install-link {
    font-family: 'circular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none !important;
    color: #8365ff !important;
    margin-top:5px;
}
.install-link:hover{
    cursor:pointer;
    text-decoration:none;
}
@media screen and (max-width:370px){
    .app-title{
        font-size:20px;
    }
}
@media screen and (max-width:365px){
    .app-funnel {
        justify-content: space-between;
    }
}
@media screen and (max-width:340px) {
    .app-title {
        font-size: 17px;
    }
}