#loaderWrap {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40001;
}
#loaderWrap .loaderOverlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40001;
}
#loaderWrap .vertical-offset {
  z-index: 40002;
}
#loaderWrap .vertical-offset .loaderBox {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 0;
  transform: translateY(20%);
  position: relative;
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #007283;
  border-radius: 50%;
  border-top: 20px solid #eaf0f6;
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
  color: #007283;
  padding: 20px;
  letter-spacing: 1px;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
  border-left: 0px solid;
  text-align: center;
}

h2 {
  color: #007283;
  font-size: 20px;
  border-bottom: 1.5px solid #007283;
  margin: 0px 0px 10px;
}

.row {
  width: 1024px;
}

table {
  background: none;
  border: 0px;
  border-collapse: collapse;
  margin-bottom: 0;
}
table tr {
  background: none !important;
}
table td {
  background: none;
}

ul,
ol,
li {
  list-style-position: inside;
}

/* Content */
div#content {
  padding: 20px;
  background: none repeat scroll 0 0 white;
  margin: 0 auto;
  text-align: left;
  border: 1px solid #dbdbdb;
  box-shadow: 0 1px 3px #919d9d;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
div#content a {
  color: #503c98;
  text-decoration: underline;
}
div#content a:hover {
  color: rgb(101.2075471698, 77.9056603774, 185.0943396226);
  text-decoration: underline;
}
div#content a.landingLinks {
  align-items: center;
  background: #503c98;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
  font-family: "MyriadPro", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin: 20px 0;
  padding: 30px;
}
div#content a.landingLinks:hover {
  background: rgb(101.2075471698, 77.9056603774, 185.0943396226);
  transition: all 0.2s ease-out;
}
div#content a.landingLinks:active {
  transition: all 0.2s ease-in;
}
div#content .error {
  color: #cc0000;
  font-style: italic;
  padding: 1px;
}

input[type=button],
input[type=submit],
input[type=reset],
.button,
button {
  align-items: center;
  background: #503c98;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
  padding: 10px 20px;
  font-size: 14px;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
.button:hover,
button:hover {
  background: rgb(101.2075471698, 77.9056603774, 185.0943396226);
  transition: all 0.2s ease-out;
}
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
.button:active,
button:active {
  transition: all 0.2s ease-in;
}

input[type=text] {
  color: #000000;
}

.row.landingSection {
  margin-bottom: 20px;
}

.no-padding {
  padding: 0px;
}

#errorMsg {
  color: red;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}

table#pricing {
  width: 100%;
  margin-top: 10px;
}
table#pricing tr td {
  text-align: center;
}
table#pricing tr td:first-of-type {
  text-align: left;
}
table#pricing tr td.colHeader {
  background-color: #503c98;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
}
table#pricing tr td.colHeader h4 {
  color: #ffffff;
}
table#pricing tr td.colHeader i {
  font-size: 11px;
}
table#pricing tr.sectionHeader {
  border-bottom: 1px solid black;
}
table#pricing tr.sectionHeader td {
  background-color: #00bdd9;
}
table#pricing tr.sectionHeader td h4 {
  color: #333333;
  padding-bottom: 10px;
}
table#pricing tr.sectionHeader td p {
  font-size: 16px;
  padding-left: 20px;
}
