:root {
    --cor-letra: #969696;
}

.formLP {
    background-color: white;
    padding: 10px 50px 50px;
  }
  
  .formLP label {
    margin: 15px 0 0;
    color: var(--cor-letra);
    font-weight: 300;
  }
  
  .formLP .form-field {
    width: 100%;
    border-radius: 2px;
    border: 0;
    border: 1px solid #E0E0E0;
    height: 36px;
    margin: 5px 0px 10px;    
    font-weight: 300;
    font-size: 14px;
  }

  .formLP input.form-field,
  .formLP select.form-field  {
    padding: 0 16px;
  }
  .formLP .form-field.phoneArea {
    display: flex;
  }
  .formLP .custom-select1,
  .formLP .custom-select2 {
    position: relative;
    font-family: Arial;
    display: inline-block;
    width: 65px;
    height: 45px;
  }
  .formLP .custom-select2 {
    display: block;
    width: 100%;
    border: 1px solid #E0E0E0;
    border-radius: 2px;
  }
  .formLP .custom-select1 select,
  .formLP .custom-select2 select {
    display: none;
    /*hide original SELECT element: */
  }
  .formLP .select-selected1,
  .formLP .select-selected2 {
    background-color: transparent;
    color: black;
    width: 100%;
    height: 76%;
    border-radius: 2px 0 0 2px;
    font-size: 13px;
    line-height: 15px;
  }
  
  .formLP .select-selected1.select-arrow-active1,
  .formLP .select-selected2.select-arrow-active2 {
    background-color: #969696;
    color: #FFF;
  }
  
  /* Style the arrow inside the select element: */
  .formLP .select-selected1:after,
  .formLP .select-selected2:after {
    position: absolute;
    content: "";
    top: 15px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: black transparent transparent transparent;
  }
  
  /* Point the arrow upwards when the select box is open (active): */
  .formLP .select-selected1.select-arrow-active1:after,
  .formLP .select-selected2.select-arrow-active2:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
  }
  
  /* style the items (options), including the selected item: */
  .formLP .select-items1 div,
  .select-selected1,
  .formLP .select-items2 div,
  .select-selected2 {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    /* border-color: transparent rgba(0,0,0,0.1) rgba(0, 0, 0, 0.1) transparent; */
    cursor: pointer;
    font-size: 14px;
    
  }
  
  /* Style items (options): */
  .formLP .select-items1,
  .formLP .select-items2 {
    position: absolute;
    background-color: #969696;
    top: 75%;
    left: 0;
    z-index: 9999999999;
    grid-template-columns: auto auto auto auto auto auto;
    width: max-content;
    display: grid;
  }
  .formLP .select-items2 {
    display: block;
    width: 100%;
  }
  /* Hide the items when the select box is closed: */
  .formLP .select-hide1,
  .formLP .select-hide2 {
    display: none;
  }
  
  .formLP .select-items1 div:hover,
  .formLP .select-items2 div:hover {
    background-color: rgba(0, 0, 0, 0.45);
  }
  .formLP .select-items1 div:hover {
    border-radius: 50%;
  }
  .formLP .select-items1 .extra {
    grid-column: 4 / span 3;
  }
  .formLP .select-items1 .extra:hover {
    border-radius: 2px;
  }
  .formLP div.phone,
  div.phoneCountry {
    /* display: inline-block; */
    /* border-top: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD; */
    margin: 0;
    padding: 8px 16px;
  
  }
  .formLP .button {
    width: 100%;
  }
  div.phone {
    width: calc(100% - 135px);
    border-radius: 0 2px 2px 0;
  
  }
  
  div.phoneCountry {
    width: 80px;
    background: rgba(19,77,171,0.04);
    border-left: 1px solid rgba(19,77,171,0.04);
    border-right: 1px solid rgba(19,77,171,0.04);
  }
  
  
  .formLP input.phone,
  input.phoneCountry {
    border: 0;
    /* border-bottom: 1px solid #DDD; */
    width: 100%;
  }
  
  .formLP input.phoneCountry {
    width: 50px;
    background: transparent;
  }
  
  .formLP .phoneInfo {
    display: flex;
  }
  
  
  .formLP ::placeholder {
    color: #AAA;
    opacity: 1;
  }
  
  .formLP :-ms-input-placeholder {
    color: #AAA;
  }
  
  .formLP ::-ms-input-placeholder {
    color: #AAA;
  }
  
  .formLP .call_button {
    width: 100%;
    height: 50px;
    border: 0;
    background-color: #E91F24;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 19px;
  }
  
  .formLP .actions {
    /* margin: 15px 0; */
  }
  
  .formLP .notice {
    margin: 15px 0;
    font-size: 12px;
  }

  .formLP .notice input[type="checkbox"] {
    position: relative;
    top: 2px;
}

  
  #formModal {
    display: none;
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(20,20,20, 0.7);
    z-index: 1000;
  }
  #formModal .fullarea {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #formModal .fullarea .closeButton {
    position: absolute;
    top: 75px;
    right: 75px;
    z-index: 110;
  }
  #formModal .fullarea .form {
    max-width: 550px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 200;
  }
  #formModal .fullarea h1 {
    background-color: #134DAB;
    color: white;
    text-align: center;
    text-transform: uppercase;
    padding: 30px 10px;
    margin: 0;
    font-size: 30px;
  }
  
  .formLP .select-items1 div.option {
    width: 35px;
    margin: 3px 6px;
    height: 40px;
    padding: 0;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
  
    #formModal .fullarea h1 {
        font-size: 26px;
    }
    #formModal .fullarea .closeButton {
        position: absolute;
        top: 25px;
        right: 11px;
        z-index: 300;
        width: 30px;
    }
  }
  
  @media (min-width: 300px) and (max-width: 767px) {
    #formModal .fullarea h1 {
       font-size: 20px;
       padding: 20px 10px;
    }
    .formLP {
        padding: 10px 20px 20px;
    }
  
    .formLP label {
        margin: 15px 0 0;
        font-size: 15px;
        line-height: 15px;
    }
  
  
    .formLP .custom-select1 {
        position: relative;
        font-family: Arial;
        display: inline-block;
        width: 65px;
        height: 35px;
    }
  
    .formLP .custom-select1 select,
    .formLP .custom-select2 select {
        display: none;
        /*hide original SELECT element: */
    }
  
    .formLP .select-selected1 {
        width: 100%;
        height: 100%;
        border-radius: 2px 0 0 2px;
        font-size: 16px;
        line-height: 20px;
    }
  
    /* Style the arrow inside the select element: */
    .formLP .select-selected1:after {
        position: absolute;
        content: "";
        top: 15px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
    }
  
    /* Point the arrow upwards when the select box is open (active): */
    .formLP .select-selected1.select-arrow-active1:after {
        top: 7px;
    }
  
    /* style the items (options), including the selected item: */
    .formLP .select-items1 div,
    .select-selected1 {
        padding: 8px 16px;
        border: 1px solid transparent;
        border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
        cursor: pointer;
    }
  
    /* Style items (options): */
    .formLP .select-items1 {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9999999999;
    }
  
    /* Hide the items when the select box is closed: */
    .formLP .select-hide1 {
        display: none;
    }
  
    .formLP .select-items1 div:hover,
    .same-as-selected1 {
    }
  
  
    .formLP div.phone,
    div.phoneCountry {
        display: inline-block;
        margin: 0;
        padding: 4px 16px;
  
    }
  
    div.phone {
        width: calc(100% - 135px);
        border-radius: 0 2px 2px 0;
  
    }
  
    div.phoneCountry {
        width: 80px;
    }
  
  
    .formLP input.phone,
    input.phoneCountry {
        border: 0;
        width: 100%;
    }
  
    .formLP input.phoneCountry {
        width: 50px
    }
  
    .formLP .phoneInfo {
        display: flex;
    }
  
  
    .formLP .call_button {
        width: 100%;
        height: 50px;
        border: 0;
        text-transform: uppercase;
        font-weight: 600;
    }
  
    .formLP .actions {
        /* margin: 15px 0; */
    }
  
    .formLP .notice {
        margin: 15px 0;
        font-size: 12px;
    }
    .formLP .form-control {
        height: calc(2.05rem + 0px);  
    }
  }