.form-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0rem rgba(30, 116, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0rem rgba(30, 116, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #1E74FD;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #bcd5fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #1E74FD;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #bcd5fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #515184;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #10d876;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #000;
  background-color: rgba(16, 216, 118, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #10d876;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310d876' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #10d876;
  box-shadow: 0 0 0 0rem rgba(16, 216, 118, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #10d876;
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310d876' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #10d876;
  box-shadow: 0 0 0 0rem rgba(16, 216, 118, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #10d876;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #10d876;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0rem rgba(16, 216, 118, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #10d876;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #E50202;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(229, 2, 2, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #E50202;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23E50202'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E50202' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #E50202;
  box-shadow: 0 0 0 0rem rgba(229, 2, 2, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #E50202;
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23E50202'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E50202' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #E50202;
  box-shadow: 0 0 0 0rem rgba(229, 2, 2, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #E50202;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #E50202;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0rem rgba(229, 2, 2, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #E50202;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #515184;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #515184;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(30, 116, 253, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #000;
  background-color: #1E74FD;
  border-color: #1E74FD;
}
.btn-primary:hover {
  color: #000;
  background-color: #4089fd;
  border-color: #3582fd;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #000;
  background-color: #4089fd;
  border-color: #3582fd;
  box-shadow: 0 0 0 0rem rgba(26, 99, 215, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #000;
  background-color: #4b90fd;
  border-color: #3582fd;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(26, 99, 215, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #000;
  background-color: #1E74FD;
  border-color: #1E74FD;
}

.btn-secondary {
  color: #fff;
  background-color: #673BB7;
  border-color: #673BB7;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #58329c;
  border-color: #522f92;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: #58329c;
  border-color: #522f92;
  box-shadow: 0 0 0 0rem rgba(126, 88, 194, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #522f92;
  border-color: #4d2c89;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(126, 88, 194, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #673BB7;
  border-color: #673BB7;
}

.btn-success {
  color: #000;
  background-color: #10d876;
  border-color: #10d876;
}
.btn-success:hover {
  color: #000;
  background-color: #34de8b;
  border-color: #28dc84;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #000;
  background-color: #34de8b;
  border-color: #28dc84;
  box-shadow: 0 0 0 0rem rgba(14, 184, 100, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #000;
  background-color: #40e091;
  border-color: #28dc84;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(14, 184, 100, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #000;
  background-color: #10d876;
  border-color: #10d876;
}

.btn-info {
  color: #fff;
  background-color: #2754e6;
  border-color: #2754e6;
}
.btn-info:hover {
  color: #fff;
  background-color: #2147c4;
  border-color: #1f43b8;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #fff;
  background-color: #2147c4;
  border-color: #1f43b8;
  box-shadow: 0 0 0 0rem rgba(71, 110, 234, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #1f43b8;
  border-color: #1d3fad;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(71, 110, 234, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #fff;
  background-color: #2754e6;
  border-color: #2754e6;
}

.btn-warning {
  color: #000;
  background-color: #FE9431;
  border-color: #FE9431;
}
.btn-warning:hover {
  color: #000;
  background-color: #fea450;
  border-color: #fe9f46;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #fea450;
  border-color: #fe9f46;
  box-shadow: 0 0 0 0rem rgba(216, 126, 42, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #fea95a;
  border-color: #fe9f46;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(216, 126, 42, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #FE9431;
  border-color: #FE9431;
}

.btn-danger {
  color: #fff;
  background-color: #E50202;
  border-color: #E50202;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c30202;
  border-color: #b70202;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #c30202;
  border-color: #b70202;
  box-shadow: 0 0 0 0rem rgba(233, 40, 40, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b70202;
  border-color: #ac0202;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(233, 40, 40, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #E50202;
  border-color: #E50202;
}

.btn-light {
  color: #000;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-light:hover {
  color: #000;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  box-shadow: 0 0 0 0rem rgba(210, 210, 210, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9f9f9;
  border-color: #f8f8f8;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(210, 210, 210, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #2c3136;
  border-color: #2a2e33;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #2c3136;
  border-color: #2a2e33;
  box-shadow: 0 0 0 0rem rgba(82, 88, 93, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #2a2e33;
  border-color: #272c30;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(82, 88, 93, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-primary {
  color: #1E74FD;
  border-color: #1E74FD;
}
.btn-outline-primary:hover {
  color: #000;
  background-color: #1E74FD;
  border-color: #1E74FD;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0rem rgba(30, 116, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #000;
  background-color: #1E74FD;
  border-color: #1E74FD;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0rem rgba(30, 116, 253, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #1E74FD;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #673BB7;
  border-color: #673BB7;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #673BB7;
  border-color: #673BB7;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0rem rgba(103, 59, 183, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #673BB7;
  border-color: #673BB7;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0rem rgba(103, 59, 183, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #673BB7;
  background-color: transparent;
}

.btn-outline-success {
  color: #10d876;
  border-color: #10d876;
}
.btn-outline-success:hover {
  color: #000;
  background-color: #10d876;
  border-color: #10d876;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0rem rgba(16, 216, 118, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #000;
  background-color: #10d876;
  border-color: #10d876;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0rem rgba(16, 216, 118, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #10d876;
  background-color: transparent;
}

.btn-outline-info {
  color: #2754e6;
  border-color: #2754e6;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #2754e6;
  border-color: #2754e6;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0rem rgba(39, 84, 230, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #fff;
  background-color: #2754e6;
  border-color: #2754e6;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0rem rgba(39, 84, 230, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #2754e6;
  background-color: transparent;
}

.btn-outline-warning {
  color: #FE9431;
  border-color: #FE9431;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #FE9431;
  border-color: #FE9431;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0rem rgba(254, 148, 49, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #FE9431;
  border-color: #FE9431;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0rem rgba(254, 148, 49, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #FE9431;
  background-color: transparent;
}

.btn-outline-danger {
  color: #E50202;
  border-color: #E50202;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #E50202;
  border-color: #E50202;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0rem rgba(229, 2, 2, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #E50202;
  border-color: #E50202;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0rem rgba(229, 2, 2, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #E50202;
  background-color: transparent;
}

.btn-outline-light {
  color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0rem rgba(247, 247, 247, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0rem rgba(247, 247, 247, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f7f7f7;
  background-color: transparent;
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0rem rgba(52, 58, 64, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #1E74FD;
  text-decoration: underline;
}
.btn-link:hover {
  color: #185dca;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}



.font-xsssss {
  font-size: 10px !important;
}

.font-xssss {
  font-size: 12px !important;
}

.font-xsss {
  font-size: 14px !important;
}

.font-xss {
  font-size: 16px !important;
}

.font-xs {
  font-size: 18px !important;
}

.font-sm {
  font-size: 20px !important;
}

.font-md {
  font-size: 22px !important;
}

.font-lg {
  font-size: 25px !important;
}

.font-xl {
  font-size: 28px !important;
}

.font-xxl {
  font-size: 32px !important;
}

.form-group.icon-input {
  position: relative;
}
.form-group.icon-input i {
  position: absolute;
  left: 15px;
  top: 19px;
}
.form-group.icon-input input {
  padding-left: 35px;
}
.form-group.icon-right-input {
  position: relative;
}
.form-group.icon-right-input i {
  position: absolute;
  right: 15px;
  top: 12px;
}
.form-group.icon-right-input input {
  padding-left: 35px;
}
.form-group .style1-input {
  height: 55px;
  line-height: 55px;
  display: block;
  font-size: 12px;
}
.form-group .style1-select {
  line-height: 55px;
  height: 55px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #adb5bd !important;
}
.form-group .style2-select {
  line-height: 60px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  color: #adb5bd !important;
  border: 2px #eee solid;
  border-radius: 7px;
}
.form-group .style2-input {
  height: 60px;
  line-height: 60px;
  display: block;
  border: 2px #eee solid;
  border-radius: 7px;
}
.form-group .style2-input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 60px;
}
.form-group .style2-input::-moz-placeholder {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 60px;
}
.form-group .style2-input:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 60px;
}
.form-group .style2-input:-moz-placeholder {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 60px;
}
.form-group .style2-input i {
  position: relative;
  top: 6px;
}
.form-group .style2-textarea {
  line-height: 20px;
  display: block;
  border: 2px #eee solid;
  border-radius: 7px;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-2 {
  font-size: 1.25rem !important;
}

.fs-3 {
  font-size: 1.125rem !important;
}

.fs-4 {
  font-size: 1rem !important;
}

.fs-5 {
  font-size: 0.875rem !important;
}

.fs-6 {
  font-size: 0.75rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #1E74FD !important;
}

.text-secondary {
  color: #673BB7 !important;
}

.text-success {
  color: #10d876 !important;
}

.text-info {
  color: #2754e6 !important;
}

.text-warning {
  color: #FE9431 !important;
}

.text-danger {
  color: #E50202 !important;
}

.text-light {
  color: #f7f7f7 !important;
}

.text-dark {
  color: #343a40 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: #515184 !important;
}

.text-muted {
  color: #AEAED5 !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #1E74FD !important;
}

.bg-secondary {
  background-color: #673BB7 !important;
}

.bg-success {
  background-color: #10d876 !important;
}

.bg-info {
  background-color: #2754e6 !important;
}

.bg-warning {
  background-color: #FE9431 !important;
}

.bg-danger {
  background-color: #E50202 !important;
}

.bg-light {
  background-color: #f7f7f7 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.text-grey-100 {
  color: #f8f9fa !important;
}

.text-grey-200 {
  color: #e9ecef !important;
}

.text-grey-300 {
  color: #dee2e6 !important;
}

.text-grey-400 {
  color: #ced4da !important;
}

.text-grey-500 {
  color: #adb5bd !important;
}

.text-grey-600 {
  color: #6c757d !important;
}

.text-grey-700 {
  color: #495057 !important;
}

.text-grey-800 {
  color: #343a40 !important;
}

.text-grey-900 {
  color: #212529 !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.swatch-primary {
  background-color: color-yiq(#1E74FD);
}

.swatch-secondary {
  background-color: color-yiq(#673BB7);
}

.swatch-success {
  background-color: color-yiq(#10d876);
}

.swatch-info {
  background-color: color-yiq(#2754e6);
}

.swatch-warning {
  background-color: color-yiq(#FE9431);
}

.swatch-danger {
  background-color: color-yiq(#E50202);
}

.swatch-light {
  background-color: color-yiq(#f7f7f7);
}

.swatch-dark {
  background-color: color-yiq(#343a40);
}

.pt150 {
  padding-top: 150px;
}

.texturina-font {
  font-family: 'Texturina', serif;
}

.mont-font {
  font-family: "Montserrat", sans-serif;
}

.roboto-font {
  font-family: "Roboto", sans-serif;
}

.open-font {
  font-family: "Open Sans", sans-serif;
}

.fredoka-font {
  font-family: "Fredoka One", cursive;
}

.ls-0 {
  letter-spacing: -0.4px;
}

.ls-1 {
  letter-spacing: 0.4px;
}

.ls-2 {
  letter-spacing: 0.6px;
}

.ls-3 {
  letter-spacing: 1px;
}

.lh-1 {
  line-height: 1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.4;
}

.lh-4 {
  line-height: 1.6;
}

.lh-5 {
  line-height: 2;
}

.lh-16 {
  line-height: 16px !important;
}

.lh-20 {
  line-height: 20px !important;
}

.lh-24 {
  line-height: 24px !important;
}

.lh-26 {
  line-height: 26px;
}

.lh-28 {
  line-height: 28px;
}

.lh-30 {
  line-height: 30px !important;
}

.lh-32 {
  line-height: 24px;
}

.lh-34 {
  line-height: 34px;
}

.lh-38 {
  line-height: 38px;
}



.display1-size {
  font-size: 36px !important;
}

.display2-size {
  font-size: 44px !important;
}

.display3-size {
  font-size: 50px !important;
}

.display4-size {
  font-size: 60px !important;
}

.display5-size {
  font-size: 80px !important;
}

.shadow-md {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.shadow-xs {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.03) !important;
}

.shadow-xss {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
}

.border-size-sm {
  border-width: 1px;
}

.border-size-md {
  border-width: 2px !important;
}

.border-size-lg {
  border-width: 3px !important;
}

.border-light {
  border: 1px #eee solid;
}

.border-light-md {
  border: 2px #f1f1f1 solid;
}

.border-dark-md {
  border: 2px #999 solid !important;
}

.border-right-light {
  border-right: 1px #eee solid;
}

.border-bottom-light {
  border-bottom: 1px #eee solid;
}

.border-bottom-dark {
  border-bottom: 2px #333 solid;
}

.border-bottom-blue {
  border-bottom: 1px #1254a1 solid;
}

.border-dashed {
  border: 2px #ddd dashed !important;
}

.border-black {
  border: 2px #000 dashed !important;
}

.border-top-lg {
  border-top: 3px solid #000;
}

.border-top-xs {
  border-top: 1px solid #f1f1f1;
}

.bg-image-cover {
  background-size: cover;
}

.bg-image-contain {
  background-size: contain;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-image-center {
  background-position: center center;
}

.bg-image-topcenter {
  background-position: top 30px center;
}

.bg-image-bottomcenter {
  background-position: bottom center;
}

.bg-image-right {
  background-position: right -60px top 0px;
}

.bg-size-contain {
  background-size: contain;
}

.bg-bottom-right {
  background-position: bottom right;
}

.bg-top-right {
  background-position: top right;
}

.bg-top-left {
  background-position: top left;
}

.bg-size-half {
  background-size: 40%;
}

.bg-size-quater {
  background-size: 70%;
}

.bg-top-right-2 {
  background-position: top 50px right 20px;
}

.bg-top-100-right {
  background-position: top 50px right 50px;
}

.table-responsive {
  overflow-x: inherit !important;
}

.bg-pattern:before, .bg-pattern:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  right: 0;
  top: 0;
  background-color: #fff;
  opacity: 0.3;
}
.bg-pattern:before {
  top: 83px;
  border-radius: 0px 80px 80px 80px;
}
.bg-pattern .bg-pattern-div:after, .bg-pattern .bg-pattern-div:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  right: 83px;
  top: 0;
  background-color: #fff;
  opacity: 0.3;
}
.bg-pattern .bg-pattern-div:after {
  top: 83px;
  border-radius: 80px 80px 80px 0;
}

.bottom-0 {
  bottom: 0;
}

.top-0 {
  top: 0 !important;
}

.top--15 {
  top: -15px !important;
  z-index: 2;
}

.top--30 {
  top: -30px !important;
  z-index: 2;
}

.top--10 {
  top: -10px !important;
  z-index: 2;
}

.top-5 {
  top: 3px !important;
}

.top-10 {
  top: 10px !important;
}

.left-auto {
  left: auto !important;
}

.left-0 {
  left: 0px !important;
}

.left-15 {
  left: 15px;
}

.left--15 {
  left: -15px;
}

.left--50 {
  left: 50%;
}

.right-auto {
  right: auto !important;
}

.right-0 {
  right: 0 !important;
}

.right-10 {
  right: 10px;
} 

.right-15 {
  right: 15px;
}

.right-35 {
  right: 35px;
}

.right--10 {
  right: -10px !important;
}

.bottom-15 {
  bottom: 15px;
}

.pt-7 {
  padding-top: 75px;
}

.pb-7 {
  padding-bottom: 75px;
}

.pt-10 {
  padding-top: 125px;
}

.pb-10 {
  padding-bottom: 125px;
}

.p-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-7 {
  padding-left: 70px !important;
}

.pl-10 {
  padding-left: 100px !important;
}

.pl-15 {
  padding-left: 150px !important;
}

.pr-15 {
  padding-right: 150px !important;
}

.pr-10 {
  padding-right: 100px !important;
}

.mt--1 {
  margin-top: -0.4rem !important;
}

.mt--2 {
  margin-top: -2.5rem !important;
}

.mt--6 {
  margin-top: -4.2rem !important;
}

.round-lg-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100px;
}

.rounded-xxxl {
  border-radius: 10px !important;
}

.rounded-xxl {
  border-radius: 15px !important;
}

.rounded-xl {
  border-radius: 30px !important;
}

.list-style-disc li {
  list-style-type: disc;
  margin-bottom: 5px;
}

.form-group.icon-input i {
  top: 8px;
}

/* Yalnız mobil */
@media (min-width: 769px) {
    #mobile-menu {
        display: none !important;
    }
}

/* Offcanvas sağdan sola */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -260px; /* başlanğıcda gizli */
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    z-index: 9999;
    padding: 15px;
}

#mobile-menu.active {
    right: 0;
}

.menu-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#close-menu {
    font-size: 26px;
    cursor: pointer;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Oyun kartı */
.game-item {
    text-align: center;
    font-size: 13px;
}

.game-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    margin: 0 auto 5px;
}
