@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");
.panel-title > a:before {
    float: right !important;
    font-family: FontAwesome;
    content:"\f068";
    padding-right: 5px;
}
.panel-title > a.collapsed:before {
    float: right !important;
    content:"\f067";
}
.panel-title > a:hover,
.panel-title > a:active,
.panel-title > a:focus  {
    text-decoration:none;
}


@font-face {
    font-family: EquipSlab-BoldItalic;
    src: url('../fonts/EquipSlab/EquipSlab-BoldItalic.ttf');
}

.form-container {
    margin: auto;
    width: 60%;
    padding: 10px;
}

h1 {
    font-family: EquipSlab-BoldItalic;
}

p {
    font-size: 18px;
}

button {
    font-size: 22px;
    font-weight: 600;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    /*border: black;*/
    outline: none;
    transition: 0.4s;
}

.active-faq, .accordion:hover {
    background-color: rgb(242, 115, 148);
    color: white;
}

.accordion:after {
    font-family: FontAwesome;
    color: #444;
    content: '\f067'; /* Unicode character for "plus" sign (+) */
    font-size: 14px;
    float: right;
    margin-left: 20px;
    padding: 6px;
}

.accordion:hover:after {
    color: white;
}

.active-faq:after {
    font-family: FontAwesome;
    color: white;
    content: "\f068"; /* Unicode character for "minus" sign (-) */
}

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    p {
        font-size: 16px;
    }

    .form-container {
        width: 90%;
    }

    button {
        font-size: 20px;
        font-weight: 600;
    }
}

@media screen and (max-width: 480px) {
    .form-container {
        width: 100%;
    }
}
