/**
 * Styles for Collibra Customized Marketo Forms
 *
 * Table of Contents
 *
 * 1.   Imported Styles
 * 2.   Mobile Detector
 * 3.   General Form
 * 4.   Text Fields
 * 5.   Dropdowns
 * 6.   Radio Buttons
 * 7.   Question Textarea
 * 8.   Checkboxes
 * 9.   Submit Button
 * 10.  Privacy Policy and General HTML Text
 * 11.  Errors
 * 12.  Placeholders
 */

/* -------------------------------------------------------------------------*/
/* 1.   Imported Styles                                                     */
/* -------------------------------------------------------------------------*/

/* import existing css from Chosen plugin to handle what we arent overwriting */
@import 'chosen.css';


/* -------------------------------------------------------------------------*/
/* 2.   Mobile Detector                                                     */
/* -------------------------------------------------------------------------*/

.js-mobile-detector {
  display: none;
}
@media only screen and (max-width: 600px) {
  .js-mobile-detector {
    display: block;
    height: 0;
    width: 0;
  }
}


/* -------------------------------------------------------------------------*/
/* 3.   General Form                                                        */
/* -------------------------------------------------------------------------*/

.wpb_wrapper.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.collibra-custom-marketo {
  font-family: "Neue-Haas-Light", "Gothic A1", sans-serif, Arial, sans-serif;
}

.collibra-custom-marketo fieldset {
  border: none !important;
  padding: 0px;
}

.collibra-custom-marketo input {
  background-color: transparent;
  border: none;
  width: 100%;
  margin-bottom: 10px;
}

.collibra-custom-marketo .mktoFormRow,
.collibra-custom-marketo + .mkto-form-buttons .mktoFormRow {
  position: relative;
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
}

.collibra-custom-marketo .mktoFormRow * .mktoFormRow {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
  border-bottom-color: rgb(88, 89, 91);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.collibra-custom-marketo .mktoFormRow legend,
.collibra-custom-marketo .mktoLabel {
  display:none;
}

.collibra-custom-marketo .mktoFormRow:first-child {
  margin-top: 0 !important;
}

.collibra-custom-marketo > .mktoFormRow.last-form-row {
  padding-bottom: 0;
  margin-bottom: 0 !important;
}

.collibra-custom-marketo > .mktoFormRow.last-form-row .mktoHtmlText {
  margin-bottom: 0;
}

.collibra-custom-marketo .mktoFormRow * .mktoFormRow,
.collibra-custom-marketo + .mkto-form-buttons .mktoFormRow * .mktoFormRow {
  border-bottom: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.collibra-custom-marketo .mktoFormRow .mktoFormCol {
  margin-bottom: 0 !important;
}

.collibra-custom-marketo .mktoFormRow .mktoLabel {
  display: inline-block;
  font-size: 14px;
  position: relative;
  text-transform: lowercase;
  top: 1.5rem;
}
@media(min-width: 1025px) {
  .collibra-custom-marketo .mktoFormRow .mktoLabel {
    font-size: 18px;
    top: 2.25rem;
  }
}

.collibra-custom-marketo .mktoFormRow .mktoRadioLabel {
  top: 0;
  margin-top: 1.25rem;
}

.collibra-custom-marketo .mktoFormRow .mktoRadioLabel.first-radio-label {
  margin-top: 2.25rem;
}

.collibra-custom-marketo .mktoFormRow .mktoLabel .mktoLabel-uppercase {
  text-transform: uppercase;
}

.collibra-custom-marketo .mktoFormRow .mktoLabel.shift-up {
  font-size: 14px;
  position: relative;
  top: 0.5rem;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.collibra-custom-marketo .mktoFormRow .mktoLabel.shift-up ~ input,
.collibra-custom-marketo .mktoFormRow .mktoLabel.shift-up ~ .chosen-container {
  border-bottom-width: 2px;
}

.collibra-custom-marketo .mktoClear {
  margin-bottom: 5px;
}

.collibra-custom-marketo .mktoButtonRow {
  display: none;
}

.collibra-custom-marketo + .mkto-form-buttons .mktoButtonRow.disabled,
.collibra-custom-marketo .mktoButtonRow.disabled,
.collibra-custom-marketo .mktoFormRow.disabled,
.collibra-custom-marketo .mktoDropdownRow.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}


/* -------------------------------------------------------------------------*/
/* 4.   Text Fields                                                         */
/* -------------------------------------------------------------------------*/

.collibra-custom-marketo .mktoFormRow input[type="text"],
.collibra-custom-marketo .mktoFormRow input[type="tel"],
.collibra-custom-marketo .mktoFormRow input[type="email"] {
  font-family: "Neue-Haas-Medium", "Gothic A1", sans-serif, Arial, sans-serif !important;
  font-weight: bolder;
  border-bottom-color: rgb(88, 89, 91);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  line-height: 2;
  margin-bottom: 0 !important;
  min-height: 2rem;
  outline: none;
  padding: 4px 0 !important;
  width: 100%;
}
@media (min-width: 1025px) {
  .collibra-custom-marketo .mktoFormRow input[type="text"],
  .collibra-custom-marketo .mktoFormRow input[type="tel"],
  .collibra-custom-marketo .mktoFormRow input[type="email"] {
    max-width: 542px;
  }

  .collibra-custom-marketo .mktoFormRow input:-internal-autofill-selected,
  .collibra-custom-marketo .mktoFormRow input:-webkit-autofill {
    max-width: 542px;
  }
}


/* -------------------------------------------------------------------------*/
/* 5.   Dropdowns                                                           */
/* -------------------------------------------------------------------------*/

@media only screen and (min-width: 1025px) {
  .collibra-custom-marketo .mktoFormRow select {
    display: none;
    max-width: 542px;
  }
}

.collibra-custom-marketo select + .chosen-container {
  padding-bottom: 5px;
}

.collibra-custom-marketo .chosen-container {
  border-bottom-color: rgb(88, 89, 91);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  width: 100%;
}

.collibra-custom-marketo .chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);
  box-shadow: 0 4px 5px rgba(0,0,0,.15);
  /* display: none; */
}

