/**
* Variables
*/
:root{
    --grey-100: #12181E;
    --grey-80: #1B252E;
    --grey-60: #5F666D;
    --grey-40: #A3ACB6;
    --grey-20: #E8E9EA;
    --green: #B8E7DD;
    --blue: #4EC8FC;
    --blue-purple: #6483F9;
    --purple: #8F73DB;
    --gradient: linear-gradient(224.33deg, #8F73DB 10%, #6483F9 40%, #4EC8FC 70%, #B8E7DD 90%);
    --gradient-straight: linear-gradient(270deg, #8F73DB 10%, #6483F9 40%, #4EC8FC 70%, #B8E7DD 90%);
    --glass-gradient: linear-gradient(180deg, rgba(95,102,109,0.25) 0%, rgba(27,37,46,1) 100%);
    --glass-gradient-white: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255 ,1) 100%);
    --grey-gradient: linear-gradient(180deg, rgba(232, 233, 234, 0.25) 0%, rgba(232, 233, 234, 0) 100%);
    --shadow-one: 0px 12px 30px rgba(27, 37, 46, 0.05);
}
/**
* Fonts
*/
@font-face {
    font-family: 'Sharp Grotesk Medium - 20';
    src: url(../fonts/SharpGrotesk-Medium20.woff2) format('woff2'),
        url(../fonts/SharpGrotesk-Medium20.woff) format('woff'),
        url(../fonts/SharpGrotesk-Medium20.ttf) format('truetype');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Sharp Grotesk Semi Bold - 20';
    src: url(../fonts/SharpGrotesk-SemiBold20.woff2) format('woff2'),
        url(../fonts/SharpGrotesk-SemiBold20.woff) format('woff'),
        url(../fonts/SharpGrotesk-SemiBold20.ttf) format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Sharp Grotesk Medium - 25';
    src: url(../fonts/SharpGrotesk-Medium25.woff2) format('woff2'),
        url(../fonts/SharpGrotesk-Medium25.woff) format('woff'),
        url(../fonts/SharpGrotesk-Medium25.ttf) format('truetype');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Sharp Grotesk Semi Bold - 25';
    src: url(../fonts/SharpGrotesk-SemiBold25.woff2) format('woff2'),
        url(../fonts/SharpGrotesk-SemiBold25.woff) format('woff'),
        url(../fonts/SharpGrotesk-SemiBold25.ttf) format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Formular Light';
    src: url(../fonts/Formular-Light.woff2) format('woff2'),
        url(../fonts/Formular-Light.woff) format('woff'),
        url(../fonts/Formular-Light.ttf) format('truetype');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Formular';
    src: url(../fonts/Formular.woff2) format('woff2'),
        url(../fonts/Formular.woff) format('woff'),
        url(../fonts/Formular.ttf) format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Formular Bold';
    src: url(../fonts/Formular-Bold.woff2) format('woff2'),
        url(../fonts/Formular-Bold.woff) format('woff'),
        url(../fonts/Formular-Bold.ttf) format('truetype');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}
/**
* Typo
*/
body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: var(--grey-20);
    font-size: 18px;
}
body p,
body p a,
body ul li,
body ol li,
body span,
body td,
body input{
    font-size: 1em;
    font-family: 'Formular Light', sans-serif;
    line-height: 1.8em;
    color: var(--grey-60);
}
body p strong,
body p a strong,
body ul li strong,
body ol li strong,
body span strong,
body td{
    font-family: 'Formular Bold', sans-serif;
}
h1,
h2,
h3,
h4,
h1 a,
h2 a,
h3 a,
h4 a{
    font-family: 'Sharp Grotesk Medium - 20', sans-serif;
    color: var(--grey-80);
}
h1{
    font-size: 3.5em;
    line-height: 1.4em;
    font-weight: 800;
    margin: 0 0 24px 0;
}
h1 strong{
    font-size: 1em;
}
h2{
    font-size: 2.1em;
    line-height: 1.4em;
    margin: 0 0 16px 0;
    letter-spacing: 0;
}
h2 strong{
    font-size: 1.4em;
}
h3{
    font-size: 1.2em;
    line-height: 1.4em;
    margin: 0 0 8px 0;
    letter-spacing: 0;
}
h3 strong{
    font-size: 2.6em;
}
h4{
    font-size: 1em;
}
.submit{
    position: relative;
    display: inline-block;
    font-family: 'Sharp Grotesk Medium - 20';
    background: var(--gradient);
    border: none;
    color: white;
    padding: 12px 40px;
    margin: 24px 0 0 0;
    border-radius: 15px;
    line-height: 24px;
    font-size: 0.88em;
    z-index: 99;
    transition: all 0.45s ease;
}
.submit:hover{
    color: white;
    transform: scale(0.98);
    cursor: pointer;
}
.submit::before{
    position: absolute;
    top: 40%;
    left: 10%;
    content:'';
    display: block !important;
    width: 80%;
    height: 80%;
    background: var(--gradient);
    opacity: 0.5;
    filter: blur(10px);
    border-radius: 15px;
    z-index: -2;
    transition: all 0.45s ease;
}
.submit:hover::before{
    top: 25%;
    left: 5%;
    width: 90%;
    height: 90%;
    opacity: 0.7;
}
.save-payments{
    font-size: 1em;
    font-family: 'Formular Bold', sans-serif;
    line-height: 1.8em;
    color: var(--grey-60);
    margin: 0 0 0 16px;
    cursor: pointer;
    transition: all 0.45s ease;
}
.save-payments:hover{
    color: var(--purple);
}
.new-row{
    display: none;
    position: relative;
    font-family: 'Formular Bold', sans-serif;
    padding: 0 40px 0 0;
    color: var(--grey-80);
    z-index: 99;
    cursor: pointer;
    transition: all .45s ease;
}
.payment-row:last-child .new-row{
    display: inline-block;
}
.new-row:hover{
    color: var(--purple);
}
input,
textarea,
select{
	display: block;
    margin: 4px 8px 0 0;
    border-radius: 10px;
    border: 1px solid var(--grey-20);
	transition: all 0.45s ease;
}
input:focus,
textarea:focus,
select:focus{
    border-color: var(--grey-60);
}
/**
* General
*/
body .container{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    padding: 96px;
    width: 80%;
    margin: 0 auto;
}
body tr{
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
    border: 1px solid var(--grey-40);
}
body tr td{
    padding: 4px;
}
#note{
    width: 24ch;
}
#note-structured{
    font-family: monospace;
    letter-spacing: 2px;
    width: 24ch;
    padding: 0 8px;
}
.hide{
    display: none;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before{
	position: absolute;
	top: calc(50% - 8px);
	left: 0;
	content: '';
	display: block !important;
	border: 1px solid var(--grey-20);
	border-radius: 4px;
	width: 16px;
	height: 16px;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before{
	position: absolute;
	top: 4px;
	left: 0;
	content: '';
	display: block !important;
	border: 1px solid var(--grey-20);
	border-radius: 4px;
	width: 16px;
	height: 16px;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label.checked::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label.checked::before{
	background: var(--gradient);
}