@charset "utf-8";
/* CSS Document */
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
	border: none !important;
	background: transparent !important;
}
.ui-accordion .ui-accordion-header{
	font-family: 'Heebo', sans-serif;
	font-size: 15px;
	font-weight: 300;
	text-align: left;
}
.ui-widget-content{
	background: none !important;
	border: 0 !important;
}
.tab {
	margin-top: 5px;
	overflow: hidden;
	padding: 0 50px 0 140px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 14px;
  transition: 0.3s;
  font-size: 17px;
}

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

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc !important;
}
/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}
		/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
		/*
* jQueryTab v2.0
* Copyright Dharma Poudel (@rogercomred)
* Free to use under the GPLv3 license.
* http://www.gnu.org/licenses/gpl-3.0.html
*/

/* == quick_reset */

.opening-position-desktop{display:block}
.opening-position-mobile{display:none}


/* Media Queries
***********************/
@media screen and (max-width: 1024px) {
	.tab {
	margin-top: 5px;
	overflow: hidden;
	padding: 0 0 0 50px;
}
	.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 14px;
  transition: 0.3s;
}
}
@media screen and (max-width: 768px) {
.tab {
	margin-top: 5px;
	overflow: hidden;
	padding: 0 ;
}
	
}
@media screen and (max-width: 600px) {
 
.opening-position-mobile{display:block;}
	.opening-position-desktop{display:none;}

}

