﻿h2.resp-accordion {
    cursor: pointer;
    display: none;
}

.resp-tabs-container .resp-tab-content {
    padding: 15px;
}

h2.resp-accordion {
    margin-bottom: 15px;
    padding: 10px 8px;
    font-size: 16px;
    font-weight: 600;
    -webkit-box-shadow: -2px -1px 21px -4px #ddd;
    -moz-box-shadow: -2px -1px 21px -4px #ddd;
    box-shadow: -2px -1px 21px -4px #ddd;
}

.resp-arrow {
    float: right;
    background-image: url(../svg/chevron-down.svg);
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
    ul.resp-tabs-list {
        display: none !important;
    }

    h2.resp-accordion {
        display: block;
    }

    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1;
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: initial;
        clear: none;
    }
    .resp-accordion-closed {
        display:none !important;
    }
    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }

    .resp-tab-content-active h2 {
        display: none;
    }
}