/** 탭 기본 스타일 **/
.tabs .tab-header {
  height: 50px;
  line-height: 50px;
  background-color: #404b57;
  font-size: 15px;
  color: white;
  text-align: center;
}
[role="tablist"] {
  display: flex;
  flex-wrap: wrap;  
  margin-bottom: 30px;  
}
[role="tab"] {
  position: relative;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 59px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  background-color: #f5f6f8;
  color: #333;
  text-align: center;
  word-break: keep-all;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
[role="tab"][aria-selected="true"] {
  background-color: white;
}
[role="tab"]:first-child,
[role="tab"]:nth-child(2n + 1) {
  border-left: 1px solid #ddd;
}
[role="tab"]:hover,
[role="tab"]:focus {
  background-color: white;
}
[role="tabpanel"] {
  padding-bottom: 30px;
  outline: none;
}
@media (min-width: 768px) {
  .tabs .tab-header {
    display: none;
  }
  [role="tablist"] {
    flex-wrap: wrap;
    border: none;
    border-top: 2px solid #404b57;
    margin-bottom: 30px;
    overflow: visible;
  }
  [role="tab"] {
    border-right: none;
    background-color: white;
  }
  [role="tab"]:nth-child(2n + 1) {
    border-left: none;
  }
  [role="tab"]:nth-child(5n + 1) {
    border-left: 1px solid #ddd;
  }
  [role="tab"]:nth-child(5n) {
    border-right: 1px solid #ddd;
  }
  [role="tab"].n2 {
    -ms-flex: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  [role="tab"].n3 {
    -ms-flex: 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  [role="tab"].n4 {
    -ms-flex: 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  [role="tab"].n5 {
    -ms-flex: 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  [role="tab"]:first-child {
    border-left: 1px solid #ddd;
  }
  [role="tab"]:last-child {
    border-right: 1px solid #ddd;
  }
  [role="tab"]:hover,
  [role="tab"]:focus {
    background-color: hsl(0, 0%, 90%);
  }
  [role="tab"]:not(:last-child):not(:nth-child(5n))::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: #ddd;
  }
  [role="tab"]:hover::after,
  [role="tab"]:focus::after {
    display: none;
  }
  [role="tab"][aria-selected="true"] {
    background-color: #404b57;
    color: white;
  }
  [role="tab"][aria-selected="true"]:first-child {
    border-left-color: #404b57;
  }
  [role="tab"][aria-selected="true"]:last-child {
    border-right-color: #404b57;
  }
  [role="tab"]:not(:last-child):not(:nth-child(5n))[aria-selected="true"]::after {
    display: none;
  }
}

/**
* 앤드와이즈 위젯 탭
*/
.tabs ul[role="tablist"] > li {
  padding: 0;
}
.tabs ul[role="tablist"] > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  line-height: 1.4;
  padding: 10px 5px;
  font-size:15px
}
.tabs ul[role="tablist"] > li.active a {
  background-color: white;
  color: #333;
}
@media (min-width: 768px) {
  .tabs ul[role="tablist"] > li a {
    font-size:16px
  }
  .tabs ul[role="tablist"] > li.active a {
    background-color: #404b57;
    color: white;
  }
  .tabs ul[role="tablist"] > li.active::after {
    display: none;
  }
}

/**
* 탭 스타일 01 
*/
.tabs-style01 {
  position: relative;
}
.tabs-style01 .tab-header {
  display: none;
}
.tabs-style01 [role="tablist"] {
  flex-wrap: nowrap;
  border: none;
}
.tabs-style01 [role="tab"] {
  position: relative;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  max-width: none;
  min-height: auto;
  padding: 15px;
  border: none;
  background-color: white;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-align: center;
  white-space: nowrap;
}
.tabs-style01 [role="tab"]:hover,
.tabs-style01 [role="tab"]:focus {
  color: #05367b;
}
.tabs-style01 [role="tab"]:first-child {
  margin-left: -10px;
}
.tabs-style01 [role="tab"][aria-selected="true"] {
  color: #05367b;  
}
.tabs-style01 [role="tab"][aria-selected="true"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 60px;
  height: 3px;
  background-color: #05367b;
}
.tabs-style01 [role="tab"]:not(:last-child):not(:nth-child(5n))::after {
  display: none;
}
/* .tabs-style01 [role="tab"]:not(:first-child)::before {
  display: none;  
} */
.tabs-style01 .more-link {
  position: absolute;
  top: 14px;
  right: 15px;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.tabs-style01 [role="tablist"] {
  margin-bottom: 0;
}
.tabs-style01 [role="tabpanel"] {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .tabs-style01 [role="tab"] {
    font-size: 18px;
  }
  .tabs-style01 [role="tab"][aria-selected="true"]::before {
    width: 62px;
  }
  .tabs-style01 [role="tablist"] {
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px) {
  .tabs-style01 [role="tab"] {
    font-size: 20px;
  }
  .tabs-style01 [role="tab"][aria-selected="true"]::before {
    width: 68px;
  }
}

/**
* 탭 스타일 02 
*/
.tabs-style02 {
  position: relative;
}
.tabs-style02 .tab-header {
  display: none;
}
.tabs-style02 [role="tablist"] {
  flex-wrap: nowrap;
  border: none;
  border-bottom: 2px solid #404b57;
}
.tabs-style02 [role="tab"] {
  position: relative;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  max-width: none;
  min-height: auto;
  padding: 15px 10px;
  border: none;
  background-color: #eaeaea;
  border-left: 1px solid #fff;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-align: center;
  white-space: nowrap;
}
.tabs-style02 [role="tab"]:first-child {
  /* margin-left: -10px; */
}
.tabs-style02 [role="tab"]:not(:last-child):not(:nth-child(5n))::after {display:none;}
.tabs-style02 [role="tab"][aria-selected="true"] {
  color: #fff;
  background: #404b57;
  
}
.tabs-style02 [role="tab"][aria-selected="true"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 60px;
  height: 3px;
  background-color: #05367b;
}
.tabs-style02 [role="tab"]:not(:first-child)::before {
  display: none;  
}
.tabs-style02 [role="tab"]:hover,
.tabs-style02 [role="tab"]:focus {
    background-color: hsl(0deg 0% 85%);
  }
.tabs-style02 [role="tab"][aria-selected="true"]:hover,
.tabs-style02 [role="tab"][aria-selected="true"]:focus {
    background: #404b57;
  }
.tabs-style01 .more-link {
  position: absolute;
  top: 14px;
  right: 15px;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.tabs-style02 [role="tablist"] {
  margin-bottom:30px;
}
.tabs-style02 [role="tabpanel"] {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .tabs-style02 [role="tab"] {
    padding:15px;
  }
  .tabs-style02 [role="tablist"] {
    flex-wrap: nowrap;
    /* border-bottom:none; */
  }
  .tabs-style02 [role="tab"][aria-selected="true"]::after {
    width: 62px;
  }
}
@media (min-width: 1200px) {
  .tabs-style02 [role="tab"][aria-selected="true"]::after {
    width: 68px;
  }
}

/**
* 탭 스타일 02 -1
*/

.tabs-style02.type01 [role="tablist"] {
  margin-bottom:16px
}

.tabs-style02.type01 [role="tab"][aria-selected="true"] {
  margin-bottom:-1px;
  color: #404b57;
  background: #fff;
  border:1px solid #404b57;
  border-bottom:none;
  
}
.tabs-style02.type01 [role="tablist"] {
  border-bottom:1px solid #404b57
}