@font-face {
  font-family: "Primary-Regular";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Primary-Semibold";
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Primary-Bold";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/* used for the primary Bold fonts */
/* used for the primary Medium fonts */
/* used for the primary Regular fonts */
/* used for the primary color texts Ex: bordered active tabs  */
/* used for the secondary color texts*/
/* used for the black texts */
/* used for the white color */
/* used for the anchor tags */
/* used for the from label texts and breadcrumb active color */
/* used for the table head text colors */
/* used for the table body text colors */
/* used for the mandatory text colors and validation texts */
/* used for the primary background color  Ex: primary btns  */
/* used for the secondary background color  Ex: secondary btns  */
/* used for the form border color Ex: text box border  */
/* used for the primary border btns color Ex: loadmore border btn  */
/* used for the secondary border btns color Ex: advanced filter border btn  */
/*used for table outer border */
.primary-btn {
  background-color: #464775;
  color: #fff;
  height: 40px;
}
.primary-btn:hover {
  background-color: #333455;
  color: #fff;
}
.primary-btn:focus {
  background-color: #333455;
  color: #fff;
  box-shadow: 0 1px 4px rgba(70, 71, 117, 0.7);
}
.primary-btn:disabled {
  background-color: rgba(70, 71, 117, 0.4);
}

.secondary-btn {
  background-color: #F8F8F8;
  color: #272626;
  height: 40px;
}
.secondary-btn:hover {
  background-color: #dfdfdf;
  color: #272626;
}
.secondary-btn:focus {
  background-color: #dfdfdf;
  color: #272626;
  box-shadow: 0 1px 4px rgba(248, 248, 248, 0.7);
}

.primary-outline-btn {
  border: 1px solid #464775;
  color: #464775;
  height: 40px;
}
.primary-outline-btn:hover {
  background-color: #F8F8FA;
  color: #464775;
}
.primary-outline-btn:focus {
  background-color: #F8F8FA;
  color: #464775;
  box-shadow: 0 1px 4px rgba(70, 71, 117, 0.7);
}

.secondary-outline-btn {
  border: 1px solid #E7E7E7;
  color: #F8F8F8;
  height: 40px;
}
.secondary-outline-btn:hover {
  background-color: #E6E7FF;
  color: #fff;
  border: 1px solid #E6E7FF;
}
.secondary-outline-btn:focus {
  background-color: #E6E7FF;
  border: 1px solid #E6E7FF;
  color: #fff;
  box-shadow: 0 1px 4px rgba(248, 248, 248, 0.7);
}

.input-search input {
  border: 1px solid #E7E7E7;
  height: 40px;
}
.input-search input:focus {
  box-shadow: 0 1px 4px rgba(248, 248, 248, 0.7);
  border: 1px solid #E7E7E7;
}
.input-search .btn {
  border: 1px solid #E7E7E7;
}
.input-search .btn:focus {
  box-shadow: 0 1px 4px rgba(248, 248, 248, 0.7);
}

.upload-button {
  border: 1px dashed #464775;
  color: #464775;
  height: 40px;
  background-color: rgba(70, 71, 117, 0.1);
}

.action-rounded-btn {
  height: 32px;
  width: 32px;
  border-radius: 32px;
}

.primary-action {
  background-color: rgba(70, 71, 117, 0.1);
  transition: all ease 300ms;
}
.primary-action:hover {
  background-color: rgba(70, 71, 117, 0.2);
  transition: all ease 300ms;
}
.primary-action:focus {
  box-shadow: 0 1px 4px rgba(70, 71, 117, 0.1);
  background-color: rgba(70, 71, 117, 0.2);
}

.danger-action {
  background-color: rgba(236, 0, 0, 0.1);
  transition: all ease 300ms;
}
.danger-action:hover {
  background-color: rgba(236, 0, 0, 0.2);
  transition: all ease 300ms;
}
.danger-action:focus {
  box-shadow: 0 1px 4px rgba(236, 0, 0, 0.1);
  background-color: rgba(236, 0, 0, 0.2);
}

.in-progress-action {
  background-color: #F7F0E5;
  transition: all ease 300ms;
}
.in-progress-action:hover {
  background-color: #dfc397;
  transition: all ease 300ms;
}
.in-progress-action:focus {
  box-shadow: 0 1px 4px rgb(255, 234, 200);
  background-color: #dfc397;
}

.retry-action {
  background-color: #E2E2E2;
  transition: all ease 300ms;
}
.retry-action:hover {
  background-color: #afafaf;
  transition: all ease 300ms;
}
.retry-action:focus {
  box-shadow: 0 1px 4px #d7d7d7;
  background-color: #afafaf;
}

.resume-action {
  background-color: #DBEAF7;
  transition: all ease 300ms;
}
.resume-action:hover {
  background-color: #88b9e4;
  transition: all ease 300ms;
}
.resume-action:focus {
  box-shadow: 0 1px 4px #c5e4ff;
  background-color: #88b9e4;
}

.custom-form {
  border: 1px solid #E4E4E4;
  height: 40px;
  font-size: 13px;
  font-family: "Primary-Regular";
}
.custom-form:focus {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(70, 71, 117, 0.1);
}
.custom-form:disabled {
  background-color: #F1F1F1;
  color: #818181;
}
.custom-form::-moz-placeholder {
  color: #9B9B9B;
}
.custom-form::placeholder {
  color: #9B9B9B;
}

.paddingForAssessmentDate {
  padding: 0.5rem 0.5rem !important;
}

.custom-textarea {
  height: unset !important;
}

.txtarea-height {
  height: 90px;
}

.table-accordion-head {
  width: 400px;
  min-width: 200px;
}

/*tarun*/
.custom-radio-input {
  border-color: #707070;
}
.custom-radio-input.radio-center {
  margin: 0;
  padding-left: 10px;
  background-size: 9px 7px !important;

}

@media (max-width: 767px) {
  .custom-radio-input {
    width: 16px;
    height: 16px;
  }
  .custom-switch.green-switch input[type=checkbox]:checked + label::after {
    background: #fff;
    width: 8px;
    height: 8px;
    left: 2px;
    top: 5px;
  }
  div.custom-switch.green-switch label:after {
    background: #fff;
    width: 8px;
    height: 8px;
    left: 2px;
    top: 5px;
  }
}
.custom-radio-input:checked {
  border-color: #464775;
  box-shadow: none;
}

.custom-radio-input:checked[type=radio] {
  background-image: url(../images/radio-btn-bg.svg);
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.gradient-btn {
  background: linear-gradient(180deg, rgb(85, 96, 165) 0%, rgb(70, 71, 117) 100%);
  color: #fff;
  height: 40px;
}
.gradient-btn:hover {
  color: #fff;
}
.gradient-btn:focus {
  color: #fff;
}

.custom-switch {
  box-sizing: border-box;
}
.custom-switch input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.custom-switch input[type=checkbox]:checked + label::before {
  border-color: transparent;
  background: #464775;
}
.custom-switch input[type=checkbox]:checked + label::after {
  left: 18.5px;
  background: #FFF;
}
.custom-switch label {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.custom-switch label:before {
  content: "";
  width: 36px;
  height: 20px;
  position: relative;
  display: inline-block;
  border: 1px solid #616161;
  border-radius: 92px;
  box-sizing: border-box;
  transition: 0.2s ease-in;
  margin-right: 5px;
}
.custom-switch label:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  left: 3.5px;
  top: 3.5px;
  z-index: 2;
  background: #616161;
  box-sizing: border-box;
  transition: 0.2s ease-in;
}

.custom-switch.green-switch label:before {
  width: 22px;
  height: 13px;
}
.custom-switch.green-switch label:before {
  border-color: transparent;
  background-color: #BFBFBF;
}
.custom-switch.green-switch label:after {
  background: #fff;
  width: 9px;
  height: 9px;
  left: 2px;
  top: 6px;
}
.custom-switch.green-switch input[type=checkbox]:checked + label::before {
  background: #11C158;
}
.custom-switch.green-switch input[type=checkbox]:checked + label::after {
  left: 11px;
}

.custom-filter-width {
  width: 460px;
}

.custom-filter-width-lg {
  width: 600px;
}

.cursor-pointer {
  cursor: pointer;
}

@media (min-width: 320px) and (max-width: 768px) {
  .custom-filter-width, .custom-filter-width-lg {
    width: 320px;
  }
}
.custom-quotes-width {
  width: 38px;
  height: 30px;
}

.custom-postion {
  top: 33%;
  right: 12px;
  transform: translate(0, -50%);
}

.custom-open-eye-postion {
  top: 11px;
  right: 12px;
  height: 18px;
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*tarun*/
.input-group > .form-select.custom-select-wid {
  min-width: 30px;
  width: auto;
  max-width: 110px;
  flex: unset;
}

.form-select.custom-select-wid {
  background-image: url(../images/select-arrow.svg);
  background-size: 10px 10px;
  background-position: right 0.5rem center;
}

.resize-none {
  resize: none;
}

.Custom-input-file {
  opacity: 0;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.password-eye-hide::-ms-reveal {
  display: none;
}

.password-eye-hide {
  padding-right: 38px;
}

.dd-flex-1 {
  flex: 1;
}

.cus-check-input {
  border-radius: 3px !important;
  box-shadow: none;
}
.cus-check-input:checked {
  background-color: #464775;
  border: 1px solid #464775;
}

.option-select {
  color: #313131;
}

.cursor-grab {
  cursor: grabbing;
}

.draggable-bg {
  background-color: #E3E3E3;
}

.form-check-input:checked[type=checkbox] {
  background-image: url("../images/tick-white.svg");
  background-size: 8px;
}

.profile-grey {
  color: #828282;
}

.success-action:hover {
  background-color: rgba(17, 193, 88, 0.1);
  transition: all ease 300ms;
}

.edit-field {
  border: 1px solid #EFEFF7;
  background-color: #ffffff;
  border-radius: 5px;
}

.hyphen {
  color: #BBBBBB;
  font-size: 24px;
}

.success-green {
  color: #11C158;
}

.danger-red {
  color: #EE3F3F;
}

.country-dd {
  width: 133px;
}

.country-dd > div.css-13cymwt-control {
  height: 40px;
}

.country-dd + input {
  margin-left: 1px !important;
}

input[type=date]:invalid + span:after {
  content: "dd/mm/yyyy";
  position: absolute;
  left: 0;
  top: 0;
}

input[type=date]:focus:invalid + span:after {
  display: none;
}

input:not(:focus):invalid {
  color: transparent;
}

label.wrapper {
  position: relative;
}/*# sourceMappingURL=forms.css.map */