.detail-forms-desktop {
    display: block;
}

.detail-forms-mobile {
    display: none;
}

/* Style the buttons that are used to open and close the accordion panel */
.detail-forms__accordion {
    /*height: 80px;*/
    font-size: 24px;
    background-color: #f2f3f5;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    /*margin-top: -15px;*/
    border-top: 1px solid #f2f3f5;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    /*box-shadow: 0 0 8px rgba(0, 0, 0, .04), 0 -4px 8px rgba(0, 0, 0, .08)*/
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.04), 0 -5px 7px rgba(0, 0, 0, .08);
    /* border-radius: 15px; -webkit-box-shadow: 0px 12px 12px -7px rgba(3, 30, 51, 0.07); -moz-box-shadow: 0px 12px 12px -7px rgba(3, 30, 51, 0.07); box-shadow: 0px 12px 12px -7px rgba(3, 30, 51, 0.07);*/;
/*    border-radius: 15px;
    -webkit-box-shadow: 0px 12px 12px -7px rgba(3, 30, 51, 0.07);
    -moz-box-shadow: 0px 12px 12px -7px rgba(3, 30, 51, 0.07);
    box-shadow: 0px 12px 12px -7px rgba(3, 30, 51, 0.07);*/

}

.detail-forms__accordion--first {
    box-shadow: none;
    border-radius: 0;
    border: none;
    padding-top: 40px;
}

/*.detail-forms__accordion--last {
    height: 70px;
}*/

.detail-forms__accordion:after {
    content: '\002B'; /* Unicode character for "plus" sign (+) */
    font-size: 24px;
    color: #000;
    float: right;
    margin-left: 5px;
    font-weight: 600;
}

.detail-forms__accordion.active:after {
    content: "\2212"; /* Unicode character for "minus" sign (-) */
}

.detail-forms__title {
    margin-bottom: 30px;
}

.detail-forms__accordion.active {
    display: none;
}

.detail-forms__accordions {
    border-radius: 30px;
    overflow:hidden;
    background-color: #f2f3f5;
    margin-bottom: 100px;
}

/* 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) */
.detail-forms__accordion.active {
    background-color: rgba(0, 0, 0, .05);
}

/* Style the accordion panel. Note: hidden by default */
.accordion__panel{
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion__panel.active {

    border-radius: 30px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #f2f3f5;
    margin-bottom: 15px;
}

.accordion__panel.accent-blue.active {
    margin-bottom: -26px;
}

.mobile-apps-item__row {
    margin-bottom: 45px;
}

.accent-blue {
    background: linear-gradient(1deg, #9fb0ff 14.86%, #637deb 80%);
}

.page-section-header {
    padding-left: 7px;
}

@media(max-width: 768px){

    .detail-forms-desktop {
        display: none;
    }

    .detail-forms-mobile {
        margin: 0 15px;
        display: block;
    }
}

