.ri-f01-container {
    max-width: 800px;
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    margin: auto;
}
.ri-f01-item {
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.ri-f01-item:last-child {
    margin-bottom: 0;
}
.ri-f01-question {
    cursor: pointer;
    padding: 10px 10px;
    display: flex;
}
.ri-f01-question-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.ri-f01-active .ri-f01-question-icon {
    transform: rotate(180deg);
}
.ri-f01-answer-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(1px);
    transition:
    max-height 1s cubic-bezier(0.2, 0.6, 0.3, 1),
    opacity 1s cubic-bezier(0.2, 0.6, 0.3, 1),
    transform 1s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.ri-f01-active .ri-f01-answer-content {
    opacity: 1;
    transform: translateY(8px);
}
.ri-f01-active .ri-f01-answer-content.ri-f01-border-top-fake {
    box-shadow: inset 0 1px 0 0 #e0e0e0;
}
.ri-f01-answer-content p {
    margin: 0;
    line-height: 1.6;
    padding: 12px 12px;
}

.vw20margin {
  margin-left: 1vw;
  margin-right: 1vw;
}

@media (min-width: 768px) {
  .vw20margin {
    margin-left: 20vw;
    margin-right: 20vw;
  }
}
