.t-name_l {
    font-size: 20px;
    line-height: 1.35;
}

.t-container {
    margin: 40px 0;
}

.according-block {
    margin-bottom: 30px;
}

.accordion-container {
    margin-top: 25px;
}

/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
    display: block !important;
}

div.panel {
    padding: 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
    display: none;
}

div.panel.show {
    opacity: 1;
    max-height: 500px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}

.sub-group {
    margin-top: 25px;
    display: none;
}

.sub-group.show {
    display: block;
}

.slide {
    cursor: pointer;
    border-bottom: 1px dashed #979797;
}

.slide:after {
    margin-top: 8px;
    position: relative;
    left: 6px;
}

button.accordion:after, .slide:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after, .slide.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
