@-webkit-keyframes modalDialogEnter {
  from {
    opacity: 0;
    -webkit-transform: scale(0.96);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes modalDialogEnter {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes modalDialogLeave {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@keyframes modalDialogLeave {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes modalBackdropEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalBackdropEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modalBackdropLeave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modalBackdropLeave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes dropdownMenuEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@keyframes dropdownMenuEnter {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes dropdownMenuLeave {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
  }
}
@keyframes dropdownMenuLeave {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
}
@-webkit-keyframes popoutEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@keyframes popoutEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes popoutLeave {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
  }
}
@keyframes popoutLeave {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: none;
  }
}
@keyframes slideUp {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: none;
  }
}
@keyframes slideUp {
  from {
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: none;
  }
}
@-webkit-keyframes slideInFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideOutToLeft {
  from {
    opacity: 1;
    -webkit-transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutToLeft {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes slideOutToRight {
  from {
    opacity: 1;
    -webkit-transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.Modal {
  -webkit-transition: visibility 140ms;
  -o-transition: visibility 140ms;
  transition: visibility 140ms;
  bottom: 0;
  left: 0;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 999999999999;
  -webkit-overflow-scrolling: touch;
}
.Modal.is-open {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  visibility: visible;
}
.Modal-dialog {
  max-width: 100%;
  padding: 10px;
  position: relative;
  width: auto;
  z-index: 2;
  top: 50px;
}
.Modal-dialog-enter {
  -webkit-animation-name: modalDialogEnter;
  animation-name: modalDialogEnter;
  -webkit-animation-duration: 260ms;
  animation-duration: 260ms;
  -webkit-animation-timing-function: cubic-bezier(0.5, -0.55, 0.4, 1.55);
  animation-timing-function: cubic-bezier(0.5, -0.55, 0.4, 1.55);
}
.Modal-dialog-leave {
  -webkit-animation-duration: 140ms;
  animation-duration: 140ms;
  -webkit-animation-name: modalDialogLeave;
  animation-name: modalDialogLeave;
}
.Modal-content {
  background-color: white;
  border-radius: 0.3em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.175), 0 3px 8px rgba(0, 0, 0, 0.175);
  outline: none;
  position: relative;
}
.Modal-content {
  margin-top:0;
}
@media all and (min-width: 40em) and (min-height: 0em){
    .Modal-content {
      margin-top:0px;
    }
 }
@media all and (min-width: 60em) and (min-height: 0em){
    .Modal-content {
      margin-top:0;
    }
 }
 @media all and (min-width: 80em) and (min-height: 0em){
    .Modal-content {
      margin-top:0;
    }
 }
@media (min-width: 768px) {
  .Modal-dialog {
    margin: 0 auto;
    top: 80px;
  }
  .Modal-dialog--small {
    width: 320px;
  }
  .Modal-dialog--medium {
    width: 640px;
  }
  .Modal-dialog--large {
    width: 960px;
  }
}
.Modal__header,
.Modal__body,
.Modal__footer {
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
}
.Modal__header {
  padding-left:0px;
  padding-right:0px;
}
/*TABLET using -- MEDIUM -- modal at width 640, rows contain only 2 inputs at tablet size*/
 @media all and (min-width: 40em) and (min-height: 0em) {
    .Modal-dialog--medium .Modal__body form section div:nth-of-type(odd){
      margin-left:0px;
    }
    .Modal-dialog--medium .Modal__body form section div:nth-of-type(even){
      margin-left:60px;
    }
 }
/*TABLET using -- !!LARGE!! -- modal at width 640, which means the rows now only contain 2 inputs instead of 3*/
  @media all and (min-width: 40em) and (min-height: 0em) {
 .Modal-dialog--large .Modal__body form section div:nth-child(odd){
    margin-left:0px;
  }
  .Modal-dialog--large .Modal__body form section div:nth-child(even){
    margin-left:60px;
  }
}
/*DESKTOP using LARGE modal at width 960 - ROWS HAVE 3 INPUTS ACROSS!!!!*/
@media all and (min-width: 60em) and (min-height: 0em) {
  .Modal-dialog--large .Modal__body form section div:nth-child(3n+0){/*every thrid one in a row*/
    margin-left:60px;
  }
  .Modal-dialog--large .Modal__body form section div:nth-child(2){
    margin-left:60px;
  }
  .Modal-dialog--large .Modal__body form section div:nth-child(4){
    margin-left:0px;
  }
  .Modal-dialog--large .Modal__body form section div:nth-child(5){
    margin-left:60px;
  }
  .Modal-dialog--large .Modal__body form section div:nth-child(7){
    margin-left:0px;
  }
  .Modal-dialog--large .Modal__body form section div:nth-child(8){
    margin-left:60px;
  }
  .Modal-dialog--large .Modal__body form section div:nth-child(10){
    margin-left:0px;
  }
  .Modal-dialog--large .Modal__body form section div:nth-child(11){
    margin-left:60px;
  }
}
.Modal__header {
  z-index: 1;
  border-bottom: 1px solid #e8e8e8;
}
.Modal__header__text {
  color: inherit;
  font-size: 21px;
  font-weight: 100;
  line-height: 1;
  margin: 0;
  color:#555;
}
 @media all and (min-width: 40em) and (min-height: 0em) {
   .Modal__header__text {
      font-size: 24px;
   }
 }
.Modal__header__close {
  -webkit-transition: opacity 140ms;
  -o-transition: opacity 140ms;
  transition: opacity 140ms;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1ex;
  margin: 0;
  opacity: .4;
  font-size: 24px;
  padding: 20px 5px 20px 20px;
  position: absolute;
  right: -20px;
  top: 0;
}
.Modal__header__close::after {
  content: "\00d7";
}
.Modal__header__close:hover,
.Modal__header__close:focus {
  opacity: 1;
  outline: 0;
}
.Modal__header__close:active {
  color: #d64242;
}
.Modal__body {
  margin: 0;
  padding: 20px 20px;
}

.Modal__body .suggest_local_vendor .formv3 .form-inputv3 textarea {
  width:260px !important;
}
.Modal__body .suggest_national_vendor .formv3 .form-inputv3 textarea {
  width:260px !important;
}
.Modal__body .suggest_national_vendor .formv3 .greenBtn.submit, .Modal__body .suggest_local_vendor .formv3 .greenBtn.submit {
  float:right;
}

.Modal__body .suggest_national_vendor .formv3 .processing, .Modal__body .suggest_local_vendor .formv3 .processing {
    float:right;
}

@media all and (min-width: 64em) and (min-height: 0em) {
  .Modal__body h3 {
    font-size:21px !important;
  }
}
.Modal__footer {
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.Modal-backdrop {
  -webkit-animation-duration: 140ms;
  animation-duration: 140ms;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 0;
}
.Modal-background-enter {
  -webkit-animation-name: modalBackdropEnter;
  animation-name: modalBackdropEnter;
}
.Modal-background-leave {
  -webkit-animation-duration: 240ms;
  animation-duration: 240ms;
  -webkit-animation-name: modalBackdropLeave;
  animation-name: modalBackdropLeave;
}

