/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 .dw-app-toggle-button	span {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 14px;
	}
:root {
	--dw-color-black: #1f1e1f;
	--dw-color-white: #ffffff;
	--dw-color-carbon: #333333;
	--dw-color-wharf-view: #677380;
	--dw-color-aconite-violet: #686bf5;
	--dw-color-cold-morning: #E5E5E5;
	--dw-color-white-solid: #F4F6FB;
	--dw-color-extraordinary-abundance-of-tinge: #E6E6E6;
	--dw-color-slimy-green: #1DCD27;
	--dw-color-azure-mist: #F0FFF4;
	--dw-color-lustrous-yellow: #E2D77A;

	--dw-app-footer-height: 48px;
	--dw-header-height-closed: 56px;
}

/*
 * RESET
 * ---------------------------------------------------------
 */

.dw-app,
.dw-app * {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

/*
 * ATOMS
 * ---------------------------------------------------------
 */

.dw-text-center {
	text-align: center;
}

.dw-color-fade {
	color: var(--dw-color-wharf-view);
}

.dw-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--dw-color-carbon);
	margin: 12px 0;
}

.dw-description {
	font-size: 14px;
	font-weight: 500;
	margin: 12px 0;
}

.dw-alert {
	background-color: var(--dw-color-white-solid);
	color: var(--dw-color-black);
	font-size: 14px;
	border-radius: 8px;
	text-align: center;
	padding: 12px 28px;
	line-height: 1.7142857143;
	margin: 12px 0;
}

.dw-link {
	color: var(--dw-color-aconite-violet);
	text-decoration: underline;
}

.dw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 12px 28px;
	font-size: 14px;
	line-height: 1.7142857143;
	background-color: var(--dw-color-black);
	color: var(--dw-color-white);
	border-radius: 8px;
	cursor: pointer;
}

.dw-grid {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.dw-grid__body {
	flex: 1;
}

.dw-action {
	all: unset;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.dw-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
	margin-top: 80px;
}

/*
 * APP
 * ---------------------------------------------------------
 */

.dw-app {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7142857143;
	position: fixed;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 999999;
}

.dw-app * {
	font-family: inherit;
}

.dw-app a:not([class]) {
	color: var(--dw-color-aconite-violet);
	text-decoration: underline;
}

.dw-app img {
	max-width: 100%;
	height: auto;
	display: block;
}

.dw-app[data-position='right'] {
	right: 20px;
	align-items: flex-end;
}

.dw-app[data-position='left'] {
	left: 20px;
	align-items: flex-start;
}

.dw-app[data-state='closed'] {
	/* Add styles if needed */
}

.dw-app-toggle-button {
	padding: 0 24px;
	min-width: 64px;
	height: 64px;
	border-radius: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--dw-color-white);
	background-color: var(--dw-color-black);
	font-size: 17px;
	font-weight: 500;
}

.dw-app-toggle-button > span:nth-child(2) {
	display: none;
}

.dw-app-toggle-button[data-state='open'] > span:nth-child(1) {
	display: none;
}

.dw-app-toggle-button[data-state='open'] > span:nth-child(2) {
	display: block;
}

.dw-app-container {
	width: 360px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background-color: var(--dw-color-white);
	color: var(--dw-color-black);
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.1);
}

.dw-app-container[data-state='open'] {
	display: block;
}

.dw-app-container[data-state='closed'] {
	display: none;
}

.dw-app-body {
	padding: 16px 16px calc(16px + var(--dw-app-footer-height)) 16px;
	height: 600px;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.dw-app-body::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.dw-app-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: var(--dw-app-footer-height);
	background-color: var(--dw-color-white);
	box-shadow: 0 -5px 12px rgba(0, 0, 0, 0.1);
}

