@media screen and (min-width: 992px){
	.table-to-popup-trigger{
		display: none;
	}
}
@media screen and (max-width: 991px){
	.table-to-popup-wrapper{
		display: none;
	}
	.table-to-popup-frame.visible{
		display: block;
	}
	.table-to-popup-wrapper{
		width: 100%;
		white-space: nowrap;
		overflow-x: auto;
	}
}

.table-to-popup-frame{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: white;
	padding: 15px;
}

.table-to-popup-frame .table-to-popup-wrapper{
	display: block;
}

.table-to-popup-close{
	display: inline-block;
	margin-bottom: 24px;
}