.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
  width: auto;
  margin: 0 auto;
}
/*tab style*/
.tab_item {
  width: calc(100%/5);
  height: 50px;
  border-bottom: 3px solid #0d0b0c4d;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}
/*turn off all raido button*/
input[name="tab_item"] {
  display: none;
}
/*Tab switching content style*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}
/*Show only the contents of the selected tab*/
#movie-eng:checked ~ #movie-eng-content,
#movie-pt:checked ~ #movie-pt-content,
#movie-ch:checked ~ #movie-ch-content,
#movie-jpn:checked ~ #movie-jpn-content,
#movie-kor:checked ~ #movie-kor-content {
  display: block;
}
/*Change the style of the selected tab*/
.tabs input:checked + .tab_item {
  background-color: #0d0b0c4d;
  color: #325406;
}