.expandable-panel {
    background: #ffffff;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    min-width: 120px;
    width: 100%;
    padding: 28px;
    height: 100%;
}

.expandable-panel__header {
    font-size: 22px;
    color: #333333;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-color: #ffffff;
    width: 100%;
}

.expandable-panel__header-content {
    flex-grow: 1;
    width: calc(100% - 72px);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}

.expandable-panel__header-chevron {
    display: none;
}

@media screen and (max-width: 1023px) {
    .expandable-panel {
        padding: 24px;
    }
}

@media screen and (max-width: 767px) {
    .expandable-panel {
        padding: 16px;
    }
    .expandable-panel__header-chevron {
        display: inline-block;
        transform: rotate(90deg);
        width: 24px;
        height: 24px;
        transition: all 0.5s ease;
    }
    .expandable-panel__header-chevron img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .expandable-panel__body {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease-out;
    }

    .expandable-panel--expanded .expandable-panel__header .expandable-panel__header-chevron {
        transform: rotate(270deg);
    }
    .expandable-panel--expanded .expandable-panel__body {
        padding-top: 16px;
    }
    .expandable-panel__header-chevron svg {
        display: block;
        transition: transform 0.4s ease;
        width: 32px;
        height: 20px;
    }
}