:root{
	--color-bg: #F9F9F9;
	--color-Orange: #F0881F;
	--color-yellow: #FFD531;
	--color-green: #88BA91;
	--color-teal: #077B98;
	--color-skyblue: #5AB3DC;
	--color-red: #E02954;
	--color-dark-gray: #666666;
	--color-light-gray: #CCCCCC;
	--theme-color-hue: 200;
	--theme-color-saturation: 50%;
	--theme-color-dark:
	hsla(var(--theme-color-hue),var(--theme-color-saturation),4%,100%);
	--theme-color-mid:
	hsla(var(--theme-color-hue),var(--theme-color-saturation),13%,100%);
	--theme-color-light:
	hsla(var(--theme-color-hue),var(--theme-color-saturation),25%,100%);
	--theme-color-highlight:
	hsla(var(--theme-color-hue),var(--theme-color-saturation),70%,100%);
	--theme-color-text-mid:
	hsla(var(--theme-color-hue),0%,60%,100%);
	--theme-color-text-light:
	hsla(var(--theme-color-hue),0%,80%,100%);
	--theme-color-text-dark:
	hsla(var(--theme-color-hue),0%,40%,100%);
	--theme-border-radius: 5px;
	--theme-box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 30%);
	--theme-padding: 30px;
	--theme-margin-bottom: 30px;
}
html,body{
	height: 100%;
	width: 100%;
}
html[lang="ar"] body, .ar{
	direction: rtl;
    unicode-bidi: bidi-override;
}
body{
	padding: 0px;
	margin: 0px;
	/* background-color: var(--theme-color-dark); */
	/* color: var(--theme-color-text-light); */
	font-size: 14px;
	box-sizing: border-box;
}
.number {
    direction: ltr;
}
.h10{
	height: 10px;
}
.h30{
	height: 30px;
}
a.button{
	display: block;
	position: fixed;
	bottom: 15px;
	left: 12px;
	padding: 20px;
	background-color: var(--color-skyblue);
	border-radius: 10px;
	width: calc(100% - 24px);
	text-align: center;
	color: white;
	font-weight: bold;
	text-decoration: none;
}
/* Account deletion page */

/* Hide the counter from number input */
body.account-deletion input[type="number"]::-webkit-inner-spin-button,
body.account-deletion input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
body.account-deletion .logo{
	width: 90px;
}
body.account-deletion .divider-text {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
body.account-deletion .divider-text span {
    padding: 7px;
    font-size: 12px;
    position: relative;   
    z-index: 2;
}
body.account-deletion .divider-text:after {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #ddd;
    top: 55%;
    left: 0;
    z-index: 1;
}
body.account-deletion .form-group{
	border: 1px solid #eee;
	background-color: white;
	border-radius: 5px;
	margin-bottom: 10px;
}
body.account-deletion .form-group:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-form-control-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}
body.account-deletion .form-group .input-group-prepend{

}
body.account-deletion .form-group .input-group-text{
	border: none;
	background-color: unset;
	height: 100%;
}
body.account-deletion input, .form-control{
	border: none !important;
    background-color: unset !important;
}
body.account-deletion input[type="submit"]{
	width: 100%;
	background-color: var(--color-skyblue) !important;
}
input.form-control:focus {
    color: unset;
    background-color: unset;
    border-color: unset;
    outline: 0;
    box-shadow: none;
}
