﻿
.regQ {
    top: auto;
    position: relative;
    background: transparent;
    color: var(--color--Theme--Color--Primary-1);
    box-shadow: none;
    border-radius: 0;
    text-align: center;
}
    .regQ h1 {
        height: calc(100% - 10px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
       /* .regQ h1:before {
            content: '';
            width: 30px;
            height: calc(100% - 10px);
            position: absolute;
            right: 24px;
            background: white;
            transform: skew(-40deg);
            border-top-right-radius: 5px;
        }
        .regQ h1:after {
            content: '';
            width: 30px;
            height: calc(100% - 10px);
            position: absolute;
            left: 24px;
            background: white;
            transform: skew(40deg);
            border-top-left-radius: 5px;
        }*/
        .regQ h1.simple {
            align-items: start;
        }
        .regQ h1.arrow-right {
            height: 0;
           
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            border-left: 30px solid var(--color--Theme--Background--Primary-5);
        }
        .regQ h1.arrow-right:before {
            content: '';
            position:absolute;
            right: 30px;
            height: 0;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            border-right: 30px solid var(--color--Theme--Background--Primary-5);
        }
