/*!
* Poppy v1.2.0 - Creates simple eye candy JavaScript notification - (https://berat.me)
* Copyright (c) 2020 Berat Aşıcı
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*/

.poppy {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	font-size: 15px;
	box-sizing: border-box;
	padding: 20px!important;
	pointer-events: none;
	z-index: 1000
}

.poppy,
.poppy * {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

.poppy__notification {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: #fff;
	max-width: 20em;
	border-radius: 5px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, .2);
	/* border: 1px solid #E2E2EA; */
	padding: 1em;
	transition: transform .25s ease, opacity .25s ease;
	width: 300px;
	-moz-user-select: none;
	     user-select: none;
	-webkit-user-select: none;
	cursor: default;
	z-index: 1000;
	pointer-events: all
}

.poppy__notification--no-animation {
	transition: none!important
}

.poppy__notification--invisible {
	visibility: hidden
}

.poppy__notification--dismissing {
	opacity: 0
}

.poppy__notification--top-right {
	top: 20px;
	right: 20px;
	margin-bottom: 10px
}

.poppy__notification--top-left {
	top: 20px;
	left: 20px;
	margin-bottom: 10px
}

.poppy__notification--top-center {
	top: 20px;
	left: 50%;
	margin-bottom: 10px
}

.poppy__notification--bottom-right {
	bottom: 20px;
	right: 20px;
	margin-top: 10px
}

.poppy__notification--bottom-left {
	bottom: 20px;
	left: 20px;
	margin-top: 10px
}

.poppy__notification--bottom-center {
	bottom: 20px;
	left: 50%;
	margin-top: 10px
}

.poppy__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start
}

.poppy__body {
	display: flex;
	flex-direction: row;
	justify-content: flex-start
}

.poppy__icon {
	position: relative;
	max-width: 2em;
	transition: all .2s ease;
	transform: rotate(0)
}

.poppy__icon i {
	position: relative;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	height: 2em;
	width: 2em;
	line-height: 2.15em;
	font-size: .8em;
	top: -.4em;
	background: #e1f5fd;
	color: #00a4ff
}

.poppy__icon i::before {
	font-size: 1.15em!important
}

.poppy__icon:empty {
	width: 0
}

.poppy__icon--spinning i {
	-webkit-animation: poppy-spin 4s linear infinite;
	animation: poppy-spin 4s linear infinite
}

.poppy__notification--success .poppy__icon i {
	background: #e3fcca;
	color: #71be34
}

.poppy__notification--warning .poppy__icon i {
	background: #fec;
	color: #fbb100
}

.poppy__notification--error .poppy__icon i {
	background: #fdc;
	color: #f42
}

.poppy__title {
	position: relative;
	font-size: 1em;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	color: #102b43
}

.poppy__message {
	font-size: .875em;
	line-height: 1.5;
	margin-top: .5em;
	font-weight: 400;
	color: #44444F
}

.poppy__message:empty,
.poppy__title:empty+.poppy__message {
	margin-top: 0
}

.poppy__dismiss-button {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.25em;
	width: 1.25em;
	height: 1.25em;
	border-radius: 50%;
	right: .25em;
	top: .25em;
	color: #adb7bb;
	cursor: pointer
}

.poppy__dismiss-button svg {
	fill: #adb7bb;
	width: 8px
}

.poppy__dismiss-button:hover {
	background: #eff1f3
}

.poppy__dismiss-button:active {
	background: #e2e6e9
}

.poppy__button-container {
	display: flex;
	flex-direction: row;
	justify-content: stretch;
	margin: 0 -.25em
}

.poppy__button {
	margin: 0 .25em;
	width: 100%;
	background: #fff;
	color: #102b43;
	border: 1px solid #dadada;
	border-radius: 5px;
	cursor: pointer;
	padding: .6em .5em;
	font-size: .8em;
	font-weight: 500
}

.poppy__button--primary {
	background: #00b1ff;
	border-color: transparent;
	color: #fff
}

.poppy__progressbar {
	display: none;
	position: relative;
	width: 100%;
	bottom: 0;
	height: 4px;
	background: #e2e2e2;
	border-radius: 10px;
	margin-top: 10px
}

.poppy__progressbar-line {
	position: absolute;
	background: #7d2;
	left: 0;
	bottom: 0;
	width: 0;
	height: inherit;
	border-radius: inherit
}

:not(:empty)+.poppy__footer:not(:empty) {
	margin-top: .5em
}

@-webkit-keyframes poppy-spin {
	0% {
		-webkit-transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes poppy-spin {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

.poppy__icon:not(:empty)+.poppy__content {
	padding-left: .5em
}

.poppy__notification--progressbar .poppy__progressbar {
	display: block
}
@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button {
  margin: 0;
}

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

:focus {
  outline: 0;
}

.bg-blue {
  background-color: #0062FF;
}

.color-blue {
  color: #0062FF;
}

.bg-yellow {
  background-color: #FFC542;
}

.color-yellow {
  color: #FFC542;
}

.bg-turquoise {
  background-color: #50B5FF;
}

.color-turquoise {
  color: #50B5FF;
}

.bg-mint {
  background-color: #3DD598;
}

.color-mint {
  color: #3DD598;
}

.bg-orange {
  background-color: #FF974A;
}

.color-orange {
  color: #FF974A;
}

.bg-red {
  background-color: #FC5A5A;
}

.color-red {
  color: #FC5A5A;
}

.bg-green {
  background-color: #82C43C;
}

.color-green {
  color: #82C43C;
}

.bg-purple {
  background-color: #A461D8;
}

.color-purple {
  color: #A461D8;
}

.bg-pink {
  background-color: #FF9AD5;
}

.color-pink {
  color: #FF9AD5;
}

.bg-blue-pastel {
  background-color: rgba(0, 98, 255, 0.1);
}

.color-blue-pastel {
  color: rgba(0, 98, 255, 0.1);
}

.bg-yellow-pastel {
  background-color: rgba(255, 197, 66, 0.1);
}

.color-yellow-pastel {
  color: rgba(255, 197, 66, 0.1);
}

.bg-turquoise-pastel {
  background-color: rgba(80, 181, 255, 0.1);
}

.color-turquoise-pastel {
  color: rgba(80, 181, 255, 0.1);
}

.bg-mint-pastel {
  background-color: rgba(61, 213, 152, 0.1);
}

.color-mint-pastel {
  color: rgba(61, 213, 152, 0.1);
}

.bg-orange-pastel {
  background-color: rgba(255, 151, 74, 0.1);
}

.color-orange-pastel {
  color: rgba(255, 151, 74, 0.1);
}

.bg-red-pastel {
  background-color: rgba(252, 90, 90, 0.1);
}

.color-red-pastel {
  color: rgba(252, 90, 90, 0.1);
}

.bg-green-pastel {
  background-color: rgba(130, 196, 60, 0.1);
}

.color-green-pastel {
  color: rgba(130, 196, 60, 0.1);
}

.bg-purple-pastel {
  background-color: rgba(164, 97, 216, 0.1);
}

.color-purple-pastel {
  color: rgba(164, 97, 216, 0.1);
}

.bg-pink-pastel {
  background-color: rgba(255, 154, 213, 0.1);
}

.color-pink-pastel {
  color: rgba(255, 154, 213, 0.1);
}

.bg-black {
  background-color: #171725;
}

.color-black {
  color: #171725;
}

.bg-grey {
  background-color: #92929D;
}

.color-grey {
  color: #92929D;
}

.bg-grey-1 {
  background-color: #44444F;
}

.color-grey-1 {
  color: #44444F;
}

.bg-grey-2 {
  background-color: #696974;
}

.color-grey-2 {
  color: #696974;
}

.bg-grey-3 {
  background-color: #92929D;
}

.color-grey-3 {
  color: #92929D;
}

.bg-grey-4 {
  background-color: #B5B5BE;
}

.color-grey-4 {
  color: #B5B5BE;
}

.bg-grey-5 {
  background-color: #D5D5DC;
}

.color-grey-5 {
  color: #D5D5DC;
}

.bg-grey-6 {
  background-color: #E2E2EA;
}

.color-grey-6 {
  color: #E2E2EA;
}

.bg-grey-7 {
  background-color: #F1F1F5;
}

.color-grey-7 {
  color: #F1F1F5;
}

.bg-grey-8 {
  background-color: #FAFAFB;
}

.color-grey-8 {
  color: #FAFAFB;
}

.bg-white {
  background-color: #FFFFFF;
}

.color-white {
  color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6, .h7, .h8, .h9, .h10 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-weight: 600;
  color: #171725;
}

h1, .h1 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 3rem;
}

h2, .h2 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 2.25rem;
}

h3, .h3 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 1.75rem;
}

h4, .h4 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
}

h5, .h5 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 1.125rem;
}

h6, .h6 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 1rem;
}

.h7 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
}

.h8 {
  letter-spacing: 0.02rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
}

.h9 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  color: #44444F;
}

.h10 {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1;
  color: #696974;
}

.sh1 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: 1.125rem;
  color: #92929D;
}

.sh2 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: 1rem;
  color: #696974;
}

.sh3 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: 0.875rem;
  color: #44444F;
}

.sh4 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: 0.75rem;
  color: #92929D;
}

p, .p1, .p2, .p3, .p4 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  color: #44444F;
  font-weight: 400;
}

