:root {
    --font-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --font: var(--font-1), var(--font-fallback);
    --size: 18px;
    --line: 1.618;
    --weight: 400;
    --kerning: -0.003em;
    --line-small: 1.12;
    --ratio: 0.5;
    --ease: 0.1s;
    --timing: ease-out;
    --text-dark: black;
    --text-light: ghostwhite;
    --column: 1rem;
    --row: 1rem;
    --text: var(--text-dark);
    font-synthesis: none;
    -moz-font-feature-settings: "kern";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    quotes: "“" "”";
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    --trim: calc((var(--line) * var(--size) - var(--size)) * -0.5);
    --font-1: "Open Sans";
    --inner: 1200px;
    --edge: 80px;
    --color-1: #FF0050;
    --color-1-end: #FF6253;
    --color-2: #FFC048;
    --color-gray: #979797;
    --gradient: linear-gradient(165.79deg, var(--color-1) -12.9%, var(--color-1-end) 99.47%);
}

* {
    border: 0;
    vertical-align: baseline;
    word-break: break-word;
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin: 0;
}
select {
    padding-top: 18px;
    padding-bottom: 18px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: calc(100% - 17px) center;
    background-image: url(select.svg);
}
.text, .sub, .tombola-date span, .date, .card-box>span, .card-box>strong, .card-box>.strong, .card-box>.b, input[type=checkbox]+span, .tap, .button, .button-fill, .button-red, .input, input:not([type=submit]):not([type=clear]):not([type=reset]):not([type=checkbox]):not([type=radio]), select, textarea, :root, p, .p, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, strong, .strong, .b, b, em, i, sup, sub, dd, dt, dl, ul, ol, li, a, button, input, label {
    --size: 1em;
    font-size: var(--size);
    font-weight: var(--weight);
    font-family: var(--font),var(--font-fallback);
    line-height: var(--line);
    letter-spacing: var(--kerning);
    color: var(--text);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    --weight: bold;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    --line: var(--line-small);
    --kerning: -0.02em;
    margin: 0;
}
h2, .h2 {
    --size: 40px;
    --line: 1.35;
}
label {
    display: block;
    padding: 0;
    margin: 0;
}
.ease, a, button {
    transition-duration: var(--ease);
    transition-timing-function: var(--timing);
}

.tap, .button, .button-fill, .button-red, .input, input:not([type=submit]):not([type=clear]):not([type=reset]):not([type=checkbox]):not([type=radio]), select, textarea {
    margin: 0;
    --height: 2.8rem;
    --side: 1rem;
    --line: var(--line-small);
    --radius: 0.3rem;
    --border: 1px;
    --stroke: transparent;
    --background: transparent;
    --weight: 700;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    text-decoration: none;
    padding: 0.2rem var(--side);
    border-radius: var(--radius);
    min-height: var(--height);
    border: var(--border) solid var(--stroke);
    background-color: var(--background);
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.input, input:not([type=submit]):not([type=clear]):not([type=reset]):not([type=checkbox]):not([type=radio]), select, textarea {
    --radius: 0;
    --size: 18px;
    --line: 24px;
    --height: 62px;
    --side: 21px;
    --weight: normal;
    background-color: #f4f4f4;
    color: #000;
    outline: 0;
    border: 1px solid #ddd;
    --stroke: var(--text-dark);
    width: 100%;
    text-align: left;
}
nav, button, .button, .button-fill, .button-red {
    -webkit-user-select: none;
    user-select: none;
}

.button, .button-fill, .button-red {
    --background: var(--color-1);
    --text: var(--text-light);
}
.button, .button-fill, .button-red {
    background: transparent;
    --height: 57px;
    --radius: 5px;
    --side: 31px;
    border: 1px solid #000;
    --size: 16px;
    --weight: bold;
    --text: black;
    transition-duration: .15s;
}
.button-fill {
    background: var(--gradient);
    --text: white;
    border-color: transparent;
    text-transform: uppercase;
    --height: 62px;
    --side: 21px;
    --size: 20px;
}
#site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#main {
    flex: 1;
    position: relative;
}
#main:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 30vh;
    max-height: 100%;
    pointer-events: none;
    background: linear-gradient(180deg, #e9e9e9 0%, #ffffff 100%);
}
.inner {
    max-width: calc(var(--inner) + var(--edge) * 2);
    margin: 0 auto;
    padding: 0 var(--edge);
}
.intro {
    margin: 101px 0 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
}
@media screen and (min-width: 50.0625em) {
    .intro {
        background-image: none !important;
    }
}
.intro-text {
    max-width: 1046px;
    width: 100%;
}

.sections {
    margin: 70px 0;
}
.set {
    --grid: 100%;
    display: flex;
    flex-wrap: wrap;
}
.gap {
    margin-left: calc(var(--column) * -1);
    margin-top: calc(var(--row) * -1);
    pointer-events: none;
}
.gap>* {
    padding-left: var(--column);
    padding-top: var(--row);
}

.set>* {
    flex: 0 0 var(--grid);
    max-width: var(--grid);
}
.gap>*>*:not(.gap) {
    pointer-events: initial;
}
.sections>.gap {
    --column: 42px;
    --row: 42px;
}
.of-12 {
    --grid: 100%;
}
.type-content:after {
    content: "";
    display: table;
    clear: both;
}
p:first-child, .p:first-child {
    margin-top: 0;
}
.type-content p, .type-content .p, .type-content ul, .type-content ol {
    --size: 20px;
    --line: 1.6;
}
.type-content a:not(.button):not(.button-red):not(.button-fill):not(.peek) {
    color: var(--color-1);
    text-decoration: underline;
}
.m-form-container {
    margin-bottom: 30px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 20px;
}
.m-form-container.type-light {
    background-color: transparent;
    padding: 0;
    border: none;
}

.m-form-container:not(:first-child) {
    margin-top: 30px;
}
.m-form p, .m-form .p {
    margin: 0;
}
.m-form-section:first-child {
    margin-top: 60px;
}
.m-form-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.m-form-fields>* {
    flex: 0 0 100%;
}
.m-form-fields>.third {
    flex: 1 1 30%;
}
.m-form-field-label {
    display: block;
    line-height: 1.2;
    margin-bottom: 12px;
}
.m-form-footer {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}
.m-form-section+.m-form-section {
    margin-top: 55px;
    padding-top: 45px;
    border-top: 1px solid #dadada;
}
.m-form-section-title {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 36px;
}
.m-form-fields>.half {
    flex: 1 1 40%;
}
.m-form-fields>.fourth {
    flex: 1 1 10%;
}
canvas {border:1px solid #ddd; background: #f4f4f4; height:150px !important; width:500px !important; }
.has-error canvas {border:1px solid #c02b0a;}
#sterge-semnatura {margin-top: 10px;}
.radio label {display: inline; margin-right:20px;}