﻿.d-flex {
    display: -ms-flexbox;
    display: flex;
}

.pl-2, .px-2 {
    padding-left: .5rem !important;
}

.pr-2, .px-2 {
    padding-right: .5rem !important
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important;
}

.mt-2, .my-2 {
    margin-top: .5rem !important
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.collapsible {
    background-color: #13aaf4;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .collapsible:hover {
        background-color: #000;
        color: white;
    }

    .collapsible:after {
        content: '\002B';
        color: white;
        font-weight: bolder;
        font-size: x-large;
        float: right;
        margin-left: 5px;
    }

    .collapsible .active {
        background-color: #13aaf4;
    }

    .active:after {
        content: "\2212";
    }

.faq-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #fff;
    margin-bottom: 10px;
}

.faq-content p {
    margin: 2rem 0;
}