.p1 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.p2 {
  font-size: 1rem;
  line-height: 1.625rem;
}

.p3, p {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.p4 {
  font-size: 0.75rem;
  line-height: 1.375rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.link {
  color: #0062FF;
}
.link:hover {
  text-decoration: underline;
}

.fw-300, .fw-light {
  font-weight: 300;
}

.fw-400, .fw-normal {
  font-weight: 400;
}

.fw-500, .fw-medium {
  font-weight: 500;
}

.fw-600, .fw-semibold, .fw-demibold {
  font-weight: 600;
}

.fw-700, .fw-bold {
  font-weight: 700;
}

.fs-xl {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.fs-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.fs-md {
  font-size: 1rem;
  line-height: 1.625rem;
}

.fs-sm {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.fs-xs {
  font-size: 0.75rem;
  line-height: 1.375rem;
}

@media (min-width: 768px) {
  .fw-md-300, .fw-md-light {
    font-weight: 300;
  }
  .fw-md-400, .fw-md-normal {
    font-weight: 400;
  }
  .fw-md-500, .fw-md-medium {
    font-weight: 500;
  }
  .fw-md-600, .fw-md-semibold, .fw-md-demibold {
    font-weight: 600;
  }
  .fw-md-700, .fw-md-bold {
    font-weight: 700;
  }
  .fs-md-xl {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  .fs-md-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .fs-md-md {
    font-size: 1rem;
    line-height: 1.625rem;
  }
  .fs-md-sm {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .fs-md-xs {
    font-size: 0.75rem;
    line-height: 1.375rem;
  }
}
.fm-os {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}

.fm-primary {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}

.fm-secondary {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}

.fs-italic {
  font-style: italic;
}

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

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

.lh-lg {
  line-height: 1.125;
}

.lh-xl {
  line-height: 1.25;
}

.text-overline {
  text-decoration: overline;
}

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

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

.ws-n {
  white-space: nowrap;
}

.ws-pw {
  white-space: pre-wrap;
}

.ws-pl {
  white-space: pre-line;
}

.button {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0062FF;
  -webkit-appearance: none;
  margin: 0;
  border: none;
  border-radius: 10px;
  padding: 0 0.875rem;
  height: 38px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s;
}
.button:before, .button:after {
  content: "";
}
.button > svg + span,
.button > svg + p {
  margin-left: 0.5rem;
}
.button:hover {
  background-color: #0054db;
}
.button:active, .button.button--active {
  background-color: #ba272d;
}
.button--primary {
  background-color: #0062FF;
  color: #FFFFFF;
}
.button--primary:hover {
  background-color: #0054db;
}
.button--primary:active, .button--primary.button--active {
  background-color: #0047b8;
}
.button--gray {
  background-color: #F1F1F5;
  color: #696974;
}
.button--gray:hover {
  background-color: #dcdce6;
}
.button--gray:active, .button--gray.button--active {
  background-color: #c7c7d7;
}
.button--turquoise {
  background-color: #50B5FF;
  color: #FFFFFF;
}
.button--turquoise:hover {
  background-color: #2ca6ff;
}
.button--turquoise:active, .button--turquoise.button--active {
  background-color: #0997ff;
}
.button--white {
  background-color: #FFFFFF;
  color: #696974;
}
.button--white:hover {
  background-color: #ededed;
}
.button--white:active, .button--white.button--active {
  background-color: #dbdbdb;
}
.button--full {
  width: 100%;
}
.button--outline {
  border: 1px solid rgba(0, 98, 255, 0.1);
  background-color: #FFFFFF;
  color: #0062FF;
  padding: 0.75rem 0.875rem;
}
.button--red {
  color: #FC5A5A;
  border: 1px solid #FC5A5A;
  background-color: #FFFFFF;
  padding: 0.75rem 0.875rem;
}
.button--red:hover {
  color: #FFFFFF;
  background-color: #FC5A5A;
}
.button--red:active, .button--red.button--active {
  background-color: #fb3737;
}
.button--small {
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  padding: 0 0.875rem;
}
.button--big {
  padding: 0 0.875rem;
  height: 48px;
}
.button--outline.button--white {
  border-color: #D5D5DC;
  color: #92929D;
}
.button--outline.button--gray {
  border-color: #696974;
  color: #696974;
}
.button--shadow {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.button--pill {
  border-radius: 30px;
}
.button--transparent {
  color: #44444F;
  background-color: transparent;
}
.button--transparent:hover {
  background-color: #F1F1F5;
}
.button--transparent:active, .button--transparent.button--active {
  background-color: #dcdce6;
}
.button[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.inline-table {
  display: inline-table;
}

.table-caption {
  display: table-caption;
}

.table-cell {
  display: table-cell;
}

.table-column {
  display: table-column;
}

.table-column-group {
  display: table-column-group;
}

.table-footer-group {
  display: table-footer-group;
}

.table-header-group {
  display: table-header-group;
}

.table-row-group {
  display: table-row-group;
}

.table-row {
  display: table-row;
}

.flow-root {
  display: flow-root;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.contents {
  display: contents;
}

.list-item {
  display: list-item;
}

.hidden {
  display: none;
}

.h-0 {
  height: 0px;
}

.h-px {
  height: 1px;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-1 {
  height: 0.25rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.h-2 {
  height: 0.5rem;
}

.h-2\.5 {
  height: 0.625rem;
}

.h-3 {
  height: 0.75rem;
}

.h-3\.5 {
  height: 0.875rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-9 {
  height: 2.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.w-0 {
  width: 0px;
}

.w-px {
  width: 1px;
}

.w-0\.5 {
  width: 0.125rem;
}

.w-1 {
  width: 0.25rem;
}

.w-1\.5 {
  width: 0.375rem;
}

.w-2 {
  width: 0.5rem;
}

.w-2\.5 {
  width: 0.625rem;
}

.w-3 {
  width: 0.75rem;
}

.w-3\.5 {
  width: 0.875rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-9 {
  width: 2.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1 1 0%;
}

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

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.flex-grow-0 {
  flex-grow: 0;
}

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

.flex-shrink-0 {
  flex-shrink: 0;
}

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

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.order-first {
  order: -9999;
}

.order-last {
  order: 9999;
}

.order-none {
  order: 0;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-stretch {
  justify-items: stretch;
}

.justify-self-auto {
  justify-self: auto;
}

.justify-self-start {
  justify-self: start;
}

.justify-self-end {
  justify-self: end;
}

.justify-self-center {
  justify-self: center;
}

.justify-self-stretch {
  justify-self: stretch;
}

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-stretch {
  align-self: stretch;
}

.tc, .text-center {
  text-align: center;
}

.tl, .text-left {
  text-align: left;
}

.tr, .text-right {
  text-align: right;
}

.tj, .text-justify {
  text-align: justify;
}

@media (min-width: 768px) {
  .t-md-c, .text-md-center {
    text-align: center;
  }
  .t-md-l, .text-md-left {
    text-align: left;
  }
  .t-md-r, .text-md-right {
    text-align: right;
  }
  .t-md-j, .text-md-justify {
    text-align: justify;
  }
}
.text-ellipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.text-ellipsis-wrapper {
  min-width: 0;
}

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

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--nm-gutter-x, 0.75rem);
  padding-left: var(--nm-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1280px;
  }
}
.row {
  --nm-gutter-x: 1.5rem;
  --nm-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--nm-gutter-y) * -1);
  margin-right: calc(var(--nm-gutter-x) * -0.5);
  margin-left: calc(var(--nm-gutter-x) * -0.5);
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--nm-gutter-x) * 0.5);
  padding-left: calc(var(--nm-gutter-x) * 0.5);
  margin-top: var(--nm-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --nm-gutter-x: 0;
}

.g-0,
.gy-0 {
  --nm-gutter-y: 0;
}

.g-1,
.gx-1 {
  --nm-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --nm-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --nm-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --nm-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --nm-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --nm-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --nm-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --nm-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --nm-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --nm-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
.gx-sm-0 {
    --nm-gutter-x: 0;
  }
  .g-sm-0,
.gy-sm-0 {
    --nm-gutter-y: 0;
  }
  .g-sm-1,
.gx-sm-1 {
    --nm-gutter-x: 0.25rem;
  }
  .g-sm-1,
.gy-sm-1 {
    --nm-gutter-y: 0.25rem;
  }
  .g-sm-2,
.gx-sm-2 {
    --nm-gutter-x: 0.5rem;
  }
  .g-sm-2,
.gy-sm-2 {
    --nm-gutter-y: 0.5rem;
  }
  .g-sm-3,
.gx-sm-3 {
    --nm-gutter-x: 1rem;
  }
  .g-sm-3,
.gy-sm-3 {
    --nm-gutter-y: 1rem;
  }
  .g-sm-4,
.gx-sm-4 {
    --nm-gutter-x: 1.5rem;
  }
  .g-sm-4,
.gy-sm-4 {
    --nm-gutter-y: 1.5rem;
  }
  .g-sm-5,
.gx-sm-5 {
    --nm-gutter-x: 3rem;
  }
  .g-sm-5,
.gy-sm-5 {
    --nm-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
.gx-md-0 {
    --nm-gutter-x: 0;
  }
  .g-md-0,
.gy-md-0 {
    --nm-gutter-y: 0;
  }
  .g-md-1,
.gx-md-1 {
    --nm-gutter-x: 0.25rem;
  }
  .g-md-1,
.gy-md-1 {
    --nm-gutter-y: 0.25rem;
  }
  .g-md-2,
.gx-md-2 {
    --nm-gutter-x: 0.5rem;
  }
  .g-md-2,
.gy-md-2 {
    --nm-gutter-y: 0.5rem;
  }
  .g-md-3,
.gx-md-3 {
    --nm-gutter-x: 1rem;
  }
  .g-md-3,
.gy-md-3 {
    --nm-gutter-y: 1rem;
  }
  .g-md-4,
.gx-md-4 {
    --nm-gutter-x: 1.5rem;
  }
  .g-md-4,
.gy-md-4 {
    --nm-gutter-y: 1.5rem;
  }
  .g-md-5,
.gx-md-5 {
    --nm-gutter-x: 3rem;
  }
  .g-md-5,
.gy-md-5 {
    --nm-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
.gx-lg-0 {
    --nm-gutter-x: 0;
  }
  .g-lg-0,
.gy-lg-0 {
    --nm-gutter-y: 0;
  }
  .g-lg-1,
.gx-lg-1 {
    --nm-gutter-x: 0.25rem;
  }
  .g-lg-1,
.gy-lg-1 {
    --nm-gutter-y: 0.25rem;
  }
  .g-lg-2,
.gx-lg-2 {
    --nm-gutter-x: 0.5rem;
  }
  .g-lg-2,
.gy-lg-2 {
    --nm-gutter-y: 0.5rem;
  }
  .g-lg-3,
.gx-lg-3 {
    --nm-gutter-x: 1rem;
  }
  .g-lg-3,
.gy-lg-3 {
    --nm-gutter-y: 1rem;
  }
  .g-lg-4,
.gx-lg-4 {
    --nm-gutter-x: 1.5rem;
  }
  .g-lg-4,
.gy-lg-4 {
    --nm-gutter-y: 1.5rem;
  }
  .g-lg-5,
.gx-lg-5 {
    --nm-gutter-x: 3rem;
  }
  .g-lg-5,
.gy-lg-5 {
    --nm-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
.gx-xl-0 {
    --nm-gutter-x: 0;
  }
  .g-xl-0,
.gy-xl-0 {
    --nm-gutter-y: 0;
  }
  .g-xl-1,
.gx-xl-1 {
    --nm-gutter-x: 0.25rem;
  }
  .g-xl-1,
.gy-xl-1 {
    --nm-gutter-y: 0.25rem;
  }
  .g-xl-2,
.gx-xl-2 {
    --nm-gutter-x: 0.5rem;
  }
  .g-xl-2,
.gy-xl-2 {
    --nm-gutter-y: 0.5rem;
  }
  .g-xl-3,
.gx-xl-3 {
    --nm-gutter-x: 1rem;
  }
  .g-xl-3,
.gy-xl-3 {
    --nm-gutter-y: 1rem;
  }
  .g-xl-4,
.gx-xl-4 {
    --nm-gutter-x: 1.5rem;
  }
  .g-xl-4,
.gy-xl-4 {
    --nm-gutter-y: 1.5rem;
  }
  .g-xl-5,
.gx-xl-5 {
    --nm-gutter-x: 3rem;
  }
  .g-xl-5,
.gy-xl-5 {
    --nm-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
.gx-xxl-0 {
    --nm-gutter-x: 0;
  }
  .g-xxl-0,
.gy-xxl-0 {
    --nm-gutter-y: 0;
  }
  .g-xxl-1,
.gx-xxl-1 {
    --nm-gutter-x: 0.25rem;
  }
  .g-xxl-1,
.gy-xxl-1 {
    --nm-gutter-y: 0.25rem;
  }
  .g-xxl-2,
.gx-xxl-2 {
    --nm-gutter-x: 0.5rem;
  }
  .g-xxl-2,
.gy-xxl-2 {
    --nm-gutter-y: 0.5rem;
  }
  .g-xxl-3,
.gx-xxl-3 {
    --nm-gutter-x: 1rem;
  }
  .g-xxl-3,
.gy-xxl-3 {
    --nm-gutter-y: 1rem;
  }
  .g-xxl-4,
.gx-xxl-4 {
    --nm-gutter-x: 1.5rem;
  }
  .g-xxl-4,
.gy-xxl-4 {
    --nm-gutter-y: 1.5rem;
  }
  .g-xxl-5,
.gx-xxl-5 {
    --nm-gutter-x: 3rem;
  }
  .g-xxl-5,
.gy-xxl-5 {
    --nm-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

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

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.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;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.form-row, .form-group-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 15px;
  margin-left: -7px;
  margin-right: -7px;
  gap: 15px;
}

.form-separator {
  height: 1px;
  min-width: 100%;
  background-color: #D5D5DC;
  margin: 1.5rem -20px;
}

.modal-body > .form-row:last-child {
  margin-bottom: 0;
}

.form-row--is-required .form-label label:after,
.form-row--is-required .form-group-header:after, .form-control-wrapper--is-required .form-label label:after,
.form-control-wrapper--is-required .form-group-header:after {
  content: "*";
  color: #FC5A5A;
  margin-left: 0.25rem;
}

@-webkit-keyframes required-pulse {
  0%, 50%, 100% {
    background-color: transparent;
  }
  25%, 75% {
    background-color: #FC5A5A;
  }
}

@keyframes required-pulse {
  0%, 50%, 100% {
    background-color: transparent;
  }
  25%, 75% {
    background-color: #FC5A5A;
  }
}
.form-row--is-required {
  position: relative;
}
.form-row--is-required:before {
  content: "";
  width: 0.125rem;
  height: 100%;
  display: block;
  position: absolute;
  left: -0.875rem;
  top: 0;
  background-color: transparent;
}
.form-row--is-required.form-row--pulse:before {
  -webkit-animation-name: required-pulse;
          animation-name: required-pulse;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.form-group {
  width: 100%;
  padding: 0 7px;
}

.form-group-header {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: 0.875rem;
  color: #44444F;
  display: block;
  margin-bottom: 15px;
}

.form-control-wrapper {
  position: relative;
  width: 100%;
  display: block;
}
.form-control-wrapper--action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-control-wrapper--autofilled::before {
  content: "";
  position: absolute;
  left: -13px;
  width: 2px;
  background-color: #0062FF;
  height: 100%;
}

.form-label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.form-label label {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: 0.875rem;
  color: #44444F;
  display: block;
}

.form-description {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.form-description small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25;
  color: #696974;
}

.form-input {
  position: relative;
  display: block;
  width: 100%;
}
.form-input .dropdown-head, .form-input .dropdown-selection {
  width: 100%;
}
.form-input .dropdown-placeholder {
  color: #44444F;
}
.form-input small {
  display: block;
  margin-top: 10px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: 0.75rem;
  color: #92929D;
}

.form-input > [type=file] {
  display: none;
}

.form-uploaded-file {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #F1F1F5;
  margin-bottom: 0.25rem;
  align-items: center;
  justify-content: space-between;
}

.file-input-info {
  display: inline-flex;
  flex-direction: column;
  font-size: 0.75rem;
  line-height: 1.25;
  justify-content: center;
  color: #696974;
  font-weight: 500;
}

.uploaded-file-icon {
  position: relative;
  min-width: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 4px;
  background: #F1F1F5;
  margin-right: 0.5rem;
}

.uploaded-file-name {
  width: 100%;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.25;
  color: #44444F;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uploaded-file-progressbar {
  position: absolute;
  border-radius: 8px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 98, 255, 0.1);
  width: 0px;
  display: none;
}

@-webkit-keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.uploaded-file-icon:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #0062FF;
  border-bottom-color: transparent;
  -webkit-animation: spin 2s infinite linear;
          animation: spin 2s infinite linear;
}

.uploaded-file-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 0.875rem;
  line-height: 2.5rem;
  font-weight: 500;
  color: #fff;
}

.uploaded-file-icon--pdf {
  background-color: #FC5A5A;
}
.uploaded-file-icon--pdf:before {
  content: "PDF";
}
.uploaded-file-icon--jpg, .uploaded-file-icon--jpeg {
  background-color: #FF974A;
}
.uploaded-file-icon--jpg:before, .uploaded-file-icon--jpeg:before {
  content: "JPG";
}
.uploaded-file-icon--png {
  background-color: #50B5FF;
}
.uploaded-file-icon--png:before {
  content: "PNG";
}
.uploaded-file-icon--gif {
  background-color: #A461D8;
}
.uploaded-file-icon--gif:before {
  content: "GIF";
}

.uploaded-file-progress {
  display: none;
  font-weight: 500;
  font-size: 0.875rem;
  color: #0062FF;
  padding: 0 0.25rem;
}

.form-uploaded-file--uploading .uploaded-file-icon:after {
  display: block;
}
.form-uploaded-file--uploading .button--remove-file {
  display: none;
}
.form-uploaded-file--uploading .uploaded-file-icon {
  background-color: transparent;
}
.form-uploaded-file--uploading .uploaded-file-progressbar {
  display: block;
}
.form-uploaded-file--uploading .uploaded-file-progress {
  display: block;
}

.form-uploaded-file--error {
  border-color: #FC5A5A;
}
.form-uploaded-file--error .uploaded-file-icon {
  display: none;
}
.form-uploaded-file--error .uploaded-file-progressbar {
  width: 100% !important;
  background-color: rgba(252, 90, 90, 0.1);
  display: block;
}
.form-uploaded-file--error .uploaded-file-name {
  margin: 0 0.25rem;
  font-weight: 500;
  color: #FC5A5A;
}
.form-uploaded-file--error .button--remove-file {
  pointer-events: none;
  opacity: 0;
}

.form-input-prefix {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  height: 56px;
  width: 3.5rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.1px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  color: #44444F;
  font-weight: 400;
  text-align: center;
  background: transparent;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  pointer-events: none;
}

.form-input-prefix + .form-control, .form-input-prefix + .form-control + .form-control {
  padding-left: 3rem;
}

.form-control {
  -webkit-appearance: none;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 16px;
  font-size: 0.875rem;
  letter-spacing: 0.1px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  color: #44444F;
  font-weight: 400;
  padding: 1rem;
  transition: border 0.25s, background 0.25s;
  background-color: #F1F1F5;
  margin: 0;
  line-height: 1;
  height: 56px;
}
.form-control:hover {
  border-color: rgba(0, 98, 255, 0.1);
}
.form-control:focus, .form-control:active, .form-control.active {
  border-color: #0062FF;
  background-color: #FFFFFF;
}

.form-input.form-input--small .form-input-prefix {
  height: 44px;
  width: 3rem;
  font-size: 0.875rem;
}
.form-input.form-input--small .form-input-prefix + .form-control, .form-input.form-input--small .form-input-prefix + .form-control + .form-control {
  padding-left: 2.5rem;
}
.form-input.form-input--small .form-control {
  height: 44px;
  border-radius: 8px;
}

select.form-control {
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath fill-rule='evenodd' d='M9.293.333a.5.5 0 0 1 .39.812L5.39 6.512a.5.5 0 0 1-.781 0L.317 1.146a.5.5 0 0 1 .39-.812h8.586z' fill='%2392929d'/%3E%3C/svg%3E") no-repeat calc(100% - 16px) 50%/11px 7px;
  background-color: #F1F1F5;
}

textarea.form-control {
  line-height: 1.3;
  height: 6.55rem;
}

.checkbox, .radio {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.course-form .checkbox, .course-form .radio {
  width: 100%;
  padding: 0.4rem 0;
}

.checkbox [type=checkbox],
.radio [type=radio] {
  display: none;
}

.checkbox-control, .radio-control {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.checkbox-tick, .radio-tick {
  position: relative;
  display: inline-flex;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border-radius: 3px;
  border: 1px solid #B5B5BE;
  transition: all 0.25s;
}
.checkbox-tick:hover, .radio-tick:hover {
  border-color: #0062FF;
}
.checkbox-tick:before, .radio-tick:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 9px;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M2.36 3.28A1 1 0 1 0 .955 4.703l2.54 2.508a1 1 0 0 0 1.474-.075l4.126-5A1 1 0 1 0 7.553.864L4.123 5.02 2.36 3.28z' fill='%23fff'/%3E%3C/svg%3E") no-repeat 50% 50%/100% auto;
  transition: opacity 0.25s;
}

.radio-tick {
  border-radius: 50%;
}
.radio-tick:before {
  background: none;
  background-color: #fff;
  height: 6px;
  width: 6px;
  border-radius: 50%;
}

.checkbox [type=checkbox]:checked + .checkbox-control .checkbox-tick,
.radio [type=radio]:checked + .radio-control .radio-tick {
  background: #0062FF;
  border-color: #0062FF;
}
.checkbox [type=checkbox]:checked + .checkbox-control .checkbox-tick:before,
.radio [type=radio]:checked + .radio-control .radio-tick:before {
  opacity: 1;
}

.checkbox-text, .radio-text {
  font-size: 0.875rem;
  color: #44444F;
  line-height: 1.2;
}

.input-warning-messages {
  display: block;
  margin-top: 0.25rem;
  padding: 0 0.125rem;
}

.input-warning {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  color: #FC5A5A;
}

.form-media-items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.8rem;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.form-media-items.form-media--single {
  grid-template-columns: 1fr;
}

.form-media--single.form-media-items--has-image .form-media-item-add {
  display: none;
}

.form-media-item:first-child {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
.form-media-item {
  background: #fff;
  border-radius: 6px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 6px;
}
.form-media-item-add {
  background: #fff;
  border-radius: 6px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  border: 2px dashed #8D9196;
  cursor: pointer;
}

.form-media-item-content {
  z-index: 5;
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  transform: translateZ(0);
  border: 1px solid #CACCCF;
  cursor: pointer;
}
.form-media-item-content img {
  position: absolute;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
}
.form-media-item-content > span {
  position: absolute;
  padding: 0.3rem;
  font-size: 0.875rem;
  color: #0062FF;
}
.form-media-item-content::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.form-media-item-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(33, 43, 54, 0.55), hsla(0deg, 0%, 100%, 0));
  z-index: 6;
  border-radius: inherit;
  color: #fff;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms ease;
}
.form-media-item-overlay button {
  color: #fff;
}
.form-media-item:hover .form-media-item-overlay {
  opacity: 1;
  visibility: visible;
}
.form-media-item-remove {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
.form-media-item-remove:hover {
  background-color: transparent;
  color: #FC5A5A;
}

.form-media-items[ar="1:6"] .form-media-item-content::after {
  padding-bottom: 600%;
}

.form-media-items[ar="1:2"] .form-media-item-content::after {
  padding-bottom: 200%;
}

.form-media-items[ar="9:16"] .form-media-item-content::after {
  padding-bottom: 177.7777777778%;
}

.form-media-items[ar="2:3"] .form-media-item-content::after {
  padding-bottom: 150%;
}

.form-media-items[ar="3:4"] .form-media-item-content::after {
  padding-bottom: 133.3333333333%;
}

.form-media-items[ar="4:5"] .form-media-item-content::after {
  padding-bottom: 125%;
}

.form-media-items[ar="1:1"] .form-media-item-content::after {
  padding-bottom: 100%;
}

.form-media-items[ar="5:4"] .form-media-item-content::after {
  padding-bottom: 80%;
}

.form-media-items[ar="3:2"] .form-media-item-content::after {
  padding-bottom: 66.6666666667%;
}

.form-media-items[ar="4:3"] .form-media-item-content::after {
  padding-bottom: 75%;
}

.form-media-items[ar="5:3"] .form-media-item-content::after {
  padding-bottom: 60%;
}

.form-media-items[ar="16:9"] .form-media-item-content::after {
  padding-bottom: 56.25%;
}

.form-media-items[ar="2:1"] .form-media-item-content::after {
  padding-bottom: 50%;
}

.form-media-items[ar="6:1"] .form-media-item-content::after {
  padding-bottom: 16.6666666667%;
}

.admin-box-images-item:hover .admin-box-image-overlay {
  opacity: 1;
  visibility: visible;
}

.form-media-item-add .click-text {
  display: inline-block;
}
.form-media-item-add .drop-text {
  display: none;
}
.form-media-item-add.drag--over {
  background-color: rgba(0, 98, 255, 0.1);
  border-color: #0062FF;
}
.form-media-item-add.drag--over .click-text {
  display: none;
}
.form-media-item-add.drag--over .drop-text {
  display: inline-block;
}

.form-media-item-add .form-media-item-content {
  border: none;
  pointer-events: none;
}

@media (max-width: 576px) {
  .form-row {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .form-row.form-row--keep-row {
    flex-wrap: nowrap;
    margin-bottom: 0;
  }
  .form-group-body {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .form-control-wrapper {
    margin-bottom: 15px;
  }
}
.popper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 71;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.popper-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 70;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 150ms opacity ease-in, 150ms visibility ease-in;
}
.popper-wrapper {
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
  pointer-events: all;
}
.popper--active {
  overflow: hidden;
}
.popper--active .popper-overlay {
  opacity: 1;
  visibility: visible;
}
.popper-container {
  border-radius: 12px;
  background: #fff;
  width: 100%;
}
.popper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #E2E2EA;
}
.popper-title {
  font-size: 1rem;
  font-weight: 500;
  color: #171725;
}
.popper-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  flex-direction: column;
}
.popper-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #E2E2EA;
}
.popper-footer > button {
  margin-left: 0.5rem;
}
.popper-input {
  -webkit-appearance: none;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 16px;
  font-size: 0.875rem;
  letter-spacing: 0.1px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  color: #44444F;
  font-weight: 400;
  padding: 1rem;
  transition: border 0.25s, background 0.25s;
  background-color: #F1F1F5;
  margin: 0;
  line-height: 1;
  height: 56px;
}
.popper-input:hover {
  border-color: rgba(0, 98, 255, 0.1);
}
.popper-input:focus, .popper-input:active, .popper-input.active {
  border-color: #0062FF;
  background-color: #FFFFFF;
}
.popper-input-wrapper {
  margin: 0.5rem 0;
  width: 100%;
}
.popper-input-label {
  font-size: 0.875rem;
  color: #44444F;
  font-weight: 500;
  display: block;
  margin: 0.25rem 0;
  padding: 0.25rem 0;
}

@media (max-width: 576px) {
  .popper {
    padding: 10px;
  }
}
.table {
  display: table;
  width: 100%;
  color: #44444F;
  font-size: 0.875rem;
}
.table-row {
  display: table-row;
}
.table-row:not(.table-row-head):hover {
  background: #FAFAFB;
}
.table-row-head .table-cell {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 0.8125rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.01rem;
  color: #92929D;
}
.table-header {
  display: table-header-group;
}
.table-items {
  display: table-row-group;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E2E2EA;
}
.table-cell:last-child {
  padding-right: 20px;
}
.table-status {
  display: inline-block;
  padding: 3px 16px;
  border-radius: 4px;
  color: #ffffff;
}
.table-body {
  display: none;
  align-items: flex-start;
  margin: 0 0 24px;
  padding: 4px;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
}
.table-bg {
  flex-shrink: 0;
  border-radius: 4px;
}
.table-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding-right: 1rem;
  flex-grow: 1;
}
.table-col {
  padding-right: 8px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.table-col:last-child {
  padding-right: 0;
}
.table-color {
  display: flex;
  align-items: center;
}
.table-color .table-text {
  margin-left: 8px;
}
.table-item {
  display: inline-flex;
  align-items: center;
}
.table-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 96px;
  height: 72px;
  border-radius: 8px;
  background: #D5D5DC;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.table-preview--ar-1\:1 {
  height: 96px;
}
.table-preview--ar-2\:1 {
  height: 48px;
}
.table-preview--ar-3\:1 {
  height: 32px;
}
.table-preview--ar-3\:2 {
  height: 64px;
}
.table-preview--ar-4\:3 {
  height: 72px;
}
.table-preview--ar-5\:3 {
  height: 57px;
}
.table-preview--ar-16\:10 {
  height: 60px;
}
.table-preview--ar-16\:9 {
  height: 54px;
}
.table-pic {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.table-preview + .table-details {
  padding-left: 24px;
}
.table-title {
  font-size: 16px;
  line-height: 1.1875;
  font-weight: 500;
}
.table-cell .table-title {
  margin-bottom: 8px;
}
.table-cell .table-details .table-title {
  margin-bottom: 0;
}
.table-cell > .checkbox {
  width: 16px;
}
.table-cell > .checkbox .checkbox-tick, .table-cell > .checkbox .radio-tick {
  margin-right: 0;
}
.table-checkbox {
  width: 32px;
  font-size: 0 !important;
  line-height: 1 !important;
}
.table-info {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.25;
  color: #92929D;
  margin-top: 8px;
}

.search-input {
  position: relative;
  height: 56px;
}

.search-icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 56px;
  pointer-events: none;
}

.search-control input {
  width: 100%;
  height: 56px;
  padding: 0 20px 0 55px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #F1F1F5;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #44444F;
  transition: background 250ms ease, border 250ms ease;
}
.search-control input:hover {
  border-color: rgba(0, 98, 255, 0.1);
}
.search-control input:focus {
  background: #FFFFFF;
  border-color: #0062FF;
}

@media only screen and (max-width: 767px) {
  .table {
    display: block;
    width: 100%;
  }
  .table-body {
    display: flex;
  }
  .table-bg {
    width: 9px;
    margin-right: 12px;
    border-radius: 9px;
  }
  .table-row {
    display: flex;
    width: 100%;
  }
  .table-row:not(.table-row-head) {
    border-top: 1px solid #E2E2EA;
  }
  .table-cell {
    display: inline-flex;
    align-items: center;
    border: none;
  }
  .table-cell:not(.table-keep, .table-checkbox) {
    display: none;
  }
  .table-preview {
    display: block;
    width: 72px;
    height: 55px;
  }
  .table-header, .table-items {
    display: block;
    width: 100%;
  }
}
.caption {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.dropdown {
  position: relative;
}
.dropdown-head {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 56px;
  border-radius: 16px;
  background: #F1F1F5;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background 250ms ease;
  width: 100%;
}
.dropdown-selection {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border 250ms ease;
}
.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  margin-right: 1rem;
  transition: transform 250ms ease;
  transform: rotate(0deg);
}
.dropdown-icon--dropdown {
  display: inline-flex;
}
.dropdown-icon--search {
  display: none;
}
.dropdown-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}
.dropdown-placeholder {
  font-weight: 500;
  color: #696974;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  max-width: 250px;
  text-overflow: ellipsis;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-left: 1rem;
}
.dropdown--separator-selected .dropdown-placeholder {
  color: #92929D;
}
.dropdown-prefix + .dropdown-placeholder {
  margin-left: 0.75rem;
}
.dropdown-body {
  position: absolute;
  left: 0;
  top: 56px;
  width: 100%;
  padding: 1rem 0;
  z-index: 10;
  transform: translateY(-10px);
  visibility: hidden;
  opacity: 0;
  transition: all 250ms ease;
}
.dropdown--small .dropdown-head {
  height: 46px;
}
.dropdown--small .dropdown-body {
  top: 46px;
}
.dropdown-items {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #F1F1F5;
  padding: 0.5rem 0.5rem;
  box-shadow: 0 20px 16px rgba(227, 230, 236, 0.6);
  max-height: 17.5rem;
  overflow-y: auto;
}
.dropdown-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  border-radius: 8px;
  margin: 0 0 0.25rem 0;
}
.dropdown-item p {
  color: inherit;
}
.dropdown-item:first-child {
  margin-top: 0;
}
.dropdown-item:last-child {
  margin-bottom: 0;
}
.dropdown-item:hover {
  color: #0062FF;
}
.dropdown-item:active {
  background-color: rgba(0, 98, 255, 0.1);
  color: #0062FF;
}
.dropdown-item--selected, .dropdown-item--selected:hover {
  background: #0062FF;
  color: #FFFFFF;
}
.dropdown-item--disabled, .dropdown-item--disabled:hover {
  color: #92929D;
  cursor: default;
  pointer-events: none;
}
.dropdown-item--disabled.dropdown-item--selected {
  background: transparent;
}
.dropdown-item--separator {
  padding: 0;
  width: 100%;
  height: 1px;
  background-color: #E2E2EA !important;
}
.dropdown-item--separator p {
  display: none;
}
.dropdown--readonly .dropdown-item {
  opacity: 0.7;
  pointer-events: none;
}
.dropdown-head:hover .dropdown-selection, .dropdown-head:focus .dropdown-selection {
  border-color: rgba(0, 98, 255, 0.1);
}
.dropdown--active:hover .dropdown-selection, .dropdown--active .dropdown-selection {
  border-color: #0062FF;
}
.dropdown--active .dropdown-placeholder {
  color: #44444F;
}
.dropdown--active .dropdown-icon--dropdown {
  transform: rotate(180deg);
}
.dropdown--active .dropdown-body {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.dropdown--active .dropdown-head {
  background: #FFFFFF;
}
.dropdown--searching .dropdown-placeholder {
  color: #0062FF;
}
.dropdown--searching .dropdown-icon--dropdown {
  display: none;
}
.dropdown--searching .dropdown-icon--search {
  display: inline-flex;
  color: #0062FF;
}
.dropdown--searching .dropdown-icon--search svg {
  color: inherit;
}

.actions {
  display: inline-flex;
  position: relative;
}
.actions-body {
  position: absolute;
  z-index: 10;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
  opacity: 0;
}
.actions-body.actions--active {
  visibility: visible;
  opacity: 1;
}
.actions-items {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #F1F1F5;
  min-width: 120px;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 20px 10px rgba(227, 230, 236, 0.18);
  max-height: 17.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.actions-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  border-radius: 8px;
  margin: 0.25rem 0;
}
.actions-item p {
  color: inherit;
}
.actions-item-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.actions-item-icon svg {
  width: 20px;
  height: 20px;
}
.actions-item-label {
  width: 100%;
}
.actions-item:hover {
  color: #0062FF;
}
.actions-item:active {
  background-color: rgba(0, 98, 255, 0.1);
  color: #0062FF;
}
.actions-item--red:hover {
  color: #FC5A5A;
}
.actions-item--red:active {
  color: #FC5A5A;
  background-color: rgba(252, 90, 90, 0.1);
}
.actions-item--green:hover {
  color: #82C43C;
}
.actions-item--green:active {
  color: #82C43C;
  background-color: rgba(130, 196, 60, 0.1);
}
.actions-item--orange:hover {
  color: #FF974A;
}
.actions-item--orange:active {
  color: #FF974A;
  background-color: rgba(255, 151, 74, 0.1);
}
.actions-item--selected, .actions-item--selected:hover {
  background: #0062FF;
  color: #FFFFFF;
}
.actions-item--disabled, .actions-item--disabled:hover {
  color: #92929D;
  cursor: default;
  pointer-events: none;
}
.actions-item--disabled.dropdown-item--selected {
  background: transparent;
}
.actions-item--separator {
  padding: 0;
  width: 100%;
  height: 1px;
  background-color: #E2E2EA !important;
}
.actions-item--separator p {
  display: none;
}
.actions-item--hide {
  display: none;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #0062FF !important;
  border-color: #0062FF !important;
}

.search-listing-suggestions {
  position: absolute;
}

.search-listing-suggestion-container {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #F1F1F5;
  padding: 0.5rem 0.5rem;
  box-shadow: 0 20px 16px rgba(227, 230, 236, 0.6);
  max-height: 17.5rem;
}

.search-listing-suggestion-list-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  border-radius: 8px;
  margin: 0 0 0.25rem 0;
}
.search-listing-suggestion-list-item p {
  color: inherit;
}
.search-listing-suggestion-list-item:first-child {
  margin-top: 0;
}
.search-listing-suggestion-list-item:last-child {
  margin-bottom: 0;
}
.search-listing-suggestion-list-item:hover {
  color: #0062FF;
}
.search-listing-suggestion-list-item:active {
  background-color: rgba(0, 98, 255, 0.1);
  color: #0062FF;
}

.search-listing-values {
  margin: 0 -0.5rem;
}

.search-listing-suggestion-added {
  margin: 0.5rem;
}

.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: 0;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}

.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.5;
}

.choices[data-type*=select-one] .choices__button:focus, .choices[data-type*=select-one] .choices__button:hover {
  opacity: 1;
}

.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}

.choices[data-type*=select-one]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*=select-one].is-open:after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}

.choices[data-type*=select-one][dir=rtl]:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
  cursor: text;
}

.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin: 0 -4px 0 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}

.choices[data-type*=select-multiple] .choices__button:focus, .choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=text] .choices__button:focus, .choices[data-type*=text] .choices__button:hover {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

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

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}

.choices__list--dropdown.is-active {
  visibility: visible;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir=rtl] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus, .choices__input:focus {
  outline: 0;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

.context-menu-wrapper {
  position: absolute;
  z-index: 10;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
  opacity: 0;
}
.context-menu-wrapper--visible {
  visibility: visible;
  opacity: 1;
}

.context-menu-items {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #F1F1F5;
  min-width: 120px;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 20px 10px rgba(227, 230, 236, 0.18);
  max-height: 17.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.context-menu__item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  border-radius: 8px;
  margin: 0.25rem 0;
}
.context-menu__item:hover {
  color: #0062FF;
}
.context-menu__item:active {
  background-color: rgba(0, 98, 255, 0.1);
  color: #0062FF;
}
.context-menu__item--red:hover {
  color: #FC5A5A;
}
.context-menu__item--red:active {
  color: #FC5A5A;
  background-color: rgba(252, 90, 90, 0.1);
}
.context-menu__item--green:hover {
  color: #82C43C;
}
.context-menu__item--green:active {
  color: #82C43C;
  background-color: rgba(130, 196, 60, 0.1);
}
.context-menu__item--orange:hover {
  color: #FF974A;
}
.context-menu__item--orange:active {
  color: #FF974A;
  background-color: rgba(255, 151, 74, 0.1);
}
.context-menu__item--icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.context-menu__item--icon svg {
  width: 20px;
  height: 20px;
}
.context-menu__item--label {
  color: inherit;
}
.context-menu__item--small {
  margin: 0.2rem 0;
  padding: 0.25rem 0.5rem;
}
.context-menu__item--small .context-menu__item--label {
  font-size: 0.8rem;
}
.context-menu__item--small .context-menu__item--icon {
  margin-right: 5px;
}
.context-menu__item--small .context-menu__item--icon svg {
  width: 16px;
  height: 16px;
}
.context-menu__item--header {
  font-weight: 500;
  font-size: 0.8rem;
}
.context-menu__item--disabled {
  cursor: default;
  color: #92929D !important;
}
.context-menu__item--disabled:active {
  background-color: transparent !important;
  color: #92929D !important;
}
.context-menu-item__header, .context-menu-item__separator {
  cursor: default;
}
.context-menu-item__header:active, .context-menu-item__separator:active {
  background-color: transparent;
}
.context-menu-item__header {
  padding: 0 0.5rem;
}
.context-menu-item__separator {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  background-color: #F1F1F5;
}

.context-menu__item.context-menu__item--color-icon.context-menu__item .context-menu__item--icon, .context-menu__item.context-menu__item--color-icon.context-menu__item--blue .context-menu__item--icon {
  color: #0062FF;
}
.context-menu__item.context-menu__item--color-icon.context-menu__item--green .context-menu__item--icon {
  color: #82C43C;
}
.context-menu__item.context-menu__item--color-icon.context-menu__item--red .context-menu__item--icon {
  color: #FC5A5A;
}
.context-menu__item.context-menu__item--color-icon.context-menu__item--orange .context-menu__item--icon {
  color: #FF974A;
}

.aspect-ratio[data-ratio="1:1"] {
  padding-top: 100%;
}

.aspect-ratio[data-ratio="16:10"] {
  padding-top: 62.5%;
}

.aspect-ratio[data-ratio="16:9"] {
  padding-top: 56.25%;
}

.aspect-ratio[data-ratio="16:5"] {
  padding-top: 31.25%;
}

.aspect-ratio[data-ratio="4:3"] {
  padding-top: 75%;
}

.aspect-ratio[data-ratio="5:2"] {
  padding-top: 40%;
}

.aspect-ratio[data-ratio="5:3"] {
  padding-top: 60%;
}

.aspect-ratio[data-ratio="5:4"] {
  padding-top: 80%;
}

.aspect-ratio[data-ratio="4:3"] {
  padding-top: 75%;
}

.aspect-ratio[data-ratio="3:2"] {
  padding-top: 66.66%;
}

.aspect-ratio[data-ratio="3:1"] {
  padding-top: 33.33%;
}

.aspect-ratio[data-ratio="6:1"] {
  padding-top: 16.66%;
}

.aspect-ratio[data-ratio="2:1"] {
  padding-top: 50%;
}

@media (max-width: 768px) {
  .aspect-ratio[data-m-ratio="1:1"] {
    padding-top: 100%;
  }
  .aspect-ratio[data-m-ratio="16:10"] {
    padding-top: 62.5%;
  }
  .aspect-ratio[data-m-ratio="16:9"] {
    padding-top: 56.25%;
  }
  .aspect-ratio[data-m-ratio="16:5"] {
    padding-top: 31.25%;
  }
  .aspect-ratio[data-m-ratio="4:3"] {
    padding-top: 75%;
  }
  .aspect-ratio[data-m-ratio="5:2"] {
    padding-top: 40%;
  }
  .aspect-ratio[data-m-ratio="5:3"] {
    padding-top: 60%;
  }
  .aspect-ratio[data-m-ratio="5:4"] {
    padding-top: 80%;
  }
  .aspect-ratio[data-m-ratio="4:3"] {
    padding-top: 75%;
  }
  .aspect-ratio[data-m-ratio="6:1"] {
    padding-top: 16.66%;
  }
  .aspect-ratio[data-m-ratio="3:2"] {
    padding-top: 66.66%;
  }
  .aspect-ratio[data-m-ratio="3:1"] {
    padding-top: 33.33%;
  }
  .aspect-ratio[data-m-ratio="2:1"] {
    padding-top: 50%;
  }
}
html {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}

body {
  background: #FAFAFB;
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #696974;
  opacity: 1; /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #696974;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #696974;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #696974;
}

.modal {
  padding: 20px 10px;
  background: #FFFFFF;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  margin-block: 10px;
}

.modal.form {
  padding-bottom: 0px;
}

.modal-header {
  padding: 0 20px;
}

.modal-body {
  padding: 20px;
}

.modal-body + .modal-body {
  padding-top: 0;
}

.modal-footer {
  border-top: 1px solid #e4e3e6;
  padding: 20px 20px 0;
}

.modal-actions {
  display: flex;
  padding: 1rem 20px 0;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  width: 100%;
}

.modal-action-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.modal-action-group--push-right {
  margin-right: auto;
}
.modal-action-group--push-left {
  margin-left: auto;
}

.modal-action-col {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.modal-side {
  border-right: 1px solid #F1F1F5;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.form-builder-section-header {
  padding: 0 20px 15px;
}
.form-builder-section-header-wrapper {
  display: flex;
}

.form-builder-save-button {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: 1rem;
}

.form-builder-section {
  padding: 15px 0 0;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.form-builder-row {
  position: relative;
  width: 100%;
  border: 1px solid transparent;
  border-left-width: 0;
  border-top: 1px solid #D5D5DC;
  padding: 1rem 15px 1.25rem;
  cursor: pointer;
}
.form-builder-row:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
}
.form-builder-row--active {
  border-color: #50B5FF;
  background-color: rgba(80, 181, 255, 0.06);
}
.form-builder-row--active:before {
  background: #50B5FF;
}

.form-builder-form-editor {
  padding-left: 0;
  padding-right: 0;
}

.form-builder-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-builder-row-preview {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
.form-builder-row-preview-readonly {
  color: #92929D;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #92929D;
}
.form-builder-row-preview-options {
  position: relative;
}
.form-builder-row-preview-option {
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
}
.form-builder-row-preview-option:before {
  content: "";
  text-align: center;
}
.form-builder-row-preview-options--dropdown {
  counter-reset: dropdown-counter;
  list-style: none;
}
.form-builder-row-preview-options--dropdown .form-builder-row-preview-option {
  counter-increment: dropdown-counter;
}
.form-builder-row-preview-options--dropdown .form-builder-row-preview-option:before {
  content: counter(dropdown-counter) ".";
}
.form-builder-row-preview-options--dropdown .form-builder-row-preview-option span {
  margin-left: 0.5rem;
}
.form-builder-row-preview-options--radio .form-builder-row-preview-option:before, .form-builder-row-preview-options--option .form-builder-row-preview-option:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #B5B5BE;
  border-radius: 50%;
}
.form-builder-row-preview-options--radio .form-builder-row-preview-option span, .form-builder-row-preview-options--option .form-builder-row-preview-option span {
  margin-left: 0.75rem;
}
.form-builder-row-preview-options--checkbox .form-builder-row-preview-option:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #B5B5BE;
  border-radius: 3px;
}
.form-builder-row-preview-options--checkbox .form-builder-row-preview-option span {
  margin-left: 0.75rem;
}

.form-builder-question-input {
  position: relative;
  flex-grow: 1;
}
.form-builder-question-input:before {
  content: "";
  width: 0;
  height: 2px;
  transition: width 150ms ease-in;
  background: #50B5FF;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.form-builder-question-input--focus:before {
  width: 100%;
}

.form-input-transparent {
  -webkit-appearance: none;
  width: 100%;
  border: none;
  border-bottom: 1px solid #B5B5BE;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 1rem;
  letter-spacing: 0.1px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  color: #44444F;
  font-weight: 400;
  padding: 1rem;
  transition: all 0.25s;
  background-color: #FAFAFB;
  margin: 0;
  line-height: 1;
}
.form-input-transparent:hover, .form-input-transparent:focus, .form-input-transparent:active {
  background: #F1F1F5;
}

.form-input-title {
  font-size: 1.25rem;
  background: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.form-input-title:hover, .form-input-title:active, .form-input-title:focus {
  background: transparent;
}

.form-builder-row--required:after {
  content: "*";
  color: #FC5A5A;
  font-size: 1rem;
  line-height: 1;
}

.form-builder-row-label {
  flex: 1;
  font-size: 0.9375rem;
  display: block;
  font-weight: 400;
  letter-spacing: 0.1px;
  color: #92929D;
}

.form-builder-row-handle {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  cursor: move;
  display: none;
}

.form-builder-row-header:hover .form-builder-row-handle {
  display: inline-flex;
}

.form-builder-row-title {
  font-size: 1.125rem;
  display: block;
  font-weight: 400;
  letter-spacing: 0.1px;
  margin-top: 0.25rem;
  color: #44444F;
}

.form-builder-row-answer {
  font-size: 0.875rem;
  padding: 0.25rem 0;
  color: #696974;
  margin: 0.75rem 0;
  border-bottom: 1px dashed #B5B5BE;
}

.form-builder-add-question-button {
  position: absolute;
  left: 20px;
  top: 20px;
}

.form-builder-question-options .form-input-prefix {
  background: transparent;
  border: none;
}
.form-builder-question-options--dropdown {
  counter-reset: dropdown-counter;
  list-style: none;
}
.form-builder-question-options--dropdown .form-input-prefix {
  counter-increment: dropdown-counter;
  width: 3rem;
  font-size: 1rem;
  font-weight: 400;
}
.form-builder-question-options--dropdown .form-input-prefix:before {
  content: counter(dropdown-counter) ".";
}
.form-builder-question-options--dropdown .form-input-prefix + .form-control {
  padding-left: 3rem;
}
.form-builder-question-options--radio .form-input-prefix:before, .form-builder-question-options--option .form-input-prefix:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #B5B5BE;
  border-radius: 50%;
}
.form-builder-question-options--checkbox .form-input-prefix:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #B5B5BE;
  border-radius: 3px;
}

#application-custom-questions:empty:before {
  text-align: center;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
}
html[lang=tr] #application-custom-questions:empty:before {
  content: "Hiç özel soru yok";
}
html[lang=en] #application-custom-questions:empty:before {
  content: "No custom questions";
}

