* {
  box-sizing: border-box;
}

body{
	margin: 0;
	font-family: the-seasons, sans-serif; /*'Oxanium', serif;*/
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #fff;
	color: #000;
}

a{
	text-decoration: none;
	color: #737373;
}

a:hover{
	color: #ceb88b;
}

::selection{
	color: none;
	background: #bbb;
}

input::selection{
	color: none;
	background: #bbb;
}

textarea::selection{
	color: none;
	background: #bbb;
}

form{
	display: unset;
	margin: 0;
	margin-block-end: 0;
}

/* width */
::-webkit-scrollbar{
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track{
  background: #291752;
}

/* Handle */
::-webkit-scrollbar-thumb{
  background: #ceb88b;
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover{
  background: #737373;
}

.button{
	padding: 8px 32px;
	border-radius: 2px;
	box-shadow: black 1px 3px 3px;
	color: white;
	cursor: pointer;
	background-image: linear-gradient(0deg, #180061, #7925ff);
	width: fit-content;
}

.button:hover{
	background-image: linear-gradient(0deg, #3f00d7, #3c009b);
}

.greybutton{
	padding: 4px 16px;
	border-radius: 6px;
	box-shadow: black 1px 3px 3px;
	color: white;
	cursor: pointer;
	background-color: #aaa;
	background-image: linear-gradient(0deg,#545454,#bdbdbd);
	width: fit-content;
}

.title{
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	font-size: 32pt;
	background-color: #111;
	padding: 5px;
	border-radius: 20px;
}

.TextBox{
	width: -webkit-fill-available;
	font-size: 14pt;
	margin: 6px 0px;
	padding: 4px;
	border-radius: 10px;
	border: black solid 1px;
	outline: none;
}

.TextBox:focus{
	border: blue solid 1px;
}

.TextBox::selection{
	color: none;
	background: #ff69b4;
}

.NumberBox{
	width: 5vw;
	font-size: 14pt;
	margin: 6px 0px;
	padding: 4px;
	border-radius: 10px;
	border: black solid 1px;
	outline: none;
}

.NumberBox:focus{
	border: blue solid 1px;
}

.RangeBox{
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
  border-radius: 200px;
}

/* Mouse-over effects */
.RangeBox:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.RangeBox::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #f4f; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 100%;
}

.RangeBox::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #f4f; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 100%;
}

.link{
	color: #db0000;
	cursor: pointer;
}

.link:hover{
	color: #f11;
}

.GateConstraint{
	max-height: 100vh;
	overflow: hidden;
}

.OverlayContainer{
	position: absolute;
	z-index: 100000;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #0009;
	backdrop-filter: blur(4px);
}

.OverlayInnerContainer{
	display: flex;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

.OverlayContentContainer{
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px;
	box-shadow: black 2px 2px 8px;
}

.OverlayLogo{
	height: 200px;
}

.OverlayHeader{
	font-size: 18pt;
	padding-bottom: 10px;
}

.OverlayText{
	padding-bottom: 20px;
	text-align: center;
}

.OverlayButtonContainer{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
}

.ContentContainer{
	min-height: 100vh;
}

.CenterConstraint{
	width: 1140px;
	margin: 0 auto;
}

.TopBar{
	background-image: linear-gradient(45deg,#910000,#fff0);
	background-color: #111;
	box-shadow: black 0px 0px 8px;
	position: fixed;
	width: 100vw;
	z-index: 9999;
	height: 64px;
}

.TopBarShadow{
	height: 64px;
}

.TopLogo{
	width: fit-content;
	margin-left: 10px;
}

.TopLogoPic{
	height: 54px;
}

.ExchangeIcon{
	height: 54px;
}

.CreateIcon{
	height: 32px;
	cursor: pointer;
}

.TopBarLeft{
	width: 30%;
}

.TopBarMiddle{
	width: 20%;
	position: relative;
	padding: 0px 50px;
}

.STextBox{
	width: 100%;
	font-size: 16pt;
	padding: 1px 6px;
	border: none;
	outline: none;
}

.SearchBoxContainer{
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	position: relative;
}

.SearchBoxInnerContainer{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1px 6px;
	border-radius: 10px;
	border: black solid 1px;
	outline: none;
	/* background-color: var(--white-bg); */
	background-color: white;
}

.SearchMenu{
	position: absolute;
	z-index: 1;
	width: 100%;
	background-color: #111;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	box-shadow: black 0px 4px 4px;
	overflow-y: clip;
	display: none;
}

.SearchMenuItem{
	padding: 4px 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.SearchMenuItem:hover{
	background-color: #544949;
}

.SearchMenuItemDP{
	background-position: center;
	background-size: cover;
	width: 25px;
	height: 25px;
	background-color: blueviolet;
	border-radius: 200px;
}

.SearchMenuItemName{
	padding: 0px 8px;
}

.SearchMenuText{
	width: fit-content;
	margin: 8px auto;
}

.SearchIcon{
	cursor: pointer;
}

/* User Bar */
.UserBar{
	padding-top: 4px;
	padding-bottom: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;;
}

.UserBarContainer{
	display: flex;
	align-items: center;
	width: 30%;
	justify-content: flex-end;
}

.UserBarContainer2{
	align-items: center;
	width: fit-content;
	margin-left: auto;
}

.UserBarLoginContainer{
	display: flex;
	align-items: center;
	width: fit-content;
	padding: 0 20px;
}

.UserBarDisplayName{
	font-size: 16pt;
	padding-right: 5px;
}

.UserBarMenuContainer{
	position: relative;
	display: inline-block;
	width: fit-content;
	background-color: #fff0;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: none;
	cursor: pointer;
	z-index: 1000;
	margin-right: 10px;
}

.UserBarDisplayPicture{
	width: 40px;
	height: 40px;
	background-size: cover;
	background-position: center;
	border-radius: 200px;
	border: black solid 2px;
	margin: 5px;
}

.UserBarDisplayContainer{
	display: flex;
	align-items: center;
	justify-content: center;
}

.UserBarMenu{
	display: none;
	position: absolute;
	z-index: 1;
	width: 100%;
	background-color: #111;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	box-shadow: black 0px 4px 4px;
	min-width: fit-content;
	white-space: nowrap;
	right: 0;
	padding: 0 10px;
}

.UserBarMenuButton{
	padding-left: 4px;
	padding-right: 4px;
	margin-top: 8px;
	margin-bottom: 8px;
	font-size: 14pt;
	background-color: #111;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	color: #db0000;
	cursor: pointer;
}

.UserBarMenuButton:hover{
	color: #f4f;
	cursor: pointer;
}

.LoginButton{
	width: fit-content;
	cursor: pointer;
	font-size: 14pt;
}

.RegisterLink{
	width: fit-content;
	margin: 0 20px;
}

/* Footer */

.Footer{
	display: flex;
	justify-content: center;
	align-items: center;
	/* background-color: #000; */
	/* background-image: linear-gradient(0deg, #ceb88b, #fff); */
	padding: 80px 16px;
	flex-direction: column;
}

.FooterButtons{
	
}

.FooterButton{
	
}

.FooterContacthead{
	padding: 4px 0;
}

.FooterContact{
	padding: 4px 0;
	text-shadow: black 1px 1px;
	text-align: center;
}

.FooterCopyright{
	padding: 4px 0;
	text-align: center;
}

/* terms */
.TermsContainer{
	padding: 100px;
	color: #ddd;
	background-color: #544949;
	flex-grow: 1;
}

.TermsTitle{
	font-size: 18pt;
	font-weight: bold;
	margin-bottom: 30px;
}

.TermsHead{
	font-size: 14pt;
	font-weight: bold;
	margin-bottom: 4px;
	margin-top: 20px;
}

.TermsSubHead{
	font-size: 12pt;
	font-weight: bold;
	margin-bottom: 4px;
	margin-top: 4px;
	margin-left: 10px;
}

.TermsText{
	margin-left: 10px;
}

li{
	margin-bottom: 4px;
}

@media (orientation: portrait), (max-width: 800px) {



	
}