﻿.txtError {
    color: red !important;
    font-size: 16px;
}
.txtError span {
    color: red !important;
    font-size: 16px;
}
.errorTC {
    color: red !important;
    position: absolute;
    bottom: -22px;
    left: 0;
    font-size: 16px;
}
.errorTC span {
    color: red;
    font-size: 16px;
}
.hero-item .large-hero_headline {
    padding-bottom: 0;
}
.hero-container {
    height: auto;
}
.hero-item {
    padding: 160px 0 24px;
    min-height: auto;
}
.hero-item.hero-leadership-item-bg {
  background-color: #191919;
  display: flex;
  align-items: center;
}
.form-component {
  padding-top: 76px;
}
.form-component .copy-section {
  margin-bottom: 50px;
}
.form-component .copy-section p {
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  color: hsla(0, 0%, 100%, 0.87) !important;
}
.form-field {
  position: relative;
  flex-direction: row;
  margin: 0 0 12px;
}
.form-field label {
  display: block;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0.571em;
}
.form-field input[type="text"] {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  font-size: 14px;
  line-height: 18px;
  padding: 1em 0.7em 1.1em;
  vertical-align: bottom;
  color: rgba(0, 0, 0, 0.6) !important;
}
.form-field .dropdown {
  width: 100%;
  margin: 0;
  border: 0;
  font-size: 14px;
  line-height: 18px;
  padding: 1em 0.7em 1.1em;
  vertical-align: bottom;
  color: rgba(0, 0, 0, 0.6) !important;
}
.form-field .dropdown option {
  color: rgba(0, 0, 0, 0.6) !important;
}

.form-field .form-dropdown {
  position: relative;
}
.form-field .form-dropdown svg {
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 1rem;
}
.form-field textarea {
  padding: 1.3em 1.2em;
  min-height: 6.9em;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 1px auto #25dfaf;
}

.form-field.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.525em;
  margin-top: 1.6625em;
}
.form-field .MuiIconButton-checkbox input[type="checkbox"] {
  margin-right: 1.4em;
  padding: 9px;
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 1px solid #ddd;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  color: #000;
}
.form-field.checkbox label {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  align-items: center;
  color: hsla(0, 0%, 100%, 0.87);
}
.form-field .btn-sumbit {
  border-color: #fff;
  background: #fff;
  color: #000;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  padding: 0.867em 1.5em;
  position: relative;
}

.form-field .btn-sumbit:hover {
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  padding: 0.867em 1.5em;
  font-size: 16px;
}
.form-lft-clm {
    padding-right: 0;
}
.prod-contact-form .form-field input, textarea, select {
    border-radius: 0 !important;
    font-size: 14px;
    line-height: 18px;
    padding: 1em .7em 1.1em;
    vertical-align: bottom;
    color: rgba(0, 0, 0, .6) !important;
}
.prod-contact-form .form-field select {
    color: #000 !important;
    font-size: 14px;
    line-height: 18px;
    padding: 1em .7em 1.1em;
    vertical-align: bottom;
    color: rgba(0, 0, 0, .6) !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: url('../../Resources/bbc-production/dropdown-arrow.svg') no-repeat right #fff;
    background-position: center right 12px;
}

    .prod-contact-form .form-field select option {
        color: #000 !important;
        font-size: 14px;
        line-height: 18px;
        padding: 1em .7em 1.1em;
        vertical-align: bottom;
        color: rgba(0, 0, 0, .6) !important;
    }
.contact-btn {
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    padding: .567em 1.5em;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    border-color: #fff;
    border-radius: 0;
    font-weight: 700;
    width: 100%;
    overflow: hidden;
}
    .contact-btn:hover{
        background-color: #fff;
        color: #000;
    }
    .contact-btn:before {
        border-radius: 50%;
        background-color: rgba(0,0,0,0.1);
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
    }
    .contact-btn:hover:before {
        transition: all 0.6s ease-in-out;
        opacity: 0;
        width: 160px;
        height: 160px;
        margin-top: -80px;
        margin-left: -80px;
        z-index: -1;
    }
    .MultiIconCheckBox {
        margin-right: 1.4em
    }
    .MultiIconCheckBox .checkbox-field {
        vertical-align: bottom;
        color: rgba(0, 0, 0, .6) !important;
        width: 32px;
        height: 32px;
        border-radius: 0 !important;
    }

@media (min-width: 753px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .form-lft-clm {
        padding-right: 115px;
    }
    .contact-btn {
        width: auto;
    }
    .hero-item {
        padding: 252px 0 92px;
        height: auto;
        max-height: 400px;
    }
}



@media (min-width: 1008px) {
    .form-lft-clm {
        padding-right: 115px;
    }

    .form-component .copy-section {
        margin-bottom: 0;
    }

    .form-field {
        margin: 0 0 2.05em;
    }

    .form-field.checkbox {
        margin-bottom: 1.525em;
        margin-top: 1.6625em;
    }

    .form-field .btn-sumbit {
        width: auto;
    }

    .hero-item {
        min-height: 400px;
        max-height: 400px;
    }

    .contact-btn {
        width: auto;
    }
}
