@charset "UTF-8";
/**
 * Default.sass
 * Default theme.
 */
/**
 * Config.scss
 * Global set of configurations & values.
 */
/************ Fonts ************/
/*
	Quicksand : Base text
	Oxygen Mono : Code
*/
@import url("https://fonts.googleapis.com/css?family=Oxygen+Mono|Quicksand&display=swap");
/************ Media Cutoffs ************/
/* Small devices: Small phones */
/* Medium devices: Large phones */
/* Large devices: Large tablets */
/* Desktop devices */
/************ Typography Scale ************/
/* Bold Weight */
/* Base rem value */
/* Default text size */
/* Alternate text values */
/* Heading values */
/************ Animations ************/
/* Normal */
/* Short */
/************ Colors ************/
/* Greyscale colors */
/* Color families */
/* Progress bar */
/* Other colors */
/************ Grid ************/
/************ Border ************/
/************ Nav ************/
/************ Theme Colours ************/
/* main text color */
/* secondary text color */
/* heading contrast */
/** main color */
/** accent colour */
/* background colour */
/* background alt colour */
/************ Theme Colours ************/
/** _Ashleycss.scss
 * Main file that links all modules and utilities together.
 */
/* Core Files */
/** Base.scss
 * Values consistent accross all modules
 */
/************ Fonts ************/
/* basic text decoration */
* {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  color: #ededed;
}
@media only screen and (max-width: 768px) {
  * {
    font-size: 1.4rem;
  }
}
/* top level stylings */
html, body {
  box-sizing: border-box;
  min-height: 100vh;
  font-size: 20px;
  margin: 0rem;
  padding: 0rem;
}

body {
  background-color: #313131;
}

/* Modules */
/*
	Blockquote

/************ Blockquote Behavior ************/
blockquote {
  text-align: left;
  border-left: 0.25rem solid #007ba7;
  border-radius: 0.2rem;
  margin: 0rem 0rem;
  padding: 0rem 0.5rem 0rem 0.25rem;
  background: #313131;
}
blockquote * {
  background-color: inherit;
}
blockquote:before {
  color: #007ba7;
}
blockquote p {
  display: block;
  margin: 0rem;
  width: 100%;
}
blockquote cite {
  display: block;
  width: 100%;
}
blockquote cite::before {
  content: "-";
}

q {
  color: #ff0d00;
}

/** Button.scss
 * Styling for buttons
 */
/************ Button Behavior ************/
button, .file-input, input[type=submit], input[type=button] {
  font-size: 0.7rem;
  font-weight: 900;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  vertical-align: middle;
  padding: 0.2rem 0.4rem;
  margin: 0rem 0rem;
  border-color: #ff0d00;
  border-radius: 0.4rem;
  border-style: solid;
  border-width: 0.15rem;
  background: #ff0d00;
}
button:focus, .file-input:focus, input[type=submit]:focus, input[type=button]:focus {
  cursor: pointer;
  outline: none;
}
button:hover:not(.disabled), .file-input:hover:not(.disabled), input[type=submit]:hover:not(.disabled), input[type=button]:hover:not(.disabled) {
  transition: all 0.8s ease;
  cursor: pointer;
  opacity: 0.6;
  background: #007ba7;
  border-color: #007ba7;
}
button.outline, .file-input.outline, input[type=submit].outline, input[type=button].outline {
  color: #ff0d00;
  background: none;
}
button.outline:hover:not(.disabled), .file-input.outline:hover:not(.disabled), input[type=submit].outline:hover:not(.disabled), input[type=button].outline:hover:not(.disabled) {
  background: none;
  border-color: #007ba7;
  color: #007ba7;
}
button.disabled, .file-input.disabled, input[type=submit].disabled, input[type=button].disabled {
  opacity: 0.4;
  cursor: not-allowed;
  padding: 0.2rem 0.4rem !important;
  margin: 0rem 0rem !important;
}

/** Card.scss
 * Stylings cards
 */
