:root {
  --primary-color: #000;
  --primary-light: #222;
  --primary-icon-white: #fff;
  --card-bg:
    --webkit-linear-gradient(135deg, rgb(38 96 189) 0%, rgb(135, 57, 230) 100%);
  --accent-green: #4CAF50;
  --accent-red: #E91E63;

  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --accent-card-bg: rgb(18 13 28);

  /* Toggle Radio Variables */
  --toggle-accent: #f82f77;
  --toggle-accent-2: #f82f77;
  --toggle-text: #f82f77;
  --toggle-text-hover: var(--accent);
  --toggle-text-active: #FFFFFF;
  --toggle-border-width: 0.125em;
}

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}

nav {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #e3e3e3;
  text-align: left;
  background-color: #111;
}

h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button,
html [type="button"] {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

h3 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h3 {
  font-size: 1.75rem;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12,
.col-3,
.col-4,
.col-6 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  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 screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:focus,
.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  background-image: none;
}

a.btn.disabled {
  pointer-events: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar>.container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .navbar-expand-lg>.container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-lg>.container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal {
  background: #000000ad;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 130px auto;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 200px auto;
  }
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {}

.d-inline-block {
  display: inline-block !important;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {}

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

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

@media print {

  *,
  ::after,
  ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  img {
    page-break-inside: avoid;
  }

  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}

.form-group {
  margin-bottom: 1rem;
}

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

body {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #ffffff;
}

.card {
  background: white;
  border-radius: 5px;
  border: 1px solid #d4d4d4;
  box-shadow: 0 0 3px 0 #d8d8d8;
  font-size: 12px;
  line-height: 12px;
  margin: 5px 0;
  padding: 25px;
  border-radius: 0;
  border: 0;
  box-shadow: 0px 10px 40px 0px rgba(109, 141, 173, 0.25);
  border-style: solid;
  border-image: linear-gradient(70deg, #0ebeff, #ffdd40, #ae63e4, #47cf73) 10;
  border-width: 0;
  border-top: 2px solid rgb(18 13 28);
  background-color: rgb(18 13 28);
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

.navbar {
  padding: 0 10px;
  background: var(--primary-light);
  border: none;
  border-radius: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

#swal2-title {
  font-size: 18px;
}

.swal2-popup {
  width: 18em;
}

.swal2-icon {
  margin: 0.5em auto 0.6em;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: initial;
  background-image: initial;
  background-color: var(--primary-light);
  color: #fff;
  font-size: 0.8em;
}

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: -260px;
  height: 100vh;
  z-index: 999;
  background: var(--primary-light);
  color: #fff;
  transition: all 0.3s;
  overflow-y: auto;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
  left: 0;
}

#dismiss {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: var(--primary-light);
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-color: rgb(248 47 119);
  background-color: rgb(248 47 119);
}

#dismiss:hover {
  background: #fff;
  color: var(--primary-color);
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  top: 0;
}

.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: var(--primary-color);
}

#sidebar ul.components {
  padding: 20px 0;
  border-bottom: 1px solid #47748b14;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 0.9em;
  display: block;
  border-bottom: 1px solid #ffffff26;
}

#sidebar ul li a:hover {
  color: var(--primary-color) !important;
  background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
  color: #fff;
  background: #6d7fcc;
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #6d7fcc;
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: #fff;
  color: var(--primary-color);
  border-color: rgb(248 47 119);
  background-color: rgb(248 47 119);
  border-radius: 0 !IMPORTANT;
  color: #fff;
}

a.article,
a.article:hover {
  color: #fff !important;
  border-radius: 0 !IMPORTANT;
  background-color: #4CAF50;
}

#content {
  width: 100%;
  padding: 0;
  /* min-height: 100vh; */
  transition: all 0.3s;
  position: absolute;
  /* top: 0; */
  right: 0;
  padding-bottom: 70px;
  background: #111 !IMPORTANT;
}

.menu-btn {
  background: transparent;
  font-size: 25px;
  color: white;
  padding: 5px 0;
}

.home-sl-box {
  background: var(--primary-light);
  color: white;
  padding: 15px 10px;
  display: block;
  font-weight: 500;
  border: 1px solid #75390e;
  background: #75390e;
}

.home-sl2-box {
  color: #ffffff;
  padding: 8px 0 4px;
  display: block;
  border-radius: 6px;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
  background: #75390e;
  border-radius: 10px;
}

.how-to-plan-card .home-sl-box:hover,
.home-sl2-box:hover {
  background: #d8d8d8;
  color: #111;
}

.home-sl2-box i {
  background: #ffffff;
  padding: 5px;
  border-radius: 50px;
  color: #262626;
  margin: 0 0 8px;
  font-size: 23px;
  padding: 10px 10px;
  transition: all 0.3s;
  color: #434343;
}

.home-sl2-box:hover i {
  transform: rotate(360deg);
}

.tb-10 {
  margin: 10px 0;
}

.tbmar-10 {
  margin: 10px 0;
}

.tbmar-20 {
  margin: 20px 0;
}

.tbmar-40 {
  margin: 40px 0;
}

.noticebr {
  font-size: 12px;
  background: #f3f3f3;
}

