.errColor {
    color: red;
}

.productName {
    font-size: 24px;
    color: #3766b4;
    font-weight: 600;
}

.productCode {
    font-size: 15px;
    color: #d85f0e;
    font-weight: 600;
}

.yes {
    padding-left: 6px;
    position: relative;
    color: #fff;
    top: 3px;
}

.no {
    padding-right: 2px;
    position: relative;
    top: 4px;
    left: 3px;
    z-index: 0;
}

body,
html {
    scroll-behaviour: smooth;
}

.ui-slider {
    background-color: #7dc12e;
}

.ui-slider-handle {
    background: #3766b4 !important;
    background: #fff !important;
    border-radius: 50%;
    padding: 8px;
    margin-top: -1px;
    box-shadow: 1px 1px 2px 0px;
}

.title_desc {
    padding-bottom: 0;
    padding-top: 0;
    font-size: 12px;
    margin-top: -8px !important;
    margin-bottom: 0 !important;
}

.input_container {
    margin-top: 10px;
}

.input_container .ui-slider {
    width: 80%;
    float: left;
}

.input_rupee_box .ui-slider {
    width: 75%;
    float: left;
}

.input_rupee_box .inner_text {
    width: 25%;
    float: left;
    margin-top: -18px !important;
    /* background: #ffffff; */
}

.input_container input {
    border: 0;
    color: #f6931f;
    font-weight: bold;
    width: 15%;
    float: left;
    text-align: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 33px;
    height: 30px;
    width: 58px;
    margin-left: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    z-index: 1;
    position: absolute;
    content: "";
    height: 26px;
    height: 26px;
    width: 26px;
    width: 25px;
    left: 4px;
    bottom: 4px;
    bottom: 2px;
    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(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.premium_calculator .row {
    margin: 20px 0px;
}

.premium_calculator .ui-datepicker-trigger {
    float: left;
    position: relative;
    right: 15px;
}

.inner_text {
    font-size: 12px;
    font-weight: 100;
    width: 20%;
    float: left;
    text-align: center;
    margin-top: -30px;
}

.inner_text .input_box {
    width: 91%;
    border: 1px solid #ccc;
    margin-left: 10px;
    margin-top: 10px;
}

.inner_text .icon {
    width: 20%;
    float: left;
    font-size: 20px;
    color: #ffffff;
    background: #3766b4;
}

.inner_text .amount {
    width: 80%;
    float: left;
    padding: 0;
    font-size: 16px;
    color: #000;
    font-weight: 100;
    text-align: left;
    padding-left: 10px;
    padding-top: 3px;
    background: #fff !important;
    height: 100%;
    padding-bottom: 4px;
}

.inner_text input {
    width: 100%;
    text-align: center;
    font-size: 36px;
    margin-bottom: -10px;
    color: #3766b4;
}

.modal-dialog {
    position: absolute;
    width: auto;
    padding: 0;
    margin: 0;
    margin-top: 30px;
    left: 0;
    top: -30px;
    min-height: 100%;
}

.modal-content {
    min-height: 100%;
}

.freq_mode_box .btn+.btn {
    border-left: 0;
}

.freq_mode_box .btn {
    background: #ffffff;
    border: 1px solid #3766b4;
    float: left;
    margin: 0;
    border-radius: 0;
    border-collapse: collapse;
    width: 25%;
}

.freq_mode_box .btn-success {
    background: #3766b4;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */

.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #ccc;
}

/* When the checkbox is checked, add a blue background */

.checkbox_container input:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.checkbox_container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.checkbox_container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.radio_container {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .radio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .radio_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #ccc;

  }
  
  /* When the radio button is checked, add a blue background */
  .radio_container input:checked ~ .radio_checkmark {
    background-color: #2196F3;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .radio_checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio_container input:checked ~ .radio_checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio_container .radio_checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }

.marginTopDown{
    margin: 20px 0px;
}

/* ************ LOADER CSS *********** */
/*.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50% !important;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    
}*/

 .loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1000;
    width: 69px;
    height: 89px;
    src: '../../images/demo_wait.gif'
  }

@-webkit-keyframes spin {
    0% {-webkit-transform: : rotate(0deg);}
    100% {transform: rotate(360deg);}
}

/*@keyframes spin {
    0% {transform: : rotate(0deg);}
    100% {transform: rotate(360deg);}
}*/

.hide-loader {
    display: none;
}

/* Date picker css */
.inlineDisplay{
    display: -webkit-box;
}