.card {
  overflow: hidden;
  border-radius: 0.4rem !important;
  border-width: 0.5rem;
  display: flex;
  flex-direction: column;
  padding: 0rem 0rem 0rem !important;
  margin: 0.4rem 0.4rem 0rem !important;
  background-color: #6b6b6b;
}
.card.outline {
  color: #ff0d00;
  background: none;
  border: solid;
  border-width: 0.15rem;
}
.card p, .card h6, .card h5, .card h4, .card h3, .card h2, .card h1 {
  padding: 0.5rem 0.5rem 0.5rem !important;
  margin: 0rem 0rem 0rem !important;
  background: none;
}
.card h1 {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 300;
  color: #ededed;
}
.card h2 {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 300;
  color: #ededed;
}
.card h3 {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 300;
  color: #ededed;
}
.card h4 {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 300;
  color: #ededed;
}
.card h5 {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 300;
  color: #ededed;
}
.card h6 {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 300;
  color: #ededed;
}
.card p {
  font-size: 0.6rem;
  text-align: left;
  flex-grow: inherit;
}
.card img {
  border-width: 0.5rem;
  border-radius: 0.4rem !important;
  margin: 0.5rem 0.5rem 0.5rem 0.5rem !important;
  object-fit: cover;
  display: block;
  height: 10rem;
}

/** Typography.scss
 * Stylings for basic text tags
 */
/************ Code Behavior ************/
pre code, code {
  padding: 0rem 0.25rem;
  margin: 0rem;
  font-family: "Cutive Mono", monospace !important;
  font-size: 0.7rem;
  text-align: center;
  white-space: nowrap;
  background-color: #6b6b6b;
  border-width: 0rem;
  border-radius: 0.2rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  pre code, code {
    word-break: break-all;
  }
}
code {
  text-align: center;
}

/************ Code Block ************/
pre {
  width: 100%;
  margin: 0.5rem 0rem;
}
pre code {
  display: block;
  white-space: pre-wrap;
  padding: 0.25rem 0.5rem;
  text-align: left !important;
}
@media only screen and (max-width: 1024px) {
  pre code {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 768px) {
  pre code {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 480px) {
  pre code {
    font-size: 0.6rem;
  }
}

/** Footer.scss
 * Stylings for footers
 */
/************ Footer Behavior ************/
footer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0rem 0rem 0.5rem;
}

/** Form.scss
 * Styling for form elements
 */
/************ Text Input ************/
input[type=text], input[type=email], input[type=password], input[type=tel], input[type=url], input[type=search], input[type=number], select, textarea {
  font-size: 1rem;
  box-sizing: border-box;
  border: none 0.4rem !important;
  margin: 0rem 0rem 0.5rem;
  background: transparent;
  background-color: #6b6b6b;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, input[type=tel]::placeholder, input[type=url]::placeholder, input[type=search]::placeholder, input[type=number]::placeholder, select::placeholder, textarea::placeholder {
  color: #ff0d00;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ff0d00;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ff0d00;
}

form label {
  display: block;
  margin: 0rem 0rem 0.25rem;
  font-weight: 900;
}

input[type=text], input[type=email], input[type=password], input[type=tel], input[type=url], input[type=search], input[type=number], select {
  width: 100%;
  padding: 0.25rem 0.5rem;
  border-radius: 0.4rem !important;
}
input[type=text]:focus, input[type=text]:hover, input[type=email]:focus, input[type=email]:hover, input[type=password]:focus, input[type=password]:hover, input[type=tel]:focus, input[type=tel]:hover, input[type=url]:focus, input[type=url]:hover, input[type=search]:focus, input[type=search]:hover, input[type=number]:focus, input[type=number]:hover, select:focus, select:hover {
  border-color: #6b6b6b;
  outline: none;
}
textarea {
  overflow: hidden;
  border-radius: 0.4rem !important;
  min-width: 100%;
  max-width: 100%;
  padding: 0.2rem 0.4rem;
}
/************ Non Text Input ************/
input[type=file] {
  display: none;
}

select {
  padding: 0.2rem 0.4rem;
  -moz-appearance: none;
  border-radius: 0.2rem;
  background-color: #6b6b6b;
  color: #ff0d00;
}
select option {
  background-color: #6b6b6b;
  outline: none;
  color: #ff0d00;
}
select option:hover, select option:focus {
  border: 0rem solid transparent;
}

/** List.scss
 * Stylings for lists
 */
/************ Ordered & Unordered Lists ************/
ul, ol {
  padding: 0rem;
  list-style-position: inside;
}
ul dt, ol dt {
  color: #ff0d00;
}
ul li, ul dd, ol li, ol dd {
  margin-bottom: 0.25rem;
}
/************ Discription Lists ************/
z .nav-container .nav-logo-icon, .nav-container z .nav-logo-icon, z .nav-container .nav-object-icon, .nav-container z .nav-object-icon, z .nav-container .nav-logo-big, .nav-container z .nav-logo-big, z .nav-container .nav-logo, .nav-container z .nav-logo, z .nav-container .nav-object, .nav-container z .nav-object {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0rem 1rem 0rem;
  font-size: 1rem;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  z .nav-container .nav-logo-icon, .nav-container z .nav-logo-icon, z .nav-container .nav-object-icon, .nav-container z .nav-object-icon, z .nav-container .nav-logo-big, .nav-container z .nav-logo-big, z .nav-container .nav-logo, .nav-container z .nav-logo, z .nav-container .nav-object, .nav-container z .nav-object {
    margin: 0rem 0rem 0rem;
    padding: 0rem 1rem 0rem;
  }
}
@media only screen and (max-width: 480px) {
  z .nav-container .nav-logo-icon, .nav-container z .nav-logo-icon, z .nav-container .nav-object-icon, .nav-container z .nav-object-icon, z .nav-container .nav-logo-big, .nav-container z .nav-logo-big, z .nav-container .nav-logo, .nav-container z .nav-logo, z .nav-container .nav-object, .nav-container z .nav-object {
    font-size: 1.4rem;
  }
}

/* Style for a navbar container */
.nav-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /************ Navbar Objects ************/
  /************ Navbar Icons ************/
}
@media only screen and (max-width: 768px) {
  .nav-container {
    flex-direction: row;
  }
  .nav-container .nav-accordian {
    vertical-align: text-top;
    padding: 0rem 1rem 0rem;
  }
  .nav-container .nav-accordian:after {
    font-size: 2.3rem;
    content: "☰";
  }
  .nav-container:focus-within .nav-object {
    display: flex !important;
    visibility: visible !important;
  }
}
@media only screen and (max-width: 768px) {
  .nav-container .nav-object {
    flex-basis: 100%;
    visibility: hidden;
    display: none;
    color: #ff0d00;
  }
}
@media only screen and (max-width: 768px) {
  .nav-container .nav-logo {
    font-size: 2.3rem;
    flex-basis: 0;
    flex-grow: 2;
    visibility: visible;
    justify-content: flex-start;
  }
}
.nav-container .nav-logo-big {
  flex-basis: 100%;
  margin: 0rem 2rem 1rem;
  font-size: 1.8rem;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .nav-container .nav-logo-big {
    flex-basis: 0;
    flex-grow: 2;
    visibility: visible;
    justify-content: flex-start;
  }
}
.nav-container .nav-object-icon {
  margin: 0rem 0rem;
  height: 1.4rem;
}
.nav-container .nav-logo-icon {
  margin: 0rem 0rem;
  height: 2.1rem;
}

