.group_header{
    position: fixed;
    width: 100%;
    padding-right: 100px;
    z-index: 500;
    background-color: #f7f7ff;
    transition: opacity .5s;
    opacity: 1;
}
.group_header.not_top{
    opacity: 0.9;
}
.group_title, .group_buttons, .group_buttons_left, .group_title_left, .group_title_right, .group_container{
    display:flex;
}
.group_buttons, .group_title{
    justify-content: space-between;

}
.group_buttons{
    overflow: hidden;

    border-bottom: 1px solid grey;
    margin-left: -5px;
    margin-right: -20px;
    padding-left: 5px;
    padding-right: 20px;
    height: 48px;
    box-shadow: 0px 5px 5px grey;
    transition: height .5s;
}
.group_title h1{
    transition: all .5s;
}
.group_header.not_top .group_buttons{
    height: 0;
    box-shadow: none;
}
.group_header.not_top .group_title h1{
    margin: 0;
}
.group_title_left{
    margin-left: 15px;
}
.group_title_left h1{
    margin-right: 15px;
}
.group_title_center{
    position: relative;
    width: 20px;
    opacity: 0;
    transition: all .5s;
    cursor: pointer;
    font-size: 25px;
}
.group_title_center span{
    position: absolute;
    bottom: 0;
}
.group_header.not_top .group_title_center{
    opacity: 1;
}

.group_privacy{
    display: inherit;
}
.group_title_right{
    font-size: 25px;
    align-self: center;
}
.group_title_right span{
    position: relative;
    top: 5px;
}
.group_info{
    display:flex;
    flex-direction: column;
    justify-content: flex-end;
}
.search_group{
    position: relative;
    margin-right: 15px;
    cursor: pointer;
}
.search_group .search_group_input{
    width: 35px;
    transition: all .5s;
}
.search_group.active .search_group_input{
    width: 200px;
}
.search_group span{
    position: absolute;
    right: 3px;
}
.select_content_group{
    margin: 0 10px;
    padding: 8px;
    cursor: pointer;
}
.select_content_group p{
    margin: 0;
    font-size: 21px;
}
.select_content_group.active p{
    color: #ffff;
}
.group_buttons_left{
    position: relative;
}
.select_content_group.active {
    background-color: #4187f6;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
}
.select_content_group.active p::before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: -20px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 10px 10px 0 #4187f6;
    z-index: -1;
}
.select_content_group.active p::after{
    content: '';
    position: absolute;
    bottom: 0px;
    right: -20px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #4187f6;
    z-index: -1;
}
.group_buttons_right{
    font-size: 25px;
    align-self: center;
    display: flex;
}
.info_icon a{
    transition: all .3s;
    cursor: pointer;
    color: black!important;
}
.info_icon a:hover{
    color: #ffc107 !important;
}
.share_span{
    margin-right: 15px;
    cursor: pointer;
}
.routes{
    padding-top: 2px;
    font-size: 15px;
    position: relative;
}
.routes .route{
    cursor:pointer;
}
.routes .route_icon ion-icon{
    top: 3px;
    position: relative;
}

.core_levels{
    background-color: #D9DEDE;
    display: flex;
    position: absolute;
    flex-direction: column;
    border-radius: 10px;
    overflow-x: hidden;
    box-shadow: 5px 5px 5px #4187f6;
    max-height: 0;
    transition: all .2s;
    z-index: 900;
    text-align: left;
    position: absolute;
    top: 27px;
    right: 0px;
    overflow: hidden;
}
.core_level{
    padding: 4px 7px;
}
.core_levels a:hover{
    background-color: #265092;
    color: #ffff;
}
.group_container{
    transition: all .5s;
    padding: 20px;
    margin-top: 170px;
}
.content_group{
    /*padding: 20px 20px;*/
    width: 0;
    position: relative;
    overflow: hidden;
    height: 0;
    left:0;
    transition: all .5s;

}
.content_group.active{
    width: 100%;
    height: 100%;
    height: fit-content;
}
