@charset "UTF-8";
/**
 *  At a minimum every palette defines a base colour, and then optionally adds tones use the following naming pattern:
 *
 *    x-dark
 *    dark *
 *    mid-dark
 *    base (default)
 *    mid-light
 *    light *
 *    x-light
 *  If we have fewer than seven tones, we’ll define light and dark first to allow for adding intermediate tones at a later date.
**/
.logo {
  width: 148px;
  height: 90px;
  background-image: url("../images/icons/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.login {
  height: 100%;
  position: relative;
}
@media (min-width: 970px) {
  .login.container {
    max-width: 940px;
  }
}
.login .message-welcome {
  text-transform: uppercase;
  text-align: center;
  margin: 30px 0;
  font-size: 1.2em;
}
.login .message-instructions {
  text-align: center;
  margin-bottom: 25px;
}

.login-form {
  margin-bottom: 50px;
}
.login-form .form-row {
  margin-bottom: 15px;
}
.login-form label {
  text-align: left;
  margin-bottom: 5px;
}
.login-form input[type=submit] {
  float: right;
}
@media (min-width: 768px) {
  .login-form .login-form__label {
    text-align: right;
  }
}

.header {
  padding: 5px 0;
  background-color: #FFFFFF;
}
.header .message {
  margin-top: 15px;
}
.header .link-logout {
  margin-top: 15px;
  float: right;
}

.navContainer {
  display:flex;
  flex-direction: row;
  margin-top: 15px;
  justify-content: right;
}
.navItemContainer {
  margin-right: 10px;
  margin-left: 10px;
}
.navItem {
  white-space: nowrap;
}
.navHeaderContainer {
  display: flex;
  flex-direction: column;
}
.loginName {
  margin-top: 20px;
  float: right;
}
.logged_In{
  margin-right:10px;
  font-weight: 500;
}
.navLogo {
  margin-top: 10px;
}

.admin-tab-list {
  margin-left: 20px;
}

.admin-tab {
  background-color: #DDDDDD;
}

.admin-tab-content {
  background-color: #FFFFFF;
  padding: 20px;
  display: inline-block;
  width: 100%;
  min-height: 400px;
}
.admin-tab-content .custom-upload-warning {
  margin-left: 50px;
  color: #FF0000;
}

.hex-color-display {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  border: 1px solid #DDDDDD;
}

.modal-header-container {
  display: inline-block;
  width: 100%;
}

label.required::after {
  content: "  *";
  color: #FF0000;
}

div.required::before {
  content: "*  ";
  color: #FF0000;
}

.row-control-container {
  display: inline-block;
}

.demo-create-form .demosite-name-padding {
  height: 120px;
}

.demo-edit-form .demosite-name-padding {
  height: 262px;
}

.js-demo-options-container-custom .vcenterParent {
  position: relative;
}
.js-demo-options-container-custom .vcenterParent .vcenter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.toggle {
  width: 38px;
  height: 28px;
  background: -webkit-linear-gradient(top, #EDEDED 0%, #E0E0E0 40%, #DEDEDE 100%);
  background: -moz-linear-gradient(top, #EDEDED 0%, #E0E0E0 40%, #DEDEDE 100%);
  background: -o-linear-gradient(top, #EDEDED 0%, #E0E0E0 40%, #DEDEDE 100%);
  background: -ms-linear-gradient(top, #EDEDED 0%, #E0E0E0 40%, #DEDEDE 100%);
  background: linear-gradient(top, #EDEDED 0%, #E0E0E0 40%, #DEDEDE 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fcfff4", endColorstr="#b3bead",GradientType=0 );
  border-radius: 4px;
  border: 1px solid #A5A5A5;
  position: relative;
}
.toggle.disabled, .toggle.readonly {
  cursor: not-allowed;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.toggle.disabled label, .toggle.readonly label {
  cursor: not-allowed;
}

.toggle input[type=checkbox] {
  visibility: hidden;
}

.toggle label {
  cursor: pointer;
  position: absolute;
  width: 26px;
  height: 20px;
  left: 4px;
  top: 4px;
  font-size: 14px;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#222", endColorstr="#45484d",GradientType=0 );
}

.toggle label:before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=1);
  opacity: 1;
  position: absolute;
  font: 10px/20px;
  background: transparent;
  content: "OFF";
  color: #000000;
}

.toggle label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  font: 10px/20px;
  left: 2px;
  background: transparent;
  content: "ON";
  color: #33CC33;
}

.toggle input[type=checkbox]:checked + label:before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.toggle input[type=checkbox]:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.add-user-container {
  padding: 15px;
}

.add-user, .close-add-user {
  float: right;
  margin-bottom: 15px;
  cursor: pointer;
  line-height: 25px;
}

.add-user .button-add {
  font-size: 1.4em;
}

.add-user-text {
  float: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.close-add-user .button-close {
  font-size: 1.4em;
}

.add-user-form {
  display: none;
}

.user-dropdown {
  min-width: 50%;
}

.add-user-form-open {
  margin-bottom: 25px;
  border: 1px solid #000000;
}

.btn-submit {
  background-color: #527bce;
  color: #FFFFFF;
  margin-bottom: 25px;
}

.btn-cancel {
  margin-right: 15px;
  margin-bottom: 15px;
}

.btn-resend-email {
  background-color: #527bce;
  color: #FFFFFF;
  margin-top: 15px;
}

#user-detail-modal {
  font-size: 1.2em;
}

.detail-row {
  margin: 5px 0;
}

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

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

.edit-user-view-row .edit-user-form {
  margin: 30px 0;
}
.edit-user-view-row .form-group {
  height: 30px;
}

.user-message {
  margin: 25px 0;
}

.participant-option-detail, .plan-choice-detail {
  margin-left: 20px;
}

.sortable {
  cursor: pointer;
}

.button-add, .close-create-demo-button {
  font-size: 1.4em;
  margin-left: 10px;
}

.create-demo-form {
  display: none;
}

.create-demo-container {
  padding: 15px;
}

.create-demo-button, .close-create-demo-button {
  float: right;
  margin-bottom: 15px;
  cursor: pointer;
}

.create-demo-text {
  float: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.create-demo-border {
  border: 1px solid #000000;
}

.form-section-header {
  font-size: 1.2em;
  padding: 5px 5px 5px 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #000000;
}

.form-subsection {
  margin: 40px 0;
}

.sales-rep-list-container {
  position: relative;
}

.sales-rep-list {
  position: absolute;
  list-style: none;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  padding: 10px;
  width: 100%;
  left: 0;
  z-index: 3;
}

.sales-rep-list-item {
  cursor: pointer;
}
.sales-rep-list-item:hover, .sales-rep-list-item:focus {
  background-color: #EEEEEE;
}

.custom-demo-list-container {
  position: relative;
}

.custom-demo-search-list {
  position: absolute;
  list-style: none;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  padding: 10px;
  width: 100%;
  left: 0;
  z-index: 3;
}

.custom-demo-list-item {
  cursor: pointer;
}
.custom-demo-list-item:hover, .custom-demo-list-item:focus {
  background-color: #EEEEEE;
}

.demo-type-tooltip-wrapper {
  position: relative;
  float: left;
  height: 27px;
  width: 17px;
  margin-left: 15px;
  margin-right: 15px;
}
.demo-type-tooltip-wrapper .demo-type-tooltip {
  display: inline-block;
  position: absolute;
  bottom: 0;
}

.demo-table-empty-view {
  text-align: center;
}

.file-upload-button-container {
  position: relative;
  display: inline-block;
}

.logo-text-display {
  margin-bottom: 15px;
}

.background-text-display {
  margin-bottom: 15px;
}

.file-upload-input {
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
}

.demo-expiration-tooltip {
  margin-top: 20px;
}

.demo-type-radio {
  width: auto;
}

.demo-options-name-label {
  position: relative;
  display: inline-block;
}

.demo-details {
  background-color: #FFFFFF;
}

.button-home {
  margin: 15px;
  color: #000000;
}

.details-title {
  font-size: 1.6em;
  text-align: center;
}

.details-section {
  margin: 20px 0;
  padding: 0 20px;
}

.details-section-header {
  text-align: center;
  border-bottom: 1px solid #000000;
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
}

.details-section-subheader {
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 10px;
}

.demo-details-row {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1.1em;
}

.icon-enabled {
  color: #33CC33;
}

.icon-disabled {
  color: #FF0000;
}

.plan-choices,
.profile-row,
.participant-option-header,
.upload-list-container {
  margin-top: 25px;
}

.sponsor-option-detail {
  margin-left: 20px;
}

.demo-details-label {
  font-weight: 500;
}

.form-container {
  background-color: #FFFFFF;
}

.demo-type {
  margin-bottom: 40px;
}

#demo-confirm-overlay {
  background-color: #FFFFFF;
}

.confirm-overlay-control-buttons {
  padding-bottom: 15px;
}

.sponsor-tooltip-text {
  font-size: 14px;
}

.sponsor-tooltip-column {
  width: 16.66%;
}

.required-legend-container {
  margin-top: 10px;
  text-align: center;
}

.demo-form-p8 {
  padding-left: 8%;
}

.demo-form-label-header {
  padding-left: 5%;
  font-size: large;
}

.demo-form-select-padding {
  padding-left: 5%;
  padding-top: 6px;
  padding-bottom: 6px;
}

.demo-form-label-align {
  vertical-align: middle;
  margin-top: 8%;
}

textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.demo-form-width {
  margin-left: 5%;
  height: 200px;
}
@media screen and (max-width: 320px) {
  .demo-form-width {
    height: 200px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .demo-form-width {
    height: 200px;
  }
}

.filterable-table {
  width: 100%;
}
.filterable-table th, .filterable-table td {
  border: 1px solid #000000;
  padding: 5px;
}
.filterable-table td {
  height: 15px;
}
.filterable-table th {
  background-color: #EEEEEE;
}
.filterable-table tr.even {
  background-color: #F5F5F5;
}

.row-control {
  color: #000000;
  cursor: pointer;
}
.row-control:hover {
  color: #527bce;
  text-decoration: none;
}

.table > thead > tr > th.table-header {
  vertical-align: top;
}

.disclosure-divider {
  display: inline-block;
  position: relative;
  max-height: 172px;
  width: 100%;
}

.disclosure-divider:after {
  content: "";
  display: block;
  margin-top: 19%;
}

.blue-block {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #527bce;
}

.foot-note {
  font-family: "Open Sans", sans-serif;
  padding-top: 20px;
  color: #666;
  font-size: 12px;
  line-height: 20px;
}

.info {
  margin-right: 5px;
  font-size: 1.2em;
  cursor: pointer;
  color: #527bce;
}

.popover {
  max-width: 630px;
}
.popover ul {
  padding-left: 20px;
}

.demo-type-popover, .wide-popover {
  width: 420px;
}

.popover-x-wide {
  width: 600px;
}

.static-demo-list {
  margin: 15px 0;
}

.static-demo-list-item {
  margin: 5px 0;
}

.info-section {
  margin-top: 15px;
}

.spinner-container {
  z-index: 10;
}

.spinner {
  margin: 50px;
  height: 50px;
  width: 50px;
  animation: rotate 1s infinite linear;
  -webkit-animation: rotate 0.8s infinite linear;
  border: 8px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.accordion-title {
  float: left;
  margin-top: 15px;
  margin-right: 40px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.button-expand-all {
  margin-top: 10px;
}

.accordion-header-button {
  position: relative;
  float: right;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-item-body {
  padding-top: 25px;
  padding-bottom: 10px;
}

.accordian-label-lite {
  font-weight: 400;
}

.accordian-check-list {
  list-style-type: none;
  font-size: smaller;
}

body {
  color: #333333;
  overflow-x: hidden;
}

.width100 {
  width: 100%;
}

a[disabled] {
  color: #808080;
  pointer-events: none;
}

.disabled {
  color: #808080;
}

.extended-row {
  margin: 0 -30px;
}

.gradient-border:before {
  content: "";
  left: -40px;
  position: absolute;
  height: 100%;
  border-width: 25px 25px 25px 0;
  border-style: solid;
  -webkit-border-image: -webkit-gradient(linear, 0 0, 100% 0, from(#DDDDDD), to(rgba(0, 0, 0, 0))) 1 100%;
  -webkit-border-image: -webkit-linear-gradient(left, #DDDDDD, rgba(0, 0, 0, 0)) 1 100%;
  -moz-border-image: -moz-linear-gradient(left, #DDDDDD, rgba(0, 0, 0, 0)) 1 100%;
  -o-border-image: -o-linear-gradient(left, #DDDDDD, rgba(0, 0, 0, 0)) 1 100%;
  border-image: linear-gradient(to left, #DDDDDD, rgba(255, 255, 255, 0)) 1 100%;
}

.gradient-border:after {
  content: "";
  position: absolute;
  right: -40px;
  height: 100%;
  border-width: 25px 0 25px 25px;
  border-style: solid;
  -webkit-border-image: -webkit-gradient(linear, 100% 0, 0 0, from(#DDDDDD), to(rgba(0, 0, 0, 0))) 1 100%;
  -webkit-border-image: -webkit-linear-gradient(right, #DDDDDD, rgba(0, 0, 0, 0)) 1 100%;
  -moz-border-image: -moz-linear-gradient(right, #DDDDDD, rgba(0, 0, 0, 0)) 1 100%;
  -o-border-image: -o-linear-gradient(right, #DDDDDD, rgba(0, 0, 0, 0)) 1 100%;
  border-image: linear-gradient(to right, #DDDDDD, rgba(255, 255, 255, 0)) 1 100%;
}

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

.centered-outer:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.centered {
  display: inline-block;
  vertical-align: middle;
}

.vertical-center-outer-alt {
  position: relative;
  height: 60%;
}

.vertical-center-alt {
  margin: 0;
  position: absolute;
  top: 70%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30%;
}
@media screen and (min-width: 1400px) {
  .vertical-center-alt {
    top: 85%;
  }
}
@media screen and (min-width: 1800px) {
  .vertical-center-alt {
    top: 70%;
  }
}

.vertical-center-outer {
  position: relative;
  height: 100%;
  display: table;
}

.vertical-center {
  display: table-cell;
  vertical-align: middle;
}

.notifyjs-wrapper {
  z-index: 3 !important;
}

.marginT40 {
  margin-top: 40px;
}

.marginB15 {
  margin-bottom: 15px;
}

.marginB5 {
  margin-bottom: 5px;
}

.marginL15 {
  margin-left: 15px;
}

.verticalPadding {
  padding-top: 6px;
  padding-bottom: 6px;
}

.absolute-fill {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.page-overlay {
  width: 100%;
  height: 100%;
  background-color: #444444;
  opacity: 0.8;
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.content-container {
  padding: 25px 0px;
  width: 100%;
  background-color: #085394;
}

.cursor {
  cursor: pointer;
}

.outline-none {
  outline: none;
}

.hidden-gradient {
  display: none;
}
@media (min-width: 781px) {
  .hidden-gradient {
    display: block;
  }
}

.u-inline {
  display: inline;
}

.browser-upgrade-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.browser-upgrade-overlay {
  width: 100%;
  height: 100%;
  background-color: #444444;
  opacity: 0.8;
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.browser-upgrade-modal-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.browser-upgrade-modal {
  width: 400px;
  height: 200px;
  padding: 40px;
  background-color: white;
}

.image-border {
  border-radius: 15px;
  height: 30%;
  margin: 15px;
}
.image-border:hover:after {
  border: solid 1px #42c742;
}
.image-border:hover:active {
  border: solid 1px #42c742;
}

.image-contain-outer {
  max-width: 100%;
}

.image-border-selected {
  border: solid 2px #42c742;
  border-radius: 15px;
}

.content-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 13px;
  opacity: 0;
  background: black;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.image-contain {
  max-height: 100%;
  max-width: 100%;
  padding: 5px 0;
}

.image-border:hover .content-overlay {
  opacity: 0.3;
}

.profileImageSize {
  height: 300px;
  margin: 50px 0;
}

.imageChild {
  height: inherit;
}

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