
//_Version: 1.0.64

/* ------------------------------- CSS Reset ------------------------------- */

*::before, *::after
{
	box-sizing: border-box;
}

*
{
	margin: 0;
	box-sizing: border-box;
}

html
{
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	
	--8px: 0.5rem;
	--10px: 0.625rem;
	--12px: 0.75rem;
	--14px: 0.875rem;
	--16px: 1rem;
	--18px: 1.125rem;
	--20px: 1.25rem;
	--22px: 1.375rem;
	--23px: 1.437rem;
	--24px: 1.5rem;
	--26px: 1.625rem;
	--28px: 1.75rem;
	--32px: 2rem;
}

body
{
	width:100%;
	scroll-behavior: smooth;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	//font-family: Verdana;
	font-family: "Inter", sans-serif;
	background-color: #eff4f9;
}


img, picture, video, canvas, svg
{
	display: block;
	max-width: 100%;
}

input, button, textarea, select
{
	font: inherit;
}

textarea
{
	width: 100%;
	min-height: 12vw;
	border-radius: 6px;
	background-color: #fff;
	border: 1px solid #00000029;
	outline: none;
	resize: vertical;
	padding: 5px;
	margin-bottom: 15px;
}

p, h1, h2, h3, h4, h5, h6
{
	overflow-wrap: break-word;
}

p
{
	text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6
{
	text-wrap: balance;
}

h1
{
	font-size: var(--32px);
	padding: 10px;
	font-weight: normal;
}
h2
{
	font-size: var(--26px);
	padding: 10px;
	font-weight: normal;
}
h3
{
	font-size: var(--23px);
	padding: 10px;
	font-weight: normal;
}
h4
{
	font-size: var(--22px);
	padding: 10px;
	font-weight: normal;
}
h5
{
	font-size: var(--20px);
	padding: 10px;
	font-weight: normal;
}
h6
{
	font-size: var(--16px);
	padding: 10px;
	font-weight: normal;
}
p
{
	padding: 10px;
}

@media (max-width: 767px)
{
	h1
	{
		font-size: var(--24px);
		padding: 10px;
		font-weight: normal;
	}
	h2
	{
		font-size: var(--22px);
		padding: 10px;
		font-weight: normal;
	}
	h3
	{
		font-size: var(--20px);
		padding: 10px;
		font-weight: normal;
	}
	h4
	{
		font-size: var(--19px);
		padding: 10px;
		font-weight: normal;
	}
	h5
	{
		font-size: var(--18px);
		padding: 10px;
		font-weight: normal;
	}
	h6
	{
		font-size: var(--16px);
		padding: 10px;
		font-weight: normal;
	}
}

/* ------------------------------- General Style ------------------------------- */
.max-width
{
	max-width: 1600px;
	margin: 0 auto;
}
.width-100
{
	width: 100%;
}
.height-100
{
	height: 100%
}

.dk-width50-mb-width100
{
	width: 50%;
}

@media (max-width: 767px)
{
	.max-width
	{
		max-width: 100%;
	}
	.dk-width50-mb-width100
	{
		width: 100%;
	}
}

.hidden
{
	display: none !important;
}

.tiny-text
{
	font-size: var(--14px);
}

i
{
	font-size: var(--18px);
}

.show-only-on-mobile
{
	display: none;
}
@media (max-width: 767px)
{
	.show-only-on-mobile
	{
		display: flex !important;
	}
}


.hide-on-mobile-table
{
	display: table-row;
}
@media (max-width: 767px)
{
	.hide-on-mobile-table
	{
		display: none !important;
	}
}
.hide-on-mobile
{
	display: block;
}
@media (max-width: 767px)
{
	.hide-on-mobile
	{
		display: none !important;
	}
}

.spacing-top,
.dk-spacing-top-mb-no-spacing-top
{
	padding-top: 195px !important;
}
@media (max-width: 767px)
{
	.spacing-top
	{
		padding-top: 225px !important;
	}
	.dk-spacing-top-mb-no-spacing-top
	{
		padding-top: 10px !important;
	}
}

.clickable
{
	cursor: pointer;
}

div.curtain
{
	position: fixed !important;
	width: 40%;
	height: 35%;
	background-color: #eff4f9;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 0.5rem !important;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}

.media-fit-cover
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.T
{
	transition-delay:0.5s;
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
}

/* ------------------------------- Dialog (pop-up) Style ------------------------------- */

dialog
{
	margin: auto;
	border: none;
	border-radius: 0.5rem;
	padding: 0px;
}
dialog::backdrop
{
	background-color: rgba(0,0,0,0.4);
	backdrop-filter: blur(2px);
}
dialog[open]
{
	animation: fadeIn 0.3s ease;
}
@keyframes fadeIn
{
	from
	{
		opacity: 0;
		transform: translateY(-10px);
	}
	to
	{
		opacity: 1;
		transform: translateY(0); 
	}
}

dialog #dialog-confirm-message,
dialog #dialog-inform-message
{
	padding:30px;
}
dialog #dialog-confirm-buttons-container
{
	display: flex;
	justify-content: space-between;
	background-color: #e8e8e8;
	border-radius: 0px 0px 0.5rem 0.5rem;
	padding: 15px 30px;
}
dialog #dialog-inform-button-container
{
	display: flex;
	justify-content: center;
	background-color: #e8e8e8;
	border-radius: 0px 0px 0.5rem 0.5rem;
	padding: 15px 30px;
}

@media (max-width: 767px)
{
	dialog
	{
		max-width: 90% !important;
	}
}

/* ------------------------------- Grid Layouts Style ------------------------------- */
.grid-auto-fit
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	height: 100%;
}

.grid-layout-panel-3fr-1fr
{
	display: grid;
	grid-template-columns: 3fr 1fr;
	height: 100%;
}
.grid-layout-panel-5col-2row
{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
}
.grid-layout-panel-2col-2row
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
}

