form {
	background: #000000;
}

:root {
    --bmva-pink: #fc00e3;
    --bmva-blue: #087cc3;
    --bmva-white: #ffffff;
    --bmva-muted: #686868;
    --bmva-soft: #bdbdbd;
    --bmva-black: #000000;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bmva-black);
}

body.bmva-page {
    margin: 0;
    background: var(--bmva-black);
    color: var(--bmva-white);
    font-family: "Play", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
}

.site {
    min-height: 100vh;
    background: var(--bmva-black);
}

.bmva-site-header {
    width: min(100% - 40px, 920px);
    margin: 0 auto;
    padding: 40px 0 150px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.bmva-logo-link {
    display: block;
    width: min(78%, 530px);
}

.bmva-logo {
    display: block;
    width: 100%;
    height: auto;
}

.bmva-menu-toggle {
    width: 36px;
    height: 32px;
    margin-top: 9px;
    border: 0;
    padding: 0;
    display: grid;
    gap: 5px;
    background: transparent;
    cursor: pointer;
}

.bmva-menu-toggle span {
    display: block;
    height: 6px;
    border-radius: 2px;
    background: var(--bmva-pink);
}

.bmva-mobile-nav {
    width: min(100% - 40px, 920px);
    margin: -130px auto 80px;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.bmva-mobile-nav.is-open {
    display: grid;
}

.bmva-mobile-nav a {
    color: var(--bmva-pink);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.submit-main,
.site-main {
    width: min(100% - 40px, 920px);
    margin: 0 auto;
}

.page-header,
.page-content {
    width: min(100%, 750px);
    margin: 0 auto;
}

.submit-main > article:first-child {
    display: none;
}

.page-title {
    margin: 0 0 34px;
    color: var(--bmva-white);
    font-family: "Righteous", "Play", sans-serif;
    font-size: clamp(22px, 5vw, 34px);
    line-height: 1.15;
    font-weight: 400;
}

a {
    color: var(--bmva-pink);
}

a:hover {
    color: var(--bmva-white);
}

h1,
h2,
h3 {
    font-family: "Righteous", "Play", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

h3 {
    clear: both;
    margin: 42px 0 24px;
    color: var(--bmva-white);
    font-size: clamp(24px, 5vw, 34px);
    line-height: 1.2;
}

p {
    margin: 0 0 28px;
}

ul {
    margin-top: 10px;
    padding-left: 26px;
}

li {
    margin: 6px 0;
}

.bmva-image-link {
    display: block;
    float: left;
    width: 25%;
    margin: 0 0 42px;
    padding-right: 4px;
}

.bmva-image-link:has(img.spacer) {
    display: none;
}

img.bmva-image {
    display: block;
    width: 100%;
    max-width: none;
    aspect-ratio: 1.45;
    object-fit: cover;
}

img.bmva-image.spacer {
    display: none;
}

.submission-intro {
    font-size: clamp(18px, 4vw, 28px);
    line-height: 1.48;
    margin-bottom: 58px;
}

.submission-intro b,
.submission-intro strong {
    font-weight: 700;
}

label.line-item {
    display: block;
    margin: 0 0 6px;
    color: var(--bmva-white);
    font-size: 18px;
}

input.form-control,
textarea.form-control,
select.form-control {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 4px;
    padding: 13px 18px;
    background: var(--bmva-white);
    color: #111111;
    font-family: "Play", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #a9a9a9;
}

#proceede_btn,
input[type='submit']#proceede_btn {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    margin: 34px 0 92px;
    border: 0;
    border-radius: 4px;
    background: var(--bmva-blue);
    color: var(--bmva-white);
    font-family: "Play", Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

#proceede_btn:hover {
    background: #0d8edb;
}

.bmva-cat-pricing {
    margin: 72px 0 46px;
    font-size: 17px;
    line-height: 2.35;
}

.bmva-cat-pricing span,
.bmva-cat-pricing span.deadline {
    min-width: 0;
    display: inline;
}

.toc-content {
    width: min(100%, 750px);
    margin: 0 auto 140px;
    padding-top: 80px;
    color: var(--bmva-muted);
    font-size: 16px;
    line-height: 1.62;
}

.toc-content h2 {
    margin: 42px 0 18px;
    color: var(--bmva-muted);
    font-size: 24px;
}

.toc-content a {
    color: var(--bmva-pink);
}

.bmva-site-footer {
    width: min(100% - 40px, 920px);
    margin: 0 auto;
    padding: 0 0 60px;
    color: var(--bmva-muted);
    font-size: 13px;
}

.bmva-site-footer a {
    color: var(--bmva-pink);
}

@media (max-width: 640px) {
    body.bmva-page {
        font-size: 16px;
    }

    .bmva-site-header {
        width: calc(100% - 32px);
        padding: 28px 0 112px;
    }

    .bmva-logo-link {
        width: min(78%, 320px);
    }

    .bmva-mobile-nav,
    .submit-main,
    .site-main,
    .bmva-site-footer {
        width: calc(100% - 32px);
    }

    .bmva-mobile-nav {
        margin-top: -92px;
        margin-bottom: 52px;
    }

    .bmva-menu-toggle {
        width: 28px;
        height: 26px;
    }

    .bmva-menu-toggle span {
        height: 5px;
    }

    .bmva-image-link {
        width: calc(25% - 4px);
        margin-bottom: 32px;
    }

    input.form-control,
    textarea.form-control,
    select.form-control {
        min-height: 48px;
        font-size: 16px;
        padding: 11px 14px;
    }

    label.line-item,
    .bmva-cat-pricing {
        font-size: 15px;
    }

    #proceede_btn,
    input[type='submit']#proceede_btn {
        min-height: 56px;
        font-size: 14px;
    }
}



		

#application .line-item  { 
	margin-top: 20px;
}
		
pre { 
	display: none; 
}
		
#application, form.payment, form.tos, .filmfreeway {
    color: #fff;
    max-width: 70%;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 20px;
}