.button--remove-input {
  margin-left: 10px;
}

[data-option-length="1"] .button--remove-input {
  display: none;
}

.form-builder-question-type-button {
  position: relative;
  margin-bottom: 5px;
  cursor: pointer;
}

.form-builder-question-type-button-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  padding: 0.75rem 1.25rem;
  color: #44444F;
  text-align: center;
}
.form-builder-question-type-button-content > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.form-builder-question-type-button-content > span {
  font-size: 0.9375rem;
}

.form-builder-question-type-button:hover .form-builder-question-type-button-content {
  background: #F1F1F5;
}

.form-builder-control,
.fb_question_option {
  padding-right: 4rem;
}

.remove-option-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 56px;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  border-left: 1px solid #ccc;
  padding: 0 1rem;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-weight: 500;
  color: #111;
}
.remove-option-button:hover {
  color: #fc5a5a;
}
.remove-option-button:active {
  color: #fff;
  background-color: #fc5a5a;
}

.sortable-ghost {
  opacity: 0.5;
}

.sortable-drag {
  background: #fff;
  border-radius: 16px;
}
.sortable-drag .form-builder-row-preview {
  display: none;
}

.form-builder-question {
  border-bottom: 1px solid #ccc;
  padding: 2rem 0;
}

.form-builder-question .form-builder-question-options .form-row:first-child .remove-option-button {
  display: none;
}