.collibra-custom-marketo .chosen-container .chosen-single {
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  font-family: "Neue-Haas-Light", "Gothic A1", sans-serif, Arial, sans-serif;
  font-size: 18px !important;
  height: 35px !important;
  line-height: 23px !important;
  max-width: 100%;
  padding-left: 0 !important;
  top: 2px;
}

.collibra-custom-marketo .chosen-container-single .chosen-drop {
  top: 2.6rem !important;
  margin-top: 0 !important;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.collibra-custom-marketo .chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
  top: 0 !important;
  padding: 0 !important;
  padding-top: 0.5rem !important;
  margin-bottom: 2rem !important;
}

.collibra-custom-marketo .chosen-container .chosen-results li {
  color: #58595b;
  font-size: var(--text-base-size);
  border-bottom: 0;
  margin: 0.5rem 0;
  font-family: "Neue-Haas-Light", "Gothic A1", sans-serif, Arial, sans-serif !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  display: none;
  margin: 0;
  padding: 0.8rem 1rem !important;
  list-style: none;
  line-height: 1.2;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.collibra-custom-marketo .chosen-container .chosen-results li.highlighted,
.collibra-custom-marketo .chosen-container .chosen-results li:hover {
  background-color: #dfe6e8 !important;
  font-family: "Neue-Haas-Medium", "Gothic A1", sans-serif, Arial, sans-serif !important;
  color: #002b40 !important;
  background-image: none !important;
}

.collibra-custom-marketo .chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.collibra-custom-marketo .chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
  min-width: calc(100% - 2rem) !important;
  max-width: calc(100% - 2rem) !important;
  margin-left: 1rem !important;
  margin-right: 1rem !important;
  top: 0 !important;
}

.collibra-custom-marketo .chosen-container-single .chosen-search input[type=text].chosen-search-input {
  height: 2rem;
  padding: 0.5rem !important;
  font-size: var(--text-base-size) !important;
  left: 0 !important;
}

.collibra-custom-marketo .chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear,left top,left bottom,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),to(#f4f4f4));
  background: linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0,0,0,.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0,0,0,.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.collibra-custom-marketo .chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 16px;
  height: 100%;
}

.collibra-custom-marketo .chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collibra-custom-marketo .chosen-container-single .chosen-single.show-result span {
  color: #002b40;
}

.collibra-custom-marketo .chosen-container-single .chosen-single span.chosen-single-bold {
  color: #002b40;
  font-family: "Neue-Haas-Medium", "Gothic A1", sans-serif, Arial, sans-serif !important;
  font-weight: bolder;
  margin-top: 0.5rem;
}