.grid-horizontal-center
{
	justify-items: center;
}
.grid-vertical-center
{
	align-items: center;
}
.grid-centralizing
{
	justify-items: center;
	align-items: center;
}


@media (max-width: 767px)
{
	.grid-auto-fit
	{
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	.grid-layout-panel-3fr-1fr,
	.grid-layout-panel-2col-2row
	{
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.grid-layout-panel-5col-2row
	{
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
		justify-items: center;
	}
}


/* ------------------------------- Flex Style ------------------------------- */

.flexrow
{
	display: flex;
	flex-direction: row;
}
.flexcolumn
{
	display: flex;
	flex-direction: column;
}
.dk-flexrow-mb-flexcolumn,
.dk-flexrow-mb-flexcolumn-reverse
{
	display: flex;
	flex-direction: row;
}
.dk-flexcolumn-mb-flexrow
{
	display: flex;
	flex-direction: column;
}

.flex-space-start
{
	justify-content: flex-start;
}
.flex-space-between
{
	justify-content: space-between;
}
.flex-space-around
{
	justify-content: space-around;
}
.flex-space-evenly
{
	justify-content: space-evenly;
}
.flex-space-end
{
	justify-content: end;
}

.flex-horizontal-center
{
	justify-content: center;
}
.flex-vertical-center
{
	align-items: center;
}
.flex-centralizing
{
	justify-content: center;
	align-items: center;
}

.flex-wrap
{
	flex-wrap: wrap;
}
.flex-basis
{
	flex-basis: 0;
}

.flex-reverse
{
	flex-direction: row-reverse;
}

@media (max-width: 767px)
{
	.dk-flexrow-mb-flexcolumn
	{
		flex-direction: column;
	}
	.dk-flexrow-mb-flexcolumn-reverse
	{
		flex-direction: column-reverse;
	}
	.dk-flexcolumn-mb-flexrow
	{
		flex-direction: row;
	}
	
	.flex-reverse
	{
		flex-direction: column-reverse;
	}
}

/* ------------------------------- Spacing Style ------------------------------- */
.main-horizontal-margin
{
	margin: 0px 32px;
}

.main-vertical-padding
{
	padding: 32px 0px;
}

.padding-zero
{
	padding: 0;
}

.gap-large
{
	gap: 30px;
}
.gap-medium
{
	gap: 20px;
}
.gap-small
{
	gap: 10px;
}

.line-gap-large
{
	line-height: 3rem;
}
.line-gap-medium
{
	line-height: 2rem;
}
.line-gap-small
{
	line-height: 1.5rem;
}

ul.text-list
{
	padding: 0px 10px 10px 40px;
}

@media (max-width: 767px)
{
	.main-horizontal-margin
	{
		margin: 0px 18px;
	}
}

/* ------------------------------- Text Style ------------------------------- */
.text-overlay-container
{
	position: relative;
}
.text-overlay
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.text-font-bold
{
	font-weight: bold;
}
.text-uppercase
{
	text-transform: uppercase;
}
.text-underlined
{
	text-decoration-line: underline;
	text-decoration-color: #A1885C;
	text-decoration-thickness: 4px;
	text-underline-offset: 12px;
}
.text-left
{
	text-align: left !important;
}
.text-right
{
	text-align: right !important;
}
.text-center
{
	text-align: center !important;
}

.text-justify
{
	text-align: justify;
}

a
{
	color: #fff;
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}

a.none
{
	color: inherit;
	text-decoration: none;
	background: none;
}

a.primary
{
	color: #000;
	text-decoration: none;
}
a.primary:hover
{
	text-decoration: underline;
}

a.secondary
{
	color: #A1885C;
	text-decoration: underline;
}
a.secondary:hover
{
	text-decoration: none;
}

a.circle-close
{
	border-radius: 50%;
	padding: 10px;
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	text-decoration: none;
	align-items: center;
}
a.circle-close.primary
{
	background-color: #fff;
	color: #2A2D34;
}
a.circle-close.primary:hover
{
	background-color: #F2F5F9;
	color: #2A2D34;
	text-decoration: none;
}
a.circle-close.secondary
{
	background-color: #F2F5F9;
	color: #2A2D34;
}

a.validation-warning-link
{
	color: #EF0D0A;
	text-decoration: underline;
}

a.primary-box
{
	background-color: #fff;
	border-radius: 8px;
	color: #000;
}
a.primary-box:hover
{
	background-color: #1C2B3F;
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
}

/* ------------------------------- Colors Style ------------------------------- */
.primary-color
{
	color: #1C2B3F;
}
.secondary-color
{
	color: #A1885C;
}

.base-pack-color
{
	background-color: #eff4f9;
	color: #000;
}
.primary-pack-color
{
	background-color: #1C2B3F;
	color: #fff;
}
.secondary-pack-color
{
	background-color: #A1885C;
	color: #fff;
}
.tertiary-pack-color
{
	background-color: #fff;
	color: #000;
}

.status-positive
{
	color: #008000;
}
.status-negative
{
	color: #EF0D0A;
}

/* ------------------------------- Button Style ------------------------------- */
button:disabled
{
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}
button:disabled:hover
{
	background-color: inherit;
}

.btn 
{
	cursor: pointer;
}
.btn-min-width
{
	min-width: 200px;
}

.btn-primary
{
	color: #fff;
	background-color: #1C2B3F;
	border: 1px solid;
	border-color: #1C2B3F;
}
.btn-primary:hover
{
	background-color: #1f589e;
	border-color: #1f589e;
}

.btn-secondary 
{
	color: #fff;
	background-color: #A1885C;
	border: 1px solid;
	border-color: #A1885C;
}
.btn-secondary:hover
{
	background-color: #c3a56f;
	border-color: #c3a56f;
}

.btn-tertiary
{
	color: #000;
	border: 1px solid #2A2D3480;
	background-color: #fff;
}
.btn-tertiary:hover
{
	border: 1px solid #fff;
}

.btn-quaternary
{
	background-color: unset;
	color: #fff;
	padding: 5px;
	border: 1px solid;
	border-color: rgba(255,255,255,0.5);
}
.btn-quaternary:hover
{
	border: 1px solid #fff;
	background-color: #A1885C;
	border-color: #A1885C;
}

.btn-large
{
	padding: 0px 20px;
	font-size: var(--18px);
	height: 44px;
}
.btn-medium 
{
	padding: 0px 20px;
	font-size: var(--14px);
	height: 44px;
}
.btn-small
{
	padding: 0px 20px;
	font-size: var(--14px);
	height: 37px;
}

.btn-unstyled
{
	padding: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	color: unset;
}
.btn-not-selected
{
}
.btn-not-selected:hover
{
	text-decoration-line: underline;
	text-decoration-color: #A1885C;
	text-decoration-thickness: 4px;
	text-underline-offset: 12px;
}
.btn-selected
{
	text-decoration-line: underline;
	text-decoration-color: #A1885C;
	text-decoration-thickness: 4px;
	text-underline-offset: 12px;
	pointer-events: none;
}
.btn-selected:hover
{
}


@media (max-width: 767px)
{
	.btn-large
	{
		font-size: var(--18px);
	}
	.btn-medium, .btn-small
	{
		font-size: var(--14px);
	}
}

/* ------------------------------- Carousel Style (depedends on JS)------------------------------- */
.carousel-wrapper
{
	position: relative;
	display: flex;
	align-items: center;
}
.carousel-container
{
	overflow-x: auto;
	width: 100%;
}
.carousel-btn
{
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: #fff;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	cursor: pointer;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.carousel-btn:hover
{
	background-color: rgba(0, 0, 0, 0.8);
}
.carousel-btn.left
{
	position: absolute;
	left: 0;
}
.carousel-btn.right
{
	position: absolute;
	right: 0;
}

/* ------------------------------- Rotative Content (Carousel Only CSS Behavior) Style ------------------------------- */
.rotative-content
{
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 100%;
	overflow: scroll;
	scrollbar-width: none;
	
	scroll-snap-type: x mandatory;
	
	/* the same as  .rotative-content li {...} */
	> li
	{
		scroll-snap-align: center;
	}
	
	@media(prefers-reduced-motion: no-preference)
	{
		scroll-behavior: smooth;
	}
	
	anchor-name: --rotative-content;
	scroll-marker-group: after;
	
	list-style: none;
	padding: 0;
	height: 100%;
	border-radius: 0.5rem !important;
}

/*--- Scroll Buttons ---*/
.rotative-content::scroll-button(*)
{
	position: fixed;
	position-anchor: --rotative-content;
	
	border-radius: 100%;
	height: 40px;
	width: 40px;
	border: none;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-weight: bold;
}
.rotative-content::scroll-button(*):hover
{
	background-color: rgba(0, 0, 0, 0.8);
	cursor: pointer;
}
.rotative-content::scroll-button(left)
{
	content: "\276E";
	position-area: center left;
	margin-right: -50px;
}
.rotative-content::scroll-button(right)
{
	content: "\276F";
	position-area: center right;
	margin-left: -50px;
}

/*--- Scroll Markers ---*/
.rotative-content::scroll-marker-group
{
	display: flex;
	justify-content: center;
	gap: 5px;
	height: 48px;
	margin-block-start: -3rem;
	//background-color: rgba(0, 0, 0, 0.3);
	border-radius: 0px 0px 4px 4px;
}
.rotative-content li::scroll-marker
{
	content: "";
	aspect-ratio: 1;
	border: 2px solid rgba(255,255,255,0.5);
	border-radius: 100%;
	width: 15px;
	height: 15px;
	margin-top: 14px;
}
.rotative-content li::scroll-marker:hover,
.rotative-content li::scroll-marker:focus-visible
{
	background-color: rgba(255,255,255,0.9);
}

.rotative-content li::scroll-marker:target-current
{
	background-color: rgba(255,255,255,0.9);
}

/* ------------------------------- Border Style ------------------------------- */
.border
{
	border: 0.6px solid #00000029;
}
.border-bottom
{
	border-bottom: 0.6px solid #00000029;
}
.border-top
{
	border-top: 0.6px solid #00000029;
}
.border-right
{
	border-right: 0.6px solid #00000029;
}
.border-left
{
	border-left: 0.6px solid #00000029;
}
.border-radius-large
{
	border-radius: 0.75rem !important;
}
.border-radius-medium
{
	/* 0.5rem is equals 8px because html has font-size 16px for default */
	border-radius: 0.5rem !important;
}
.border-radius-small
{
	border-radius: 0.25rem !important;
}
.divider
{
	border: none;
	width: 0.6px;
	background-color: #00000029;
}

/* ------------------------------- Table Style ------------------------------- */
table.zebra tr:nth-child(even)
{
	background-color: #FFFFFF;
}

table.zebra tr:nth-child(odd)
{
	background-color: #F2F5F9;
}

/* ------------------------------- Form Style ------------------------------- */
.default-form
{
	padding: 20px;
}
form.search
{
	width: 100%;
	display: inline-flex;
}

input[type='checkbox']
{
	margin-bottom: 0;
	width: 22px;
	height: 22px;
	margin-right: 8px;
	pointer-events: auto;
}
input[type='checkbox']:checked
{
	accent-color: #1C2B3F;
}
input[type="radio"]
{
	width: auto;
	margin-bottom: 0px;
}
input, select
{
	width: 100%;
	height: 43px;
	border-radius: 6px;
	background-color: #fff;
	border: 1px solid #00000029;
	outline: none;
	padding: 5px;
	margin-bottom: 15px;
}
input:disabled, select:disabled
{
	background-color: #f0f0f0;
	border: 1px solid #f0f0f0;
}

button.btn-form-left
{
	float:left;
}


.radio-item
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: background 0.2s;
}
.radio-item:hover
{
	background-color: #f9f9f9;
}

.radio-item.primary-color
{
	background-color: #1C2B3F;
	color: #fff;
}
.radio-item.primary-color:hover
{
	background-color: #1C2B3F;
	color: #fff;
}
.radio-item.tertiary-pack-color:hover
{
	background-color: #fff;
}

label.radio-item:has(input[type="radio"]:checked)
{
	background-color: #efefef;
}
label.radio-item.primary-color:has(input[type="radio"]:checked)
{
	background-color: #1C2B3F;
	color: #fff;
}
label.radio-item.tertiary-pack-color:has(input[type="radio"]:checked)
{
	background-color: #fff;
}


.radio-left
{
	display: flex;
	align-items: center;
	gap: 8px;
}
.radio-input
{
	margin: 0;
}


.small-form-container
{
	max-width: 30%;
}
@media (max-width: 767px)
{
	.small-form-container
	{
		max-width: 100%;
	}
}

.password-container
{
	position: relative;
}

.password-container .toggle-password
{
	position: absolute;
	right: 10px;
	top: 30px;
	cursor: pointer;
	font-size: 18px;
	color: #555;
	user-select: none;
	border: none;
	background: none;
}


/* ------------------------------- Dropdowns Style ------------------------------- */
.dropdown-container
{
	position: relative;
	display: inline-block;
	z-index: 1001;
}
.dropdown
{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	cursor: pointer;
}

.dropdown-layout-clean
{
	border: none;
}
.dropdown-layout-border:hover
{
	border-color: #000 !important;
}
.dropdown-layout-border
{
	border: 0.6px solid #00000029;
}
.dropdown-layout-clean:hover
{
	color: #fff !important;
	background-color: #1C2B3F !important;
}

.dropdown-large
{
	width: 190px;
	height: 37px;
}
.dropdown-small
{
	width: 147px;
	height: 37px;
}

.dropdown-content
{
	display: none;
	position: absolute;
	max-height: 50vh;
	overflow: auto;
	z-index: 1001;
}

.dropdown-content-large
{
	width: 55vw;
	margin-top: 14px;
	overflow-x: auto;
}
.dropdown-content-small
{
	width: 147px;
	margin-top: 10px;
	padding: 10px;
}
.dropdown-content-fit
{
	width: 100%;
	margin-top: 10px;
	padding: 10px;
}

@media (max-width: 767px)
{
	.dropdown-small
	{
		width: 36px;
		height: 37px;
	}
}

/* ------------------------------- Overlay Style ------------------------------- */

#overlay-body
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	display: none;
	
	/*under header tag*/
	z-index: 998;
}

#overlay-header
{
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.45);
	display: none;
	
	/* above header content */
	z-index: 1000;
	pointer-events: auto;
}