.sidebar {
  left: 0;
  top: 0;
  height: 100%;
}
.sidebar-content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 0 0;
}
.sidebar-list {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 20px;
  overflow-y: auto;
}
.sidebar-separator {
  position: relative;
  height: 1px;
  width: 100%;
  padding: 0 20px;
  margin: 1rem 0;
}
.sidebar-separator:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #E2E2EA;
}
.sidebar-group-title {
  padding-left: 20px;
  padding-right: 20px;
}
.sidebar-group-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.01rem;
  line-height: 1;
  color: #B5B5BE;
  font-weight: 500;
}
.sidebar-item {
  border-radius: 10px;
  cursor: pointer;
  margin: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: 0.875rem;
  color: #44444F;
  color: #696974;
}
.sidebar-item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 20px;
}
.sidebar-item .sidebar-icon {
  color: #171725;
}
.sidebar-item .sidebar-icon, .sidebar-item .sidebar-active-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}
.sidebar-item .sidebar-active-icon {
  display: none;
}
.sidebar-item span {
  width: 100%;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.25;
}
.sidebar-item:hover {
  color: #0062FF;
}
.sidebar-item--active {
  color: #FFFFFF;
  background: #0062FF;
}
.sidebar-item--active:hover {
  color: #FFFFFF;
}
.sidebar-item--active .sidebar-icon {
  color: #FFFFFF;
}
.sidebar-item--active .sidebar-active-icon + .sidebar-icon {
  display: none;
}
.sidebar-item--active .sidebar-active-icon {
  display: inline-block;
}
.sidebar-item-action, span + .sidebar-item-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0;
  margin-left: 0.5rem;
}
.sidebar-notification {
  width: 24px;
  height: 24px;
  background: #FC5A5A;
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
}
.sidebar-header {
  padding: 0 20px;
}
.sidebar-header svg,
.sidebar-header img {
  max-width: 100%;
}
.sidebar-footer {
  position: relative;
  width: 100%;
  padding: 20px;
}

