.main_wrap{
    /*display: flex;*/
    position:relative;
    /*display:flex;*/
    /*flex-direction:column;*/
    width:100%;
    min-height:100vh;
    
    background-image:url("/image/logo-icon.png");
    background-color: rgba(220,220,220,0.7);
    background-position:center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.main_wrap-once{
    position:relative;
    /*display:flex;*/
    /*flex-direction:column;*/
    width:100%;
    min-height: 85.8vh;

    background-image:url("/image/backblue2.jpg");
    background-position:center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
}

.header{
    padding: 15px;
    display: flex;
    
    justify-content:space-between;
    background:rgba(255,255,255,0.8);
    box-shadow:0 4px 4px 0 rgba(0,0,0,0.15);
}

.header__buttons{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}
.header_buttons_recipes a{
    display: block;
    height: 40px;
}
.header__logo{
    width: 130px;
    height: 110px;
    background-image:url("/image/logo.png");
    background-position:center center;
    background-size: cover;
}

/*.header__chat{*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
/*}*/
.header__chat-enable{
    animation-name:button_new_chat_message;
    animation-duration:5s;
    animation-timing-function:easy;
    animation-iteration-count:infinite;
}

/*.header__buttons .button_type{*/
    /*width:200px;*/
    /*padding: 0;*/
    /*margin:5px 0;*/
    /*height:30px;*/
    /*font-size:14px;*/
    /*display:flex;*/
    /*justify-content:center;*/
    /*align-items:center;*/
    /*font-size:14px;*/
/*}*/

@media (max-width:500px){
    .header__logo{
        width: 70px;
        height: 60px;
        margin-top:28px;
    }
    .header__buttons .button_type{
        width:175px;
        font-size:12px;
    }
}

/*New Design*/
.main-container{
    max-width: 1440px;
    padding: 0 15px;
    margin:auto;
}
.dashboard{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding-top: 60px;
    /*background: rgba(20,50,90,0.2);*/
    /*border-radius: 115px;*/
    /*box-shadow: 10px 10px 25px black;*/
}

.dashboard-block-card{
    width: calc((100% - 120px)/3);
    text-align: center;
}
.dashboard-card{
    background: #fff;
    padding: 10px 35px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.29);
    border-radius: 15px;
    width: 140px;
    min-height: 170px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    transition: all .2s linear;
}
.dashboard-card:hover{
    background: #337abb;
    transition: all .2s linear;
    -webkit-animation: bounce 1s 0.1s linear infinite;
    animation: bounce 1s 0.1s linear infinite;
}
.dashboard-card:hover > .dashboard-card__image{
    color: #fff;
    transition: all .2s linear;
}
.dashboard-card:hover > .dashboard-card__title{
    color: #fff;
    transition: all .2s linear;
}
.dashboard-card .dashboard-card__image{
    text-align: center;
    margin-bottom: 20px;
    font-size: 85px;
    color: #337abb;
    transition: all .2s linear;
}
.dashboard-card .dashboard-card__title{
    text-align: center;
    font-size: 18px;
    font-family: Arial;
    color: #337abb;
    font-weight: bold;
    transition: all .2s linear;
}
@media screen and (min-width: 992px){
    .dashboard .dashboard-block-card{
        margin: 0 20px 60px 20px;
    }
    .dashboard .dashboard-block-card:nth-of-type(3n + 1){
        margin: 0 20px 60px 0;
    }
    .dashboard .dashboard-block-card:nth-of-type(3n + 3){
        margin: 0 0 60px 20px;
    }
}

@media screen and (max-width: 991px){
    .dashboard-block-card{
        width: calc((100% - 120px)/3);
    }
    .dashboard .dashboard-block-card{
        margin: 0 20px 60px 20px;
    }
    .dashboard .dashboard-block-card:nth-of-type(3n + 1){
        margin: 0 20px 60px 0;
    }
    .dashboard .dashboard-block-card:nth-of-type(3n + 3){
        margin: 0 0 60px 20px;
    }
}
@media screen and (max-width: 767px){
    .dashboard{
        -webkit-justify-content: space-between;
        justify-content: space-between;
        padding: 30px 15px;
    }
    .dashboard-block-card{
        width: calc((100% - 40px)/2);
    }
    .dashboard .dashboard-block-card{
        margin: 0 0 20px 0;
    }
    .dashboard .dashboard-block-card:nth-of-type(3n + 1){
        margin: 0 0 20px 0;
    }
    .dashboard .dashboard-block-card:nth-of-type(3n + 3){
        margin: 0 0 20px 0;
    }
}
@media screen and (max-width: 550px){
    .dashboard-block-card{
        width: 100%;
    }
}




