/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/



#formPicture{
    background-image: url(../images/page/custom/02.jpg);
    background-size: cover;
}
 
#mainSection{
    padding: 0px !important;
}

option:first-child
{
    color: #cccccc;
}

.rowcenter{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


.onlyDesktop
{
    display:inline;
}
.onlyMobile
{
    display:none;
}

@media only screen and (max-width: 600px)
{
    .onlyDesktop
    {
        display:none;
    }
    .onlyMobile
    {
        display:inline;
    }
}
