.faq_main .accordion {
            margin: auto;
            width: 100%;
        }
        .faq_main .accordion input {
            display: none;
        }
        .faq_main .box {
            position: relative;
            background: white;
            height: 64px;
            transition: all .15s ease-in-out;
        }
        .faq_main .box::before {
            content: '';
            position: absolute;
            display: block;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            pointer-events: none;
            box-shadow: 0 -1px 0 #e5e5e5,0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
        }
        .faq_main header.box {
            background: #00BCC2;
            z-index: 100;
            cursor: initial;
            box-shadow: 0 -1px 0 #e5e5e5,0 0 2px -2px rgba(0,0,0,.12),0 2px 4px -4px rgba(0,0,0,.24);
        }
        .faq_main header .box-title {
            margin: 0;
            font-weight: normal;
            font-size: 22pt;
            text-align: center;
            color: white;
            cursor: initial;
        }
        .faq_main .box-title {
                width: calc(100% - 20px);
                /* height: 64px; */
                /* line-height: 64px; */
                padding: 20px;
                display: inline-block;
                cursor: pointer;
        }
        .faq_main .box-content {
            width: calc(100% - 40px);
            padding: 30px 20px;
            font-size: 11pt;
            color: rgba(0,0,0,.8);
            display: none;
            line-height: 1.5;
        }
        .faq_main .box-close {
            position: absolute;
            height: 64px;
            width: 100%;
            top: 0;
            left: 0;
            cursor: pointer;
            display: none;
        }
        .faq_main input:checked + .box {
            height: auto;
            margin: 16px 0;
            box-shadow: 0 0 6px rgba(0,0,0,.16),0 6px 12px rgba(0,0,0,.32);
        }
        .faq_main input:checked + .box .box-title {
            border-bottom: 1px solid rgba(0,0,0,.18);
        }
        .faq_main input:checked + .box .box-content,
        .faq_main input:checked + .box .box-close {
            display: inline-block;
        }
        .faq_main .madeby {
            position: fixed;
            bottom: 4px;
            left: 4px;
            color: rgba(0,0,0,.38);
            font-size: 12pt;
        }