/* RCG RoboHub Main Style Sheet */
@font-face {font-family: 'Gilroy ExtraBold'; src: url('gilroy-extrabold.woff2') format('woff2'); font-weight: bold; font-style: normal;}
@font-face {font-family: 'Helvetica Neue Roman'; src: url('helveticaneue-roman.woff2') format('woff2'); font-weight: normal; font-style: normal;}

* {
font-family: 'Helvetica Neue Roman', sans-serif
}

body {
	padding: 25px;
	max-width: 80%;
	margin: 0 auto;
	background-color: #fff;
	background-image: radial-gradient(#d2d2d2 .55px, #fff .55px);
	background-size: 11px 11px;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-family: 'Gilroy ExtraBold', sans-serif;
	font-weight: bold;
	text-rendering: optimizeLegibility;	
}

.h2-main-title {
	font-size: 36px;
}

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

select {
	width: 366px;
	padding: 5px 10px;
	border-radius: 8px;
	outline: none;
	border: 1px solid #2a206f;
	cursor: pointer;
	margin-top: 2px;
}

/* Spacers */
.br-10 {min-height: 10px;}
.br-25 {min-height: 25px;}
.br-50 {min-height: 50px;}

/* Notice Banners */
.notice-info {
	border-left: 5px solid #a23482;
	padding: 5px 10px;
	margin-bottom: 5px;
	background-color: #f5f5f5;
	line-height: 1.25em;
	font-size: 1.1rem;;
}

.notice-warning {
	border-left: 5px solid #ec6665;
	padding: 5px 10px;
	margin-bottom: 5px;
	background-color: #f5f5f5;
	font-size: 1.1rem;;
}

.notice-success {
	border-left: 5px solid #86c8ab;
	padding: 5px 10px;
	margin-bottom: 5px;
	background-color: #f5f5f5;
	font-size: 1.1rem;;
}

/* Number Input Forms */
form {
	margin: 20px 0;
	max-width: 40%;
	display: inline-block;
}

form input {
	transition: 0.3s;
	background-color: #2a206f;
	width: 366px;
	color: #fff;
	padding: 5px 10px;
	border-radius: 8px;
	outline: none;
	border: 1px solid #2a206f;
	cursor: pointer;
	margin-top: 2px
}

form input:hover {
	background-color: #a23482
}

form textarea {
	width: 340px;
	border-radius: 8px;
	border: 1px solid #2a206f;
	padding: 8px 12px
}

/* Copy All JS Button */
#copyBtn {
	background-color: #ffffff;
	transition: 0.3s;
	width: 366px;
	color: #2a206f;
	padding: 5px 10px;
	border-radius: 8px;
	outline: none;
	border: 1px solid #2a206f;
	cursor: pointer;
	margin-top: 2px;
	margin-bottom: 16px;
}

#copyBtn:hover {
	background-color: #3b52a0;
	color: #ffffff;
}

#customAlert {
	display: none;
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #37bd2c;
	color: #fff;
	padding: 10px 20px;
	border-radius: 25px;
	z-index: 10;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Homepage Cards (From George Francis)*/
.button-box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.card {
  --border-radius: 0.75rem;
  --primary-color: #a23482;
  --secondary-color: #3c3852;
  width: 240px;
  font-family: "Arial";
  padding: 1rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  background: #f1f1f3;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.14);
  position: relative;
  transition: 0.2s;
}

.card .card__content {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.card .card__title {
  font-size: 1.4rem;
}

.card .card__arrow {
  position: absolute;
  background: var(--primary-color);
  padding: 0.4rem;
  border-top-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  bottom: 0;
  right: 0;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card svg {
  transition: 0.2s;
}

/* hover */
.card:hover {
	box-shadow: 0px 8px 14px 0px #7c28639e;
  }

.card:hover .card__title {
  color: var(--primary-color);
}

.card:hover .card__arrow svg {
  transform: translateX(1px);
}


.guideParagraph {
	font-size: 1.2rem;
}


.standardBtn {
	background-color: #ffffff;
	transition: 0.3s;
	width: 366px;
	color: #2a206f;
	padding: 5px 10px;
	border-radius: 8px;
	outline: none;
	border: 1px solid #2a206f;
	cursor: pointer;
	margin-top: 2px;
	margin-bottom: 16px;
}


.standardBtn:hover {
	background-color: #3b52a0;
	color: #ffffff;
}