.collibra-custom-marketo .chosen-container.chosen-container-single.chosen-with-drop.chosen-container-active {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .collibra-custom-marketo {
    padding: 1rem;
  }

  .collibra-custom-marketo .mktoDropdownRow .mktoDropdownRowInnerContainer {
    border-bottom: 1px solid #58595b;
    padding: 1rem 0;
  }

  .collibra-custom-marketo .mktoDropdownRow .mktoDropdownRowInnerContainer.selected-choice {
    border-width: 2px;
    color: #002b40;
  }

  .collibra-custom-marketo .mktoDropdownRow .mktoDropdownRowInnerContainer::after {
    font-family: FontAwesome;
    font-size: 14px;
    content: "";
    position: absolute;
    right: 10px;
    top: 16px;
  }

  .collibra-custom-marketo .mktoDropdownRow .mktoDropdownRowInnerContainer select {
    font-size: 14px;
    margin-left: -4px;
    width: 100%;
  }

  .collibra-custom-marketo .mktoDropdownRow .mktoDropdownRowInnerContainer.selected-choice select {
    font-weight: bolder;
  }
}


/* -------------------------------------------------------------------------*/
/* 6.   Radio Buttons                                                       */
/* -------------------------------------------------------------------------*/

.collibra-custom-marketo .mktoFormRow .mktoRadioList {
  padding-top: 0.5rem;
}

.collibra-custom-marketo .mktoFormRow .mktoRadioList input,
.collibra-custom-marketo .mktoFormRow .mktoRadioList label {
  display: inline-block;
}

.collibra-custom-marketo .mktoFormRow .mktoRadioList input {
  -moz-appearance:none;
  -webkit-appearance:none;
  -o-appearance:none;
  appearance: none;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 18px;
  color: #53565A;
  background: none;
  width: 30px;
  outline: none;
}

.collibra-custom-marketo .mktoFormRow .mktoRadioList input::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 10px;
  border: 1px solid #D6D9DB;
  background: #FFF;
}

.collibra-custom-marketo .mktoFormRow .mktoRadioList input:checked {
  margin-bottom: 4px;
}

.collibra-custom-marketo .mktoFormRow .mktoRadioList input:checked::before {
  background: #FFF;
  border-color: #D6D9DB;
}

.collibra-custom-marketo .mktoFormRow .mktoRadioList input:checked::after {
  background: #72BF00;
  border-radius: 10px;
  content: "";
  position: relative;
  top: -19px;
  left: 3px;
  font-family: 'FontAwesome';
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: #FFF;
  display: block;
  width: 12px;
  height: 12px;
}

.collibra-custom-marketo .mktoFormRow .mktoRadioList label {
  font-size: 18px;
  position: relative;
  top: 3px;
  width: calc(100% - 30px);
}

.collibra-custom-marketo .mktoFormRow .mktoRadioList label:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 600px) {
  .collibra-custom-marketo .mktoFormRow .mktoRadioList input::before {
    margin-left: 5px;
    margin-top: -2px;
  }

  .collibra-custom-marketo .mktoFormRow .mktoRadioList input:checked::after {
    left: 8px;
  }

  .collibra-custom-marketo .mktoFormRow .mktoRadioList label {
    top: -2px;
  }
}

@media (min-width: 601px) {
  .collibra-custom-marketo .mktoFormRow .mktoRadioList input::before {
    position: relative;
    top: 5px;
  }

  .collibra-custom-marketo .mktoFormRow .mktoRadioList input:checked::after {
    top: -14px;
  }
}


/* -------------------------------------------------------------------------*/
/* 7.   Question Textarea                                                   */
/* -------------------------------------------------------------------------*/

.collibra-custom-marketo .mktoFormRow .mktoLabel[for="webFormComments"] {
  top: 8rem;
}

.collibra-custom-marketo .mktoFormRow .mktoLabel[for="webFormComments"].shift-up {
  font-size: 14px;
  position: relative;
  top: 0.5rem;
}

.collibra-custom-marketo .mktoFormRow .mktoLabel[for="webFormComments"].shift-up ~ textarea {
  border-bottom-width: 2px;
}

.collibra-custom-marketo .mktoFormRow.collibra-mkto-textarea-row {
  margin-bottom: 0 !important;
}

