body, html{
	height: 100%;
	width: 100%;
}
div.blank-container{
	background-image: url(../assets/images/bg.png);
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
div.form-container{
	position: fixed;
    right: -350px;
    bottom: 150px;
    background-color: var(--grid-module-background);
    backdrop-filter: blur(40px);
    padding: var(--gird-module-padding);
    transition: 1s all;
    border: 1px solid var(--grid-module-border-color);
    border-top-left-radius: var(--grid-module-border-radius);
    border-bottom-left-radius: var(--grid-module-border-radius);
}
div.tab{
	position: absolute;
    background-color: rgba(255, 255, 255, .3);
    border: 1px solid var(--grid-module-border-color);
	border-right: none;
    backdrop-filter: blur(40px);
    width: 35px;
    height: 70px;
    left: -35px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
	border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
    bottom: 40px;
}
div.tab:hover{
	background-color: rgba(255, 255, 255, .5) !important;
}
div.options{
	/* width: 300px;
	border-radius: 5px;
	outline: none;
	background-color: #2d2d61;
	border: none;
	color: #fff;
	padding: 10px;
	font-size: 18px; */
	display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
div.selected-option{
	border: 1px solid var(--grid-module-border-color);
    background-color: var(--grid-module-background);
    padding: 10px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}
div.selected-option::after {
    content: "▼";
    display: inline-block;
    margin-left: 5px;
    font-size: 0.8em;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}
div[name="selected_method"]{
	display: none;
    border: 1px solid var(--grid-module-border-color);
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    background-color: rgba(0, 0, 0, .6);
    user-select: none;
}
div[name="selected_method"] option{
	padding: 10px;
    cursor: pointer;
}
div[name="selected_method"] option:hover {
    background-color: var(--grid-module-background);
}
div.form-container form > textarea{
    border-radius: 12px;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    font-size: 18px;
    margin: 10px 0px;
    resize: none;
    width: 300px;
    height: 300px;
    display: block;
    outline: none;
    background-color: var(--grid-module-background);
    border: 1px solid var(--grid-module-border-color);
}
div.form-container form > button{
	display: block;
	width: 300px;
	border-radius: 5px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 18px;
	color: #fff;
	background-color: #6360DE;
	border: none;
}
.hidden-form{
	animation: showMultiviewForm 1s !important;
	animation-fill-mode: forwards !important;
}

.msg-box{
	position: absolute;
	background-color: #2d2d61;
	border-radius: 5px;
	left: 10px;
	top: -100px;
	padding: 5px;
	font-size: 16px;
	font-weight: normal;
	display: block;
	-webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 1px 0px rgba(0,0,0,1);
	box-shadow: 0px 0px 1px 0px rgba(0,0,0,1);
	display: none;
}
.msg-box span{
	color: #675cd7;
	font-weight: bold;
}
.extras_section{
	/* position: absolute;
	bottom: var(--gird-module-padding);
	right: var(--gird-module-padding); */
	border: 1px solid var(--grid-module-border-color);
	background-color: var(--grid-module-background);
	padding: var(--gird-module-padding);
	/* border-radius: var(--grid-module-border-radius); */
	width: 100%;
	text-align: center;
	font-weight: 700;
}
@keyframes showMultiviewForm{
    from {right: -330px;}
    to {right: 0px;}
}