/** Progress.scss
 * Stylings for progress bars
 */
/************ General Styling ************/
progress {
  display: block;
  margin: 0.3rem 0rem;
  width: 100%;
  height: 0.25rem;
  border: none;
  border-radius: 0.2rem;
}

progress::-moz-progress-bar {
  animation: all 0.2s linear;
  background: #6b6b6b;
  border-radius: 0.2rem;
}

progress::-webkit-progress-bar {
  animation: all 0.2s linear;
  background: #6b6b6b;
  border-radius: 0.2rem;
}

progress::-webkit-progress-value {
  background: #6b6b6b;
  border-radius: 0.2rem;
}

/************ Size ************/
.progress-thin {
  height: 0.125rem;
}

.progress-thick {
  height: 0.75rem;
}

/************ Colors ************/
.progress-primary::-moz-progress-bar {
  background: #6d6d6d;
}
.progress-primary::-webkit-progress-value {
  background: #6d6d6d;
}

.progress-error::-moz-progress-bar {
  background: #ff5351;
}
.progress-error::-webkit-progress-value {
  background: #ff5351;
}

.progress-warning::-moz-progress-bar {
  background: #f5ea4b;
}
.progress-warning::-webkit-progress-value {
  background: #f5ea4b;
}

.progress-info::-moz-progress-bar {
  background: #4dccff;
}
.progress-info::-webkit-progress-value {
  background: #4dccff;
}

.progress-success::-moz-progress-bar {
  background: #7dfc81;
}
.progress-success::-webkit-progress-value {
  background: #7dfc81;
}

/** Table.scss
 * Table stylings
 */
/************ Table Behavior ************/
table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table thead tr, table tbody tr {
  border-bottom: 0.075rem solid #6b6b6b;
}
table td, table th {
  padding: 0.125rem 0.25rem;
}
table td:first-of-type, table th:first-of-type {
  padding-left: 0rem;
}
table td:last-of-type, table th:last-of-type {
  padding-right: 0rem;
}
@media only screen and (max-width: 768px) {
  table td, table th {
    font-size: 1rem;
  }
}
table th {
  color: #ff0d00;
}
table td {
  color: #ededed;
}
/** Tooltip.scss
 * Tooltip stylings
 */
