.popupbody {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  z-index: 9999;
  transition: 0.8s;
  opacity: 0;
  align-items: center;
  justify-content: center; }
  .popupbody:after {
    content: '';
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    height: 100vh;
    width: 100vw; }
  .popupbody.hidden {
    display: none; }
  .popupbody .container {
    position: relative;
    z-index: 10000;
    width: 100%;
    max-width: 700px;
    padding: 40px;
    background-color: #fff;
    color: #939598 !important;
    font-family: 'Roboto';
    font-size: 14px;
    margin: 0 25px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.35);
    overflow-x: auto;
    max-height: 90vh;
    /* nieuwsletter popup */ }
    @media (max-width: 768px) {
  .popupbody .container {
    padding: 30px; } }
    .popupbody .container .title {
      font-family: 'Roboto Slab';
      font-weight: bold;
      font-size: 32px;
      color: #030304;
      margin-bottom: 0 !important; }
      @media (max-width: 768px) {
  .popupbody .container .title {
    font-size: 18px; } }
    .popupbody .container .popup_content {
      padding: 20px 0; }
      .popupbody .container .popup_content iframe {
        box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.6);
        margin: 20px 0;
        height: 349px; }
        @media (max-width: 768px) {
  .popupbody .container .popup_content iframe {
    height: 280px; } }
        @media (max-width: 375px) {
  .popupbody .container .popup_content iframe {
    height: 138px; } }
        @media (max-width: 350px) {
  .popupbody .container .popup_content iframe {
    height: 124px; } }
    .popupbody .container .btn_2 {
      display: inline-block;
      text-transform: uppercase;
      text-align: center;
      background-color: #ac6b30;
      font-family: 'Roboto';
      font-size: 12px;
      font-weight: 500;
      height: 40px;
      line-height: 40px;
      padding: 0 25px;
      text-decoration: none;
      color: white; }
      @media (max-width: 768px) {
  .popupbody .container .btn_2 {
    width: 100%;
    margin: 0; } }
    .popupbody .container .footer {
      text-align: right; }
    .popupbody .container .fa-close {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #000;
      font-size: 22px;
      cursor: pointer; }
  .popupbody .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 1024px) {
  .popupbody .flex {
    flex-direction: column; } }
    .popupbody .newsletter_title {
      font-size: 20px;
      font-weight: 700;
      width: calc(100% - -30px);
      margin-right: 30px;
      /* line-height: 75px; */
      display: none; }
    @media (max-width: 1024px) {
  .popupbody .newsletter_title {
    font-size: 16px;
    width: 100%;
    margin-right: 0; } }
  .popupbody .newsletter_form_items {
    flex-direction: row;
    flex-wrap: wrap;
    /* margin: 0 0 10px 0; */ }
    @media (max-width: 1024px) {
 }
    @media (max-width: 599px) {
  .popupbody .newsletter_form_items {
    margin: 0; } }
  .popupbody .newsletter_input {
    width: calc(100% - 150px);
    margin-right: 10px; }
    @media (max-width: 599px) {
  .popupbody .newsletter_input {
    width: 100%;
    margin-right: 0;
    order: 1; } }
    .popupbody .newsletter_input input {
      width: 100%;
      margin: 0;
      -webkit-appearance: none;
      font-family: 'Roboto';
      font-size: 12px;
      font-style: italic; }
    .popupbody .newsletter_input input::placeholder {
      color: grey;
      opacity: 0.5; }
  @media (max-width: 599px) {
    .popupbody .newsletter_button {
      width: 100%;
      order: 3; } }
    .popupbody .newsletter_button button {
      width: 140px;
      margin: 0;
      background: #ac6b30;
      border: 1px solid #fff;
      color: white;
      line-height: 38px;
      text-align: center;
      font-size: 14px;
      text-transform: uppercase;
      cursor: pointer;
      overflow: hidden;
      transition: 0.4s;
      outline-color: none; }
      @media (max-width: 599px) {
  .popupbody .newsletter_button button {
    width: 100%; } }
      .popupbody .newsletter_button button:hover {
        background-color: #ac6b30; }
      .popupbody .newsletter_button button.disabled {
        opacity: 0.5;
        pointer-events: none; }
  .popupbody .newsletter_checkbox {
    padding-top: 10px; }
    @media (max-width: 599px) {
  .popupbody .newsletter_checkbox {
    width: 100%;
    order: 2;
    margin: 10px 0;
    padding-top: 0; } }
    .popupbody .newsletter_checkbox .newsletter_checkbox_title {
      width: 100%;
      display: block; }
  .popupbody .toast {
    margin-top: 15px !important;
    background: #fff;
    border: 1px solid;
    padding: 0 15px; }
    .popupbody .toast.success {
      border: 1px solid #ac6b30;
      color: #ac6b30; }
    .popupbody .toast.warning {
      border: 1px solid red;
      color: red; }