.dw-app-screen {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.dw-app-screen[data-state='closed'] {
	display: none;
}

.dw-header {
	background-color: var(--dw-color-black);
	color: var(--dw-color-white);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transition: all 0.1s;
	display: grid;
	grid-auto-flow: column;
	align-items: start;
	gap: 10px;
	justify-content: start;
}

.dw-header__title {
	transition: all 0.1s;
}

.dw-header__title span {
	opacity: 0;
}

.dw-header[data-state='closed'] .dw-header__title span {
	opacity: 1;
}

.dw-header__headline {
	font-weight: 500;
	font-size: 16px;
}

.dw-header__close {
	all: unset;
	position: absolute;
	top: 15px;
	right: 12px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.dw-header__close img {
	width: 8px;
	height: 8px;
}

.dw-header__back {
	all: unset;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.dw-header[data-state='open'] {
	z-index: 5;
	padding: 34px 24px 0 24px;
	height: 160px;
}

.dw-header[data-state='open'] .dw-header__title {
	font-weight: 600;
	font-size: 28px;
}

.dw-header[data-state='closed'] {
	z-index: 15;
	padding: 15px 16px;
	height: var(--dw-header-height-closed);
}

.dw-header[data-state='closed'] .dw-header__title {
	font-weight: 600;
	font-size: 14px;
}

.dw-header[data-state='closed'] .dw-header__headline {
	display: none;
}

.dw-body {
	flex: 1;
	margin-top: 104px;
	z-index: 10;
	position: relative;
	height: calc(100% - 104px);
}

[data-app-screen-header="no-scroll"] + .dw-body {
	margin-top: var(--dw-header-height-closed);
	height: calc(100% - var(--dw-header-height-closed));
}

.dw-island {
	padding: 24px;
	border-radius: 8px;
	background-color: var(--dw-color-white);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.dw-island__history {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr min-content;
}

.dw-island + .dw-island {
	margin-top: 16px;
}

.dw-menu {
	text-align: left;
}

.dw-menu-divider {
	margin: 10px 0;
	border-top: 1px solid var(--dw-color-cold-morning);
}

a.dw-menu-item {
	cursor: pointer;
}

.dw-menu-item {
	display: flex;
	justify-content: start;
	gap: 20px;
	align-items: center;
	text-align: left;
	padding: 10px 0;
	width: 100%;
}

.dw-menu-item img {
	display: block;
}

.dw-menu-item__header {
	flex: 0 0 30px;
	width: 30px;
	max-width: 30px;
}

.dw-menu-item__body {
	flex: 1;
	display: grid;
}

.dw-menu-item__description {
	color: var(--dw-color-wharf-view);
}

.dw-menu_your-rewards .dw-menu-item {
	margin: -10px 0;
}

.dw-copy {
	padding: 12px 8px 12px 16px;
	border-radius: 8px;
	display: grid;
	grid-template-columns: 1fr min-content;
	align-items: center;
	gap: 12px;
}

.dw-copy__field {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--dw-color-wharf-view);
	font-size: 14px;
}

.dw-copy__button {
	all: unset;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

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

.dw-copy[data-state="initial"] {
	border: 1px solid var(--dw-color-extraordinary-abundance-of-tinge);
}

.dw-copy[data-state="initial"] .dw-copy__success {
	display: none;
}

.dw-copy[data-state="copied"] {
	border: 1px solid var(--dw-color-slimy-green);
	color: var(--dw-color-slimy-green);
	background-color: var(--dw-color-azure-mist);
}

.dw-copy[data-state="copied"] .dw-copy__field,
.dw-copy[data-state="copied"] .dw-copy__button {
	display: none;
}

.dw-share {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 32px;
}

.dw-share-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--dw-color-black);
	text-decoration: none;
	font-size: 14px;
	padding: 12px 10px;
	border-radius: 8px;
}

.dw-share-item:hover {
	background-color: var(--dw-color-white-solid);
}

.dw-share-item__icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dw-share-item__icon img {
	width: 100%;
}

.dw-history {
	display: grid;
	gap: 24px;
}

.dw-history-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	font-size: 14px;
}

.dw-redeem__discount {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.dw-redeem__coupon {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dw-redeem .dw-menu-item {
	padding: 0;
}

.dw-slider {
	width: 100%;
}

.dw-slider.noUi-target {
	box-shadow: none;
	height: 4px;
	background: var(--dw-color-cold-morning);
	border-radius: 2px;
}

.noUi-connects {
	background: var(--dw-color-cold-morning);
}

.noUi-connect {
	background: var(--dw-color-lustrous-yellow);
}

.noUi-handle {
	width: 16px;
	height: 16px;
	top: -6px;
	right: -8px;
	background: var(--dw-color-lustrous-yellow);
	box-shadow: none;
	border-radius: 50%;
}

.noUi-handle::before,
.noUi-handle::after {
	display: none;
}
.custom-login-form {
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.custom-login-form form {
    display: flex;
    flex-direction: column;
}

.custom-login-form p {
    margin-bottom: 15px;
}

.custom-login-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.custom-login-form input[type="email"],
.custom-login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.custom-login-form input[type="button"] {
    padding: 10px;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-login-form input[type="button"]:hover {
    background-color: #005a8c;
}

.custom-login-form .message_submit {
    margin-bottom: 15px;
    color: #ff0000;
}
.custom-registration-form {
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.custom-registration-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.custom-registration-form form {
    display: flex;
    flex-direction: column;
}

.custom-registration-form p {
    margin-bottom: 15px;
}

.custom-registration-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.custom-registration-form input[type="text"],
.custom-registration-form input[type="email"],
.custom-registration-form input[type="tel"],
.custom-registration-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.custom-registration-form input[type="button"] {
    padding: 10px;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-registration-form input[type="button"]:hover {
    background-color: #005a8c;
}


.custom-login-form{
    border: none;
    border-radius: 10px;
    padding: 20px 30px;
    font-family: 'Inter';
}

.custom-login-form .message_submit.success{
    text-align: center;
    background: #11b900;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 0;
}
.custom-login-form .message_submit.error{
    text-align: center;
    background: #ff0000;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 0;
}
.custom-login-form label {
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: capitalize;
    color: #474747;
    font-size: 16px;
    font-weight: 600;
}
.custom-login-form input[type="email"], .custom-login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #f2f2f2;
    border-radius: 3px;
    box-sizing: border-box;
    border-radius: 7px;
    background: #f7f7f7;
    outline: none;
    color: #838383;
}
.custom-login-form input[type="email"]:focus, .custom-login-form input[type="password"]:focus{
    background: #fdfdfd;
    border: 2px solid;
    border-color: #21759b;
}
.custom-login-form input[type="button"]{
    color: #fff;
    background-color: #0073aa;
    border: none;
    width: 100%;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    text-transform: uppercase;
}


.custom-registration-form{
    border: none;
    border-radius: 10px;
    padding: 20px 30px;
    font-family: 'Inter';
}
.custom-registration-form h2{
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Inter';
}
.custom-registration-form label {
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: capitalize;
    color: #474747;
    font-size: 16px;
    font-weight: 600;
}
.custom-registration-form input[type="email"], 
.custom-registration-form input[type="password"],
.custom-registration-form input[type="text"],
.custom-registration-form input[type="tel"]{
    width: 100%;
    padding: 10px;
    margin-top: 5px;
  border: 2px solid #f2f2f2;
    border-radius: 3px;
    box-sizing: border-box;
    border-radius: 7px;
    background: #f7f7f7;
    outline: none;
    color: #838383;
}
.custom-registration-form input[type="email"]:focus, .custom-registration-form input[type="password"]:focus,
.custom-registration-form input[type="text"]:focus,
.custom-registration-form input[type="tel"]:focus{
    background: #fdfdfd;
    border: 2px solid;
    border-color: #21759b;
}
.custom-registration-form input[type="button"]{
    color: #fff;
    background-color: #0073aa;
    border: none;
    width: 100%;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    text-transform: uppercase;
}
