#dvoti-toast-container {
	 position: fixed;
	 top: 14px;
	 left: 50%;
	 transform: translateX(-50%);
	 z-index: 99999;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 pointer-events: none;
	 width: max-content;
	 max-width: calc(100vw - 28px);
}
 .dvoti-toast {
	 display: flex;
	 align-items: center;
	 gap: 10px;
	 width: 370px;
	 max-width: calc(100vw - 28px);
	 min-height: 50px;
	 padding: 10px 12px 10px 10px;
	 margin-bottom: 8px;
	 background: #111110;
	 border: 1px solid rgba(255, 255, 255, 0.08);
	 border-radius: 10px;
	 box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 32px rgba(0, 0, 0, 0.60), 0 2px 8px rgba(0, 0, 0, 0.40);
	 pointer-events: all;
	 cursor: default;
	 position: relative;
	 overflow: hidden;
	 opacity: 0;
	 transform: translateY(-54px) scale(0.9);
	 transform-origin: top center;
	 transition: transform 0.42s cubic-bezier(0.34, 1.5, 0.64, 1), opacity 0.25s ease, height 0.32s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.32s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.26s ease, padding-bottom 0.26s ease;
	 will-change: transform, opacity;
}
 .dvoti-toast--show {
	 transform: translateY(0) scale(1);
	 opacity: 1;
}
 .dvoti-toast--removing {
	 transform: translateY(-16px) scale(0.9) !important;
	 opacity: 0 !important;
	 pointer-events: none;
	 overflow: hidden;
	 transition: transform 0.26s cubic-bezier(0.4, 0, 1, 1), opacity 0.2s ease, height 0.36s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.36s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.26s ease, padding-bottom 0.26s ease !important;
}
 .dvoti-toast__icon-wrap {
	 position: relative;
	 width: 34px;
	 height: 34px;
	 flex-shrink: 0;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .dvoti-toast__ring {
	 position: absolute;
	 inset: -4px;
	 width: calc(100% + 8px);
	 height: calc(100% + 8px);
	 transform: rotate(-90deg);
	 pointer-events: none;
}
 .dvoti-toast__ring-track {
	 fill: none;
	 stroke-width: 1.8;
}
 .dvoti-toast__ring-fill {
	 fill: none;
	 stroke-width: 1.8;
	 stroke-linecap: round;
	 stroke-dasharray: 131.9;
	 stroke-dashoffset: 0;
	 animation: dvoti-ring-drain var(--dvoti-dur, 5000ms) linear forwards;
}
 .dvoti-toast__icon {
	 width: 34px;
	 height: 34px;
	 border-radius: 8px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 position: relative;
	 z-index: 1;
	 flex-shrink: 0;
}
 .dvoti-toast__icon svg {
	 width: 14px;
	 height: 14px;
	 flex-shrink: 0;
}
 .dvoti-toast__spinner {
	 width: 14px;
	 height: 14px;
	 border: 2px solid rgba(255, 255, 255, 0.13);
	 border-top-color: currentColor;
	 border-radius: 50%;
	 animation: dvoti-spin 0.75s linear infinite;
	 flex-shrink: 0;
}
 .dvoti-toast__body {
	 flex: 1;
	 min-width: 0;
	 display: flex;
	 flex-direction: column;
	 gap: 1px;
}
 .dvoti-toast__title {
	 font-family: 'Cormorant Garamond', 'DM Sans', Georgia, serif;
	 font-weight: 600;
	 font-size: 13px;
	 color: #eeeef2;
	 line-height: 1.3;
	 letter-spacing: -0.01em;
	 white-space: nowrap;
	 overflow: hidden;
	 text-overflow: ellipsis;
}
 .dvoti-toast__sub {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11.5px;
	 color: #9898a8;
	 line-height: 1.4;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 2;
	 overflow: hidden;
}
 .dvoti-toast__footer {
	 display: flex;
	 align-items: center;
	 gap: 6px;
	 margin-top: 5px;
	 flex-wrap: wrap;
}
 .dvoti-toast__action {
	 display: inline-flex;
	 align-items: center;
	 gap: 3px;
	 padding: 3px 9px;
	 border-radius: 6px;
	 border: 1px solid rgba(255, 255, 255, 0.13);
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11px;
	 font-weight: 500;
	 color: #eeeef2;
	 background: transparent;
	 cursor: pointer;
	 white-space: nowrap;
	 transition: background 0.15s;
}
 .dvoti-toast__action:hover {
	 background: rgba(255, 255, 255, 0.10);
}
 .dvoti-toast__viewmore {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11px;
	 color: #555562;
	 cursor: pointer;
	 background: none;
	 border: none;
	 padding: 0;
	 text-decoration: underline;
	 text-decoration-style: dotted;
	 text-underline-offset: 2px;
	 transition: color 0.15s;
}
 .dvoti-toast__viewmore:hover {
	 color: #9898a8;
}
 .dvoti-toast__close {
	 width: 20px;
	 height: 20px;
	 border-radius: 5px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border: none;
	 background: transparent;
	 color: #555562;
	 cursor: pointer;
	 flex-shrink: 0;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast__close svg {
	 width: 10px;
	 height: 10px;
}
 .dvoti-toast__close:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 @keyframes dvoti-ring-drain {
	 from {
		 stroke-dashoffset: 0;
	}
	 to {
		 stroke-dashoffset: 131.9;
	}
}
 @keyframes dvoti-spin {
	 to {
		 transform: rotate(360deg);
	}
}
 .dvoti-toast-modal-overlay {
	 position: fixed;
	 inset: 0;
	 z-index: 100001;
	 background: rgba(0, 0, 0, 0.72);
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 padding: 24px;
	 opacity: 0;
	 animation: dvoti-modal-fadein 0.22s ease forwards;
}
 @keyframes dvoti-modal-fadein {
	 to {
		 opacity: 1;
	}
}
 .dvoti-toast-modal__box {
	 background: #161614;
	 border: 1px solid rgba(255, 255, 255, 0.08);
	 border-radius: 14px;
	 box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
	 padding: 22px 24px;
	 max-width: 400px;
	 width: 100%;
	 position: relative;
	 transform: scale(0.94) translateY(8px);
	 animation: dvoti-modal-slidein 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
 @keyframes dvoti-modal-slidein {
	 to {
		 transform: scale(1) translateY(0);
	}
}
 .dvoti-toast-modal__icon {
	 width: 40px;
	 height: 40px;
	 border-radius: 10px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 margin-bottom: 14px;
}
 .dvoti-toast-modal__title {
	 font-family: 'Cormorant Garamond', 'DM Sans', Georgia, serif;
	 font-size: 15px;
	 font-weight: 700;
	 color: #eeeef2;
	 letter-spacing: -0.01em;
	 margin-bottom: 6px;
}
 .dvoti-toast-modal__body {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 13px;
	 color: #9898a8;
	 line-height: 1.55;
}
 .dvoti-toast-modal__actions {
	 display: flex;
	 gap: 8px;
	 margin-top: 18px;
	 justify-content: flex-end;
}
 .dvoti-toast-modal__btn {
	 padding: 7px 16px;
	 border-radius: 8px;
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 12.5px;
	 font-weight: 500;
	 cursor: pointer;
	 border: 1px solid rgba(255, 255, 255, 0.13);
	 background: rgba(255, 255, 255, 0.05);
	 color: #9898a8;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast-modal__btn:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 .dvoti-toast-modal__btn--primary {
	 background: var(--dvoti-m-clr);
	 color: #fff;
	 border-color: transparent;
	 opacity: 0.92;
}
 .dvoti-toast-modal__btn--primary:hover {
	 opacity: 1;
}
 .dvoti-toast-modal__close {
	 position: absolute;
	 top: 14px;
	 right: 14px;
	 width: 26px;
	 height: 26px;
	 border-radius: 6px;
	 border: none;
	 background: transparent;
	 color: #555562;
	 cursor: pointer;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast-modal__close svg {
	 width: 12px;
	 height: 12px;
}
 .dvoti-toast-modal__close:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 @media (max-width: 560px) {
	 .dvoti-toast {
		 width: calc(100vw - 28px);
	}
}
 #dvoti-toast-container {
	 position: fixed;
	 top: 14px;
	 left: 50%;
	 transform: translateX(-50%);
	 z-index: 99999;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 pointer-events: none;
	 width: max-content;
	 max-width: calc(100vw - 28px);
}
 .dvoti-toast {
	 display: flex;
	 align-items: center;
	 gap: 10px;
	 width: 370px;
	 max-width: calc(100vw - 28px);
	 min-height: 50px;
	 padding: 10px 12px 10px 10px;
	 margin-bottom: 8px;
	 background: #111110;
	 border: 1px solid rgba(255, 255, 255, 0.08);
	 border-radius: 10px;
	 box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 32px rgba(0, 0, 0, 0.60), 0 2px 8px rgba(0, 0, 0, 0.40);
	 pointer-events: all;
	 cursor: default;
	 position: relative;
	 overflow: hidden;
	 opacity: 0;
	 transform: translateY(-54px) scale(0.9);
	 transform-origin: top center;
	 transition: transform 0.42s cubic-bezier(0.34, 1.5, 0.64, 1), opacity 0.25s ease, height 0.32s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.32s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.26s ease, padding-bottom 0.26s ease;
	 will-change: transform, opacity;
}
 .dvoti-toast--show {
	 transform: translateY(0) scale(1);
	 opacity: 1;
}
 .dvoti-toast--removing {
	 transform: translateY(-16px) scale(0.9) !important;
	 opacity: 0 !important;
	 pointer-events: none;
	 overflow: hidden;
	 transition: transform 0.26s cubic-bezier(0.4, 0, 1, 1), opacity 0.2s ease, height 0.36s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.36s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.26s ease, padding-bottom 0.26s ease !important;
}
 .dvoti-toast__icon-wrap {
	 position: relative;
	 width: 34px;
	 height: 34px;
	 flex-shrink: 0;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .dvoti-toast__ring {
	 position: absolute;
	 inset: -4px;
	 width: calc(100% + 8px);
	 height: calc(100% + 8px);
	 transform: rotate(-90deg);
	 pointer-events: none;
}
 .dvoti-toast__ring-track {
	 fill: none;
	 stroke-width: 1.8;
}
 .dvoti-toast__ring-fill {
	 fill: none;
	 stroke-width: 1.8;
	 stroke-linecap: round;
	 stroke-dasharray: 131.9;
	 stroke-dashoffset: 0;
	 animation: dvoti-ring-drain var(--dvoti-dur, 5000ms) linear forwards;
}
 .dvoti-toast__icon {
	 width: 34px;
	 height: 34px;
	 border-radius: 8px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 position: relative;
	 z-index: 1;
	 flex-shrink: 0;
}
 .dvoti-toast__icon svg {
	 width: 14px;
	 height: 14px;
	 flex-shrink: 0;
}
 .dvoti-toast__spinner {
	 width: 14px;
	 height: 14px;
	 border: 2px solid rgba(255, 255, 255, 0.13);
	 border-top-color: currentColor;
	 border-radius: 50%;
	 animation: dvoti-spin 0.75s linear infinite;
	 flex-shrink: 0;
}
 .dvoti-toast__body {
	 flex: 1;
	 min-width: 0;
	 display: flex;
	 flex-direction: column;
	 gap: 1px;
}
 .dvoti-toast__title {
	 font-family: 'Cormorant Garamond', 'DM Sans', Georgia, serif;
	 font-weight: 600;
	 font-size: 13px;
	 color: #eeeef2;
	 line-height: 1.3;
	 letter-spacing: -0.01em;
	 white-space: nowrap;
	 overflow: hidden;
	 text-overflow: ellipsis;
}
 .dvoti-toast__sub {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11.5px;
	 color: #9898a8;
	 line-height: 1.4;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 2;
	 overflow: hidden;
}
 .dvoti-toast__footer {
	 display: flex;
	 align-items: center;
	 gap: 6px;
	 margin-top: 5px;
	 flex-wrap: wrap;
}
 .dvoti-toast__action {
	 display: inline-flex;
	 align-items: center;
	 gap: 3px;
	 padding: 3px 9px;
	 border-radius: 6px;
	 border: 1px solid rgba(255, 255, 255, 0.13);
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11px;
	 font-weight: 500;
	 color: #eeeef2;
	 background: transparent;
	 cursor: pointer;
	 white-space: nowrap;
	 transition: background 0.15s;
}
 .dvoti-toast__action:hover {
	 background: rgba(255, 255, 255, 0.10);
}
 .dvoti-toast__viewmore {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11px;
	 color: #555562;
	 cursor: pointer;
	 background: none;
	 border: none;
	 padding: 0;
	 text-decoration: underline;
	 text-decoration-style: dotted;
	 text-underline-offset: 2px;
	 transition: color 0.15s;
}
 .dvoti-toast__viewmore:hover {
	 color: #9898a8;
}
 .dvoti-toast__close {
	 width: 20px;
	 height: 20px;
	 border-radius: 5px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border: none;
	 background: transparent;
	 color: #555562;
	 cursor: pointer;
	 flex-shrink: 0;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast__close svg {
	 width: 10px;
	 height: 10px;
}
 .dvoti-toast__close:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 @keyframes dvoti-ring-drain {
	 from {
		 stroke-dashoffset: 0;
	}
	 to {
		 stroke-dashoffset: 131.9;
	}
}
 @keyframes dvoti-spin {
	 to {
		 transform: rotate(360deg);
	}
}
 .dvoti-toast-modal-overlay {
	 position: fixed;
	 inset: 0;
	 z-index: 100001;
	 background: rgba(0, 0, 0, 0.72);
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 padding: 24px;
	 opacity: 0;
	 animation: dvoti-modal-fadein 0.22s ease forwards;
}
 @keyframes dvoti-modal-fadein {
	 to {
		 opacity: 1;
	}
}
 .dvoti-toast-modal__box {
	 background: #161614;
	 border: 1px solid rgba(255, 255, 255, 0.08);
	 border-radius: 14px;
	 box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
	 padding: 22px 24px;
	 max-width: 400px;
	 width: 100%;
	 position: relative;
	 transform: scale(0.94) translateY(8px);
	 animation: dvoti-modal-slidein 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
 @keyframes dvoti-modal-slidein {
	 to {
		 transform: scale(1) translateY(0);
	}
}
 .dvoti-toast-modal__icon {
	 width: 40px;
	 height: 40px;
	 border-radius: 10px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 margin-bottom: 14px;
}
 .dvoti-toast-modal__title {
	 font-family: 'Cormorant Garamond', 'DM Sans', Georgia, serif;
	 font-size: 15px;
	 font-weight: 700;
	 color: #eeeef2;
	 letter-spacing: -0.01em;
	 margin-bottom: 6px;
}
 .dvoti-toast-modal__body {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 13px;
	 color: #9898a8;
	 line-height: 1.55;
}
 .dvoti-toast-modal__actions {
	 display: flex;
	 gap: 8px;
	 margin-top: 18px;
	 justify-content: flex-end;
}
 .dvoti-toast-modal__btn {
	 padding: 7px 16px;
	 border-radius: 8px;
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 12.5px;
	 font-weight: 500;
	 cursor: pointer;
	 border: 1px solid rgba(255, 255, 255, 0.13);
	 background: rgba(255, 255, 255, 0.05);
	 color: #9898a8;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast-modal__btn:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 .dvoti-toast-modal__btn--primary {
	 background: var(--dvoti-m-clr);
	 color: #fff;
	 border-color: transparent;
	 opacity: 0.92;
}
 .dvoti-toast-modal__btn--primary:hover {
	 opacity: 1;
}
 .dvoti-toast-modal__close {
	 position: absolute;
	 top: 14px;
	 right: 14px;
	 width: 26px;
	 height: 26px;
	 border-radius: 6px;
	 border: none;
	 background: transparent;
	 color: #555562;
	 cursor: pointer;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast-modal__close svg {
	 width: 12px;
	 height: 12px;
}
 .dvoti-toast-modal__close:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 @media (max-width: 560px) {
	 .dvoti-toast {
		 width: calc(100vw - 28px);
	}
}
 #dvoti-toast-container {
	 position: fixed;
	 top: 14px;
	 left: 50%;
	 transform: translateX(-50%);
	 z-index: 99999;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 pointer-events: none;
	 width: max-content;
	 max-width: calc(100vw - 28px);
}
 .dvoti-toast {
	 display: flex;
	 align-items: center;
	 gap: 10px;
	 width: 370px;
	 max-width: calc(100vw - 28px);
	 min-height: 50px;
	 padding: 10px 12px 10px 10px;
	 margin-bottom: 8px;
	 background: #111110;
	 border: 1px solid rgba(255, 255, 255, 0.08);
	 border-radius: 10px;
	 box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 32px rgba(0, 0, 0, 0.60), 0 2px 8px rgba(0, 0, 0, 0.40);
	 pointer-events: all;
	 cursor: default;
	 position: relative;
	 overflow: hidden;
	 opacity: 0;
	 transform: translateY(-54px) scale(0.9);
	 transform-origin: top center;
	 transition: transform 0.42s cubic-bezier(0.34, 1.5, 0.64, 1), opacity 0.25s ease, height 0.32s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.32s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.26s ease, padding-bottom 0.26s ease;
	 will-change: transform, opacity;
}
 .dvoti-toast--show {
	 transform: translateY(0) scale(1);
	 opacity: 1;
}
 .dvoti-toast--removing {
	 transform: translateY(-16px) scale(0.9) !important;
	 opacity: 0 !important;
	 pointer-events: none;
	 overflow: hidden;
	 transition: transform 0.26s cubic-bezier(0.4, 0, 1, 1), opacity 0.2s ease, height 0.36s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.36s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.26s ease, padding-bottom 0.26s ease !important;
}
 .dvoti-toast__icon-wrap {
	 position: relative;
	 width: 34px;
	 height: 34px;
	 flex-shrink: 0;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .dvoti-toast__ring {
	 position: absolute;
	 inset: -4px;
	 width: calc(100% + 8px);
	 height: calc(100% + 8px);
	 transform: rotate(-90deg);
	 pointer-events: none;
}
 .dvoti-toast__ring-track {
	 fill: none;
	 stroke-width: 1.8;
}
 .dvoti-toast__ring-fill {
	 fill: none;
	 stroke-width: 1.8;
	 stroke-linecap: round;
	 stroke-dasharray: 131.9;
	 stroke-dashoffset: 0;
	 animation: dvoti-ring-drain var(--dvoti-dur, 5000ms) linear forwards;
}
 .dvoti-toast__icon {
	 width: 34px;
	 height: 34px;
	 border-radius: 8px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 position: relative;
	 z-index: 1;
	 flex-shrink: 0;
}
 .dvoti-toast__icon svg {
	 width: 14px;
	 height: 14px;
	 flex-shrink: 0;
}
 .dvoti-toast__spinner {
	 width: 14px;
	 height: 14px;
	 border: 2px solid rgba(255, 255, 255, 0.13);
	 border-top-color: currentColor;
	 border-radius: 50%;
	 animation: dvoti-spin 0.75s linear infinite;
	 flex-shrink: 0;
}
 .dvoti-toast__body {
	 flex: 1;
	 min-width: 0;
	 display: flex;
	 flex-direction: column;
	 gap: 1px;
}
 .dvoti-toast__title {
	 font-family: 'Cormorant Garamond', 'DM Sans', Georgia, serif;
	 font-weight: 600;
	 font-size: 13px;
	 color: #eeeef2;
	 line-height: 1.3;
	 letter-spacing: -0.01em;
	 white-space: nowrap;
	 overflow: hidden;
	 text-overflow: ellipsis;
}
 .dvoti-toast__sub {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11.5px;
	 color: #9898a8;
	 line-height: 1.4;
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 2;
	 overflow: hidden;
}
 .dvoti-toast__footer {
	 display: flex;
	 align-items: center;
	 gap: 6px;
	 margin-top: 5px;
	 flex-wrap: wrap;
}
 .dvoti-toast__action {
	 display: inline-flex;
	 align-items: center;
	 gap: 3px;
	 padding: 3px 9px;
	 border-radius: 6px;
	 border: 1px solid rgba(255, 255, 255, 0.13);
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11px;
	 font-weight: 500;
	 color: #eeeef2;
	 background: transparent;
	 cursor: pointer;
	 white-space: nowrap;
	 transition: background 0.15s;
}
 .dvoti-toast__action:hover {
	 background: rgba(255, 255, 255, 0.10);
}
 .dvoti-toast__viewmore {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 11px;
	 color: #555562;
	 cursor: pointer;
	 background: none;
	 border: none;
	 padding: 0;
	 text-decoration: underline;
	 text-decoration-style: dotted;
	 text-underline-offset: 2px;
	 transition: color 0.15s;
}
 .dvoti-toast__viewmore:hover {
	 color: #9898a8;
}
 .dvoti-toast__close {
	 width: 20px;
	 height: 20px;
	 border-radius: 5px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border: none;
	 background: transparent;
	 color: #555562;
	 cursor: pointer;
	 flex-shrink: 0;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast__close svg {
	 width: 10px;
	 height: 10px;
}
 .dvoti-toast__close:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 @keyframes dvoti-ring-drain {
	 from {
		 stroke-dashoffset: 0;
	}
	 to {
		 stroke-dashoffset: 131.9;
	}
}
 @keyframes dvoti-spin {
	 to {
		 transform: rotate(360deg);
	}
}
 .dvoti-toast-modal-overlay {
	 position: fixed;
	 inset: 0;
	 z-index: 100001;
	 background: rgba(0, 0, 0, 0.72);
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 padding: 24px;
	 opacity: 0;
	 animation: dvoti-modal-fadein 0.22s ease forwards;
}
 @keyframes dvoti-modal-fadein {
	 to {
		 opacity: 1;
	}
}
 .dvoti-toast-modal__box {
	 background: #161614;
	 border: 1px solid rgba(255, 255, 255, 0.08);
	 border-radius: 14px;
	 box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
	 padding: 22px 24px;
	 max-width: 400px;
	 width: 100%;
	 position: relative;
	 transform: scale(0.94) translateY(8px);
	 animation: dvoti-modal-slidein 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
 @keyframes dvoti-modal-slidein {
	 to {
		 transform: scale(1) translateY(0);
	}
}
 .dvoti-toast-modal__icon {
	 width: 40px;
	 height: 40px;
	 border-radius: 10px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 margin-bottom: 14px;
}
 .dvoti-toast-modal__title {
	 font-family: 'Cormorant Garamond', 'DM Sans', Georgia, serif;
	 font-size: 15px;
	 font-weight: 700;
	 color: #eeeef2;
	 letter-spacing: -0.01em;
	 margin-bottom: 6px;
}
 .dvoti-toast-modal__body {
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 13px;
	 color: #9898a8;
	 line-height: 1.55;
}
 .dvoti-toast-modal__actions {
	 display: flex;
	 gap: 8px;
	 margin-top: 18px;
	 justify-content: flex-end;
}
 .dvoti-toast-modal__btn {
	 padding: 7px 16px;
	 border-radius: 8px;
	 font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	 font-size: 12.5px;
	 font-weight: 500;
	 cursor: pointer;
	 border: 1px solid rgba(255, 255, 255, 0.13);
	 background: rgba(255, 255, 255, 0.05);
	 color: #9898a8;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast-modal__btn:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 .dvoti-toast-modal__btn--primary {
	 background: var(--dvoti-m-clr);
	 color: #fff;
	 border-color: transparent;
	 opacity: 0.92;
}
 .dvoti-toast-modal__btn--primary:hover {
	 opacity: 1;
}
 .dvoti-toast-modal__close {
	 position: absolute;
	 top: 14px;
	 right: 14px;
	 width: 26px;
	 height: 26px;
	 border-radius: 6px;
	 border: none;
	 background: transparent;
	 color: #555562;
	 cursor: pointer;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 transition: background 0.15s, color 0.15s;
}
 .dvoti-toast-modal__close svg {
	 width: 12px;
	 height: 12px;
}
 .dvoti-toast-modal__close:hover {
	 background: rgba(255, 255, 255, 0.10);
	 color: #eeeef2;
}
 @media (max-width: 560px) {
	 .dvoti-toast {
		 width: calc(100vw - 28px);
	}
}
 