/************ Table Behavior ************/
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 0.1rem dotted #ededed;
}

.tooltip .tooltip-text {
  visibility: hidden;
  background-color: #6b6b6b;
  color: #ff0d00;
  font-size: 0.6rem;
  border-radius: 0.4rem;
  text-align: center;
  padding: 0.25rem;
  position: absolute;
  width: max-content;
  margin: 0rem 0rem 0rem 0.2rem;
  z-index: 1;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
}

/** Typography.scss
 * Stylings for basic text tags
 */
/************ Headings ************/
/* Inserts a template into headign styles */
/* Headings sizes 1-6 */
h1 {
  margin: 0rem 0rem 0.5rem;
  font-size: 2.6rem;
  font-weight: 900;
  color: #ff0d00;
}
h1 * {
  font-size: 2.6rem;
}

h2 {
  margin: 0rem 0rem 0.5rem;
  font-size: 2.3rem;
  font-weight: 900;
  color: #ff0d00;
}
h2 * {
  font-size: 2.3rem;
}

h3 {
  margin: 0rem 0rem 0.5rem;
  font-size: 2.1rem;
  font-weight: 900;
  color: #ff0d00;
}
h3 * {
  font-size: 2.1rem;
}

h4 {
  margin: 0rem 0rem 0.5rem;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ff0d00;
}
h4 * {
  font-size: 1.8rem;
}

h5 {
  margin: 0rem 0rem 0.5rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ff0d00;
}
h5 * {
  font-size: 1.6rem;
}

h6 {
  margin: 0rem 0rem 0.5rem;
  font-size: 1.4rem;
  font-weight: 900;
  color: #ff0d00;
}
h6 * {
  font-size: 1.4rem;
}

/************ Block Typography ************/
/* Paragraph */
p {
  margin: 0.5rem 0rem;
}

/************ Inline Typography ************/
/* Strong */
strong, b, ul dt, ol dt, .nav-container .nav-logo, .nav-container .nav-logo-big, table th {
  font-weight: 900;
}

/* Emphasis */
em, i {
  font-style: italic;
  font-weight: 100;
}

/* Anchor */
a :not(button), a:not(button) {
  background: none;
  color: #007ba7;
  text-decoration: none;
}
a :hover:not(button), a:hover:not(button) {
  color: #ffcd86;
}

/* Sub & Super script */
.small, small, sup, sub, footer {
  font-size: 0.6rem !important;
}

/* Other tags */
/** Color.scss
 * Text & Background color codes
 *
 *		Greyscale Colors
 * $color-white-true: #fff
 * $color-black-true: #000

 * $color-grey: #7c7c7c
 * $color-grey-light: #e2e2e2
 * $color-grey-dark: #5e5e5e
 *
 *		Main Colors
 * $color-red: #d8271d
 * $color-orange: #ff9933
 * $color-yellow: #f5e828
 * $color-cerulean: #007ba7
 *
 *		Tints
 * $color-red-tint: #ffe0e0
 * $color-orange-tint: #ffe0c0
 * $color-yellow-tint: #ffffc0
 * $color-cerulean-tint: #a7e8ff
 *
 *		Other Colors
 *$color-sakura: #ffb7c5
 * $color-electric-indigo: #6f00ff
 *
 *
 /*

/************ Background ************/
.bg-none {
  background: none !important;
  border: none;
}

/* Main colors */
.bg-red {
  background-color: #ff0d00 !important;
  border-color: #ff0d00 !important;
}

.bg-orange {
  background-color: #ff8f1f !important;
  border-color: #ff8f1f !important;
}

.bg-blue {
  background-color: #0c86ff !important;
  border-color: #0c86ff !important;
}

.bg-sakura {
  background-color: #ffb7c5 !important;
  border-color: #ffb7c5 !important;
}

.bg-cerulean {
  background-color: #007ba7 !important;
  border-color: #007ba7 !important;
}

/* Greyscale colors */
.bg-grey-light {
  background-color: #dbdbdb !important;
  border-color: #dbdbdb !important;
}

.bg-grey {
  background-color: #6b6b6b !important;
  border-color: #6b6b6b !important;
}

.bg-grey-dark {
  background-color: #505050 !important;
  border-color: #505050 !important;
}

/* Other colors */
.bg-electric-indigo {
  background-color: #6f00ff !important;
  border-color: #6f00ff !important;
}

.bg-cream {
  background-color: #fff1d0 !important;
  border-color: #fff1d0 !important;
}

