/**
 * Tabs
 */
.tabs {
	display: flex;
	flex-wrap: wrap; 
}
.tabs label {
    order: 1;
    display: block;
    cursor: pointer;
    background: #90caf900;
    transition: background ease 0.2s;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 28px;
    margin: 0;
    list-style: none;
    border-radius: 10px 10px 0px 0;
    border: 0;
}
.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  background: #fff;
  padding: 20px;
  border: 0;
  border: 2px solid #f4f4f4;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background-color: #f4f4f4;
    border-bottom: 0;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

@media (max-width: 768px) {
.title-module h1 {
    font-size: 27px;
}
.tabs {
    display: block;
    flex-wrap: wrap;
        margin-top:0px;
}
 header {
    margin-bottom: 40px;
}
.main_out-ldrshp {
    margin-top: 20px;
    margin-bottom:50px;
}
    .tabs label::after {
    width: 0;
    height: 0;
    float: right;
    margin-top: 9px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #c1c1c1;
    content: '';
}
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .ldrshp-1 h3 {
    font-size: 15px;
}
  .ldrshp-1 h4 {
    font-size: 12px;
}
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
    display: inline-block;
    border-bottom: 1px solid #ccc;
  }
}