﻿
.regQ {
    font-size: 1.6rem;
    background: var(--color--Theme--Background--Primary-5);
    padding: 10px 30px 15px 30px;
    margin: 0 10px;
    font-family: 'IRANSans';
    color: var(--color--Theme--Base--Completement-1);
    top: 0;
    position: relative;
    -webkit-box-shadow: -1px 5px 10px -4px rgba(0,0,0,0.32);
    -moz-box-shadow: -1px 15px 10px -4px rgba(0,0,0,0.32);
    box-shadow: -1px 5px 5px -4px rgba(0,0,0,0.32);
    border-radius: 5px;
}
    .regQ h1 {
        height: calc(100% - 10px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .regQ h1.simple:before {
        content: '';
        width: 30px;
        height: calc( 100% - 10px);
        position: absolute;
        right: 24px;
        background: white;
        transform: skew(-40deg);
        border-top-right-radius: 5px;
    }

    .regQ h1.simple:after {
        content: '';
        width: 30px;
        height: calc( 100% - 10px);
        position: absolute;
        left: 24px;
        background: white;
        transform: skew(40deg);
        border-top-left-radius: 5px;
    }
        .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);
        }
