@charset "utf-8";
/* CSS Document */

/*
.highlightBorderTabDifferent::after{
  content: '';
  position: absolute;
  width: 0px;
  height: 5px;
  left: 50%;
  bottom:0;
  background-color: white;
  transition: all ease-in-out .2s;
}
.highlightBorderTabDifferent:hover::after{
  width: 100%;
  left: 0;
}
*/

.tab-col1 {
	width: 100%;
	float: left;
	margin: 0 0 102px;
}
.tab-col1 .tab-row1 {
	width: auto;
	float: none;
	background: #fdf8f8;
	border-radius: 24px;
	display: inline-block;
	margin: 0 0 0;
}
.tab-col1 .tab-row1 li {
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	letter-spacing: normal;
	outline: 0;
	cursor: pointer;
	border-radius: 24px;
	display: inline-block;
	transition: all 0.25s ease-out 0s;
	margin: 0 6px 0 0;
	padding: 10px 30px 9px 32px;
	animation-name: fadeIn;
	animation-timing-function: ease-in-out;
	animation-duration: 350ms;
	animation-delay: calc(var(--count) * 250ms);
	animation-fill-mode: both;
}
.tab-col1 .tab-row1 li:last-child {
	margin-right: 0;
}
.tab-col1 .tab-row1 li:hover {
	color: #ffffff;
    background: #de3554;
    border-color: #de3554;
}
.tab-col1 .tab-row1 li.active {
	color: #ffffff;
    background: #de3554;
    border-color: #de3554;
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.tab-col1 { width:100%; margin:6px 0 34px;}
.tab-col1 .tab-row1 { width:auto;}
.tab-col1 .tab-row1 li { font-size:14px; margin:0 2px 0 0; padding:10px 20px 9px 22px;}
}

@media screen and (min-width:481px) and (max-width:600px) {
.tab-col1 { width:100%; margin:6px 0 34px;}
.tab-col1 .tab-row1 { width:auto;}
.tab-col1 .tab-row1 li { font-size:14px; margin:0 2px 0 0; padding:10px 20px 9px 22px;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.tab-col1 { width:100%; margin:6px 0 34px;}
.tab-col1 .tab-row1 { width:auto;}
.tab-col1 .tab-row1 li { font-size:14px; margin:0 2px 0 0; padding:10px 20px 9px 22px;}
}

@media screen and (min-width:768px) and (max-width:900px) {
.tab-col1 { margin:0 0 76px;}
.tab-col1 .tab-row1 li { font-size:15px; margin:0 2px 0 0; padding:10px 22px 9px 24px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.tab-col1 { margin:0 0 89px;}
.tab-col1 .tab-row1 li { font-size:16px; margin:0 4px 0 0; padding:10px 26px 9px 28px;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.tab-col1 .tab-row1 li { font-size:17px;}
}

@media screen and (min-width:1241px) and (max-width:1350px) {

}