﻿
.accordion {
    /* background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;*/

    -webkit-text-size-adjust: 100%;
    font-family: Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    line-height: 1.5;
    box-sizing: border-box;
    border: 0 solid #d5d6d7;
    --bg-opacity: 1;
    background-color: rgba(255,255,255,var(--bg-opacity));
    border-radius: .5rem;
    display: flex;
    align-items: center;
    padding: 1rem;
}

.active, .accordion:hover {
    background-color: whitesmoke;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.TiportsFaqTitle {
    font-size: 1.0rem;
    
}