﻿
    #btnPremiumSubmit{
        color: #07acff;
        border: 2px solid #07acff;
    }
        #btnPremiumSubmit:hover {
            background-color: #07acff;
            color: #fff;
        }
    .spanWidth {
        padding-left: 200px;
        padding-right: 200px;
    }

    .premiumFormPopup .form-field input.error {
        border-color: red;
    }

    .premiumFormPopup .form-field {
        padding-bottom: 0rem;
        margin-bottom: 1rem;
    }

        .premiumFormPopup .form-field input {
            padding: 15px;
        }

    .premiumHeader {
        font-size: 22.4px !important;
        line-height: 28.8px !important;
        font-size: 2.24rem !important;
        line-height: 2.88rem !important;
        font-weight: 500;
        text-transform: none;
        color: #07acff;
    }

    .premiumFormPopup {
        -webkit-animation: fadein .4s ease-out;
        animation: fadein .4s ease-out;
        background-color: rgba(0,0,0,.7);
        display: none;
        height: 100%;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }

        .premiumFormPopup.active {
            -webkit-box-align: center;
            align-items: center;
            display: -webkit-box;
            display: flex;
            -webkit-box-pack: center;
            justify-content: center;
        }

        .premiumFormPopup .inner {
            background-color: #fff;
            padding: 4rem;
            max-width: 520px;
            position: relative;
            text-align: left;
        }

        .premiumFormPopup .close {
            position: absolute;
            top: 0;
            right: 0;
            background-color: #000;
            color: #fff;
            padding: .25em .5em;
        }
    .display-none {
    display:none;
    }


