#main {
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
    
  }
#fairy { width: 100%; 
  margin: 0 auto; border: none; z-index: 500;
}

/*----- Tabs -----*/
.tabs {
	width: 100%;
	display:inline-block;
	position: relative;
	
}

/*----- Tab Links -----*/
/* Clearfix */
	.tab-links:after {
	display:block;
	clear:both;
	content:'';
}

.tab-links li {
	margin: 1px 0px 0px 2px;
	float:left;
	list-style:none;
}

.tab-links a {
	padding:5px 5px!important;
	display:inline-block!important;
	border-radius:6px 6px 0px 0px!important;
	background: var(--s002);
	font-size:14px!important;
	font-weight:600;
	color: var(--s005);
	transition:all linear 0.15s;
}

.tab-links a:hover {
	background: var(--s005);
	color: var(--s002);
	text-decoration:none;
}

li.active a, li.active a:hover {
	background:#fff;
	color:#4c4c4c;
}

/*----- Content of Tabs -----*/
.tab-content {
	padding-right:15px;
	border-radius:3px;
	box-shadow:-1px 1px 1px rgba(0,0,0,0.15);
	background:#fff;
	height: 370px;
	min-width: 150px;
	overflow-x: hidden;
	overflow-y: auto;
	margin-top: -10px;
	margin-left: 20px;
}

.tab {
	display:none;
}

.tab.active {
	display:block;
}