/************ Text ************/
/* Main colors */
.color-red {
  color: #ff0d00 !important;
}

.color-orange {
  color: #ff8f1f !important;
}

.color-blue {
  color: #0c86ff !important;
}

.color-sakura {
  color: #ffb7c5 !important;
}

.color-cerulean {
  color: #007ba7 !important;
}

/* Greyscale colors */
.color-grey-light {
  color: #dbdbdb !important;
}

.color-grey {
  color: #6b6b6b !important;
}

.color-grey-dark {
  color: #505050 !important;
}

/* Other colors */
.color-electric-indigo {
  color: #6f00ff !important;
}

.color-cream {
  color: #fff1d0 !important;
}

/** Grid.scss
 * Flexbox grid system
 */
/************ Row ************/
.row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0rem 0rem 0.25rem;
  width: 100%;
  /** Row Variations **/
}
.row.row-wrap {
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .row {
    margin: 0rem;
  }
}

/************ Column ************/
.col-5, .col-4, .col-3, .col-2, .col, .card {
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: calc(88%/6);
  padding: 0.5rem 0rem;
  margin: 0.2rem 1%;
  border-radius: 0.2rem;
}
@media only screen and (max-width: 768px) {
  .col-5, .col-4, .col-3, .col-2, .col, .card {
    flex-grow: 0;
    flex-basis: 100%;
  }
}
/* fix later */
.col-2 {
  min-width: 31.2%;
}
.col-3 {
  min-width: 47.8%;
}
.col-4 {
  min-width: 64.4%;
}
.col-5 {
  min-width: 81%;
}
.grid-force-horizontal .col {
  flex-direction: row;
  flex-grow: 1;
  flex-basis: 0;
}

/** Util.scss
 * Collection of smaller Modules/Utilities
 */
/************ Containers ************/
.container {
  padding: 0rem 0rem 0rem;
  margin: 0 auto;
  width: 60%;
}
@media only screen and (max-width: 1024px) {
  .container {
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .container {
    width: 95%;
  }
}

.section {
  padding: 0rem 0rem 1rem;
  margin: 0 auto;
}

/************ Horizontal Rule ************/
hr {
  width: 40%;
  height: 0.05rem;
  border: none;
  border-radius: 0.8rem;
  background-color: #6b6b6b;
}

.hr-wide {
  width: 60%;
  height: 0.05rem;
  border: none;
  border-radius: 0.8rem;
}

/************ Positioning/Display ************/
/* visibility */
@media only screen and (max-width: 768px) {
  .hidden-mobile {
    display: none;
    visibility: hidden;
  }
}
@media only screen and (min-width: 768px) {
  .hidden-desktop {
    display: flex;
    visibility: visible;
  }
}
/* Display */
.display-hidden {
  display: none;
  visibility: hidden;
}

.display-visible {
  display: flex;
  visibility: visible;
}

.display-cover {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.box-shadow {
  box-shadow: 0.2rem 0.2rem 0rem #ffcd86;
}

.text-shadow {
  text-shadow: 0.2rem 0.2rem 0rem #ffcd86;
}

/* Position */
.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-relative {
  position: relative;
}

/* Flexbox */
.center, .flex-direction-horizontal, .flex-direction-vertical, .flex-align-right, .flex-align-left, .flex-align-center, .flex-justify-right, .flex-justify-left, .flex-justify-center, footer {
  display: flex;
  align-items: center;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-left {
  justify-content: flex-start;
}

.flex-justify-right {
  justify-content: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-left {
  align-items: flex-start;
}

.flex-align-right {
  align-items: flex-end;
}

.flex-direction-vertical {
  flex-direction: column;
}

.flex-direction-horizontal {
  flex-direction: row;
}

.center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Text */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Float */
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-clear {
  clear: both;
}

/* size */
.full {
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.full-width {
  min-width: 100%;
  max-width: 100%;
}

.full-vw {
  min-width: 100vw;
  max-width: 100vw;
}

.full-height {
  min-height: 100%;
  max-height: 100%;
}

.full-vh {
  min-height: 100vh;
  max-height: 100vh;
}

/* border */
.border {
  border-radius: 0.2rem !important;
}

.border-round {
  border-radius: 0.8rem !important;
}

.border-sharp {
  border-radius: 0rem !important;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

/* footer */
.footer-push {
  position: relative;
  padding: 3rem 0rem 3rem !important;
}

.footer-bottom {
  /* margin: 0 auto; */
  bottom: 0;
  position: absolute;
}
