/********** Global Styles **********/
* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
	line-height:1.2;
  color: #1f1a18;
}

label {
  margin: 0;
}

a:hover {
  color: currentColor;
  text-decoration: none;
}

/********** Text Styles **********/
.title-sm {
  font-family: "Gabarito", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
}

.title-md {
  font-family: "Gabarito", sans-serif;
  font-size: min(40px, 5.5vw);
  font-weight: 600;
  line-height: 120%;
}

.title-lg {
  font-family: "Gabarito", sans-serif;
  font-size: min(50px, 6vw);
  font-weight: 600;
  line-height: 120%;
}

.title-thin-lg {
  font-family: "Gabarito", sans-serif;
  font-size: min(50px, 6vw);
  font-weight: 400;
  line-height: 120%;
}

.stitle-sm {
  font-family: "Gabarito", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.stitle-md {
  font-family: "Gabarito", sans-serif;
  font-size: min(18px, 4.4vw);
  font-weight: 600;
}

.stitle-lg {
  font-family: "Gabarito", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.stitle-thin-sm {
  font-family: "Gabarito", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

.stitle-thin-md {
  font-family: "Gabarito", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 16px;
}

.text-lg {
  font-size: min(20px, 3.5vw)
}

/********** List Styles **********/
.text-list {
  padding-inline-start: 22px;
  line-height: 150%;
}

.rank-list td {
  vertical-align: center;
}

.rank-list td:first-child div {
  min-width: 25px;
  padding: 3px;
  font-size: 12px;
  text-align: center;
  border-radius: 30px;
  background-color: #eee;
}

.rank-list td:nth-child(2) div {
  padding: 3px;
}

.state-list td {
  vertical-align: center;
}

.state-list td:first-child div {
  width: 25px;
  margin-right: 6px;
  line-height: 25px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  background-color: #003388;
}

.n-bullet {
  list-style-image: url('data:image/svg+xml,<svg transform="scale(0.5) translate(10, 15)" transform-origin="center" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="25" height="25" viewBox="0 0 48 48"><path fill="%23f44336" d="M44,24c0,11.045-8.955,20-20,20S4,35.045,4,24S12.955,4,24,4S44,12.955,44,24z"></path><path fill="%23fff" d="M29.656,15.516l2.828,2.828l-14.14,14.14l-2.828-2.828L29.656,15.516z"></path><path fill="%23fff" d="M32.484,29.656l-2.828,2.828l-14.14-14.14l2.828-2.828L32.484,29.656z"></path></svg>')
}

.y-bullet {
  list-style-image: url('data:image/svg+xml,<svg transform="scale(0.5) translate(12, 15)" transform-origin="center" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="25" height="25" viewBox="0 0 18 18"><path fill="%2300b569" d="M8,0C3.582,0,0,3.582,0,8s3.582,8,8,8s8-3.582,8-8S12.418,0,8,0z"></path><polygon fill="%23fff" points="7,12 3.48,8.48 4.894,7.066 7,9.172 11.71,4.462 13.124,5.876"></polygon></svg>');
}

/********** Button Styles **********/
.get-started-button {
  width: 200px;
  padding: 10px;
  color: #fbfbfb;
  border: none;
  border-radius: 10px;
  background-color: #52b36c;
}

.get-started-button span {
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.get-started-button span::after {
  content: "\00bb";
  position: absolute;
  top: 0;
  right: -10px;
  opacity: 0;
  transition: 0.3s;
}

.get-started-button:hover span {
  padding-right: 20px;
}

.get-started-button:hover span::after {
  opacity: 1;
  right: 0;
}

.w-button-lg {
  min-width: 150px;
  padding: 8px 20px;
  color: #f56042;
  border-radius: 20px;
  border: 2px solid #f56042;
  background-color: #fff;
  transition: 0.2s;
}

.w-button-lg:hover {
  color: #fbfbfb;
  background-color: #f56042;
}

.move-button {
  width: fit-content;
  padding: 1px 2px;
  border: none;
  border-radius: 2px;
  background-color: #fbfbfb;
  box-shadow: 2px 2px #999;
  margin-left: 5px;
}

.move-button:active {
  box-shadow: 1px 1px #666;
  transform: translateX(1px);
  transform: translateY(1px);
}

.link {
  position: relative;
  width: fit-content;
}

.link a::before  {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #007bff;
  transition: 0.3s;
}

.link a:hover {
  color: #007bff;
}

.link a:hover::before {
  width: 100%;
}

/********** Spacing Styles **********/
.new-sect-xspd {
  padding-top: 10px;
}

.new-sect-smpd {
  padding-top: 20px;
}

.new-sect-mdpd {
  padding-top: 40px;
}

.new-sect-lgpd {
  padding-top: 50px;
}

.divider {
  width: 100%;
  border: 1px solid #ccc;
}

.hcenter {
  width: fit-content;
  margin: auto;
}

.valign {
  height: 100%;
  display: flex;
  align-items: center;
}

/********** Image Styles **********/
.img-sm {
  width: 80px;
  height: 80px;
  background-size: contain;
  background-position: center center;
  margin: auto;
}

.img-md {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-position: center center;
  margin: auto;
}

.icon-bg-light {
  width: 25px;
  height: 25px;
  border-radius: 30px;
  background-color: #fbfbfb;
  color: #1f1a18;
  display: flex;
  align-items: center;
  justify-content: center;
}

.move-icon {
  width: 10px;
  height: 20px;
  background-size: cover;
  background-position: center center;
}

.difference-icon {
  width: fit-content;
  min-width: 25px;
  padding: 2px 5px;
  font-size: 10px;
  line-height: 80%;
}

.tooltip-icon {
  width: 16px;
  border: 2px solid #afafaf;
  border-radius: 30px;
  font-size: 12px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  color: #afafaf;
  text-align: center;
  line-height: 12px;
  position: relative;
  z-index: 302;
  cursor: default;
}

/********** Nav Bar Styles **********/
.navbar {
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 10px;
  padding-left: min(20px, 4vw);
  padding-bottom: 10px;
  padding-right: min(20px, 4vw);
  background-color: #fbfbfb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo a div:first-child {
  position: absolute;
  width: min(38px, 7.5vw);
  height: min(38px, 7.5vw);
  background-image: url("https://www.targetcolleges.com/_images/logo.png");
  background-size: cover;
  background-position: center center;
}

.logo a div:nth-child(2) {
  padding-left: min(40px, 8vw);
  font-family: "Gabarito", sans-serif;
  font-size: min(25px, 5vw);
  font-weight: 600;
}

.navlinks {
  display: flex;
  align-items: center;
  margin: 0;
}

.navlinks li {
  list-style: none;
  height: 100%;
  padding-top: 6px;
  padding-right: min(25px, 1.45vw);
  padding-bottom: 6px;
  padding-left: min(25px, 1.45vw);
}

.navlink {
  position: relative;
  font-size: 16px;
  color: #1f1a18;
  font-weight: 500;
  text-decoration: none;
}

.navlink::before  {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1f1a18;
  transition: 0.3s;
}

.navlink:hover::before {
  width: 100%;
}

.navbutton {
  padding: 6px 18px;
  background-color: #f56042;
  border-radius: 12px;
  border-style: none;
  font-family: "Gabarito", sans-serif;
  font-size: 16px;
  color: #fbfbfb;
}

.droplink a {
  position: relative;
  font-size: 16px;
  color: #1f1a18;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.droplink:hover .dropdown {
  display: block;
}

.droplink:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-icon {
  transition: 0.4s;
}

.dropdown {
  position: absolute;
  padding: 10px 0;
  margin: 5px -4px;
  background: #1f1a18;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  border-radius: 8px;
  display: none;
}

.dropdown a {
  padding: 5px;
  color: #fbfbfb;
  font-size: 14px;
  transition: 0.1s;
}

.dropdown a:hover {
  background: #fafafa;
  color: #1f1a18;
  border-radius: 5px;
}

/********** Side Nav Styles **********/
#sidenav-active {
  margin: 0;
  display: none;
}

.sidenav {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  opacity: 0;
  right: -100%;
  z-index: 101;
  background-color: #1f1a18;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s ease-out;
}

.open-sidenav-button {
  cursor: pointer;
}

.open-sidenav-button svg {
  fill: #1f1a18;
}

.close-sidenav-button {
  padding: 20px;
  cursor: pointer;
}

.close-sidenav-button svg {
  fill: #fbfbfb;
}

.sidenav a {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fbfbfb;
  font-size: 16px;
  transition: 0.1s;
}

.sidenav a:hover {
  background: #fafafa;
  color: #1f1a18;
}

#sidenav-active:checked ~ .sidenav {
  right: 0;
  opacity: 1;
}

#sidenav-active:checked ~ #close-sidenav-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}

/********** Banner Styles **********/
.img-banner {
  background-size: cover;
  background-position: center center;
}

.bg-img-banner {
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: absolute;
  z-index: -1;
}

.bg-img-banner div {
  padding-top: min(45%, 230px);
  background-color: rgba(0, 0, 0, 0.6);
}

.r-banner {
  background-color: #f56042;
  color: #fbfbfb;
}

.g-banner {
  background-color: #eaeaea;
}

.lbanner-overlay {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  color: #fbfbfb;
}

.mbanner-overlay {
  position: relative;
  padding: min(20%, 180px) 20px;
  text-align: center;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  color: #fbfbfb;
}

.banner-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  opacity: 0.6;
}

.text-banner {
  padding: 8px;
  text-align: center;
  color: #fbfbfb;
}

/********** Card Row Styles **********/
.card-row {
  border-radius: 20px;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.card-row-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.card-row-content {
  padding: 10px;
}

.card-row-content > table td:nth-child(2) > div:first-child {
  color: #aaa;
}

.card-row-content a {
  color: #007bff;
}

.card-row-content a:hover {
  color: #1f1a18;
}

.card-row-stats {
  min-height: 235px;
  height: 100%;
  padding: 10px;
  text-align: center;
  background-color: #f0f0f0;
}

.card-row-stats > div {
  padding-top: 25px;
}

.card-row-stats > div div:nth-child(2), .card-row-stats > div div:nth-child(4) {
  color: #f56042;
}

.card-row-img-sm {
  padding: 0 10px 0 30px;
}

.card-row-img-sm > div {
  width: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.card-row-img-sm > div > div {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
}

.card-row-content-sm {
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.card-row-content-sm div {
  flex-basis: 33%;
}


/********** Card Box Styles **********/
.card-box {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cate-box {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.cate-box > div:last-child {
    padding-top:15px;
}

.cate-box a:last-child {
  padding: 10px;
  color: #f56042;
  transition: 0.1s;
  white-space:nowrap;
}

.cate-box a:last-child:hover {
  background-color: #f56042;
  color: #fbfbfb;
  border-radius: 5px;
}

.rank-box {
  padding: 10px;
  height: 100%;
  color: #1f1a18;
}

.rank-box div {
  padding: 5px 10px;
}

.rank-box-rank {
  text-align: center;
  color: #fbfbfb;
  background-color: #1f1a18;
  border-radius: 30px;
  white-space: nowrap;
}

.profile-box {
  height: 100%;
}

.profile-box .card-box {
  height: calc(100% - 70px);
}

.profile-box-pfp {
  height: 70px;
  position: relative;
  z-index: 2;
}

.profile-box-pfp div {
  margin: auto;
  width: 140px;
  height: 140px;
  border: 4px solid #f56042;
  border-radius: 50%;
  overflow: hidden;
}

.profile-box-pfp img {
  width: 100%;
}

.profile-box-heading {
  padding: 75px 0 15px 0;
  text-align: center;
  background-color: #f56042;
}

.profile-box-heading div:nth-child(3) {
  color: #ffffff;
  line-height:100%;
}

.profile-box-text {
  height: 100%;
  padding: 15px 20px;
}

.form-box {
  padding: 30px;
}

.form-box table {
  width: 100%;
}

.form-box input {
  width: 100%;
  font-size: 14px;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}

.form-box textarea {
  width: 100%;
  font-size: 14px;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}

.form-box button {
  width: 100%;
  padding: 10px;
  font-weight: 600;
  color: #fbfbfb;
  background-color: #f56042;
  border-style: none;
  border-radius: 10px;
  margin-top: 10px;
}

.form-box button {
  width: 100%;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: #fbfbfb;
  background-color: #f56042;
  border-style: none;
  border-radius: 10px;
}

.form-box button span {
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.form-box button span::after {
  content: "\00bb";
  position: absolute;
  top: 0;
  right: -10px;
  opacity: 0;
  transition: 0.3s;
}

.form-box button:hover span {
  padding-right: 15px;
}

.form-box button:hover span::after {
  opacity: 1;
  right: 0;
}

.nav-box {
  max-width: min(90vw, 600px);
}

.nav-box table {
  width: 100%;
  table-layout: fixed;
}

.nav-box td {
  padding: 10px;
  text-align: center;
}

.nav-box td > div {
  width: 100%;
  max-width: 200px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.nav-box td > div:hover {
  background-color: #f56042;
  color: #fbfbfb;
}

.nav-box td > div:hover img {
  filter: invert(98%) sepia(8%) saturate(17%) hue-rotate(329deg) brightness(108%) contrast(97%);
}

.nav-box img {
  width: 9vw;
  max-width: 50px;
  height: 9vw;
  max-height: 50px;
  display: block;
  transition: 0.2s;
}

.nav-box td > div > div {
  padding-top: 5px;
  font-family: "Gabarito", sans-serif;
  font-size: min(16px, 2.8vw);
  font-weight: 600;
}

.nav-box-highlight > div {
  background-color: #f56042;
  color: #fbfbfb;
}

.nav-box-highlight img {
  filter: invert(98%) sepia(8%) saturate(17%) hue-rotate(329deg) brightness(108%) contrast(97%);
}

.college-list-box table {
  width: 100%;
}

.college-list-box th:nth-child(3), .college-list-box th:nth-child(4), .college-list-box th:nth-child(5), .college-list-box th:nth-child(6), .college-list-box th:nth-child(7), .college-list-box td:nth-child(3), .college-list-box td:nth-child(4), .college-list-box td:nth-child(5), .college-list-box td:nth-child(6), .college-list-box td:nth-child(7) {
  text-align: center;
}

.college-list-box tr:first-child th {
  padding-top: 10px;
  text-align: center;
  color: #fbfbfb;
  font-size: 10px;
  font-weight: 400;
  line-height: 55%;
}

.college-list-box tr:nth-child(2) th {
  color: #fbfbfb;
  font-size: 14px;
  font-weight: 600;
}

.college-list-box th {
  padding: 0 3px;
  color: #fbfbfb;
}

.college-list-box td {
  padding: 6px 3px;
  font-size: 14px;
}

.college-list-box td:first-child {
  width: 30px;
}

.college-list-box td:last-child {
  padding-right: 8px;
}

.college-list-box-yourstats {
  padding: 5px 5px;
}

.college-list-box-yourstats table {
  width: 100%;
  max-width: 500px;
  text-align: center;
  margin: auto;
}

.college-list-box-yourstats div:first-child {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.college-list-box-yourstats div:nth-child(2) {
  color: #f56042;
  font-weight: 500;
  line-height: 120%;
}

.college-list-box-yourstats td:first-child {
  width: 34%;
  font-family: "Gabarito", sans-serif;
  font-size: 16px;
  white-space: nowrap;
}

.college-list-box-yourstats td:nth-child(2), .college-list-box-yourstats td:nth-child(3), .college-list-box-yourstats td:nth-child(4) {
  width: 22%;
}

/********** Frame Box Styles **********/
.frame-box {
  padding: 20px 50px;
  position: relative;
  border: 3px solid #f56042;
  border-radius: 15px;
  text-align: center;
}

.frame-box div:first-child {
  width: fit-content;
  padding: 10px;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  color: #f56042;
  background-color: #fff;
}

.frame-box div:nth-child(3) {
  color: #f56042;
}


/*****************************/

h2 { margin:0px; font-size:min(6vw, 26px); }
input[type=email] { width:100%; }
input[type=number] { width:100%; }
input[type=radio] { margin:0px; }
input[type=text] { width:100%; }
input[type=password] { width:100%; }
ol { margin-bottom:2px; padding-left:20px; }
ol li { margin-top:2px; }
p { margin:0px; }
table { border-collapse:collapse; border-spacing:0px; }
td { padding:0px; }
textarea { width:100%; }
ul { margin-bottom:2px; padding-left:20px; }
ul li { margin-top:2px; }

a.backlink { border-radius:9999px; background-color:#f56042; padding:6px 20px 6px 20px; color:#ffffff; }

button.submit { height:100%; border:1px solid rgb(245,96,66); border-radius:9999px; background-color:rgb(245,96,66); padding:5px 20px 5px 20px; color:#ffffff; }
button.continue { border:1px solid rgb(245,96,66); border-radius:9999px; background-color:rgb(245,96,66); padding:5px 20px 5px 20px; color:#ffffff; }
button.cancel { border:1px solid rgb(245,96,66); border-radius:9999px; background-color:#ffffff; padding:5px 20px 5px 20px; color:rgb(245,96,66); }
button.back { border:1px solid rgb(245,96,66); border-radius:9999px; background-color:#ffffff; padding:5px 20px 5px 20px; color:rgb(245,96,66); }

div.buttons1 { margin-top:20px; text-align:center; }
div.buttons1 button { width:50%; }
div.buttons2 { text-align:center; }
div.buttons2 button { margin:20px 5px 0px 5px; width:calc(50% - 10px); }

div.inputtable {}
div.inputtable div.label { padding:10px 0px 0px 0px; font-size:13px; }
div.inputtable div.label-first { padding:0px 0px 0px 0px; font-size:13px; }
div.inputtable div.field { padding:2px 0px 0px 0px; }
div.inputtable div.field-topalign { padding:0px 0px 0px 0px; }
div.inputtable div.buttons1 { padding:20px 0px 0px 0px; vertical-align:top; }
div.inputtable div.buttons1 button { width:50%; }
div.inputtable div.buttons2 { margin:0px; padding:20px 0px 0px 0px; vertical-align:top; text-align:center; }
div.inputtable div.buttons2 button { margin:0px 5px 0px 5px; width:calc(50% - 10px); }

div.label-bottom { margin-top:2px; font-size:11px; }
div.label-top { margin-bottom:2px; font-size:11px; }
div.schoolpopup-item { border-top:1px solid #cfcfcf; padding:8px 12px 8px 12px; font-size:14px; }
div.schoolpopup-item:hover { background-color:#6f6f6f; color:#ffffff; }
div.userpopup-item { border-top:1px solid #cfcfcf; padding:10px 15px 10px 15px; font-size:16px; }
div.userpopup-item:hover { background-color:#6f6f6f; color:#ffffff; }

span.requiredstar::after { content: '*'; color:#ff0000; }

table.displaytable { width:100%; border:none; border-spacing:0px; empty-cells:show; }
table.displaytable td.label { padding:3px 16px 3px 0px; vertical-align:top; text-align:left; white-space:nowrap; }
table.displaytable td.label-first { padding:0px 16px 3px 0px; vertical-align:top; text-align:left; white-space:nowrap; }
table.displaytable td.field { width:100%; padding:3px 6px 3px 0px; vertical-align:top; }
table.displaytable td.field-first { width:100%; padding:0px 6px 3px 0px; vertical-align:top; }
table.displaytable td.buttons { padding:12px 4px 4px 0px; vertical-align:top; }
table.displaytable td.buttons1 { padding:12px 4px 4px 0px; vertical-align:top; }
table.displaytable td.buttons1 button { width:100%; }
table.displaytable td.buttons2 { padding:12px 4px 4px 0px; vertical-align:top; text-align:center; }
table.displaytable td.buttons2 button { margin:0px 5px 0px 5px; width:calc(50% - 10px); }

table.inputtable { width:100%; border:none; border-spacing:0px; empty-cells:show; }
table.inputtable td.label { padding:9px 16px 6px 0px; vertical-align:top; text-align:left; white-space:nowrap; }
table.inputtable td.label-first { padding:3px 16px 6px 0px; vertical-align:top; text-align:left; white-space:nowrap; }
table.inputtable td.label-topalign { padding:6px 16px 6px 0px; vertical-align:top; text-align:left; white-space:nowrap; }
table.inputtable td.label-topalign-first { padding:0px 16px 6px 0px; vertical-align:top; text-align:left; white-space:nowrap; }
table.inputtable td.field { width:100%; padding:6px 6px 6px 0px; vertical-align:top; }
table.inputtable td.field-first { width:100%; padding:0px 6px 6px 0px; vertical-align:top; }
table.inputtable td.buttons { padding:12px 4px 4px 0px; vertical-align:top; }
table.inputtable td.buttons1 { padding:12px 4px 4px 0px; vertical-align:top; }
table.inputtable td.buttons1 button { width:100%; }
table.inputtable td.buttons2 { padding:12px 4px 4px 0px; vertical-align:top; text-align:center; }
table.inputtable td.buttons2 button { margin:0px 5px 0px 5px; width:calc(50% - 10px); }

.clickable:hover { cursor:pointer; }
.font-sm5 { font-size:11px; }
.font-sm4 { font-size:12px; }
.font-sm3 { font-size:13px; }
.font-sm2 { font-size:14px; }
.font-sm1 { font-size:15px; }
.font-sm0 { font-size:16px; }
.font-sp1 { font-size:17px; }
.font-sp2 { font-size:18px; }
.font-sp3 { font-size:19px; }
.font-sp4 { font-size:20px; }
.font-sp5 { font-size:21px; }
.font-sp6 { font-size:22px; }
.paragraph { line-height:150%; }
.smallparagraph { line-height:140%; }
