@media screen and (max-width: 1200px) { 
	.tab_responsive {
	  overflow: hidden;
	  width: 100%;
	}

	/* Style the buttons inside the tab */
	.tab_responsive button {
	  width: 100%;
	  background-color: inherit;
	  float: left;
	  border: none;
	  outline: none;
	  cursor: pointer;
	  padding: 14px 16px;
	  transition: 0.3s;
	  font-size: 17px;
	  margin-bottom: 10px;
	}

	/* Change background color of buttons on hover */
	.tab_responsive button:hover {
	  background-color: #ddd;
	}

	/* Create an active/current tablink class */
	.tab_responsive button.active {
	  background-color: #ccc;
	}

	/* Style the tab content */
	.tabcontent {
	  display: none;
	  padding: 6px 12px;
	  border-top: none;
	}
}