.row.game-list-inner {
  border-radius: 0;
  border: none;
  font-size: 12px;
  line-height: 12px;
  margin: 0 0;
  color: #fff;
  border-bottom: 1px solid #ffffff54;
  border-top-width: 20px;
  border-style: solid;
  border-image: linear-gradient(#f6b73c, #4d9f0c) 30;
  border-image: linear-gradient(70deg, #0ebeff, #ffdd40, #ae63e4, #47cf73) 10;
  border-width: 0;
  border-top-width: 2px;
  border-top-style: solid;
  background-color: var(--accent-card-bg);
  border-top: 2px solid rgb(18 13 28);
}

.game-time {
  padding: 10px 0;
  display: block;
}

.game-time i {
  color: #fff;
}

.game-play.gray i {
  color: #fff;
}

.game-time,
.game-play {
  padding: 6px 5px;
  display: block;
  color: #ffffff;
  background-color: #6f14c9;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #202427;
  border-radius: 6px;
  font-size: 12px !important;
  border-color: rgb(21, 197, 15);
  background-color: rgb(21, 197, 15);
  font-weight: bold;
  padding: 10px 0px;
}

.game-time i,
.game-play i {}

.game-time br,
.game-play br {
  display: none;
}

.game-closed {
  padding: 6px 5px;
  display: block;
  color: #ffffff;
  background-color: #6f14c9;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #202427;
  border-radius: 6px;
  font-size: 12px !important;
  border-color: rgb(197, 27, 27);
  background-color: rgb(197, 27, 27);
  font-weight: bold;
  padding: 10px 0px;
}

.row.game-list-inner .col-3 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row.game-list-inner .col-6 {
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
}

.game-play i {
  color: var(--primary-light);
}

.game-list-inner i {
  font-size: 16px;
  color: #fff;
}

.game-list-box {
  display: block;
  padding: 8px 0;
}

.game-list-box .gameName {
  font-size: 16px;
  display: block;
  padding: 2px 0;
  font-weight: 700;
}

.game-list-box .gameon {
  font-size: 12px;
  font-weight: 500;
  display: block;
  color: white;
  padding: 0;
  margin: 0;
}

.game-list-box .gameoff {
  font-weight: 500;
  display: block;
  border-radius: 5px;
  font-size: 9px;
  margin: 6px 0 6px;
  padding: 2px 0 2px;
  width: auto;
  color: #5e5e5e;
  background: #e9fffe;
  max-width: 320px;
  margin: 6px auto 8px;
  width: 135px;
  border-radius: 0;
}

.game-list-box .gameResult {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  border-radius: 1px;
  padding: 7px 13px 3px;
  line-height: 10px;
}

.home-sl-box span {
  font-size: 12px;
  font-weight: 300;
}

.sgameName {
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 15px 0;
}

.sgameResut {
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 15px 0;
}

.sgame-play {
  padding: 6px 0;
  display: block;
  background: var(--primary-light);
  color: white;
  width: 50px;
  border-radius: 5px;
  font-size: 12px;
}

.sgame-play:hover,
.sgame-play:focus {
  color: white !important;
}

.splaydiv {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subheadingtext {
  line-height: 16px;
  font-size: 14px;
}

#scroll-container {
  overflow: hidden;
}

#scroll-text {
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 23s linear infinite;
  animation: none;
  transform: none;
  text-align: center;
  font-size: 15px;
  white-space: unset !important;
}

@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
  }

  to {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

#footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  text-align: center;
  background: var(--primary-light);
  padding: 0;
  background: #222222;
}

#footer-bar a {
  color: #ececec;
  position: relative;
  flex: 1 1 auto;
  padding: 11px 0 6px;
  border-left: 1px solid #ffffff24;
}

#footer-bar a:hover {
  background: #88f2ff;
  color: #111;
}

#footer-bar a:first-child {
  border: none;
}

#footer-bar a i {
  font-size: 20px;
  position: relative;
  z-index: 2;
}

#footer-bar a span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-top: -4px;
  opacity: 90%;
  font-family: Roboto, sans-serif !important;
}

.sideMenu span {
  padding-left: 5px;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
  color: #fff;
}

.HomegameTimetable div {
  display: block;
  text-align: left;
  border-bottom: 1px solid #e2e2e2;
  padding: 5px;
  color:black;
}

.HomegameTimetable div:last-child {
  border-bottom: 0;
}

.HomegameTimetable i {
  font-size: 24px;
  color: var(--primary-color);
  margin: 0 5px;
  float: left;
}

.HomegameTimetable .timeR {
  float: right;
}

.btn-theme {
  color: #fff;
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  margin: 0px 0 0;
  background: #7147ff;
  border-radius: 0px;
  box-shadow: 0px 10px 40px 0px rgb(0 255 31 / 18%);
}

.btn-theme:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.modal-header {
  background: var(--primary-light);
  background: var(--primary-light);
  border-bottom: 0;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
}

.sidebar-header .Uname {
  display: block;
  font-weight: 500;
}

.sidebar-header .Umobile {
  display: block;
  font-weight: 300;
  font-size: 12px;
}

.btn-white {
  color: #212529;
  background-color: #fff;
  border-color: #f8f9fa;
}

.btn-login {
  text-align: center;
  display: block;
  width: 100%;
  background: var(--accent-green);
}

.btn-login:hover {
  background: var(--accent-green);
  filter: brightness(.9)
}

.btn-outline {
  border: 1px solid var(--primary-light);
  color: var(--primary-color);
}

.validation {
  /* background-color: #b00606; */
  color: #ff0505;
  padding: 5px;
  border-radius: 5px;
  margin-top: 10px;
}

.gdash3 {
  font-size: 24px;
  color: #ececec;
  margin-bottom: -2px;
  font-weight: 600;
  color: rgb(28 195 67);
}

.gdash3+span {
  text-shadow: 0 1px 7px #00000070;
  color: #fff;
  margin: 10px 0 0;
  display: block;
}

