* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  color: #545454;
}

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

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.powered-by-tf {
  font-size: 12px;
  text-align: center;
}
.powered-by-tf img {
  position: relative;
  top: 2px;
}

a {
  color: #47ad49;
  font-weight: bold;
  font-style: italic;
}
a:hover {
  color: #4fc451;
}

#header {
  width: 100%;
  border-bottom: 2px solid #cdd0d4;
  max-height: 85px;
}
#header .tf-logo {
  padding: 25px;
}
#header .logo-header {
  padding: 20px;
  max-height: 45px;
  vertical-align: middle;
}

#top_bar {
  height: 44px;
  margin: 5px auto 0;
  width: 948px;
}

#main_content {
  width: 100%;
}

#outer_left_col {
  width: 15%;
  border-right: 2px solid #cdd0d4;
  min-width: 200px;
}
@media only screen and (max-width: 500px) {
  #outer_left_col {
    display: none;
  }
}

#organization-info {
  padding: 5px 20px;
  font-size: 14px;
  line-height: 22px;
  word-wrap: break-word;
}
#organization-info img {
  padding: 0 10px;
}

#organization-info h2, h5 {
  color: black;
  font-size: 16px;
  padding-bottom: 5px;
}

.domain-link {
  color: black;
  text-decoration: underline;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.domain-link:hover {
  color: #4d4d4d;
}

#outer_center {
  width: 60%;
  min-height: calc(100vh - 87px);
  border-left: 2px solid #cdd0d4;
  box-sizing: border-box;
  padding: 50px 40px 20px 40px;
  margin-left: -2px;
  word-wrap: break-word;
}
@media only screen and (max-width: 1024px) {
  #outer_center {
    width: calc(100% - 210px);
  }
}
@media only screen and (max-width: 500px) {
  #outer_center {
    width: 100%;
    min-height: 0;
    padding: 30px;
  }
}

#center h1 {
  font-size: 40px;
  color: black;
  line-height: 60px;
}
#center h2 {
  font-size: 18px;
}
#center h3 {
  font-size: 30px;
  color: black;
  line-height: 40px;
}
#center h4 {
  font-size: 15px;
}
#center #uploadformcontainer {
  font-size: 13px;
}

.mobile-show {
  display: none;
}
@media only screen and (max-width: 500px) {
  .mobile-show {
    display: block;
  }
}

.mobile-hide {
  display: block;
}
@media only screen and (max-width: 500px) {
  .mobile-hide {
    display: none;
  }
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.search-bar {
  border: 1px solid #f0f0f0;
  background-color: #f0f0f0;
  padding: 0px 10px;
  border-radius: 15px;
  margin: 0 10px 10px 10px;
}
.search-bar.mobile {
  height: 35px;
}
.search-bar.mobile .search-input {
  font-size: 14px;
}
.search-bar.mobile img {
  vertical-align: middle;
}
.search-bar .search-input {
  border: none;
  background: none;
  padding-left: 2px;
  width: calc(100% - 40px);
  height: inherit;
  outline: none;
}
.search-bar .clear-search {
  background: none;
  border: none;
}

#contacts-left-panel {
  padding-bottom: 20px;
}

.contacts {
  max-height: 340px;
  overflow-y: scroll;
}
@media only screen and (max-width: 500px) {
  .contacts {
    max-height: none;
  }
}

.avatar-circle {
  border-radius: 50%;
  float: left;
  margin: 2px 8px 2px 0;
}

.no-contacts {
  font-size: 12px;
  text-align: center;
  display: block;
}

.contact-name {
  font-size: 18px;
  line-height: 40px;
  color: gray;
  font-weight: normal;
  font-style: normal;
}

.recipient-name {
  padding-top: 5px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

#upload_form .input-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#upload_form .input-row .input-element {
  width: 47%;
}
@media only screen and (max-width: 650px) {
  #upload_form .input-row {
    display: block;
  }
  #upload_form .input-row .input-element {
    width: 100%;
  }
}
#upload_form label {
  display: block;
  margin-top: 10px;
  font-weight: normal;
  font-size: 12px;
}
#upload_form input[type=email],
#upload_form input[type=text],
#upload_form textarea {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #dde0e3;
  border-radius: 5px;
  margin-top: 5px;
  padding: 10px 5px;
  width: 100%;
  font-size: 12px;
  font-family: inherit;
  box-sizing: border-box;
}

#upload_form input[type=submit], a.rounded-button, #terms-continue {
  background: #298831;
  border: 0;
  border-radius: 20px;
  color: white;
  padding: 10px 10px;
  white-space: normal;
  text-transform: uppercase;
  font-weight: bold;
  width: 200px;
  font-size: 12px;
  display: block;
  text-align: center;
  line-height: 14px;
  box-sizing: border-box;
  font-style: normal;
  -webkit-appearance: none;
}
#upload_form input[type=submit]:hover, a.rounded-button:hover, #terms-continue:hover {
  background: #45974c;
}
#upload_form input[type=submit]:disabled, a.rounded-button:disabled, #terms-continue:disabled {
  background-color: #a7d5a8;
}
#upload_form input[type=submit]:disabled:hover, a.rounded-button:disabled:hover, #terms-continue:disabled:hover {
  cursor: not-allowed;
}

