/* Font Code */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Tangerine&display=swap");
.tangerine {
  font-family: "Tangerine", cursive;
  font-size: 2.6rem;
  text-align: center;
}

/* End Of Font Code */
/* Reset Bootstrap Code */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
audio,
video {
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
  user-select: none;
}

/* End Of Reset Bootstrap Code */
/* Base Code */
button, a {
  background-color: #eee;
  border: 2px solid #a1a1a1;
  border-radius: 6px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: block;
  font-size: 0.9rem;
  height: 36px;
  margin: 20px auto;
  padding-top: 4px;
  text-align: center;
}

a {
  outline: none;
}
a:focus, a:link, a:visited, a:hover, a:active {
  color: #333;
  text-decoration: none;
}
a:hover {
  transform: scale(1.05, 1.05);
  color: white;
  background-color: #7a7a7a;
}

body {
  background-color: white;
  border: solid 6px #7a7a7a;
  color: #333;
  display: block;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 1000px;
  min-height: 400px;
  padding: 14px;
}

button:hover {
  transform: scale(1.05, 1.05);
  color: white;
  background-color: #7a7a7a;
}
button:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5714rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6666rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

h5 {
  font-size: 1.125rem;
  margin-bottom: 0.8888rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

header {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

hr {
  background-color: #7a7a7a;
  height: 5px;
  margin: 20px 0;
  width: 100%;
}

html {
  background-color: #ccc;
  height: 100%;
  width: 100%;
}

img,
video {
  border: 2px solid #7a7a7a;
  height: auto;
  max-width: 100%;
}

p {
  margin: 12px 0;
  text-align: justify;
}

.box-frame {
  width: 100%;
}

.caption {
  display: block;
  font-size: 0.9rem;
  margin-top: -4px;
  text-align: center;
}

.clear-both {
  clear: both;
  margin-bottom: 20px;
}

.email-color {
  color: #00f;
}

.float-left {
  float: left;
  margin-right: 30px;
}

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

.flex-row-column {
  flex: 1;
  text-align: center;
}

.invisible {
  visibility: hidden;
}

.line-height-large {
  line-height: 2.5;
}

.loading {
  font-size: 2rem;
  position: relative;
  top: 200px;
}

.warning {
  background-color: white;
  color: #ff3860;
}

/* End Of Base Code */
/* Animations Code */
.progress-bar {
  border: 1px solid #7a7a7a;
  height: 8px;
  margin: 20px auto;
  width: 80%;
}

.progress-value {
  background-color: #c8c864;
  height: 100%;
  width: 0;
}

.opacity-zero-to-full {
  opacity: 0.1;
  transition: opacity 3s;
}

.loading-splash-screen {
  font-size: 2rem;
  margin-top: 130px;
  text-align: center;
}

/* End Of Animations Code */
/* Card Code */
.card {
  background-color: #eee;
  border: #7a7a7a 1px solid;
  border-radius: 6px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  margin: 10px auto;
  max-width: 200px;
  padding: 14px 10px 2px;
}

.card > img {
  border-radius: 6px;
  display: block;
  margin: 0 auto;
  width: 94%;
}

.info {
  display: block;
  line-height: 2;
}

.info > .name {
  font-weight: 700;
  text-align: center;
}

.info > .event {
  font-size: 1rem;
  text-align: center;
}

/* End Of Card Code */
/* Container Code */
.container-bordered {
  border: 1px solid #7a7a7a;
}

.container-centered {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
}

.container-margin-big {
  margin: 3rem;
}

.container-margin-normal {
  margin: 2rem;
}

.container-margin-small {
  margin: 1rem;
}

.container-top-bottom-big {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}

.container-top-bottom-normal {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.container-top-bottom-small {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.container-width-small {
  width: 20%;
}

.container-width-medium {
  width: 50%;
}

.container-width-large {
  width: 90%;
}

.container-bottom-big {
  margin-bottom: 2.5rem;
}

.container-bottom-normal {
  margin-bottom: 1.5rem;
}

.container-bottom-small {
  margin-bottom: 1rem;
}

.container-margin-left-big {
  margin-left: 3rem;
}

.container-margin-left-normal {
  margin-left: 2rem;
}

.container-margin-left-small {
  margin-left: 1rem;
}

.container-box-large, .container-box-medium, .container-box-small {
  background-color: #dbdbdb;
  border: #7a7a7a 2px solid;
  margin: 20px auto;
  overflow: auto;
  padding: 20px;
}

.container-box-small {
  height: 200px;
}

.container-box-medium {
  height: 340px;
}

.container-box-large {
  height: 500px;
}

.container-a-height-large {
  height: 6rem;
}

/* End Of Container Code */
/* Display Code */
.display-block {
  display: block;
}

.display-block-center {
  display: block;
  margin: 10px auto;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.display-none {
  display: none;
}

.display-toggle {
  display: none;
}

.display-max-width-90 {
  max-width: 90%;
}

.display-max-width-80 {
  max-width: 80%;
}

.display-max-width-70 {
  max-width: 70%;
}

.display-center {
  text-align: center;
}

.display-no-border {
  border: 0;
}

/* End Of Display Code */
/* Media Code */
.responsive-width-small,
.responsive-width-medium,
.responsive-width-large {
  width: 90%;
}

.responsive-button-small,
.responsive-button-medium,
.responsive-button-large {
  display: block;
  width: 90%;
}

.responsive-margin-left {
  margin-left: 5%;
}

.responsive-margin-left-right {
  margin-left: 5%;
  margin-right: 5%;
}

.mobile {
  display: block;
}

.desk-top {
  display: none;
}

@media (min-width: 720px) {
  .grid-columns-4, .grid-columns-3, .grid-columns-2, .grid-columns-1 {
    display: grid;
  }

  header {
    font-size: 1.4rem;
  }

  .grid-columns-1 {
    grid-template-columns: 1fr;
  }

  .grid-columns-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  body {
    margin: 20px auto;
  }

  button {
    font-size: 1rem;
  }

  .box-frame {
    border: 4px #dbdbdb solid;
    box-shadow: 4px 4px 4px #dbdbdb;
    margin: 10px auto;
    padding: 0 20px;
    width: 96%;
  }

  .responsive-width-small {
    width: 30%;
  }

  .responsive-width-medium {
    width: 50%;
  }

  .responsive-width-large {
    width: 90%;
  }

  .display-toggle {
    display: block;
  }

  .responsive-margin-left {
    margin-left: 15%;
  }

  .responsive-margin-left-right {
    margin-left: 15%;
    margin-right: 15%;
  }

  .responsive-button-small {
    display: inline-block;
    margin: 20px;
    width: 20%;
  }

  .responsive-button-medium {
    display: inline-block;
    margin: 20px;
    width: 30%;
  }

  .responsive-button-large {
    display: inline-block;
    margin: 20px;
    width: 40%;
  }

  .mobile {
    display: none;
  }

  .desk-top {
    display: block;
  }
}
/* End Of Media Code */
/* Padding Code */
.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-top-large-adjust {
  padding-top: 1.5rem;
}

/* End Of Padding Code */
/* Tables Code */
td {
  border: 1px solid #7a7a7a;
  height: 50px;
  padding: 5px;
  text-align: left;
  background-color: #eee;
}

th {
  border: 1px solid #7a7a7a;
  height: 40px;
  text-align: center;
  background-color: #eee;
}

table {
  border: 2px solid #7a7a7a;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 10px auto 20px;
  width: 94%;
}

tr:hover > td {
  background-color: #7a7a7a;
  color: white;
  border: 1px solid white;
}

.td-info {
  width: 30%;
}

/* End Of Tables Code */
/* Text Code */
.text-justified {
  text-align: justify;
}

.text-centered {
  text-align: center;
}

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

.text-capitalized {
  text-transform: capitalize;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-italic {
  font-style: italic;
}

/* End Of Text Code */

/*# sourceMappingURL=roy.css.map */
