
/*-------------------------------- */
.cd-form label.error ,.loginForm label.error, label.form_error
{
  color:#e94b35;
  font-size: 1rem;
  margin-top: 5px;
  position: absolute;
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset,.searchDialog fieldset {
  margin: 10px 0;/*24*/
}
.cd-form legend,.searchDialog legend {
  margin:0;
  padding:0;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 2px solid #009fe3;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  /*margin: 20px 0;*/
}
.cd-form h4, .cd-form .cd-label , .cd-form .fixed-label {
  font-size: 1.3rem;
  color: #94aab0;
  margin-bottom: 10px;
}
.cd-form .cd-label, .cd-form .fixed-label {
  display: block;
}
.cd-form input, .cd-form textarea, .cd-form select, .cd-form label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #2b3e51;
}
.cd-form input[type="text"],
.cd-form input[type="number"],
.cd-form input[type="password"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend , .searchDialog legend{
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  clear: both;
}
.cd-form input[type="text"],
.cd-form input[type="number"],
.cd-form input[type="password"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form select {
  padding: 11px;
}
.cd-form input[type="text"]:focus,
.cd-form input[type="number"]:focus,
.cd-form input[type="password"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #2c97de;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../../images/icons/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 11px 11px 0;
  float: left;
}
.tableContainer td{
  position: relative;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox],
.tableContainer input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 24px;
}
.tableContainer input[type="checkbox"] + label{
  padding-left: 10px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after ,
.tableContainer input[type="checkbox"] + label::before,
.tableContainer input[type="checkbox"] + label::after{
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before,
.tableContainer input[type="checkbox"] + label::before {
  border: 1px solid #cfd9db;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after ,
.tableContainer input[type="checkbox"] + label::before,
.tableContainer input[type="checkbox"] + label::after{
  border-radius: .25em;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after,
.tableContainer input[type="checkbox"] + label::after {
  background-color: #454c9b;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(243, 122, 54, 0.4);
  display: none;
}
.cd-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("../../images/icons/cd-icon-radio.svg");
}
.cd-form input[type="checkbox"] + label::after,
.tableContainer input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("../../images/icons/cd-icon-check.svg");
}
.cd-form input[type="checkbox"].minus + label::after,
.tableContainer input[type="checkbox"].minus + label::after {
  /* custom image for checkbox */
  background-image: url("../../images/icons/cd-icon-check-minus.svg");
  background-color: #425ed4;
}
.cd-form input[type="checkbox"].plus + label::after,
.tableContainer input[type="checkbox"].plus + label::after {
  /* custom image for checkbox */
  background-image: url("../../images/icons/cd-icon-check-plus.svg");
  background-color: green;
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before,
.tableContainer input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after,
.tableContainer input[type="checkbox"]:checked + label::after {
  display: block;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after,
.tableContainer input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.cd-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
.cd-form input[type="submit"],.cd-form input[type="button"] , .cbutton {
  /* button style */
  border: none;
  background:#454c9b;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cbutton{
  float: none;
}
.no-touch .cd-form input[type="submit"]:hover,.no-touch .cd-form input[type="button"]:hover , cbutton:hover{
  background: #009fe3;
}
.no-touch .cd-form input[type="submit"]:disabled,.no-touch .cd-form input[type="button"]:disabled , cbutton:disabled{
  background:#666666;
}
.cd-form input[type="submit"]:focus , .cbutton:focus {
  outline: none;
  background: #2b3e51;
}
.cd-form input[type="submit"]:active , cbutton:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-form [required] {
  background: url("../../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .error-message p {
  background:#009fe3;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: .25em;
  padding: 16px;
}
.cd-form .error , .loginForm .error{
  border-color: #e94b35 !important;
}
@media only screen and (min-width: 600px) {
  .cd-form h4, .cd-form .cd-label , .cd-form .fixed-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .cd-form input[type="text"],
  .cd-form input[type="number"],
  .cd-form input[type="password"],
  .cd-form input[type="email"],
  .cd-form textarea {
    padding: 12px;
  }
  .cd-form select {
    padding: 12px;
  }
}

@-webkit-keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%, 100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
/* -------------------------------- 

Custom icons

-------------------------------- */
.cd-form .icon input, .cd-form .icon select, .cd-form .icon textarea {
  padding-left: 54px;
}
.cd-form .user {
  background: url("../../images/icons/cd-icon-user.svg") no-repeat 16px center;
}
.cd-form [required].user {
  background: url("../../images/icons/cd-icon-user.svg") no-repeat 16px center, url("../../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .company {
  background: url("../../images/icons/cd-icon-company.svg") no-repeat 16px center;
}
.cd-form [required].company {
  background: url("../../images/icons/cd-icon-company.svg") no-repeat 16px center, url("../../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .email {
  background: url("../../images/icons/cd-icon-email.svg") no-repeat 16px center;
}
.cd-form [required].email {
  background: url("../../images/icons/cd-icon-email.svg") no-repeat 16px center, url("../../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .budget {
  background: url("../../images/icons/cd-icon-budget.svg") no-repeat 16px center;
}
.cd-form .message {
  background: url("../../images/icons/cd-icon-message.svg") no-repeat 16px 16px;
}
.cd-form [required].message {
  background: url("../../images/icons/cd-icon-message.svg") no-repeat 16px 16px, url("../../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .loading {
  background: url("../../images/loader.gif") no-repeat 16px center;
}
/* -------------------------------- 

FLoating labels 

-------------------------------- */

.js .floating-labels .cd-label  , .floating-labels .fixed-label{
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.6rem;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .icon .cd-label {
  left: 56px;
}
.js .floating-labels .cd-label.float, .floating-labels .fixed-label {
  /* move label out the input field */
  font-size: 1.2rem;
  top: -16px;
  left: 0 !important;
}
@media only screen and (min-width: 600px) {
    
  .js .floating-labels .cd-label {
    top: 20px;
  }
}
/*---------------confirm--------------*/
div.question {
  position: absolute;
  text-align: center;
  width: 174px;
  height: 78px;
  font-size: 13px;
  line-height: 1.5em;
  background: url("../../images/bubble.png") no-repeat scroll left top transparent;
  padding: 10px 0px 0px;
  text-shadow: 0px 1px 0px rgb(255, 255, 255);
  opacity: 0;
  margin:0;
  margin-top: -8em;
  margin-left: -150px;
}
div.question span.yes, div.question span.cancel {
  margin-top: 0.5em;
  margin-right: 0.5em;
  cursor: pointer;
  display: inline-block;
  width: 63px;
  height: 21px;
  color: rgb(255, 255, 255);
  text-shadow: 0px 1px 0px rgb(0, 0, 0);
  background: url("../../images/button.png") no-repeat scroll left top transparent;
}
/*---------------input file--------------*/
.file-element{
  position: relative;
  /*overflow: hidden;*/
  align-items: stretch;
  display: flex;
  cursor: pointer;
  border: 1px solid #cfd9db;
  border-radius: .25em;
  margin:0;
}
.file-element .file-input{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity:0;
  cursor: pointer;
  display:block;
}
.file-element .file-name
{
  padding: 20px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin:0;
  flex-grow:1;
  flex-shrink:1;
  max-width:calc(100% - 140px);
  overflow: hidden;
}
.file-label{
  display: block;
  white-space: nowrap;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: .25em;
  border-left: 1px solid #dbdbdb;
  padding: 18px 10px;
  color: #4a4a4a;
  margin:0;
  flex-shrink:0;
  flex-grow:0;
  width:140px;
  text-align: center;
}
.file-element .error{
  bottom: -15px;
  line-height: 10px;
}
/***********Field View***********/
span.field-value{
  padding: 15px;
  border: 1px solid #cfd9db;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  display: block;
  width: 100%;
}
span.field-value::after{
  content: " ";
  white-space: pre;
}
span.field-label{
  position: absolute;
  top: -16px;
  left: 0;
  font-size: 1.2rem;
  color: #94aab0;
}
span.field-empty{
  padding: 15px;
  display: block;
  width: 100%;
}
span.field-empty::after{
  content: " ";
  white-space: pre;
}
/***********Upload Progress***********/
.progress {
  padding-top:8px;
  padding-bottom:8px;
  position:relative;
  height:24px;
  box-sizing:border-box;
  visibility: hidden;
  margin:0px 10px !important;
}
.progress_bar_frame {
  height:8px;
  background-color:#777;
}
.progress_bar {
  height:8px;
  background-color:#0085ff;
  width:0px;
}
.progress_percent {
  width:40px;
  white-space:nowrap;
  overflow:hidden;
  position: absolute !important;
  right:-50px;
  top:0px;
  line-height:24px;
  color:#0085ff;
}
.tippy-tooltip {
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
}