/* Two Panels *START* */
.two_panel_container	{display:block;margin:auto;}
@media screen and (min-width: 1000px)
{	
	.default2_lyt	{	
		display: grid;
		grid-template-areas:
		"box1 box2";
		grid-gap: 0;
		grid-template-rows: 1fr;
		grid-template-columns: 300px 1fr;
				}
}



@media screen and (min-width: 250px) and (max-width: 1000px)
{	.default2_lyt	{	
		display: grid;
		grid-template-areas:
		"box1"
		"box2";
		grid-gap: 0;
		grid-template-rows: 1fr;
		grid-template-columns: auto;
				}
}
.default2_lyt	{
		padding: 0; background-color: #3D3A39;  }
.default2_lyt > box1	{
		grid-area: box1; text-align:center;
		 padding: 20px 0 0 0;	}
.default2_lyt > box2	{
		grid-area: box2; 
		padding: 5px 0 0 0;	}
.default2_lyt > box1 p, .default2_lyt > box2 p	{
		color:#eee; font-size:11pt;	}