.collibra-custom-marketo textarea {
  background: none;
  height: 8.5rem !important;
  margin-bottom: 0 !important;
  margin-top: 0;
  font-family: "Neue-Haas-Medium", "Gothic A1", sans-serif, Arial, sans-serif;
  border: 0;
  border-radius: 0;
  font-size: 18px;
  line-height: 23px;
  background: none;
  max-width: 542px;
  width: 100%;
  padding: 4px 0;
  outline: none;
  resize: none;
  border-bottom-color: rgb(88, 89, 91);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
@media only screen and (min-width: 641px) {
  .collibra-custom-marketo textarea {
    height: 160px;
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  .collibra-custom-marketo textarea {
    max-width: 542px;
  }
}

.collibra-custom-marketo textarea.not-empty {
  border-bottom-width: 2px;
}

.collibra-custom-marketo .js-textarea-counter {
  color: #767676;
  font-size: .688em;
  position: relative;
  top: -10px;
  width: 92%!important;
}

.collibra-custom-marketo .js-textarea-counter.has-char {
  color: black;
}


/* -------------------------------------------------------------------------*/
/* 8.   Checkboxes                                                          */
/* -------------------------------------------------------------------------*/

.collibra-custom-marketo .mktoFormRow.collibra-mkto-checkbox-first {
  margin-top: 2rem !important;
}

/* .collibra-custom-marketo .mktoFormRow.collibra-mkto-consent {
  display: none;
} */

.collibra-custom-marketo .mktoFormRow.collibra-mkto-consent,
.collibra-custom-marketo .mktoFormRow.collibra-mkto-consent .mktoFormRow {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.collibra-custom-marketo .mktoFormRow.collibra-mkto-checkbox .mktoLabel,
.collibra-custom-marketo .mktoFormRow.collibra-mkto-consent .mktoLabel {
  display: none;
}

.collibra-custom-marketo .mktoFormRow input[type="checkbox"],
.collibra-custom-marketo .mktoFormRow label {
  display: inline-block;
}

.collibra-custom-marketo .mktoFormRow input[type="checkbox"] {
  -moz-appearance:none;
  -webkit-appearance:none;
  -o-appearance:none;
  appearance: none;
  height: 100%;
  min-height: 50px;
  outline: 0;
  position: relative;
  top: 0;
  vertical-align: top;
  width: 20px;
}

.collibra-custom-marketo .mktoFormRow input[type="checkbox"]:after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  height: 1.25rem;
  width: 1.25rem;
  background-color: #dfe6e8;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border: 2px solid #5e7177;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  cursor: pointer;
}

.collibra-custom-marketo .mktoFormRow input[type=checkbox]:checked:after {
  background-color: #5e7177;
}

.collibra-custom-marketo .mktoFormRow input[type=checkbox] + label {
  margin-left: 20px;
  width: calc(100% - 50px);
}

@media only screen and (max-width: 600px) {
  .collibra-custom-marketo .mktoFormRow input[type=checkbox] + label {
    font-size: 12px;
    line-height: 2;
    margin-left: 10px;
    margin-top: 5px;
  }
}

.collibra-custom-marketo .mktoFormRow input[type=checkbox] + label.collibra-mkto-transplanted-checkbox-label {
  margin-top: 3px;
}


.collibra-custom-marketo .mktoFormRow input[type=checkbox]:checked + label {
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .collibra-custom-marketo .mktoFormRow input[type="checkbox"] {
    top: 0;
  }

  .collibra-custom-marketo .mktoFormRow input[type="checkbox"]:after,
  .collibra-custom-marketo .mktoFormRow input[type=checkbox]:checked:after {
    top: 8px;
  }
}

/* Desktop */
@media (min-width: 601px) {
  .collibra-custom-marketo .mktoFormRow input[type="checkbox"]:after,
  .collibra-custom-marketo .mktoFormRow input[type=checkbox]:checked:after {
    top: 0.5rem;
  }
}


/* -------------------------------------------------------------------------*/
/* 9.   Submit Button                                                       */
/* -------------------------------------------------------------------------*/

.collibra-custom-marketo .mktoButton,
.collibra-custom-marketo + .mkto-form-buttons .mktoButton {
  background-color: #72bf00;
  color: #002b40;
  position: relative;
  text-align: center;
  line-height: 1.2;
  font-size: var(--text-sm) !important;
  font-family: "Neue-Haas-Medium", "Gothic A1", sans-serif, Arial, sans-serif;
  padding: 0.75rem 2.75rem;
  border: none;
  outline: none;
  box-sizing: border-box!important;
  display: inline-block;
  width: auto;
  margin: 0 16px 0 0;
}

.collibra-custom-marketo .mktoButton:hover,
.collibra-custom-marketo + .mkto-form-buttons .mktoButton:hover {
  background-color: #002b40;
  color: #72bf00;
}

.collibra-custom-marketo + .mkto-form-buttons .mktoFormCol {
  border: 0;
  padding: 0;
}


/* -------------------------------------------------------------------------*/
/* 10.  Privacy Policy and General HTML Text                                */
/* -------------------------------------------------------------------------*/

.collibra-custom-marketo .mktoHtmlText {
  box-sizing: border-box!important;
  color: #5e7177;
  display: block;
  font-family: "Neue-Haas", "Gothic A1", sans-serif, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  width: calc(100% - 16px);
}

.collibra-custom-marketo .mktoFormRow.collibra-mkto-privacy,
.collibra-custom-marketo + .mkto-form-buttons .mktoFormRow.collibra-mkto-privacy {
  border-bottom: 0;
  padding-top: 0;
}

.collibra-custom-marketo .mktoFormRow.collibra-mkto-privacy .mktoHtmlText,
.collibra-custom-marketo + .mkto-form-buttons .mktoFormRow.collibra-mkto-privacy .mktoHtmlText {
  color: #5e7177;
  display: inline-block;
  font-family: "Neue-Haas-Light", "Gothic A1", sans-serif, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width: calc(100% - 16px);
}

.collibra-custom-marketo .mktoFormRow.collibra-mkto-privacy .mktoHtmlText a,
.collibra-custom-marketo + .mkto-form-buttons .mktoFormRow.collibra-mkto-privacy .mktoHtmlText a {
  margin-bottom: 0;
  margin-left: 3px;
}

.collibra-custom-marketo + .mkto-form-buttons .mktoFormRow.collibra-mkto-privacy .mktoClear {
  margin-bottom: 0;
}

.collibra-custom-marketo + .mkto-form-buttons .mktoFormRow legend {
  display: none;
}


/* -------------------------------------------------------------------------*/
/* 11.  Errors                                                              */
/* -------------------------------------------------------------------------*/

.collibra-custom-marketo .mktoErrorMsg {
  font-family: "Neue-Haas-Medium", "Gothic A1", sans-serif, Arial, sans-serif !important;
  font-size: 14px;
  font-weight: bolder;
  color: #790000;
  margin-bottom: 0;
}

.collibra-custom-marketo select + .mktoError {
  position: absolute;
  left: 0 !important;
  bottom: -8px ​!important;
}

.collibra-custom-marketo input + .mktoError,
.collibra-custom-marketo textarea + .mktoError {
  position: absolute;
  left: 0;
  right: unset;
}

@media only screen and (max-width: 600px) {
  .collibra-custom-marketo input + .mktoError,
  .collibra-custom-marketo textarea + .mktoError {
    bottom: -35px !important;
  }
}

.mkto-info {
  background: rgba(255, 255, 132, 0.28);
  border: 1px solid #a5902a;
  color: #a5902a;
  font-family: "Neue-Haas-Medium", "Gothic A1", sans-serif, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin: 2rem;
  padding: 1rem;
}


/* -------------------------------------------------------------------------*/
/* 12.  Placeholders                                                        */
/* -------------------------------------------------------------------------*/

/* BOF DO NOT GROUP THESE PLACEHOLDERS */
.collibra-custom-marketo input::-webkit-input-placeholder {
  color: transparent !important;
}
.collibra-custom-marketo input::-moz-placeholder {
  color: transparent !important;
}
.collibra-custom-marketo input::-ms-input-placeholder {
  color: transparent !important;
}
.collibra-custom-marketo input::-moz-placeholder {
  color: transparent !important;
  opacity: 1;
}
.collibra-custom-marketo input::placeholder {
  color: transparent !important;
}
.collibra-custom-marketo textarea::-webkit-input-placeholder {
  color: transparent !important;
}
.collibra-custom-marketo textarea::-moz-placeholder {
  color: transparent !important;
}
.collibra-custom-marketo textarea::-ms-input-placeholder {
  color: transparent !important;
}
.collibra-custom-marketo textarea::-moz-placeholder {
  color: transparent !important;
  opacity: 1;
}
.collibra-custom-marketo textarea::placeholder {
  color: transparent !important;
}
/* EOF DO NOT GROUP THESE PLACEHOLDERS */