/*=====================================================================*/
.iframe-burgermodal
	{
	position:         static;
	display:    inline-block;
	vertical-align:      top;
	width: calc(100% - 10px);
	height:             100%;
	margin:              0px;
	}

/*=====================================================================*/
.iframe-burgerdiscussions
	{
	position:      static;
	vertical-align:   top;
	display: inline-block;
	width:          15rem; width:   var(--burgerdiscussionsiframewidth);
	height:        285rem; height: var(--burgerdiscussionsiframeheight); /* don't forget to update elsewhere */
	margin-top:       0px;
	overflow:      hidden; /* this doesn't work to avoid unwanted scroll bars */
	}

/* left discussions sidebar is not shown when width is less than 1200px */
@media (max-width: 75rem)
{
.iframe-burgerdiscussions
	{
	display: none;
	}
}

/*=====================================================================*/
.iframe-burgeranimations
	{
	position:      static;
	vertical-align:   top;
	display: inline-block;
	width:       18.75rem; width:   var(--burgeranimationsiframewidth);
	height:        220rem; height: var(--burgeranimationsiframeheight); /* don't forget to update elsewhere */
	margin-top:       0px;
	margin-right:     0px;
	overflow:      hidden; /* this doesn't work to avoid unwanted scroll bars */
	}

/* right animations sidebar is not shown when width is less than 1200px */
@media (max-width: 75rem)
{
.iframe-burgeranimations
	{
	display: none;
	}
}

/*=====================================================================*/
/* note that the display is set to none in this initial definition */
.iframe-burgerdiscussionsandanimations
	{
	position:      static;
	vertical-align:   top;
	display: inline-block;
	width:       18.75rem; width:   var(--burgerdiscussionsandanimationsiframewidth);
	height:        430rem; height: var(--burgerdiscussionsandanimationsiframeheight); /* don't forget to update elsewhere */
	margin-top:       0px;
	margin-right:     0px;
	overflow:      hidden; /* this doesn't work to avoid unwanted scroll bars */
	}

/* right discussions and animations sidebar only shown when width is between 851px and 1200px */
@media (max-width: 53.125rem)
{
.iframe-burgerdiscussionsandanimations
	{
	display: none;
	}
}

/* right discussions and aniamtions sidebar only shown when width is between 851px and 1200px */
@media (min-width: 75rem)
{
.iframe-burgerdiscussionsandanimations
	{
	display: none;
	}
}

/*=====================================================================*/