body {
  font-size: 11pt;
  font-family: 'Oswald', sans-serif;
  line-height: 1.8;
  color: #222;
  background: #f8f8f8;
  font-weight: 400;
 }
 
.upperMain
{
  background: #f8f8f8;
  padding: 50px 0; 
}

.mainBody
{
  width: 900px;
  background: #fff;
  margin: 0 auto;
  box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px; 
}
  
@media screen and (max-width: 1200px) 
{
	.mainBody 
	{
		width: calc( 100% - 30px);
		max-width: 100%; 
	} 
}
@media screen and (min-width: 1024px) 
{
	.mainBody
	{
		width: calc( 90% - 30px);
		max-width: 100%; 
	} 
}

.row 
{
  display: table-row;
  background: #f6f6f6;
}

.cell 
{
  padding: 5px;
  display: table-cell;
}

.row:nth-of-type(odd) 
{
  background: #e9e9e9;
}

.row.header 
{
  font-weight: 900;
  color: #ffffff;
  background: #4F6A91;
}

@media screen and (max-width: 580px) 
{
  .row 
  {
    padding: 10px;
    display: block;
  }
  
  .cell 
  {
    padding: 0px;
    display: block;
	text-align: center;
  }
  
  .row.header 
  {
    display: none;
  }
}

.upperForm
{
  display: flex;
  display: -webkit-flex; 
}

.form-title 
{
  margin-bottom: 33px; 
}
  
@media screen and (max-width: 768px) 
{
  .upperForm 
  {
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center; 
  }

  .form-title 
  {
    text-align: center; 
  } 
}

@media screen and (max-width: 768px) 
{
	.right-menu 
	{
		text-align:right;
		float:right;
    }
}