@charset "utf-8";
/* CSS Document */

/*forces bkrnd color change in template to carousel widget (white from blue)*/
.wrapper .banner {
  background: #FFF;
  background: -moz-linear-gradient(top, #FFF 0%, #0FFF 100%);
  background: -webkit-linear-gradient(top, #FFF 0%,#FFF 100%);
  background: linear-gradient(to bottom, #FFF 0%,#FFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF', endColorstr='#FFF',GradientType=0 );
}

/*forces form elements to have padding in a fluid container*/
.contactFormInnerContainer {
  padding-left: 50px;
  padding-right: 50px;
}

/*forces the dashboard text line to have padding*/
.ModContactFormDashboardC {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 35px;
}

/*adds right and top margin to checkbox*/
#dnn_ctr103191_View_cbContactFormContactMe {
  margin-right: 5px;
  margin-top: 15px;
}

/*changes input width of name, email, and subject to match other inputs fields width on page*/
/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {

  .txtContactFormName,
  .txtContactFormEmail,
  .txtContactFormSubject {
    width: 95%;
  }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {

  .txtContactFormName,
  .txtContactFormEmail,
  .txtContactFormSubject {
    width: 95%;
  }
}


/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {

  .txtContactFormName,
  .txtContactFormEmail,
  .txtContactFormSubject {
    width: 95%;
  }
}


/*changes input width of name, email, and subject to match other inputs fields width on page*/
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {

  .txtContactFormName,
  .txtContactFormEmail,
  .txtContactFormSubject {
    width: 75%;
  }
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

  .txtContactFormName,
  .txtContactFormEmail,
  .txtContactFormSubject {
    width: 75%;
  }
}

    