.course-info-row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 -1rem;
}
.course-info-col {
  margin: 0.5rem 1rem;
}
.course-info-col p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.course-info-col p svg {
  color: #0062FF;
  margin-right: 0.25rem;
  display: none;
}
.course-info-title {
  color: #0062FF;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .sidebar-header {
    display: none;
  }
  .sidebar-content {
    padding-top: 0;
  }
  .sidebar-list {
    padding: 0 1rem;
  }
  .sidebar-item {
    width: 3rem;
    height: 3rem;
  }
  .sidebar-item a {
    padding: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .sidebar-item .sidebar-icon, .sidebar-item .sidebar-active-icon {
    margin-right: 0;
  }
  .sidebar-item span {
    display: none;
  }
  .sidebar-item--has-notification .sidebar-icon,
.sidebar-item--has-notification .sidebar-active-icon {
    display: none;
  }
  .sidebar-item--has-notification .sidebar-item-action {
    margin-left: 0;
  }
  .sidebar-separator {
    padding: 0;
  }
  .sidebar-header {
    word-break: break-all;
    padding: 0;
  }
  .sidebar-group-title {
    display: none;
  }
  .sidebar-group-title + .sidebar-items {
    margin-top: 1rem;
  }
  .course-info-row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  .course-info-col {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.separator {
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  background: #D5D5DC;
  margin: 1rem 0;
}

.inline-dash {
  margin: 0 0.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 14px;
}
.inline-dash:before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #696974;
  border-radius: 5px;
}

.message-bag {
  padding: 1rem;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
}
.message-bag-icon {
  color: #50B5FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
}
.message-bag-messages {
  margin: auto -0.5rem;
}
.message-bag-message {
  display: block;
  border-radius: 3px;
  color: #44444F;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.4rem 0.5rem;
}
.message-bag--error {
  border-color: #FC5A5A;
}
.message-bag--error .message-bag-message[data-key-name] {
  cursor: pointer;
}
.message-bag--error .message-bag-message[data-key-name]:hover {
  background: rgba(252, 90, 90, 0.1);
}
.message-bag--error .message-bag-message[data-key-name]:active {
  background: rgba(251, 20, 20, 0.1);
}
.message-bag--error .message-bag-icon {
  color: #FC5A5A;
}
.message-bag--success .message-bag-icon {
  color: #82C43C;
}

.state-image {
  max-width: 150px;
  display: block;
  margin: 0 auto;
}

.application-field-list {
  counter-reset: application-question;
}
.application-row {
  padding: 0.25rem 0;
  border-bottom: 1px solid #E2E2EA;
  counter-increment: application-question;
}
.application-question {
  font-weight: 400;
  font-size: 0.9375rem;
  color: #7d7d82;
  margin-bottom: 0.25rem;
}
.application-question:before {
  content: counter(application-question) ".";
  margin-right: 0.25rem;
}
.application-answer {
  white-space: pre-wrap;
  font-size: 0.9375rem;
  color: #171725;
}

.accordion-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.4rem;
  transform: rotate(0);
  transition: transform 200ms ease;
}
.accordion-body {
  display: none;
}
.accordion--active .accordion-header {
  border-bottom: 1px solid #D5D5DC;
  margin-bottom: 20px;
}
.accordion--active .accordion-icon {
  transform: rotate(90deg);
}
.accordion--active .accordion-body {
  display: block;
}

