/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.bman-video-recorder-container {
  width: 98%;
  margin: 0 auto;
}
.bman-video-recorder-container .fade-in {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bman-video-recorder-container.fade-out {
  height: 400px;
  width: 500px;
  background: black;
  animation: remove ease 2s;
  -webkit-animation: remove ease 2s;
  -moz-animation: remove ease 2s;
  -o-animation: remove ease 2s;
  -ms-animation: remove ease 2s;
  opacity: 0;
}
@keyframes remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.recorder-wrap {
  max-width: 100% !important;
  margin: 0 auto;
  font-size: 16px !important;
  transition: all ease-in-out 1s;
  background: rgba(255, 255, 255, 0.5);
  z-index: 100;
  position: relative;
}
.recorder-wrap.padded {
  padding: 50px;
}
.bm-recorder-form-wrap {
  background: rgba(255, 255, 255, 0.5);
  padding: 2em;
  font-size: 16px;
  opacity: 1;
  height: auto;
  transition: all ease-in-out 0.3s;
}
.bm-recorder-form-wrap.hidden {
  max-height: 0;
  opacity: 0;
  height: 0;
  padding: 0;
}
.recorder-wrap.hidden {
  max-height: 0;
  opacity: 0;
}

.recorder-wrap .recorder-bg {
  background: white;
}

.recorder-wrap button {
  color: green;
}
.recorder-wrap button:disabled {
  color: #707070;
  pointer-events: none;
}

.recorder-wrap .thank-you {
  display: block;
  text-align: center;
  font-size: 1.1em;
  border: 1px solid #e0e0e0;
  padding: 1em;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: #333;
  background: white;
  border-radius: 10px;
}
/****** FORM STYLES *******/

.bm-recorder-form-image {
  max-width: 80%;
  margin: 0 auto 40px;
}
.bm-recorder-field {
  margin: 0 0 1em;
}
.bm-recorder-two-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row; */
  flex-direction: column;
  margin-bottom: 16px;
}
.bm-recorder-two-fields > .bm-recorder-field {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .bm-recorder-two-fields {
    flex-direction: row;
    margin: 0 -0.5em 16px;
  }
  .bm-recorder-two-fields > .bm-recorder-field {
    width: 50%;
    margin-bottom: 0;
    flex: 0 1 auto;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}

.bm-recorder-field label {
  display: block;
  margin: 0 0 0.28571429rem 0;
  color: #212121;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.bm-recorder-field input[type="email"],
.bm-recorder-field input[type="text"] {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin: 0;
  outline: 0;
  -webkit-appearance: none;
  line-height: 1.21428571em;
  padding: 0.67857143em 1em;
  font-size: 1em;
  background: #fff;
  border: 1px solid rgba(34, 36, 38, 0.15);
  color: #666666;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 0 transparent inset;
  box-shadow: 0 0 0 0 transparent inset;
  -webkit-transition: color 0.1s ease, border-color 0.1s ease;
  transition: color 0.1s ease, border-color 0.1s ease;
  width: 100%;
  vertical-align: top;
  letter-spacing: 0;
}

.bm-custom-checkbox {
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: start;
  --checked-state-bg-color: white;
  --checked-state-check-color: rgb(46, 46, 46);
  --outline-color: --checked-state-check-color;
  --outline-offset: 2px;
}

.bm-custom-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  opacity: 0;
}

.bm-custom-checkbox svg {
  width: 20px;
  height: 20px;
  margin-right: 0.5em;
  margin-top: 0.1em;
  min-width: 20px;
  min-height: 20px;
}
.bm-custom-checkbox svg * {
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.bm-custom-checkbox input[type="checkbox"]:checked + svg .cb-bg {
  fill: var(--checked-state-bg-color);
  stroke: var(--checked-state-check-color);
}
.bm-custom-checkbox input[type="checkbox"]:checked + svg .cb-cm {
  stroke: var(--checked-state-check-color);
}

.bm-custom-checkbox input[type="checkbox"]:focus + svg {
  outline: 3px solid var(--outline-color);
  outline-offset: var(--outline-offset);
}

.bm-custom-checkbox input[type="checkbox"]:focus:not(:focus-visible) + svg {
  outline: none;
}
.bm-custom-checkbox span {
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.3;
}
/* .bm-recorder-field input[type="checkbox"]:checked::before {
  content: none;
} */
.bm-recorder-terms-conditions .terms-conditions {
  display: block;
  background: white;
  border-radius: 5px;
  padding: 0.67857143em 1em 0;
  border: 1px solid rgba(34, 36, 38, 0.15);
  color: #666666;
  border-radius: 5px;
  height: 172px;
  overflow-y: scroll;
}
.bm-recorder-terms-conditions span p,
.bm-recorder-terms-conditions li {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.bm-form-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
button {
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 1em;
}

/******* RECORDER STYLES ******/
#bm-video-recorder-div {
  width: fit-content;
  margin: 0 auto;
  padding-top: 20px;
  line-height: 1;
}
.recorder-wrap .controls,
.recorder-wrap .mobile-message {
  display: none;
}
/* .recorder-wrap .mobile-message.visible {
  display: block;
  font-size: 20px;
  text-align: center;
} */
.recorder-wrap .controls.visible {
  display: block;
  position: relative;
  z-index: 110;
  padding-bottom: 20px;
}

.recorder-wrap .main-row,
.recorder-wrap .secondary-row {
  display: flex;
  width: 100%;
  align-content: center;
  justify-content: center;
}
.recorder-wrap .secondary-row {
  /* background: rgba(255, 255, 255, 0.5); */
  padding: 12px;
}
.recorder-wrap .main-row {
  padding-bottom: 1.5em;
}
.recorder-wrap .button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recorder-wrap .button-wrapper span {
  font-family: "Lato", helvetica, arial, sans-serif;
  color: #707070;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  display: block;
  padding-top: 5px;
}
.recorder-wrap .secondary-row .button {
  cursor: pointer;
  display: inline-block;
  outline: none;
  border: 3px solid;
  vertical-align: baseline;
  background: transparent;
  font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin: 0 0.5em;
  padding: 5px;
  text-transform: none;
  text-shadow: none;
  font-weight: bold;
  line-height: 1em;
  font-style: normal;
  text-align: center;
  text-decoration: none;
}

.recorder-wrap .button:focus {
  /* background-color: #cacbcd;
  color: rgba(0, 0, 0, 0.8); */
  background-image: "" !important;
  -webkit-box-shadow: "" !important;
  box-shadow: "" !important;
}
.recorder-wrap .button:focus .recorder-icon {
  opacity: 0.85;
}
.recorder-wrap .hidden {
  display: none;
}

.recorder-wrap .circular.button {
  border-radius: 10em;
}
.recorder-wrap .circular.button > .recorder-icon {
  vertical-align: baseline;
  font-size: 1.2em;
  line-height: 1;
}
.recorder-wrap .oval.button,
.bm-form-button-wrapper .oval.button {
  /* background-color: #a2a0a0; */
  background-color: #ffad01;
  padding: 9px 23px;
  border-radius: 16px;
  color: white;
  border: none;
  text-transform: uppercase;
}
.recorder-wrap .oval.button.secondary {
  /* border: 1px solid #818181;
  color: #818181;
  background: transparent; */
  margin-right: 30px;
  background: #c6c6c6;
}
.recorder-wrap .oval.button:disabled {
  background: #a2a0a0;
}
.recorder-wrap .oval.button.secondary:disabled {
  border: none;
  color: white;
}
.recorder-wrap .oval.button.secondary:hover,
.recorder-wrap .oval.button.secondary:active {
  background-color: green;
}
.recorder-wrap .oval.button:focus,
.recorder-wrap .oval.button:hover,
.recorder-wrap .oval.button:active,
.bm-form-button-wrapper .oval.button:focus,
.bm-form-button-wrapper .oval.button:hover,
.bm-form-button-wrapper .oval.button:active {
  text-decoration: none;
  color: white;
  /* background: #878787; */
  background: green;
}
audio {
  display: block;
  width: 100%;
  margin-top: 0.2em;
}
#formats {
  margin-top: 0.5em;
  font-size: 80%;
}
.recorder-wrap .tooltip {
  position: relative;
}
.recorder-wrap .tooltip::before,
.recorder-wrap .tooltip::after {
  position: absolute;
  left: 50%;
  top: -8px;
  opacity: 0;
}
.recorder-wrap .tooltip::before {
  content: attr(data-tooltip);
  background: rgba(238, 238, 238, 0.5);
  font-size: 12px;
  width: 50px;
  margin-left: -25px;
  padding: 14px;
  border-radius: 5px;
  transform: translateY(-70%);
  line-height: 1.5;
  padding: 2px;
  margin-top: -5px;
  color: #4f4f4f;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}
.recorder-wrap .tooltip:hover::before,
.recorder-wrap .tooltip:hover::after {
  opacity: 1;
}
.recorder-wrap .pipeBtn,
.recorder-wrap .pipeBtnOff,
.recorder-wrap #pipeMicContainer-bm-video-recorder-div {
  display: none;
}
.recorder-wrap .pipeTimer {
  position: inherit;
  padding-top: 5px;
  text-align: center;
  font-family: sans-serif;
  font-size: 14px;
  margin-top: 0;
}
#bm-video-recorder-div.pipeMobileRecorder {
  padding-bottom: 20px;
  position: relative;
  z-index: 120;
}