.card-full-page {
  min-height: 82vh;
  font-size: 12px;
  line-height: 12px;
  margin: 5px 0;
  padding: 10px;
  border-radius: 0;
  background-color: var(--accent-card-bg);
  border-style: solid;
  border-image: linear-gradient(#f6b73c, #4d9f0c) 30;
  border-image: linear-gradient(70deg, #0ebeff, #ffdd40, #ae63e4, #47cf73) 10;
  border-width: 0;
  border-top: 2px solid rgb(18 13 28);
  box-shadow: 0px 10px 40px 0px rgba(109, 141, 173, 0.25);
}

.card-full-page .form-group label {
  font-weight: 600;
  font-size: 15px;
  color: #f82f77;
}

.bidtypebox {
  display: block;
  border: 1px solid #dcdcdcb3;
  height: auto;
  text-align: center;
  font-size: 12px;
  margin: 0 5px;
  /* background: #75390e; */
  /* border: 1px solid #75390e; */
  border: 0px;
  display: block;
  padding: 7px 0 7px;
  margin-bottom: 10px;
}

.bidtypebox p {
  padding: 5px 0;
  margin: 0;
  font-weight: 500;
  line-height: 12px;
  font-size: 16px;
}

.bidtypebox img {
  height: 120px;
  padding: 5px 15px;
  /* filter: invert(1) brightness(120); */
}

.bidoptions-list .col-4 {
  margin: 0;
  padding: 0;
}

.dateGameIDbox {
  text-align: center;
  margin: 0;
  border: 1px solid beige;
  display: block;
  padding: 5px 5px;
  width: 100%;
  cursor: pointer;
  height: 33px;
}

.dateGameIDbox p {
  margin: 0;
  font-weight: 400;
}

.bidamtbox {
  text-align: center;
  margin: 0;
  border: 1px solid beige;
  display: block;
  padding: 5px 5px;
  width: 100%;
  cursor: pointer;
  background: #75390e;
  border: 1px solid #75390e;
}

.bidamtbox p {
  margin: 0;
  font-weight: 400;
}

.walletamt {
  font-weight: 500;
}

.bidinputdiv input {
  width: 100%;
  border: 1px solid #8080809e;
  text-align: center;
  padding: 10px 5px;
  cursor: pointer;
}

.bidinputdiv lable {
  text-align: center;
  display: block;
  padding-bottom: 5px;
  font-size: 14px;
}

.bidinputdiv {
  margin: 5px 0;
}

.subheading {
  font-size: 16px;
  text-align: center;
  color: var(--primary-color);
  color: #fff;
}

.bidoptions-list .col-3 {
  padding-right: 5px;
  padding-left: 5px;
}

.bidamtbox.active {
  border: 1px solid #ffffff9e;
  background: #2f67bb;
  color: white;
}

.bidamtbox.active p {
  color: white;
}

.btn-streched {
  width: 100%;
}

.mplist {
  display: block;
  padding: 15px 10px;
  border-radius: 5px;
  font-size: 16px;
  color: #d5d5d5;
}

.mplist i {
  font-size: 16px;
  padding-right: 10px;
}

.history-list-box {
  font-size: 12px;
  line-height: 12px;
  margin: 0;
  border-bottom: 1px solid #ffffff54;
  border-style: solid;
  border-image: linear-gradient(#f6b73c, #4d9f0c) 30;
  border-image: linear-gradient(70deg, #0ebeff, #ffdd40, #ae63e4, #47cf73) 10;
  border-width: 0;
  border-top: 2px solid rgb(18 13 28);
  background: #120d1c;
  box-shadow: 0px 10px 40px 0px rgba(109, 141, 173, 0.25);
}

.history-list-box .fixed {
  position: relative;
  background: var(--accent-green);
  color: white;
  padding: 4px 5px;
  left: 15px;
  width: 150px;
  text-align: center;
  font-size: 12px;
}

.history-list-box .fixed-debit {
  position: relative;
  background: #980b0b;
  color: white;
  padding: 4px 5px;
  left: 15px;
  width: 150px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  background-color: #E91E63;
}

.history-list-box .fixed-credit {
  position: relative;
  background: #114e11;
  color: white;
  padding: 4px 5px;
  left: 15px;
  width: 152px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border-color: rgb(28 195 67);
  background-color: #4CAF50;
}

.history-list-box .bid-detail {
  padding: 10px 0;
}

.gm-name {
  font-size: 14px;
  font-weight: 600;
  color: #e6e6e6;
}

.row.bid-row {
  margin: 10px 0;
}

.bid-pending {
  text-align: center;
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 5px;
}

.bid-time {
  text-align: center;
  color: var(--primary-dark);
  padding-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  color: #f4f4f4;
}

.bid-row .dark {
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}

.bid-lose {
  text-align: center;
  color: var(--accent-red);
  padding-bottom: 0;
  margin-bottom: 5px;
}

.bid-won {
  text-align: center;
  color: var(--accent-green);
  padding-bottom: 0;
  margin-bottom: 5px;
}

.devider {
  margin: 15px 0;
  border-bottom: 1px #d9d9d94d;
}

.game-rates p {
  text-align: left;
  margin: 0 0 0;
  font-size: 12px;
  padding: 4px 0 4px;
  border-bottom: 1px solid #ffffff2e;
}

.game-rates span {
  float: right;
  font-weight: 500;
}

.row.game-list-inner .col-3 {
  margin: 0;
  padding: 0 5px;
}

.row.game-list-inner .col-6 {
  margin: 0;
  padding: 0 5px;
}

.notifications .t {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #e1e1e1;
}

.notifications .d {
  font-size: 10px;
  margin-bottom: 6px;
  color: #ffffffd6;
}

.notifications .time {
  float: right;
  font-size: 12px;
  margin: 0;
  color: #ffffffd6;
}

#loading-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 500;
}

#loading-image {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -75px;
  z-index: 510;
}

.lds-ripple {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.addFundamtbox {
  text-align: center;
  margin: 0;
  border: 1px solid beige;
  display: block;
  padding: 5px 5px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  background: #75390e;
  border: 1px solid #75390e;
  border-radius: 0;
}

.addFundamtbox p {
  margin: 0;
  font-weight: 400;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }

  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }

  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.wts-flt-btn {
  position: fixed;
  right: 10px;
  bottom: 80px;
  display: block;
}

.wts-flt-btn a {
  font-size: 25px;
  background: green;
  color: white;
  padding: 8px 14px;
  border-radius: 44px;
}

.hometext p {
  padding-bottom: 10px;
  line-height: 14px;
  font-size: 10px;
  text-align: justify;
}

#content .navbar .container-fluid .btn.btn-white {
  background: transparent;
  color: #000;
  padding: 4px 10px 4px;
  font-size: 14px;
  background-color: #ffffff;
  /* box-shadow: 0px 5px 15px 0px rgba(50, 180, 255, 0.55); */
  border: 0;
  font-weight: 700;
  color: #fff;
  border-radius: 0;
  background-color: #4CAF50;
}

#content .navbar .container-fluid .btn.btn-white:hover {
  border-color: rgb(15 162 49);
  background-color: rgb(15 162 49);
  color: #fff;
}

