/*!
 * Cropper.js v1.5.9
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2020-09-10T13:16:21.689Z
 */

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: ' ';
  display: block;
  position: absolute;
}

.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}

.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: ' ';
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
.font-xlg {
  font-size: 40px;
}

@media screen and (max-width: 767.98px) {
  .font-xlg {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024.98px) {
  .font-xlg {
    font-size: 32px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1199.98px) {
  .font-xlg {
    font-size: 36px;
  }
}

.font-mlg {
  font-size: 30px;
}

@media screen and (max-width: 767.98px) {
  .font-mlg {
    font-size: 22px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024.98px) {
  .font-mlg {
    font-size: 24px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1199.98px) {
  .font-mlg {
    font-size: 26px;
  }
}

.font-lg {
  font-size: 24px;
}

@media screen and (max-width: 767.98px) {
  .font-lg {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .font-lg {
    font-size: 20px;
  }
}

.font-md {
  font-size: 18px;
}

@media screen and (max-width: 767.98px) {
  .font-md {
    font-size: 16px;
  }
}

.font-sm {
  font-size: 16px;
}

@media screen and (max-width: 767.98px) {
  .font-sm {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199.98px) {
  .font-sm {
    font-size: 16px;
  }
}

.font-xs {
  font-size: 14px;
}

@media screen and (max-width: 767.98px) {
  .font-xs {
    font-size: 12px;
  }
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.meduim {
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
  text-transform: capitalize;
  margin: 0;
}

html,
body,
main {
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
}

main {
  background-color: #E5E5E5;
}

main .text-primary {
  color: #4278B8 !important;
}

main .row {
  margin: 0;
}

main ul {
  padding-left: 0;
  margin-bottom: 0;
}

main ul li {
  list-style: none;
}

main a {
  color: inherit;
}

main a:hover {
  text-decoration: none;
  color: inherit !important;
}

main .navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .navbar-brand img {
  width: unset;
}

@media screen and (max-width: 991.98px) {
  main .navbar-brand img {
    width: 55px;
  }
}

main .btn {
  text-transform: capitalize;
  padding: 8px;
  height: 40px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .btn.btn-primary {
  background-color: #4278B8 !important;
  border-color: #4278B8 !important;
  font-weight: bold;
}

main .btn.btn-primary:hover,
main .btn.btn-primary:active,
main .btn.btn-primary:focus,
main .btn.btn-primary:visited {
  background-color: #4278B8 !important;
  border-color: #4278B8 !important;
  color: #fff !important;
}

main .btn.btn-primary:focus {
  -webkit-box-shadow: 3px 8px 25px rgba(242, 90, 41, 0.3) !important;
          box-shadow: 3px 8px 25px rgba(242, 90, 41, 0.3) !important;
}

main .btn.btn-outline-primary {
  border-color: #4278B8;
  color: #4278B8;
  width: auto;
  border-radius: 10px;
  margin-right: 15px;
  background-color: #fff;
  border-width: 2px;
}

main .btn.btn-outline-primary:hover,
main .btn.btn-outline-primary:active,
main .btn.btn-outline-primary.active {
  background-color: #4278B8 !important;
  border-color: #4278B8 !important;
  color: #fff !important;
}

main .btn.btn-outline-primary:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

main .btn.btn-outline-dark {
  border-width: 2px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .btn.btn-outline-dark:hover {
  color: #fff !important;
}

@media screen and (max-width: 767.98px) {
  main .btn-success {
    margin-block: 10px;
  }
}

main .form-group {
  position: relative;
}

main .form-group textarea {
  resize: none;
}

main .form-group input,
main .form-group select,
main .form-group .input-group {
  height: 40px;
  border-radius: 10px;
  border: 0;
}

main .form-group input::-webkit-input-placeholder,
main .form-group select::-webkit-input-placeholder,
main .form-group .input-group::-webkit-input-placeholder,
main .form-group textarea::-webkit-input-placeholder {
  text-transform: capitalize;
  color: #7b7481;
  font-weight: 100;
}

main .form-group input::-moz-placeholder,
main .form-group select::-moz-placeholder,
main .form-group .input-group::-moz-placeholder,
main .form-group textarea::-moz-placeholder {
  text-transform: capitalize;
  color: #7b7481;
  font-weight: 100;
}

main .form-group input::-ms-input-placeholder,
main .form-group select::-ms-input-placeholder,
main .form-group .input-group::-ms-input-placeholder,
main .form-group textarea::-ms-input-placeholder {
  text-transform: capitalize;
  color: #7b7481;
  font-weight: 100;
}

main .form-group input::placeholder,
main .form-group select::placeholder,
main .form-group .input-group::placeholder,
main .form-group textarea::placeholder {
  text-transform: capitalize;
  color: #7b7481;
  font-weight: 100;
}

main .form-group.custom {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767.98px) {
  main .form-group.custom {
    margin-bottom: 0 !important;
  }
}

main .form-group.custom .form-input {
  width: calc(100% / 2 - 1rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767.98px) {
  main .form-group.custom .form-input {
    width: 100%;
    margin-bottom: 28px;
  }
}

main .form-group select {
  color: #7b7481;
  text-transform: capitalize;
  background-color: #fff !important;
}

main .form-group span.error {
  color: #4278B8;
  font-size: 14px;
  position: absolute;
  bottom: -24px;
  left: 0;
}

main .form-group input:focus,
main .form-group select:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

main .form-group input {
  -webkit-box-shadow: none;
          box-shadow: none;
}

main .form-group input.error {
  border: 1px solid #4278B8 !important;
}

main .form-group input.valid {
  border: 1px solid #15842e !important;
}

main .form-group.custom-checkbox {
  padding-left: 0;
}

main .form-group.custom-checkbox .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  color: #828282;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main .form-group.custom-checkbox .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

main .form-group.custom-checkbox .container input:checked ~ .checkmark {
  background-color: #4278B8;
}

main .form-group.custom-checkbox .container input:checked ~ .checkmark:after {
  display: block;
}

main .form-group.custom-checkbox .container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 23px;
  width: 23px;
  background-color: #e4e1e1;
  border-radius: 5px;
}

main .form-group.custom-checkbox .container .checkmark:after {
  content: "\2713";
  position: absolute;
  display: none;
  left: 6px;
  height: 11px;
  color: #fff;
}

.datepicker .datepicker-days table thead {
  border-bottom: 1px dashed #ECEBED;
}

.datepicker .datepicker-days table thead tr:last-of-type {
  color: #7b7481;
}

.datepicker .datepicker-days table thead tr:last-of-type th {
  font-weight: 100;
  height: 44px;
  width: 44px;
}

.datepicker .datepicker-days table .next,
.datepicker .datepicker-days table .prev {
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.07);
  height: 30px;
}

.datepicker .datepicker-days table tr {
  width: 35px;
}

.datepicker .datepicker-days table tr td {
  width: 44px;
  height: 44px;
}

.datepicker .datepicker-days table tr td.today {
  background-color: #292C33;
  background-image: none;
  border-radius: 50%;
  color: #fff;
}

.datepicker .datepicker-days table tr td.day:hover,
.datepicker .datepicker-days table tr td.day.active {
  background: rgba(242, 90, 41, 0.15);
  border-radius: 50%;
  color: #4278B8;
}

.table {
  text-align: center;
  table-layout: fixed;
  min-width: 1200px;
}

.table thead {
  text-transform: capitalize;
  color: #949599;
  text-align: center;
}

.table-responsive {
  overflow-y: hidden;
}

.modal-backdrop.aside-backdrop {
  z-index: 18;
}

.color-primary {
  color: #4278B8 !important;
}

a[role='button'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-content-wrapper {
  margin-top: 4rem;
}

.bg-template-header {
  background-color: #F2F4F8;
}

.bg-white-dark {
  background-color: #E5E5E5;
}

.sms-text-highlighted {
  background-color: #e6ddb7;
}

.passwordFiledstyle{
  display: flex;
  align-items: center;
}
.eyePostionStyle{
  position: absolute;
  right: 10px;
  z-index: 9;
}
