/* CV CSS Theme: PI Outreach Theme
 *
 * The following CSS can be applied to any form 
 * The hashtag (#) elements listed below are the unique ID values of some of the main components within a form
 * The dot (.) elements listed below are classes that can potentially be applied to multiple elements within a form
 *
 * 
 *
 * Page elements. Leave Page classes empty if theme should apply for embeded form
 *
 */

/* Page Html Body */
body {
}

/* Page overall page wrapper */
.cvpageholder {
}

/* Page top image element */
.cvpelement[data-peid='1'] {    
}

/* Page top image element */
.cvpelement[data-peid='1'] {
}

/* Page top or left text element */
.cvpelement[data-peid='2'] {
}

/* Page form element wrapper */
.cv_genform_content {
}

/* Luis:  add extra white space at the top of the form, e.g. in this page: emmy-noether-emerging-talent-fund */
.cv_genform_content .container-fluid {
  padding-top:15px;
}

/* Luis:  set the form background-color to match the PI site bg color, e.g. in this page: emmy-noether-emerging-talent-fund */
.cv_genform_content  .well {
  background-color: #F0F0F0;
  border-radius:0;
}

/* Page bottom image element */
.cvpelement[data-peid='4'] {
}

/* Page all image elements */
.cvpimage {
}

/* Page all text elements */
.cvptext {
}


/* 
*
*     Form Elements 
*
*/


/* Changes will be applied to the main container of the full donation form */
#donation-form {
}

    /* Styling for the container of the form header */
    #donation-form .page-header {
    }

        /* Styling for the text within the form header */
        #donation-form .page-header h2 {
        
        }

/* Styling for the sections of the form */
.well {
}

/* Form Label */
.control-label {
}

/* Form required label mark. This is pseudo element shown by default as a red asterix */
.required::after {
}

/* Form textbox inputs */
input[type='text'].form-control {
}

/* Form drop down inputs */
select.form-control {
}

/* Form submit button */
#cvf_submit {
}


/**
 * The next three styling elements are for the donation amounts:
 * The default state, the active (selected) state, and the hover state
 */
.btn-group {
}

/* Form toggle selector each toggle button */
.btn-group label.btn-primary {    
}

/* Form toggle selected toggle button. Use !important to override regular toggle button properties */
.btn-group label.active {
}

/* luis: no left or right radis border for the first and last donation buttons */
.cv_genform_content .btn-group >.btn:first-child:not(:last-child),
.cv_genform_content .btn-group>.btn:last-child:not(:first-child)
 {
  border-radius: 0;
}

/* Luis: also remove radius from the Donate now button */
.cv_genform_content .btn-lg {
  border-radius:0;
}

/* Form input with an active error message */
.has-error input, .has-error select {
 
}

/* Form input error message text */
.error-message {
 
}

/* Luis: set the border color for the form input boxes to the same pink as the asterisk for required */
.cv_genform_content .has-error .form-control {
  border-color: #ff0066;
}

/* Luis: set the error messages color to the same pink as the asterisk for required */
.cv_genform_content .error-message {
  color: #ff0066;
}

/* modal error text */
.cv_genform_m .modal-title {
  color: #ff0066;
}

/* Styling for the submit button */
#cvf_submit {
}

/* 
*
*    Form Wizard Elements
*
*/

/* Wizard Buttons */
.wzstepsinfonpanel ul li {
  float: left;
    min-width: 80px !important;
}
    /* Enabled Step Button */
    .wzstepsinfonpanel ul li.stepenabled {
    }

    /* Current Step Button */
    .wzstepsinfonpanel ul li.stepcurrent {
    }

    /* Step Button hover */
    .wzstepsinfonpanel ul li.hoveritem {
    }

/* Wizard Back and Next Buttons */
.actWizardSwitchStep {
    background-color: #0065a3 !important;
    color: white !important;
    border: none !important;
}

.form-horizontal .form-group {
    display: block;
}

.cv_genform_m.modal.in {
    opacity: initial;
}