/* Minification failed. Returning unminified contents.
(23,30): run-time error CSS1034: Expected closing parenthesis, found ','
(23,30): run-time error CSS1042: Expected function, found ','
(23,34): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */
.podcast-header {
  background-image: url('/assets/images/podcasts/feedback.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.pink-color {
  color: #6dba3d;
}


.btn.btn-pink:hover {
  box-shadow: 2px 1px 12px 5px rgba(237, 69, 126, 0.42);
}

.btn.btn-pink {
  box-shadow: none;
}


.podcast-feedback > .main-container {
  background-color: rgb(0,0,0,0.5);
  border-radius: 20px;
  margin-bottom: 50px;
  padding: 10px 60px;
}

  .podcast-feedback > .main-container p {
    font-size: 16px;
  }

.podcast-feedback input, .podcast-feedback select, .podcast-feedback textarea {
  background: black;
  color: white;
  border: 1px solid #ED008C;
  width: 100%;
  font-size: 14px;
  padding: 14px;
  padding-left: 15px;
  margin-bottom: 7px;
}

  .podcast-feedback input::-webkit-input-placeholder, .podcast-feedback textarea::placeholder {
    color: white;
  }

  .podcast-feedback input::-moz-placeholder, .podcast-feedback textarea::placeholder {
    color: white;
  }

  .podcast-feedback input::-ms-placeholder, .podcast-feedback textarea::placeholder {
    color: white;
  }

  .podcast-feedback input::placeholder, .podcast-feedback textarea::placeholder {
    color: white;
  }

.podcast-feedback .modal-body > .row {
  margin: auto;
  width: 70%;
}

.podcast-feedback .validation {
  width: 100%;
  display: none;
  color: white;
  padding: 4px;
  font-size: 14px;
  margin-top: -5px;
  background: #6dba3d;
  margin-bottom: 4px;
}

.field-validation-error {
  width: 100%;
  color: white;
  padding: 4px;
  font-size: 14px;
  margin-top: -5px;
  background: #ED008C;
  margin-bottom: 4px;
}

.podcast-feedback .visible {
  display: block;
}


@media (max-width: 1000px) {

  .podcast-header {
    background-attachment: fixed;
    height: auto;
    padding-top: 5vh;
  }
}