.wts-flt-btn a {
  background: var(--primary-light);
  color: #5612cb;
  padding: 5px 13px;
  font-size: 22px;
  box-shadow: 0 0 10px -5px #3d3d3d;
  border-color: rgb(248 47 119);
  background-color: rgb(248 47 119);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  position: fixed;
  top: auto;
  left: auto;
  right: 10px;
  bottom: 62px;
}

.wts-flt-btn a i {
  color: #fff;
  font-size: 19px;
}

.wts-flt-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: block;
  position: unset;
}

#scroll-container {
  background: var(--pink);
  margin: 0 0 10px;
  background: #3f00bd;
  border-radius: 30px;
  max-width: 540px;
  margin: 10px auto 0;
  background: none;
}

#scroll-text {
  padding: 5px 0;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 7px #00000070;
  color: rgb(28 195 67);
}

.how-to-plan-card {}

.how-to-plan-card .row {}

.how-to-plan-card .row>.col-6:first-child a {}

.how-to-plan-card .row>.col-6:last-child a {}

.how-to-plan-card .row>.col-6:first-child {
  padding-right: 5px;
}

.how-to-plan-card .row>.col-6:last-child {
  padding-left: 5px;
}

.how-to-plan-card .home-sl-box {
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  background: #75390e;
  border-radius: 0;
}

.result-list-section>div {
  box-shadow: 0px 10px 40px 0px rgba(109, 141, 173, 0.25);
  background: -webkit-linear-gradient(135deg, rgb(38 96 189) 0%, rgb(135, 57, 230) 100%);
  background: var(--card-bg);
  border-radius: 4px;
  background-color: #202427;
}

.game-list-inner {
  align-items: center;
}

.rubberband {
  display: block;
  text-align: center;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.rubberband::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background-image: -webkit-linear-gradient(45deg, #ffffff 0%, #ffffff 100%);
  opacity: 0.6;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 27% 33% 15% 48%/21% 47% 35% 51%;
  animation: flowRubber 5s infinite linear;
  animation-delay: 0.5s;
  display: block;
  padding: 21px;
  display: none;
}

.rubberband::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background-image: -webkit-linear-gradient(45deg, #ffffff 0%, #ffffff 100%);
  opacity: 0.4;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
  animation: flowRubber 5s infinite linear;
  display: block;
  padding: 28px;
  display: none;
}

@keyframes flowRubber {
  0% {
    border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
    -webkit-border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
    -moz-border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
    -ms-border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
    -o-border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
  }

  25% {
    border-radius: 84% 43% 59% 45%/62% 38% 67% 49%;
    -webkit-border-radius: 84% 43% 59% 45%/62% 38% 67% 49%;
    -moz-border-radius: 84% 43% 59% 45%/62% 38% 67% 49%;
    -ms-border-radius: 84% 43% 59% 45%/62% 38% 67% 49%;
    -o-border-radius: 84% 43% 59% 45%/62% 38% 67% 49%;
  }

  50% {
    border-radius: 69% 70% 59% 86%/80% 77% 67% 49%;
    -webkit-border-radius: 69% 70% 59% 86%/80% 77% 67% 49%;
    -moz-border-radius: 69% 70% 59% 86%/80% 77% 67% 49%;
    -ms-border-radius: 69% 70% 59% 86%/80% 77% 67% 49%;
    -o-border-radius: 69% 70% 59% 86%/80% 77% 67% 49%;
  }

  75% {
    border-radius: 35% 70% 24% 94%/64% 61% 67% 49%;
    -webkit-border-radius: 35% 70% 24% 94%/64% 61% 67% 49%;
    -moz-border-radius: 35% 70% 24% 94%/64% 61% 67% 49%;
    -ms-border-radius: 35% 70% 24% 94%/64% 61% 67% 49%;
    -o-border-radius: 35% 70% 24% 94%/64% 61% 67% 49%;
  }

  100% {
    border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
    -webkit-border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
    -moz-border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
    -ms-border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
    -o-border-radius: 20% 38% 25% 53%/12% 47% 35% 51%;
  }
}

#noticeboard {}

#noticeboard .modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  border-radius: 0;
  background: #111;
}

#noticeboard .modal-body>div>div {
  text-align: right;
}

#noticeboard .modal-body>div>div p:nth-child(1) {
  font-size: 24px !important;
}

#noticeboard .modal-body>div>div p:nth-child(2) {
  margin: 10px 0 30px;
  font-size: 14px !important;
}

#noticeboard .modal-body>div>div a {
  border-color: rgb(28 195 67);
  background: rgb(28 195 67) !IMPORTANT;
  border-radius: 0 !important;
}

#noticeboard .modal-body>div img {
  transform: rotateY(25deg) rotateX(16deg);
  box-shadow: 25px 60px 125px -25px rgba(80, 102, 144, 0.1), 16px 40px 75px -40px rgba(0, 0, 0, 0.2);
}

