:root {
  --primary-btn-bg-web: #3a52ff !important;
  --primary-btn-border-web: #3a52ff !important;
  --border: #e9e9e8 !important;
  --blue: #13315C !important;
  --gold: #DEC245 !important;
}

@font-face {
  font-family: "default";
  src: url(../font/HouschkaPro-Medium.woff) format("truetype");
}

body {
  font-family: "default";
}

.btn-primary.disabled,
fieldset:disabled .btn {
  background-color: var(--primary-btn-bg-web) !important;
  border-color: var(--primary-btn-border-web) !important;
}
.btn-success.disabled {
  background-color: #ccc !important;
  border-color: #b1b0b0 !important;
}
label {
  text-transform: uppercase !important;
}
.clearFileCrossIcon {
  margin-left: 5px;
  font-size: 13px;
  color: #db3847 !important;
  transition: 0.3s;
}
.clearFileCrossIcon:hover {
  font-size: 16px;
  color: #df3a49 !important;
  text-shadow: 0.5px 0.3px 5px #ff00004d;
  cursor: pointer;
}
.table {
  margin-bottom: 0px;
}
legend span {
  padding: 0.2em 0.5em !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  border: 1px solid transparent !important;
  vertical-align: middle !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  background-color: #a80303 !important;
  border-radius: var(--bs-border-radius-pill) !important;
  text-align: center !important;
  white-space: nowrap !important;
  --bs-badge-padding-x: 0.65em !important;
  --bs-badge-padding-y: 0.35em !important;
  --bs-badge-font-size: 0.75em !important;
  --bs-badge-font-weight: 700 !important;
  --bs-badge-color: #fff !important;
  --bs-badge-border-radius: 0.375rem !important;
  display: inline-block !important;
}
.noSelect {
  -webkit-user-select: none !important; /* Safari */
  -ms-user-select: none !important; /* IE 10 and IE 11 */
  user-select: none !important; /* Standard syntax */
}
.pointer {
  cursor: pointer !important;
}
.bg-web-background-color-light {
  background-color: #e1dcb8 !important;
}
.table-active {
  --bs-table-accent-bg: rgb(0 0 0 / 19%);
}

/* table tr td {
  padding: 2px 5px !important;
} */
table tr td {
  padding: 0px 4px !important;
}

* {
  box-sizing: border-box;
}

.zoom {
  /* padding: 0px; */
  padding-top: 10px;
  transition: transform 0.2s;
  width: 100%;
  height: auto;
  /* margin: 0 auto; */
}

.zoom:hover {
  -ms-transform: scale(3.6); /* IE 9 */
  -webkit-transform: scale(3.6); /* Safari 3-8 */
  transform: scale(3.6);
}

.pointer {
  cursor: pointer !important;
}

/* CHECKBOX */
.bigCheckbox {
  width: 20px;
  height: 20px;
  cursor: pointer !important;
}

/* TABLE */
table thead {
  color: #fff;
  background: rgb(73, 119, 252);
  background: linear-gradient(180deg, rgb(91 132 250) 10%, #3a52ff 94%);
}
table tr td.td-hover:hover {
  background: rgb(95, 232, 90);
  background: linear-gradient(306deg, rgba(95, 232, 90, 1) 10%, rgba(53, 167, 222, 1) 94%);
  color: white;
}

/* background-color */
.bg-danger-mix {
  color: #fff;
  background: rgb(255, 116, 116);
  background: linear-gradient(107deg, rgba(255, 116, 116, 1) 10%, rgba(244, 100, 137, 1) 94%);
}
.bg-table-head {
  background: rgb(58 65 71);
  background: linear-gradient(179deg, rgb(40 50 54) 10%, rgb(45 56 62) 94%);
}

/* MODAL */
@media (min-width: 1200px) {
  .modal-xxl {
    --bs-modal-width: 1380px;
  }
}

/* CUSTOM CHECK BOX START */
#_checkbox {
  display: none;
}

#_customLabel {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  background-color: #f72414;
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease transform, 0.2s ease background-color, 0.2s ease box-shadow;
  overflow: hidden;
  z-index: 1;
}

#_customLabel:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 24px;
  height: 23px;
  margin: 0 auto;
  background-color: #fff;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: inset 0 7px 10px #ffbeb8;
  transition: 0.2s ease width, 0.2s ease height;
}

#_customLabel:hover:before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: inset 0 7px 10px #ff9d96;
}

#_customLabel:active {
  transform: translateY(-50%) scale(0.9);
}

#tick_mark {
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  width: 15px;
  height: 18px;
  margin: 0 auto;
  margin-left: 5px;
  transform: rotateZ(-40deg);
}

#tick_mark:before,
#tick_mark:after {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 2px;
  opacity: 0;
  transition: 0.2s ease transform, 0.2s ease opacity;
}

#tick_mark:before {
  left: 0;
  bottom: 0;
  width: 4px;
  height: 10px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.23);
  transform: translateY(-68px);
}

#tick_mark:after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.23);
  transform: translateX(78px);
}

#_checkbox:checked + #_customLabel {
  background-color: #07d410;
}

#_checkbox:checked + #_customLabel:before {
  width: 0;
  height: 0;
}

#_checkbox:checked + #_customLabel #tick_mark:before,
#_checkbox:checked + #_customLabel #tick_mark:after {
  transform: translate(0);
  opacity: 1;
}

/* CUSTOM CHECK BOX END */

/* BLINK */
.blink {
  /* animation: blinker 1s linear infinite; */
  animation: blinker 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
/* BLINK */

/* From Uiverse.io by nikk7007 */
button {
  padding: 0.8em 1.8em;
  border: 2px solid var(--blue);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s;
  z-index: 1;
  font-family: inherit;
  color: var(--blue);
}

button::before {
  content: "";
  width: 0;
  height: 350%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--blue);

  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

button:hover::before {
  width: 105%;
}

button:hover {
  color: var(--border) !important;
}

.navbar-2 {
  background-color: var(--blue);
}

footer {
  background-color: var(--blue);
  border-top: 10px solid var(--border);
}
.top-border {
  background-color: var(--blue);
  color: var(--border);
  text-align: center;
  font-size: 22px;
  padding: 5px 0px;
  border-bottom: 10px solid var(--border);
}


.cardForm{
  margin-top: 15px;
  border: 2px dashed #cfe6fd !important;
  background: aliceblue;
  background-image: var(--bs-gradient) !important;
  position: relative;
}
.cardFormHead{
  position: absolute;
    top: -15px;
    color: #fff;
    background: #4b6f93;
    padding: 1px 10px;
    border-radius: 50px;

}
main{
  margin-bottom: 80px;
}

input.largerCheckbox {
  width: 20px;
  height: 20px;
  cursor: pointer!important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



/* SELECT2 */
.select2-container .select2-selection--single {
  height: 31px!important;
}
.select2-container--default .select2-selection--single{
  border: 1px solid #0d6efd!important;
}
/* .select2-container--open{
  z-index: 1055!important;
} */