.filter-options-panel {
  display: none;
}

.filter-options--reveal .filter-options-panel {
  display: flex;
}
.filter-options--reveal .toggle-filter-options-button {
  background-color: #dcdce6;
}

.logo {
  max-height: 57px;
}
.logo img {
  display: block;
  margin: 0 auto;
  max-height: inherit;
  max-width: 100%;
}

@media (max-width: 576px) {
  .main-content {
    padding-right: 0;
  }
  .modal-side {
    background: transparent;
    border-right: none;
  }
  .modal-actions {
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .modal-action-group {
    flex-wrap: wrap;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .modal-action-col {
    margin-bottom: 1rem;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .modal-actions .dropdown,
.modal-actions .dropdown-head,
.modal-actions .dropdown-selection,
.modal-actions .dropdown-body {
    width: 100%;
  }
}
.order-log {
  position: relative;
  margin: 10px 0;
}
.order-log-content {
  position: relative;
  max-width: 100%;
  padding: 2px 12px;
  border-radius: 4px;
  background-color: #FFFFFF;
}
.order-log-content:hover {
  background-color: #FAFAFB;
}
.order-log-message {
  font-size: 13px;
  font-weight: 400;
  color: #171725;
  display: block;
  width: 100%;
  text-align: left;
}
.order-log-date {
  font-size: 12px;
  font-weight: 400;
  color: #92929D;
  font-style: italic;
  display: block;
  width: 100%;
  text-align: right;
}
.order-log--success .order-log-content {
  border: 1px solid #82C43C;
  border-left-width: 4px;
}
.order-log--error .order-log-content {
  border: 1px solid #FC5A5A;
  border-left-width: 4px;
}

.log-content {
  position: relative;
  border-bottom: 1px solid #D5D5DC;
  padding-bottom: 10px;
}
.log-message {
  font-size: 12px;
  color: #171725;
}
.log-info {
  font-size: 12px;
  font-style: italic;
  color: #696974;
}
.log-user + .log-date::before {
  content: " - ";
}

.sorting-order-row {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #E2E2EA;
}
.sorting-order-row:first-child {
  border-top: 1px solid #E2E2EA;
}
.sorting-order-handle {
  position: relative;
  display: block;
  min-height: 30px;
  width: 40px;
  cursor: -webkit-grab;
  cursor: grab;
  background-image: url("/assets/img/drag-default.png");
  background-position: center;
  background-size: 18px;
  background-repeat: no-repeat;
  border: 1px solid #F1F1F5;
  border-style: none solid;
}
.sorting-order-content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  min-height: 40px;
}
.sorting-order-label, .sorting-order-label p {
  display: block;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
}

.bank {
  position: relative;
  background-color: #FFFFFF;
  margin-bottom: 1rem;
  border: 1px solid #F1F1F5;
}
.bank-img, .bank-img img {
  max-width: 100%;
  max-height: 100px;
}
.bank-img img {
  display: block;
  margin: 0 auto;
}
.bank-row {
  padding: 0.5rem 0;
  margin: 0;
  border-top: 1px solid #F1F1F5;
  width: 100%;
}

.application-form-hero {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  height: 350px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 40, 48, 0.62);
}

.hero-body {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 96px;
}

.hero-body {
  padding-left: 1rem;
  padding-right: 1rem;
}
.hero-body .title,
.hero-body .subtitle {
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}
.hero-body .subtitle {
  font-weight: 400;
}

.v-center-modal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .hero-body {
    padding-left: 0;
    padding-right: 0;
  }
}
.application-form-modal {
  position: relative;
  margin-top: -72px;
  z-index: 10;
}
.application-form-modal--has-image {
  margin-top: 0;
}