#noticeboard .modal-body>div>div a i {
  display: inline-block;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 600px) {
  .result-list-section {
    padding: 0;
  }

  .game-time,
  .game-play {
    font-size: 8px;
  }

  .game-list-inner i {
    font-size: 13px;
  }

  .result-list-section>div {
    padding: 0 0 80px;
    margin: 0 0 -30px;
  }

  #scroll-container {
    max-width: 540px;
    /* margin: 10px 20px 0;
    padding: 4px 10px 4px; */
    padding: 0px 10px;
    margin-top: 0px;
    padding-top: 0px;
  }
}

.home-sl2-box,
.how-to-plan-card .home-sl-box {
  border: 1px solid #75390e;
}

.game-rates>h2 {
  color: var(--accent-green) !important;
}

.signup-container label,
.login-container label {
  font-size: 14px;
  font-weight: 500;
}

.form-group .form-control {
  border-radius: 0;
  font-size: 12px;
  outline: none !important;
  box-shadow: none !important;
  margin-top: 10px;
}

.btn.btn-outline.btn-login {
  border-radius: 0;
  background: var(--accent-red);
  color: #fff;
}

.login-container>.row>div {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.bidoptions-list {
  margin-left: -5px;
  margin-right: -5px;
}

.download-app-container {}

.download-app-container img {}

.download-app-container .dp-title-1 {
  font-size: 24px !important;
}

.download-app-container .dp-title-2 {}

.download-app-container a {
  background: var(--accent-green) !important;
  border-radius: 0 !important;
}

.download-app-container .col-12>div>div {
  text-align: right;
}

.bidoptions-list [type="reset"] {
  color: #fff !important;
  border-radius: 0 !IMPORTANT;
  background-color: var(--accent-red) !important;
}

.bidoptions-list [type="submit"] {
  color: #fff !important;
  border-radius: 0 !IMPORTANT;
  background-color: var(--accent-green) !important;
}



/* ## SWEET ALERT ## */

.swal2-popup.swal2-toast {
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: min-content auto min-content;
  padding: 1em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, .075), 0 1px 2px rgba(0, 0, 0, .075), 1px 2px 4px rgba(0, 0, 0, .075), 1px 3px 8px rgba(0, 0, 0, .075), 2px 4px 16px rgba(0, 0, 0, .075);
  pointer-events: all
}

.swal2-popup.swal2-toast>* {
  grid-column: 2
}

.swal2-popup.swal2-toast .swal2-title {
  margin: .5em 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial
}

.swal2-popup.swal2-toast .swal2-loading {
  justify-content: center
}

.swal2-popup.swal2-toast .swal2-input {
  height: 2em;
  margin: .5em;
  font-size: 1em
}

.swal2-popup.swal2-toast .swal2-validation-message {
  font-size: 1em
}

.swal2-popup.swal2-toast .swal2-footer {
  margin: .5em 0 0;
  padding: .5em 0 0;
  font-size: .8em
}

.swal2-popup.swal2-toast .swal2-close {
  grid-column: 3/3;
  grid-row: 1/99;
  align-self: center;
  width: .8em;
  height: .8em;
  margin: 0;
  font-size: 2em
}

.swal2-popup.swal2-toast .swal2-html-container {
  margin: .5em 1em;
  padding: 0;
  overflow: initial;
  font-size: 1em;
  text-align: initial
}

.swal2-popup.swal2-toast .swal2-html-container:empty {
  padding: 0
}

.swal2-popup.swal2-toast .swal2-loader {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: .25em
}

.swal2-popup.swal2-toast .swal2-icon {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 .5em 0 0
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: .875em;
  width: 1.375em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: .3125em
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: .3125em
}

.swal2-popup.swal2-toast .swal2-actions {
  justify-content: flex-start;
  height: auto;
  margin: 0;
  margin-top: .5em;
  padding: 0 .5em
}

.swal2-popup.swal2-toast .swal2-styled {
  margin: .25em .5em;
  padding: .4em .6em;
  font-size: 1em
}

.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  border-radius: 50%
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: .9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: .4375em;
  width: .4375em;
  height: 2.6875em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: .3125em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: .1875em;
  width: .75em
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: .9375em;
  right: .1875em;
  width: 1.375em
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-toast-animate-success-line-tip .75s
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-toast-animate-success-line-long .75s
}

.swal2-popup.swal2-toast.swal2-show {
  animation: swal2-toast-show .5s
}

.swal2-popup.swal2-toast.swal2-hide {
  animation: swal2-toast-hide .1s forwards
}

div:where(.swal2-container) {
  display: grid;
  position: fixed;
  z-index: 1060;
  inset: 0;
  box-sizing: border-box;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";
  grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
  height: 100%;
  padding: .625em;
  overflow-x: hidden;
  transition: background-color .1s;
  -webkit-overflow-scrolling: touch
}

div:where(.swal2-container).swal2-backdrop-show,
div:where(.swal2-container).swal2-noanimation {
  background: rgba(0, 0, 0, .4)
}

div:where(.swal2-container).swal2-backdrop-hide {
  background: rgba(0, 0, 0, 0) !important
}

div:where(.swal2-container).swal2-top-start,
div:where(.swal2-container).swal2-center-start,
div:where(.swal2-container).swal2-bottom-start {
  grid-template-columns: minmax(0, 1fr) auto auto
}

div:where(.swal2-container).swal2-top,
div:where(.swal2-container).swal2-center,
div:where(.swal2-container).swal2-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto
}

div:where(.swal2-container).swal2-top-end,
div:where(.swal2-container).swal2-center-end,
div:where(.swal2-container).swal2-bottom-end {
  grid-template-columns: auto auto minmax(0, 1fr)
}

