﻿.header-mobile {
    display: none;
    height: 65px;
    background: #202020;
    width: 100%;
    padding-top: 25px;
}

.arrow-back {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 0px 25px;
    display: none;
}

#title-mobile {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.012em;
    color: #FFFFFF;
}

@media only screen and (max-width: 425px) {

    .header-mobile {
        display: flex;
        justify-content: center;
    }

    .arrow-back {
        display: block;
    }
}