.rounded-hero {
  border-radius: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#price-table {
  counter-reset: price_table;
}
#price-table .price-table-row {
  counter-increment: price_table;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#price-table .price-table-row:nth-child(2n) {
  border-top: 1px solid #B5B5BE;
  border-bottom: 1px solid #B5B5BE;
  background-color: #FAFAFB;
}
#price-table .price-table-row::before {
  content: "#" counter(price_table);
  font-size: 0.75rem;
  font-weight: 500;
}
#price-table .price-table--other {
  display: none;
}
#price-table .price-table-row .hide-other {
  display: none;
}
#price-table .price-table-row .show-other {
  display: block;
}
#price-table .price-table-row.price-table-row--show-other .show-other {
  display: none;
}
#price-table .price-table-row.price-table-row--show-other .hide-other {
  display: block;
}
#price-table .price-table-row.price-table-row--show-other .price-table--other {
  display: block;
}

.border-l {
  border-left: 1px solid #D5D5DC;
}

.border-l-0 {
  border-left: 0;
}

.border-t {
  border-top: 1px solid #D5D5DC;
}

.border-t-0 {
  border-top: 0;
}

.border-r {
  border-right: 1px solid #D5D5DC;
}

.border-r-0 {
  border-right: 0;
}

.border-b {
  border-bottom: 1px solid #D5D5DC;
}

