.content-table {
    border:0px !important; width:100%;
  }
  .btnSubmit {
    background-color: #f07f83;  border-color: #f07f83;color:#fff; margin-top: 30px;
  }
  input[type="text"], select, input[type="number"] {
    width: 100%;
    /* height: 45px; */
    /* font-size: 20px; */
  }
  .help-text {
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
  }
  .frmLabel {
  font-weight: 500;
  }
  p {
  margin-bottom: 5px !important;
  }
  .btn-active {
  background-color: #000 !important;
  color: #FFF;
  }
  .hide{
  display: none;
  }
  
  
  /* The switch - the box around the slider */
  .switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  } 
  
  .fa-info-circle {
    font-size: 14px !important;
    cursor: pointer;
    color:#333;
  }
  
  
  /* tooltip  */
  /* Tooltip container */
  .tool_tip {
    position: relative;
    display: inline-block;
  }
  
  /* tool_tip text */
  .tool_tip .tool_tiptext {
    visibility: hidden;
    width: 450px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
    border-radius: 6px;
    padding: 20px;;
    /* Position the tool_tip text - see examples below! */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%; 
    margin-left: -60px;
  }
  
  .tool_tip .tool_tiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tool_tip */
    left: 12%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }
  
  
  /* Show the tool_tip text when you mouse over the tool_tip container */
  .tool_tip:hover .tool_tiptext {
    visibility: visible;
  }