@media only screen and (min-width: 1px) {
    .header_accaunt {
        position: relative;
        width: 500px;
        height: 80px;
        display: inline-block;
    }
    .accaunt_main_butt {
        position: relative;
        width: 480px;
        height: 80px;
        display: flex;
        background-color: transparent;
        border: transparent;
    }

    .accaunt_main_butt img {
        position: absolute;
        z-index: 10;
        width: 75px;
        height: 75px;
    }

    .accaunt_main_butt_right {
        position: absolute;
        z-index: 5;
        left: 70px;
        width: 400px;
        height: 45px;
        top: 15px;
        background: #E9EFFF;
        border: solid;
        border-radius: 15px;
        border-width: 1px;
        border-color: #4E7FFF;
    }

    .accaunt_main_butt_right span {
        position: relative;
        color: #4E7FFF;
        font-size: 24px;
        font-weight: bold;
        top: 6px;
    }

    .accaunt_main_dropdown_content{
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        width: 450px;
        left: 20px;
        top: 50px;
        border: solid;
        border-radius: 0px 0px 15px 15px;
        border-width: 1px;
        border-color: #4e7fff;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        padding: 10px 0;
    }

    .accaunt_main_dropdown_content a{
        width: 400px;
        height: 60px;
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 30px;
        display: flex;
        align-items: center;
        color: #0044F4;
        margin: 25px 10px 5px 10px;
        text-decoration: none;
        justify-content: flex-start;
        padding: 0 0 0 25px;
        background-color: #E9EFFF;
        border: solid;
        border-width: 1px;
        border-radius: 15px;
        border-color: #dedede;
    }

    .accaunt_main_dropdown_content a span{
        margin: 0 0 0 10px;
    }

    .logo_zab{
        border-radius: 10px;
        border: solid 1px #e9efff;
    }

    .accaunt_main_dropdown_content a:hover {background-color: #ddd}

    .accaunt_main_dropdown_content_show {display:block;}

}