.header {
    width: 100%;
    height: 64px;
    background-color: #830051;
    display: block;
}

.headertext {
    font-size: 15px;
    color: #ffffff;
    padding: 24px;
}

.right-align {
  text-align: right;
}

a {
    text-decoration: none;
}

.button {
    width: 100%;
    height: 32px;
    border-radius: 0px;
    border: solid 1px #830051;
    color: #830051;
    font-family: Arial;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.margin-top {
    margin-top: 30px;
}
@media only screen and (max-width: 40em) {
  .margin-top {
    margin-top: 16px;
  }
}

.primary {
    background-color: #830051;
    color: #ffffff;
}

.padding {
    padding: 8px !important;
}

.inputbox {
    width: 100%;
    height: 32px;
    border-radius: 2px;
    border: solid 1px #e0e2e4;
    padding: 8px;
}

.title {
    font-family: Arial;
    font-size: 35px;
    color: #830051;
    text-align: left;
    padding: 36px 8px;
}
@media only screen and (max-width: 40em) {
  .title {
    font-size: 30px;
  }
}

.logo-heading {
    text-align: center;
}

h5, p {
    font-family: Arial;
    font-size: 15px;
    color: #545454;
    line-height: normal;
    margin: 16px;
}

hr {
    display: none;
}

.box {
  margin: 8px 8px auto;
  padding: 8px;
  max-width: 416px;
  min-height: 267px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px #e0e2e4;
}

p {
  font-family: Arial;
  font-size: 15px;
  color: #545454;
  text-align: left;
  margin: 8px;
}

.ds-select {
  width: 100%;
  height: 32px;
  border-radius: 2px;
  background-color: #fcfcfc;
  border: solid 1px #e0e2e4;
  color: #545454;
}

.checkbox {
  width: 16px;
  height: 16px;
  border: solid 1px #e0e2e4;
}

.checkbox-text{
  display: inline;
  font-family: Arial;
  font-size: 15px;
  color: #545454;
  text-align: left;
  margin: 16px 8px 8px 8px;
}

body {
  height: 100%;
  font-family: Arial;
  margin: 0px;
}

.content {
    display: block;
    margin: 0 auto;
    min-height: calc(100vh - 198px); /* 198px = header height + footer height */
    max-width: 432px;
    text-align: left;
}
@media only screen and (max-width: 40em) {
  .content {
    min-height: calc(100vh - 128px);
  }
}

.margin {
    padding: 24px 0px;
}

.footer {
    width: 100%;
    height: 134px;
    background-color: #e0e2e4;
    text-align: center;
}
@media only screen and (max-width: 40em) {
  .footer {
    height: 64px;
  }
}

.footercontainer {
    position: relative;
}

.footer-info {
    font-family: Arial;
    font-size: 12px;
    color: #000000;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 16px;
    padding: 32px;
}

@media only screen and (max-width: 40em) {
    .hide-for-small {
        display: none;
    }
}


.footer-logo {
    float: right;
    width: 107px;
    height: 70px;
    padding: 32px;
}
@media only screen and (max-width: 40em) {
    .footer-logo {
        width: 49px;
        height: 32px;
        padding: 16px;
    }
}

.dropbtn {
    background-color: #830051;
    color: white;
    font-size: 15px;
    padding: 8px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
    text-align: left;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 120px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #545454;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropicon {
    font-size: 1em !important;
    color: #FFFFFF;
    margin: 0px 8px;
}