.information-dropdown.items__dropdown .card__text {
    margin-bottom: 1rem;
}

.information-container {
    margin-top: 3.2rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: .3fr 1fr;
    grid-template-columns:  .3fr 1fr;
    grid-gap: 3.2rem;
    overflow: visible;
}

.information-block {
    background-color: var(--white);
    border-radius: 4px;
    -webkit-box-shadow: 0 34px 24px -9px rgba(150, 150, 150, .2);
    box-shadow: 0 34px 24px -9px rgba(150, 150, 150, .2);
    padding: 4.2rem 2rem;
    overflow: hidden;
}

.information-block ul li {
    list-style: disc;
    margin-left: 2.5rem;
}

.information-menu a, .information-menu a:hover, .information-menu a:visited {
    color: var(--black);
    font-size: var(--textSizeLg);
}

.information-menu li {
    margin-bottom: 1rem;
}

.information-title {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.information-content {
    overflow: auto;
}

.information-content .table td {
    padding: 0.5rem;
}

.information-content .table.need-collapse td > div:first-child {
    max-height: 120px;
    overflow: hidden;
}

.btn-show-less, .btn-show-more {
    color: var(--blue);
}

.btn-show-less:hover, .btn-show-more:hover,
.btn-show-less:focus, .btn-show-more:focus {
    cursor: pointer;
}

.text-center {
    text-align: center !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

@media (max-width: 1300px) {
    .information-container {
        grid-gap: 2rem;
    }
}

@media (max-width: 991px) {
    .information-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}