﻿.twoColumns
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items : stretch;
    flex-wrap: nowrap;
    padding : 1rem;
}

.picturePlayerAndPhoto
{
    flex-grow : 1;
    flex-shrink : 1;
    flex-basis : 60%;
}
.rightPart
{
    flex-grow : 1;
    flex-shrink : 1;
    flex-basis : 40%;
    padding : 0 0 0 2rem;
}
.newsAndShortcut
{
    
}
.picturePlayerContainer
{

}

.galleryContainer
{
}
@media (max-width: 980px) {
    .twoColumns
    {
        flex-direction: column;
        justify-content: flex-start;
        align-items : stretch;
    }
    .rightPart
    {
        order : 1;
        padding : 0 0 0 0;
    }
    .picturePlayerAndPhoto
    {
        order : 2;
        margin-top : 1rem;
    }
}