div:where(.swal2-container).swal2-top-start>.swal2-popup {
  align-self: start
}

div:where(.swal2-container).swal2-top>.swal2-popup {
  grid-column: 2;
  place-self: start center
}

div:where(.swal2-container).swal2-top-end>.swal2-popup,
div:where(.swal2-container).swal2-top-right>.swal2-popup {
  grid-column: 3;
  place-self: start end
}

div:where(.swal2-container).swal2-center-start>.swal2-popup,
div:where(.swal2-container).swal2-center-left>.swal2-popup {
  grid-row: 2;
  align-self: center
}

div:where(.swal2-container).swal2-center>.swal2-popup {
  grid-column: 2;
  grid-row: 2;
  place-self: center center
}

div:where(.swal2-container).swal2-center-end>.swal2-popup,
div:where(.swal2-container).swal2-center-right>.swal2-popup {
  grid-column: 3;
  grid-row: 2;
  place-self: center end
}

div:where(.swal2-container).swal2-bottom-start>.swal2-popup,
div:where(.swal2-container).swal2-bottom-left>.swal2-popup {
  grid-column: 1;
  grid-row: 3;
  align-self: end
}

div:where(.swal2-container).swal2-bottom>.swal2-popup {
  grid-column: 2;
  grid-row: 3;
  place-self: end center
}

div:where(.swal2-container).swal2-bottom-end>.swal2-popup,
div:where(.swal2-container).swal2-bottom-right>.swal2-popup {
  grid-column: 3;
  grid-row: 3;
  place-self: end end
}

div:where(.swal2-container).swal2-grow-row>.swal2-popup,
div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup {
  grid-column: 1/4;
  width: 100%
}

div:where(.swal2-container).swal2-grow-column>.swal2-popup,
div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup {
  grid-row: 1/4;
  align-self: stretch
}

div:where(.swal2-container).swal2-no-transition {
  transition: none !important
}

div:where(.swal2-container) div:where(.swal2-popup) {
  display: none;
  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #545454;
  font-family: inherit;
  font-size: 1rem
}

div:where(.swal2-container) div:where(.swal2-popup):focus {
  outline: none
}

div:where(.swal2-container) div:where(.swal2-popup).swal2-loading {
  overflow-y: hidden
}

div:where(.swal2-container) h2:where(.swal2-title) {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: .8em 1em 0;
  color: inherit;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word
}

div:where(.swal2-container) div:where(.swal2-actions) {
  display: flex;
  z-index: 1;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 1.25em auto 0;
  padding: 0
}

div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled[disabled] {
  opacity: .4
}

div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1))
}

div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))
}

div:where(.swal2-container) div:where(.swal2-loader) {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 1.875em;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-width: .25em;
  border-style: solid;
  border-radius: 100%;
  border-color: #2778c4 rgba(0, 0, 0, 0) #2778c4 rgba(0, 0, 0, 0)
}

div:where(.swal2-container) button:where(.swal2-styled) {
  margin: .3125em;
  padding: .625em 1.1em;
  transition: box-shadow .1s;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0);
  font-weight: 500
}

div:where(.swal2-container) button:where(.swal2-styled):not([disabled]) {
  cursor: pointer
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: #7066e0;
  color: #fff;
  font-size: 1em
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):focus-visible {
  box-shadow: 0 0 0 3px rgba(112, 102, 224, .5)
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny) {
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: #dc3741;
  color: #fff;
  font-size: 1em
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):focus-visible {
  box-shadow: 0 0 0 3px rgba(220, 55, 65, .5)
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: #6e7881;
  color: #fff;
  font-size: 1em
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):focus-visible {
  box-shadow: 0 0 0 3px rgba(110, 120, 129, .5)
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus-visible {
  box-shadow: 0 0 0 3px rgba(100, 150, 200, .5)
}

div:where(.swal2-container) button:where(.swal2-styled):focus-visible {
  outline: none
}

div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner {
  border: 0
}

div:where(.swal2-container) div:where(.swal2-footer) {
  margin: 1em 0 0;
  padding: 1em 1em 0;
  border-top: 1px solid #eee;
  color: inherit;
  font-size: 1em;
  text-align: center
}

div:where(.swal2-container) .swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-column: auto !important;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px
}

div:where(.swal2-container) div:where(.swal2-timer-progress-bar) {
  width: 100%;
  height: .25em;
  background: rgba(0, 0, 0, .2)
}

div:where(.swal2-container) img:where(.swal2-image) {
  max-width: 100%;
  margin: 2em auto 1em
}

div:where(.swal2-container) button:where(.swal2-close) {
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: -1.2em;
  padding: 0;
  overflow: hidden;
  transition: color .1s, box-shadow .1s;
  border: none;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0);
  color: #ccc;
  font-family: monospace;
  font-size: 2.5em;
  cursor: pointer;
  justify-self: end
}

div:where(.swal2-container) button:where(.swal2-close):hover {
  transform: none;
  background: rgba(0, 0, 0, 0);
  color: #f27474
}

div:where(.swal2-container) button:where(.swal2-close):focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, .5)
}

div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner {
  border: 0
}

div:where(.swal2-container) .swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 0;
  padding: 1em 1.6em .3em;
  overflow: auto;
  color: inherit;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word
}

div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) input:where(.swal2-file),
div:where(.swal2-container) textarea:where(.swal2-textarea),
div:where(.swal2-container) select:where(.swal2-select),
div:where(.swal2-container) div:where(.swal2-radio),
div:where(.swal2-container) label:where(.swal2-checkbox) {
  margin: 1em 2em 3px
}

