
button.submit {
    background: #262626;
    border-radius: 3px;
    font-family: "Poppins";
    border:1px solid #262626;
    color: #ffffff;
    font-weight: 500;
    padding: 10px 40px;
}

.customRadioBtn {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-right: 50px;
    /* position: absolute;
    left: 30px; */
  }
  .customRadioBtn input {
    margin-right: 10px;
    
  }
  
  
  .customRadioBtn input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--form-background);
    /* / margin: 0; / */
  
    font: inherit;
    color: currentColor;
    width: 20px;
    height: 20px;
    border: 0.15em solid #000000;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    background-color: #ffffff;
  }
  
  .customRadioBtn.btnCustom input[type="radio"] {
    margin-left: -25px;
  }
  .customRadioBtn input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: #000000;
  }
  
  .customRadioBtn input[type="radio"]:checked::before {
    transform: scale(0.9);
    margin-top: 0.4px;
  }
  @media(max-width:1330px){
    .customRadioBtn.customPlanRadio input[type="radio"]:checked::before {
      margin-left: 1px;
    }
  }

  
  .customRadioBtn input[type="radio"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
  }
  .customRadioBtn input[type="radio"]:focus{
  outline:0
  }

/* / error message / */
span.error{
    font-size: 13px;
    color: red;
    display: none;
}

.navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    box-sizing: border-box;
    height: 10px;
    width: 10px;
    border-style: solid;
    border-color: #000000 !important;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    margin-left: 18px;
}
.company_name_bottom {
  margin-top: 25px;
}