.rc-modal {
	background: rgba(0, 0, 0 , 25%);
	transition: all 0.3s ease-in;
	pointer-events: none;
	justify-content: center;
    align-items: center;
	position: fixed;
	display: flex;
    z-index: 1003;
	height: 100%;
	width: 100%;
	opacity: 0;
	left: 0;
	top: 0;
}
.rc-modal.on {
	transition: all 0.3s ease-out;
	pointer-events: all;
	opacity: 1;
}
.rc-modal-head * {
    text-align: left!important;
}
.rc-modal-head > div:first-of-type {
	color: rgb(var(--txt-secondary));
	font-size: 12px!important;
	font-weight: 600;
}
.rc-modal-head > div:nth-of-type(2) {
	font-weight: 600;
	font-size: 20px;
}
.rc-modal-body {
	box-shadow: 0px 2px 24px 12px rgb(var(--box-shadow) / 25%);
	background: rgb(var(--bg-primary));
	max-height: calc(100% - 40px);
	max-width: calc(100% - 40px);
	padding: 40px 32px 36px 32px;
    border-radius: 20px;
	position: relative;
	height: auto;
	width: auto;
}
.rc-prompt {
	max-width: 600px;
}
.rc-modal-close {
    border: 1px solid rgb(var(--border-primary));	
	background: rgb(var(--bg-tertiary));
    border-radius: 40px;
	justify-content: center;
    align-items: center;
	position: absolute;
    cursor: pointer;
	display: flex;
	height: 36px;
    right: 20px;
    width: 36px;
	z-index: 2;
    top: 20px;
}
.rc-modal-tools > div div:hover,
.rc-modal-close:hover {
	background: rgb(var(--bg-tertiary-hover));
}
.rc-modal-close:active {
	filter: brightness(var(--bg-tertiary-filter));
}
.rc-modal-content {
	flex-direction: column;
	justify-content: center;
    align-items: center;
	display: flex;
	z-index: 1;
	gap: 20px;
}
.rc-modal-content > div:first-of-type,
.rc-modal-content > div:first-of-type > div:first-of-type {
	text-align: center;
	font-weight: 600;
	font-size: 24px;
}
.rc-modal-content > div:first-of-type > div:nth-of-type(2) {
    font-weight: 400;
    font-size: 16px;
}

.rc-modal-tools {
	border-top: 1px solid rgb(var(--border-primary));
	padding: 12px 0px 0px 0px;
	display: flex;
	gap: 40px;
}
.rc-modal-tools > div {
	display: flex;
	gap: 4px;
}
.rc-modal-tools > div div {
	border: 1px solid rgb(var(--border-primary));
	background: rgb(var(--bg-tertiary));
	margin: 0px 4px 0px 0px;
	justify-content: center;
	border-radius: 20px;
    align-items: center;
	display: flex;
	height: 36px;
	width: 36px;
}
.rc-modal-btns {
	align-items: center;
	margin: inherit;
	display: flex;
	gap: 12px;
}
.rc-modal-btn {
	border: 1px solid rgb(var(--border-primary));
	background: rgb(var(--bg-tertiary));
	border-radius: 40px;
	position: relative;
	text-align: center;
    line-height: 49px;
    cursor: pointer;
	height: 50px;
	width: 220px;
    z-index: 1;
}
.rc-modal-btn:hover {
	background: rgb(var(--bg-tertiary-hover));
}
.rc-modal-btn:active {
	filter: brightness(var(--bg-tertiary-filter));
}
.rc-modal-richtext {
	border: 1px solid rgb(var(--border-primary));
	background: rgb(var(--bg-secondary));
	padding: 4px 0px 10px;
	border-radius: 8px;
	overflow-y: clip;
	height: 160px;
}
.rc-modal-add-circle {
	background: rgb(var(--brand));
	margin: 0px 0px 0px 8px;
    justify-content: center;
    align-items: center;
    position: relative;
	border-radius: 50%;
	transition: 0.3s;
	display: flex;
	height: 22px;
    width: 22px;
    right: 0;
    gap: 4px;
}
.rc-modal-btn rc-icon {
	position: absolute;
	left: 20px;
    top: 15px;
}