div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) input:where(.swal2-file),
div:where(.swal2-container) textarea:where(.swal2-textarea) {
  box-sizing: border-box;
  width: auto;
  transition: border-color .1s, box-shadow .1s;
  border: 1px solid #d9d9d9;
  border-radius: .1875em;
  background: rgba(0, 0, 0, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06), 0 0 0 3px rgba(0, 0, 0, 0);
  color: inherit;
  font-size: 1.125em
}

div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,
div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,
div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important
}

div:where(.swal2-container) input:where(.swal2-input):focus,
div:where(.swal2-container) input:where(.swal2-file):focus,
div:where(.swal2-container) textarea:where(.swal2-textarea):focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06), 0 0 0 3px rgba(100, 150, 200, .5)
}

div:where(.swal2-container) input:where(.swal2-input)::placeholder,
div:where(.swal2-container) input:where(.swal2-file)::placeholder,
div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder {
  color: #ccc
}

div:where(.swal2-container) .swal2-range {
  margin: 1em 2em 3px;
  background: #fff
}

div:where(.swal2-container) .swal2-range input {
  width: 80%
}

div:where(.swal2-container) .swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center
}

div:where(.swal2-container) .swal2-range input,
div:where(.swal2-container) .swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em
}

div:where(.swal2-container) .swal2-input {
  height: 2.625em;
  padding: 0 .75em
}

div:where(.swal2-container) .swal2-file {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  background: rgba(0, 0, 0, 0);
  font-size: 1.125em
}

div:where(.swal2-container) .swal2-textarea {
  height: 6.75em;
  padding: .75em
}

div:where(.swal2-container) .swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: .375em .625em;
  background: rgba(0, 0, 0, 0);
  color: inherit;
  font-size: 1.125em
}

div:where(.swal2-container) .swal2-radio,
div:where(.swal2-container) .swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit
}

div:where(.swal2-container) .swal2-radio label,
div:where(.swal2-container) .swal2-checkbox label {
  margin: 0 .6em;
  font-size: 1.125em
}

div:where(.swal2-container) .swal2-radio input,
div:where(.swal2-container) .swal2-checkbox input {
  flex-shrink: 0;
  margin: 0 .4em
}

div:where(.swal2-container) label:where(.swal2-input-label) {
  display: flex;
  justify-content: center;
  margin: 1em auto 0
}

div:where(.swal2-container) div:where(.swal2-validation-message) {
  align-items: center;
  justify-content: center;
  margin: 1em 0 0;
  padding: .625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666;
  font-size: 1em;
  font-weight: 300
}

div:where(.swal2-container) div:where(.swal2-validation-message)::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 .625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center
}

div:where(.swal2-container) .swal2-progress-steps {
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  background: rgba(0, 0, 0, 0);
  font-weight: 600
}

div:where(.swal2-container) .swal2-progress-steps li {
  display: inline-block;
  position: relative
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #2778c4;
  color: #fff;
  line-height: 2em;
  text-align: center
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step {
  background: #add8e6;
  color: #fff
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line {
  background: #add8e6
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5em;
  height: .4em;
  margin: 0 -1px;
  background: #2778c4
}

div:where(.swal2-icon) {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto .6em;
  border: 0.25em solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  user-select: none
}

div:where(.swal2-icon) .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75em
}

div:where(.swal2-icon).swal2-error {
  border-color: #f27474;
  color: #f27474
}

div:where(.swal2-icon).swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: .3125em;
  border-radius: .125em;
  background-color: #f27474
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg)
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg)
}

div:where(.swal2-icon).swal2-error.swal2-icon-show {
  animation: swal2-animate-error-icon .5s
}

div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark {
  animation: swal2-animate-error-x-mark .5s
}

div:where(.swal2-icon).swal2-warning {
  border-color: #facea8;
  color: #f8bb86
}

div:where(.swal2-icon).swal2-warning.swal2-icon-show {
  animation: swal2-animate-error-icon .5s
}

div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-i-mark .5s
}

div:where(.swal2-icon).swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee
}

div:where(.swal2-icon).swal2-info.swal2-icon-show {
  animation: swal2-animate-error-icon .5s
}

div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-i-mark .8s
}

div:where(.swal2-icon).swal2-question {
  border-color: #c9dae1;
  color: #87adbd
}

div:where(.swal2-icon).swal2-question.swal2-icon-show {
  animation: swal2-animate-error-icon .5s
}

div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-question-mark .8s
}

div:where(.swal2-icon).swal2-success {
  border-color: #a5dc86;
  color: #a5dc86
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  border-radius: 50%
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: .25em solid rgba(165, 220, 134, .3);
  border-radius: 50%
}

div:where(.swal2-icon).swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: .5em;
  left: 1.625em;
  width: .4375em;
  height: 5.625em;
  transform: rotate(-45deg)
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: .3125em;
  border-radius: .125em;
  background-color: #a5dc86
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: .8125em;
  width: 1.5625em;
  transform: rotate(45deg)
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: .5em;
  width: 2.9375em;
  transform: rotate(-45deg)
}

div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-animate-success-line-tip .75s
}

div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-animate-success-line-long .75s
}

div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  animation: swal2-rotate-success-circular-line 4.25s ease-in
}

[class^=swal2] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.swal2-show {
  animation: swal2-show .3s
}

.swal2-hide {
  animation: swal2-hide .15s forwards
}

.swal2-noanimation {
  transition: none
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0
}

.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto
}

@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg)
  }

  33% {
    transform: translateY(0) rotateZ(-2deg)
  }

  66% {
    transform: translateY(0.3125em) rotateZ(2deg)
  }

  100% {
    transform: translateY(0) rotateZ(0deg)
  }
}

@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0
  }
}