/* ------------------------------- Footer Style ------------------------------- */
.footer-container
{
	padding: 30px 80px;
}
.footer-item
{
	flex: 1;
}
@media (max-width: 767px)
{
	.footer-container
	{
		padding: 10px 20px;
	}
}

/* ------------------------------- Accordion Style ------------------------------- */
.accordion-label
{
	padding: 10px;
	cursor: pointer;
}
.accordion-content
{
	display: none;
	padding: 10px;
}

.accordion-label:has(input[type="radio"]:checked) + .accordion-content
{
	display: block;
}



/* ------------------------------- Animated Style ------------------------------- */
.dots-loading span
{
	animation: dots 1.5s infinite;
	opacity: 0.3;
}

.dots-loading span:nth-child(1)
{
	animation-delay: 0s;
}
.dots-loading span:nth-child(2)
{
	animation-delay: 0.3s;
}
.dots-loading span:nth-child(3)
{
	animation-delay: 0.6s;
}

@keyframes dots
{
	0%, 80%, 100%
	{
		opacity: 0.3;
	}
	40%
	{
		opacity: 1;
	}
}

/* ------------------------------- Progressbar Style ------------------------------- */
.progressbar
{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	width: 100%;
	margin: 20px auto;
	position: relative;
}

.progressbar::before
{
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	height: 4px;
	width: 100%;
	background-color: #ddd;
	z-index: 0;
}
.progressbar::after
{
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	height: 4px;
	width: 0%;
	background: #0A3261;
	z-index: 0;
	transition: width 0.3s ease;
}
.progressbar-11::after
{
	width: 11%;
}
.progressbar-22::after
{
	width: 22%;
}
.progressbar-33::after
{
	width: 33%;
}
.progressbar-44::after
{
	width: 44%;
}
.progressbar-56::after
{
	width: 56%;
}
.progressbar-67::after
{
	width: 67%;
}
.progressbar-78::after
{
	width: 78%;
}
.progressbar-89::after
{
	width: 89%;
}
.progressbar-100::after
{
	width: 100%;
}


.step
{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
	flex: 1;
}

.step-circle
{
	background-color: #ddd;
	color: #666;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	font-weight: bold;
	transition: 0.3s;
}

.step-circle.active
{
	background-color: #0A3261;
	color: #fff;
}
.step-circle.completed
{
	background-color: #0A3261;
	color: #fff;
}

.step-label
{
	color: #666;
	font-weight: bold;
	margin-top: 8px;
	text-align: center;
	max-width: 80px;
}
.step-label.active
{
	color: #0A3261;
}

@media (max-width: 767px)
{
	.progressbar
	{
		flex-direction: column;
		align-items: center;
		
	}
	.progressbar::before
	{
		display: none;
	}
	.progressbar::after
	{
		display: none;
	}
	
	.step
	{
    	padding-bottom: 20px;
	}
}



