#upload_area h2 {
  color: black;
  font-size: 12px;
}

li {
  list-style-type: none;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.contact {
  padding: 5px 20px;
}
.contact .contact-name.sidebar {
  color: gray;
  font-size: 14px;
  line-height: 30px;
}
.contact:hover .contact-name {
  color: black;
}
.contact a {
  display: inline-block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  color: inherit;
  font-weight: inherit;
}

.parsley-error-list {
  color: red;
  font-size: 13px;
  margin: 3px 0;
}

#flash_messages {
  display: inline-block;
  vertical-align: bottom;
  font-size: 15px;
  padding: 10px 0px;
}

.error {
  color: red;
}

.success {
  color: #008000;
}

.clear {
  clear: both;
}

ul.steps {
  font-size: 14px;
  padding: 10px;
}

ul.steps li {
  margin: 15px 0;
}

.uploader {
  display: block;
  overflow: hidden;
  position: relative;
}
.uploader input {
  cursor: pointer;
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.uploading {
  margin: 5px 0;
  min-height: 16px;
}

.filename {
  background: url("../../images/files/_blank.svg") no-repeat left;
  background-size: 12px 16px;
  color: #6d6d6d;
  display: block;
  font-size: 10pt;
  line-height: 14pt;
  padding: 0 20px;
}
.filename a {
  color: #4c4c4c;
}

.filesize {
  color: #6d6d6d;
  display: block;
  float: left;
  font-size: 10pt;
  line-height: 14pt;
  margin: 2px 20px 0;
}

.progress {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  background: url("../../images/progressContainerBG.png") repeat-x;
  border-radius: 6px;
  display: block;
  float: left;
  height: 8px;
  margin-left: 8px;
  margin-top: 8px;
  padding: 0 1px 1px;
  width: 100px;
}
.progress .bar {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: url("../../images/progressBG.png") repeat-x;
  border-radius: 5px;
  display: block;
  height: 8px;
}
.progress .error {
  color: red;
  font-size: 12px;
  padding-top: 5px;
  position: absolute;
}

.files {
  margin: 20px 0;
}

.cancelUpload {
  background: url("../../images/cross_lightgrey_radeonred.svg") 0 0 no-repeat;
  border: 0;
  height: 16px;
  margin-left: 12px;
  margin-top: 0;
  text-indent: -9999px;
  width: 16px;
}
.cancelUpload:hover {
  opacity: 0.7;
}

.topbar, h6 {
  font-size: 11px;
  color: gray;
  padding: 10px 0 5px 0;
}
.topbar.left-pad, h6.left-pad {
  padding-left: 20px;
}

.left {
  float: left;
}

#language_form {
  float: right;
  line-height: 10px;
}
#language_form input[type=submit] {
  background: none;
  border: 0;
  color: #a4a4a4;
  font-size: 9pt;
  padding: 4px 10px;
  text-decoration: underline;
}
#language_form input[type=submit]:hover {
  color: #777;
}

.file-area .upload_file {
  background: #fbfbfb;
  border: 2px dashed #dde0e3;
  border-radius: 3px;
  color: #888;
  display: block;
  font-size: 9pt;
  height: 100px;
  padding: 5px;
  text-align: center;
  width: 100%;
}
.file-area .max-file-size {
  font-size: 11px;
  float: right;
  color: gray;
  margin-right: -10px;
  padding-top: 5px;
}
.file-area img {
  padding-top: 15px;
}

.dialog-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999999;
}
.dialog-overlay .dialog {
  width: 400px;
  margin: 30vh auto 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.dialog-overlay .dialog header {
  padding: 10px 8px;
  background-color: #f6f7f9;
  border-bottom: 1px solid #e5e5e5;
}
.dialog-overlay .dialog .confirm-text {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.dialog-overlay .dialog p {
  font-size: 20px;
  color: black;
}
.dialog-overlay .dialog .controls {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.dialog-overlay .controls .button {
  height: 40px;
  width: 100px;
  border-radius: 5px;
  cursor: pointer;
}
.dialog-overlay .dialog .button-default {
  background-color: rgb(136, 136, 136);
  border: 0px;
  color: white;
}
.dialog-overlay .dialog .button-confirm {
  background-color: #47AD49;
  border: 0px;
  color: #f5f5f5;
  margin-right: 15px;
}

#nsuarb-terms ul {
  list-style: revert;
  margin-left: 30px;
}
#nsuarb-terms li {
  list-style-type: revert;
  overflow: revert;
  white-space: revert;
}
#nsuarb-terms #terms-checkbox {
  margin-top: -4px;
  margin-right: 5px;
}

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