@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: .5625em;
    left: .0625em;
    width: 0
  }

  54% {
    top: .125em;
    left: .125em;
    width: 0
  }

  70% {
    top: .625em;
    left: -0.25em;
    width: 1.625em
  }

  84% {
    top: 1.0625em;
    left: .75em;
    width: .5em
  }

  100% {
    top: 1.125em;
    left: .1875em;
    width: .75em
  }
}

@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0
  }

  65% {
    top: 1.25em;
    right: .9375em;
    width: 0
  }

  84% {
    top: .9375em;
    right: 0;
    width: 1.125em
  }

  100% {
    top: .9375em;
    right: .1875em;
    width: 1.375em
  }
}

@keyframes swal2-show {
  0% {
    transform: scale(0.7)
  }

  45% {
    transform: scale(1.05)
  }

  80% {
    transform: scale(0.95)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(0.5);
    opacity: 0
  }
}

@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: .0625em;
    width: 0
  }

  54% {
    top: 1.0625em;
    left: .125em;
    width: 0
  }

  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em
  }

  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em
  }

  100% {
    top: 2.8125em;
    left: .8125em;
    width: 1.5625em
  }
}

@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0
  }

  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0
  }

  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em
  }

  100% {
    top: 2.375em;
    right: .5em;
    width: 2.9375em
  }
}

@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg)
  }

  5% {
    transform: rotate(-45deg)
  }

  12% {
    transform: rotate(-405deg)
  }

  100% {
    transform: rotate(-405deg)
  }
}

@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0
  }

  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0
  }

  80% {
    margin-top: -0.375em;
    transform: scale(1.15)
  }

  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1
  }
}

@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1
  }
}

@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes swal2-animate-question-mark {
  0% {
    transform: rotateY(-360deg)
  }

  100% {
    transform: rotateY(0)
  }
}

@keyframes swal2-animate-i-mark {
  0% {
    transform: rotateZ(45deg);
    opacity: 0
  }

  25% {
    transform: rotateZ(-25deg);
    opacity: .4
  }

  50% {
    transform: rotateZ(15deg);
    opacity: .8
  }

  75% {
    transform: rotateZ(-5deg);
    opacity: 1
  }

  100% {
    transform: rotateX(0);
    opacity: 1
  }
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden
}

body.swal2-height-auto {
  height: auto !important
}

body.swal2-no-backdrop .swal2-container {
  background-color: rgba(0, 0, 0, 0) !important;
  pointer-events: none
}

body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all
}

body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, .4)
}

@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true] {
    display: none
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: static !important
  }
}

body.swal2-toast-shown .swal2-container {
  box-sizing: border-box;
  width: 360px;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none
}

body.swal2-toast-shown .swal2-container.swal2-top {
  inset: 0 auto auto 50%;
  transform: translateX(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
  inset: 0 0 auto auto
}

body.swal2-toast-shown .swal2-container.swal2-top-start,
body.swal2-toast-shown .swal2-container.swal2-top-left {
  inset: 0 auto auto 0
}

body.swal2-toast-shown .swal2-container.swal2-center-start,
body.swal2-toast-shown .swal2-container.swal2-center-left {
  inset: 50% auto auto 0;
  transform: translateY(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-center {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%)
}

body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
  inset: 50% 0 auto auto;
  transform: translateY(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start,
body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  inset: auto auto 0 0
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
  inset: auto auto 0 50%;
  transform: translateX(-50%)
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  inset: auto 0 0 auto
}

/* ## SWEET ALERT END ## */


/* APP FORM  */

.select2-results li {
  color: black !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #010306;
  color: white !important;
}

.hidden-toggles {
  position: relative;
  border-radius: 999em;
  overflow: hidden;

  height: 2.75em;
  width: 20em;

  display: flex;
  /* flex-direction: row-reverse; */
  margin: 0 auto;

  >* {
    flex: 0 0 50%;
  }

  &:after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    border: var(--toggle-border-width) solid var(--toggle-accent);
    border-radius: 999em;
    pointer-events: none;
  }
}

.hidden-toggles__input {
  display: none;

  &:checked+.hidden-toggles__label {
    background-color: var(--toggle-accent);
    color: var(--toggle-text-active);

    &:before {
      opacity: 1;
    }

    &:last-of-type {
      background: linear-gradient(90deg, var(--toggle-accent) 0%, var(--toggle-accent-2) 100%);
    }
  }

  &:disabled+.hidden-toggles__label {
    background-color: #959595;
    color: #424242;

    &:before {
      opacity: 1;
    }

    &:last-of-type {
      background: linear-gradient(90deg, var(--toggle-accent) 0%, var(--toggle-accent-2) 100%);
    }
  }

  /* &:nth-of-type(1)+label {
    order: 4
  }

  &:nth-of-type(2)+label {
    order: 3
  }

  &:nth-of-type(3)+label {
    order: 2
  }

  &:nth-of-type(4)+label {
    order: 1
  } */

  /* &:nth-of-type(1):checked,
  &:nth-of-type(2):checked {
    ~label:last-of-type {
      margin-right: -33.33%;
    }
  } */
}

.hidden-toggles__label {
  display: flex;
  align-items: center;
  justify-content: space-around;

  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-out;
  color: var(--toggle-text);
  margin: 0px;
  font-size : 15px;

  &:hover {
    color: var(--toggle-text-hover);
  }

  &:nth-of-type(2) {
    border-left: var(--toggle-border-width) solid var(--toggle-accent);
    border-right: var(--toggle-border-width) solid var(--toggle-accent);
  }

  &:last-of-type {
    border-left: var(--toggle-border-width) solid var(--toggle-accent);
  }
}

#errormessage {
  background-color: var(--red);
  color:var(--white);
  padding: 10px;
  border-radius: 5px;
}

#sendmessage {
  background-color: var(--green);
  color:var(--white);
  padding: 10px;
  border-radius: 5px;
}

.show {
  display: block !important;
}

/* APP FORM END */