/* ==============================
   Reset
   ============================== */
* {
  margin: 0;
  padding: 0;
}

/* ==============================
   Base Styles
   ============================== */
body {
  background-color: #282723;
  background-image: url("background.png");
  font-family: "Quattrocento Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  padding: 10px 0 20px 10px;
  font-size: 18px;
  color: #282723;
}

b {
  color: #a32b21;
  font-style: normal;
  font-family: "Mali", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

i {
  color: #a32b21;
  font-style: normal;
  font-family: "Mali", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

/* ==============================
   Layout
   ============================== */
.container {
  display: flex;
  margin: 0 auto; /* auto left/right for centering */
  width: 754px;   /* 24 + 706 + 24 */
}

.side {
  width: 24px;
  background-repeat: repeat-y;
}

.left {
  background-image: url("left.png");
}

.right {
  background-image: url("right.png");
}

.middle {
  width: 706px;
  display: flex;
  flex-direction: column;
  background-color: #f6a00d;
  background: url("body.png") repeat;
}

.header {
  width: 706px;
  height: 628px;
  background: url("header.png") no-repeat;
  background-color: #f6a00d;
}

.title {
  width: 706px;
  height: 66px;
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  background: #f6a00d url("body.png") repeat;
}

.body {
  width: 706px;
  padding: 30px;
  box-sizing: border-box;
}

.footer {
  width: 706px;
  height: 207px;
  background:
    url("footer.png") no-repeat bottom center, /* sits at bottom */
    url("body.png") repeat;                    /* tiled behind */
  padding-top: 120px;
  box-sizing: border-box;
}

.footer p {
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  font-family: "Mali", sans-serif;
  font-weight: normal;
  font-style: normal;
}

/* ==============================
   Navigation
   ============================== */
.navigation {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  box-sizing: border-box;
  background-color: #f6a00d;
}

.navlinks ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navlinks li {
  display: inline-flex;
}

#navigation a:link,
#navigation a:visited {
  font-family: "Mali", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #272622;
  text-decoration: none;
  padding: 0 7px;
  text-shadow: -1px -1px 0px rgba(0,0,0,0.16);
}

#navigation a:hover {
  color: #a32b21;
  text-shadow: -1px -1px 0px rgba(0,0,0,0.4);
}

/* ==============================
   Headings
   ============================== */
h1, h2, h3 {
  font-family: "Barriecito", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #f6a00d;
  background-color: #1b75a7;
  background: url("blue.png") repeat;
  text-align: center;
  text-shadow: -1px -1px 0px rgba(0,0,0,0.9);
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 22px; }

/* ==============================
   Links
   ============================== */
a:link,
a:visited {
  color: #000000;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #1b75a7;
  font-weight: bold;
}

a:hover {
  color: #1b75a7;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #000000;
  font-weight: bold;
}

.footer p a:link,
.footer p a:visited {
  color: #ffffff;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #ffffff;
  font-weight: normal;
}

.footer p a:hover {
  color: #f6a00d;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #ffffff;
  font-weight: normal;
}

/* ==============================
   Utility Classes
   ============================== */
.stats {
  padding: 5px 10px 10px;
  color: #282723;
  font-family: "Quattrocento Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #282723;
}

.samplelink {
  width: 400px;
  margin: 0 auto;
  padding: 10px;
  background: url("green.png") repeat;
  color: #282723;
  font-size: 12px;
  font-family: "Mali", sans-serif;
}

.copy-button {
  width: 100px;
  margin: 5px auto 0 !important;
  padding: 10px !important;
  background: url("green.png") repeat;
  color: #282723;
  font-size: 14px !important;
  font-family: "Mali", sans-serif;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s;
}

.copy-button:hover {
  background-color: #96a77c;
}

/* ==============================
   Codes / Images
   ============================== */
#codes {
  width: 550px;
  margin: 0 auto;
  text-align: center;
}

#codes img {
  display: inline-block;
  margin: 4px;
  padding: 4px;
  background-color: rgba(150,167,124,.9);
}

.codesort ul {
  text-align: center;
  margin: 0;
  padding: 0;
}

.codesort li {
  display: inline;
}

img.bio {
  display: block;
  margin: 10px auto;
  max-width: 100%;
  height: auto;
  padding: 4px;
  background-color: #282723;
}



/* ==============================
   Forms (Generic)
   ============================== */
textarea,
input,
select,
submit {
  margin: 4px;
  padding: 4px;
  border: 1px solid #96a77c;
  background: url("green.png") repeat;
  color: #282723;
  font-size: 14px;
  font-family: "Mali", sans-serif;
  letter-spacing: 2px;
}

label {
  float: left;
  width: 100px;
}

/* ==============================
   Forms (Custom & Show_ Classes)
   ============================== */
.custom_input {
  display: flex;
  align-items: center;
  margin-bottom: 5px !important;
}

.custom_input label {
  width: 120px;
  text-align: right;
  margin-right: 10px;
}

.custom_input .input,
form[class^="show_"] input[type="text"],
form[class^="show_"] input[type="email"],
form[class^="show_"] input[type="password"],
form[class^="show_"] input[type="url"],
form[class^="show_"] select,
form[class^="show_"] textarea {
  width: 300px;
  margin-bottom: 5px;
  padding: 10px;
  font-size: 14px;
  font-family: "Mali", sans-serif;
  background: url("green.png") repeat;
  color: #282723;
  border: 1px solid #96a77c;
  box-sizing: border-box;
  outline: none;
  transition: 0.3s ease;
}

.custom_input .input:focus,
form[class^="show_"] input:focus,
form[class^="show_"] select:focus,
form[class^="show_"] textarea:focus {
  background: url("green.png") repeat;
  color: #282723;
  border: 1px solid #282723;
}

.custom_input .input::placeholder,
form[class^="show_"] ::placeholder {
  color: #96a77c;
}

.custom_input input[type="submit"],
form[class^="show_"] input[type="submit"],
form[class^="show_"] input[type="reset"] {
  margin-top: 10px;
  padding: 10px 20px;
  background: url("green.png") repeat;
  color: #282723;
  border: 1px solid #96a77c;
  cursor: pointer;
  transition: background 0.3s;
}

.custom_input input[type="submit"]:hover,
form[class^="show_"] input[type="submit"]:hover,
form[class^="show_"] input[type="reset"]:hover {
  background: url("green.png") repeat;
  border: 1px solid #282723;
}

form[class^="show_"] p {
  margin-bottom: 15px;
}

form[class^="show_"] span[class$="_label"] {
  display: block;
  margin-bottom: 5px;
  color: #000;
}

form[class^="show_"] textarea {
  min-height: 60px;
  resize: vertical;
}

form[class^="show_"] select {
  margin-bottom: 5px;
}

form[class^="show_"] input[type="radio"],
form[class^="show_"] input[type="checkbox"] {
  margin-right: 5px;
  vertical-align: middle;
}

form[class^="show_"] span[class*="_field_label"] {
  margin-left: 5px;
  font-weight: normal;
}

.show_join_email_settings_yes,
.show_join_email_settings_no,
.show_update_email_settings_leave,
.show_update_email_settings_yes,
.show_update_email_settings_no,
.show_join_send_account_info_yes {
  display: block !important;
  margin: 3px 0;
}

.show_join_password_field,
.show_update_password_field,
.show_join_password_field2,
.show_update_password_field2 {
  display: block;
  width: 300px;
}

.show_join_password_field2,
.show_update_password_field2 {
  margin-top: 5px;
}

/* ======================================================
   WEBRINGS
====================================================== */
#fanlistings {
  font-family: "Quattrocento Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10pt;
}