.border-b-0 {
  border-bottom: 0;
}

.border-x {
  border-left: 1px solid #D5D5DC;
  border-right: 1px solid #D5D5DC;
}

.border-x-0 {
  border-left: 0;
  border-right: 0;
}

.border-y {
  border-top: 1px solid #D5D5DC;
  border-bottom: 1px solid #D5D5DC;
}

.border-y-0 {
  border-top: 0;
  border-bottom: 0;
}

@media (min-width: 768px) {
  .border-md-l {
    border-left: 1px solid #D5D5DC;
  }
  .border-md-l-0 {
    border-left: 0;
  }
  .border-md-t {
    border-top: 1px solid #D5D5DC;
  }
  .border-md-t-0 {
    border-top: 0;
  }
  .border-md-r {
    border-right: 1px solid #D5D5DC;
  }
  .border-md-r-0 {
    border-right: 0;
  }
  .border-md-b {
    border-bottom: 1px solid #D5D5DC;
  }
  .border-md-b-0 {
    border-bottom: 0;
  }
  .border-md-x {
    border-left: 1px solid #D5D5DC;
    border-right: 1px solid #D5D5DC;
  }
  .border-md-x-0 {
    border-left: 0;
    border-right: 0;
  }
  .border-md-y {
    border-top: 1px solid #D5D5DC;
    border-bottom: 1px solid #D5D5DC;
  }
  .border-md-y-0 {
    border-top: 0;
    border-bottom: 0;
  }
}
.tippy-box[data-theme~=white] {
  background-color: #FFFFFF;
  color: #171725;
  border: 1px solid #F1F1F5;
  box-shadow: 0 20px 16px rgba(227, 230, 236, 0.2);
  border-bottom-color: #fff;
}

.info-box {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(0, 98, 255, 0.1);
  border: 2px solid #0062FF;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 0.9em;
  line-height: 1;
  color: #0062FF;
}

.choices__list.choices__list--dropdown {
  z-index: 20;
}

.choices__list--multiple .choices__item {
  background-color: #0062FF;
  border-color: #004ecc;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #004ecc;
}

.application-requirement {
  display: none;
}

.is-applicable .application-requirement {
  display: block;
}

.default_question_hidden .show_on_question_hidden {
  display: inline-block;
}
.default_question_hidden .show_on_question_shown {
  display: none;
}

.default_question_shown .show_on_question_shown {
  display: inline-block;
}
.default_question_shown .show_on_question_hidden {
  display: none;
}

.default-question-row .show_on_question_editing {
  display: none;
}

.default-question-row.default_question_editing .show_on_question_editing {
  display: block;
}

.rate {
  float: left;
  height: 46px;
  padding: 0 10px;
}

.rate:not(:checked) > input {
  position: absolute;
  visibility: hidden;
}

.rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}

.rate:not(:checked) > label:before {
  content: "★ ";
}

.rate > input:checked ~ label {
  color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #ffc700;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #ffc700;
}

.custom-add-new {
  cursor: pointer;
  outline: none;
  border: 1px solid white;
  padding: 1rem;
  display: flex;
  align-items: center;
  background-color: rgb(186, 39, 45);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.custom-add-new span {
  font-size: 12px;
  font-weight: 400;
  color: white;
  text-decoration: underline;
  margin-left: 0.25rem;
}
.custom-add-new .iconify {
  font-size: 18px;
  color: white;
}
.custom-add-new :hover {
  border: 1px solid rgb(186, 39, 45);
  background-color: white;
}
.custom-add-new :hover span {
  color: rgb(186, 39, 45);
}
.custom-add-new :hover iconify {
  color: rgb(186, 39, 45);
}