div#pricing {
    margin-left: 0;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

div#pricing h3{
	font-size: 0.9em;
}	

#proceede_btn {
    background-color: #0070ba;
    font-family: arial;
    font-weight: 100;
    min-width: 100%;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
    min-height: 50px;
    font-size: 14px;
}

.form-group.promo {
    display: none;
}

.form-group.promo.demo {
    display: block;
}



#proceede_btn:disabled {
    background-color: #676767;
}

form iframe {
	margin-top: 20px;
}


#application a {
	color: var(--e-global-color-primary) !important;
}

.toc-content {
    padding-top: 100px;
    color: #616161;
    font-size: 12px;
}

.toc-content h2{
    color: #606060;
    font-size: 16px;
}

p.help {
    padding: 25px;
    background: #4caf50;
    margin-top: 50px;
    color: #fff;
    
}

p.help.review {
    background: #464646;
}

#application p.help a {
	color: #000 !important;
    background: #fff;
    padding: 5px 10px;
    margin: 0 5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
}

#application a#again_btn {

    
    
    
    display: inline-block;
    max-width: 100%;
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    
    
    
	font-style: normal;
    font-weight: 900;
    font-size: 11px;
    line-height: 1;
    font-family: Play, sans-serif;
    letter-spacing: 1px;
    color: #ffffff !important;
    background-color: var(--e-global-color-primary);
    
    background-color: var(--e-global-color-primary);
    font-family: arial;
    font-weight: 100;
    min-width: 400px;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
    
    
    
    
    
    
    
    
}

.bmva-cat-pricing span {
    min-width: 280px;
    display: inline-block;
}

.bmva-cat-pricing span.done, .bmva-cat-pricing s {
    text-decoration: line-through;
    color: #636363;
}

.bmva-cat-pricing span.deadline {
    min-width: 350px;
    display: inline-block;
}

.bmva-cat-pricing span.innactive {
    color: #636363;
}

.page-template-default main#main {
    margin: 0px 30px;
}


table#application, table#application td, table#application th {
	border: 1px solid #fff;

	padding: 5px;
	vertical-align: top;
	font-size: 12px;
}

table#application .small {
	min-width: 80px;
}

table#application .medium {
	min-width: 150px;
}

table#application .large {
	min-width: 300px;
}



.payment i {
    background: #545454;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    float: right;
}


.payment.payed i {
    background: #4caf50;
}

.payment.pending i {
    background: #f29113;
}

.payment.Reminder i, .payment.reminder i, .payment.sent i {
    background: #2fdff5;
}

.payment.FILMFREEWAY i {
    background: #c617ef;
}

.payment.spam i {
    background: #f33913;
}


main#main {
    overflow: auto;
}


.form-group.priority {
	opacity: 0.1;
	display: none;
}



.payment.payed form.payed {
    display: none;
}

.payment.payed .manage-payment {
    opacity: 0.1;
}

.payment.payed:hover .manage-payment {
    opacity: 0.9;
}

input[type='submit'].mark-as-pending {
    width: 100%;
    background-color: #f29113;
}

input[type='submit'].mark-as-payed {
    width: 100%;
    background-color: #4caf50;
}

input[type='submit'].mark-as-spam {
    width: 100%;
    background-color: #f33913;
}


input.manage-submission-id {
    width: 200px;
    display: inline-block;
    height: 40px;
    margin-bottom: 20px;
}

.stripe-pay {
    color: #fff;
    max-width: 70%;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 20px;
}

.stripe-pay a {
    background: #0070ba;
    display: block;
    border-radius: 3px;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
    margin-top: 35px;
}

.stripe-pay a {
    background: #9a66e7;
}



.filmfreeway-btn {
    /* border: 1px solid red; */
    display: block;
    padding: 0;
    background: #fcaf4d;
    text-align: center;
    border-radius: 3px;
}






.elementor-kit-1 {
    --e-global-color-primary: #fc00e3;
    --e-global-color-secondary: #000000;
    --e-global-color-text: #FFFFFF;
    --e-global-color-accent: #61CE70;
    --e-global-typography-primary-font-family: "Roboto";
    --e-global-typography-primary-font-weight: 600;
    --e-global-typography-secondary-font-family: "Roboto Slab";
    --e-global-typography-secondary-font-weight: 400;
    --e-global-typography-text-font-family: "Roboto";
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: "Roboto";
    --e-global-typography-accent-font-weight: 500;
}

body {
	xborder: 10px solid var(--e-global-color-primary) !important;
}

.elementor-314 .elementor-element.elementor-element-2048711 .elementor-heading-title {
    color: #fc00e3;
}


#toTop {
    background-color: var(--e-global-color-primary);
}

a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: var(--e-global-color-primary);
}

.elementor-65 .elementor-element.elementor-element-bae5155:not(.elementor-motion-effects-element-type-background), .elementor-65 .elementor-element.elementor-element-bae5155 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #a50ba9 !important;
}





































