﻿/* EMAIL SIGNUP MODAL */
/* orig */
    .modal
    {
        border: solid 2px #ff0072;
        /* IE6-7 */
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
        -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding-box;
        background-clip: padding-box;
        outline: none;
        color: #000;
    }

    .modalHide {display: none;}
   

        /*new*/
        .modal label
        {
            display: inline;
            margin-bottom: 0px;
        }

        .modal p.allfields
        {
            font-size: .8em;
        }

    #frmEmailSignup label.error
    {
        border-bottom: 1px solid #ff0000;
        color: #ff0000;
        display: inline;
        margin-left: 5px;
        padding: 0;
        width: auto;
    }

    #frmEmailSignup fieldset .language label.error
    {
        font-size: 0.75em;
        margin-left: 0;
    }

    .allrequired
    {
        margin-top: 15px;
    }

    .modal a
    {
        color: #000;
        text-decoration: underline;
    }

        .modal a:hover, .modal a:focus
        {
            text-decoration: none;
        }

    /* orig */
    .modal.fade.in
    {
        top: 20%;
        /*top: 60%;*/
    }

    .modal-header
    {
        padding: 20px;
    }

        .modal-header .close
        {
            margin-right: -5px;
            margin-top: -12px;
        }
        /*new*/
        .modal-header h1
        {
            margin: 0;
            max-width: 350px;
            /*line-height: 30px;*/
            font-size: 50px;
            font-weight: normal;
            line-height: 50px;
            color: #000;
            font-family: HelveticaNeue-Thin;
            letter-spacing: 2px;
        }

        .modal-header h2
        {
            margin: 0;
            font-size: 19px;
            font-weight: normal;
            color: #000;
            font-family: HelveticaNeue-Thin;
            border-bottom: dotted 2px #ff0072;
        }


    .modal-body
    {
        max-height: 1500px;
        overflow-y: auto;
        padding: 0 25px;
        position: relative;
    }

    .modal-btn
    {
        background: url('../images/pink_subscribe.png')no-repeat 5px 5px;
        /*background-color: transparent;*/
        border: 1px solid #ff0072;
        border-radius: 6px;
        color: black;
        font-size: 14px;
        height: 32px;
        margin-left: 0px;
        /*padding: 7px 30px;*/
        text-transform: uppercase;
        width: 165px !important;
    }

    .modal-body
    {
        padding: 0 25px 0 25px;
    }

        .modal-body fieldset
        {
            color: #000;
        }

        .modal-body legend
        {
            display: block;
            width: 100%;
            padding: 0;
            margin-bottom: 10px;
            margin-top: 5px;
            font-size: 12px;
            line-height: 0px;
            color: #000;
            border: 0;
            border-bottom: none;
        }

    input[type="radio"], input[type="checkbox"]
    {
        line-height: normal;
        margin: 0;
    }

    .modal-consent
    {
        font-size: 12px;
    }

    /*orig*/

    .modal-footer
    {
        padding: 0 25px 0 25px;
        color: #000;
        font-size: 10px;
        *zoom: 1;
    }

    /*new*/

    #loading-indicator, #email-signup-confirmed, #email-signup-found, #email-signup-failed
    {
        background: none repeat scroll 0 0 #FFFFFF;
        padding: 0 30px 20px 30px;
        color: #000000;
        display: none;
        max-width: 800px;
        font-size: .8em;
    }

    #email-signup-found, #email-signup-failed
    {
        height: auto;
        border: dashed 1px;
        padding: 5px;
        min-height: 0px;
        color: #ff0000;
        margin: 5px;
    }

    #email-signup-confirmed h3
    {
        padding-bottom: 20px;
    }

    .placeholder
    {
        color: #333;
    }

 @media (max-width: 480px) {

    .modal {width:300px; 
    position: absolute;
    top: 0%;
    left: 3%;}

.modal-header {
    padding: 10px 10px;
    
}

.modal-header h1 {
    margin: 0;
    font-size: 18px; font-weight: normal; color:#000; font-family:HelveticaNeue-Thin; line-height: 20px
}

.modal-header h2 {
    margin: 0;
    font-size: 12px; font-weight: normal; color:#000; font-family:HelveticaNeue-Thin; 
    border-bottom: dotted 2px #ff0072;
}


.modal-header .close {
    margin-right: -10px;
    margin-top: -15px;
}


.modal-consent {font-size: 12px;}
.modal-body {
    position: relative;
    overflow-y: auto;
    max-height: 1500px;
    padding: 0 10px 0 10px;
}


.modal-btn {

    margin-left: 0px;

}


.modal-footer {
    padding: 0 10px 0 10px;
    
}


}

/* END EMAIL SIGNUP MODAL */