.tb.btn {
  font-family: "Open Sans", arial;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s ease-out;
  font-size: 13px;
  border-radius: 4px;
  height: 40px;
  border: 0;
  padding: 0 30px;
  box-sizing: border-box;
}
.tb.btn:hover {
  text-decoration: none;
  cursor: pointer;
}
.tb.btn.btn-lg-p {
  padding: 0 50px;
}
.tb.btn.btn-sm-p {
  padding: 0 20px;
}
.tb.btn.btn-sm {
  font-size: 11px;
  line-height: 36px;
  height: 36px;
}
.tb.btn.btn-primary {
  background-color: #0099cc;
  box-shadow: 0 0 0 1px #0099cc;
  color: #fff;
}
.tb.btn.btn-primary:hover {
  background-color: #0099cc;
  box-shadow: 0 0 0 2px #0099cc;
}
.tb.btn.btn-secondary {
  background-color: #fff;
  color: #0099cb;
}
.tb.btn.btn-secondary:hover {
  background-color: #fff;
}
.tb.btn.btn-primary.btn-arrow.btn-next:after {
  display: inline-block;
  content: "";
  background-image: url("/images/icons/ctaarrow_white@2x.png");
  background-size: 9px 16px;
  width: 9px;
  height: 16px;
  vertical-align: middle;
  transition: all 0.5s ease-out;
  margin-left: 15px;
}
.tb.btn.btn-primary.btn-arrow.btn-prev:before {
  display: inline-block;
  content: "";
  background-image: url("/images/icons/ctaarrow_white@2x.png");
  background-size: 9px 16px;
  width: 9px;
  height: 16px;
  vertical-align: middle;
  transition: all 0.5s ease-out;
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 15px;
}
.tb.btn.btn-primary.btn-arrow.small:after {
  margin-left: 10px;
}
.tb.btn.btn-primary.btn-arrow.btn-next:hover:after {
  background-size: 9px 16px;
  -ms-transform: translate(3px, 0px);
  transform: translate(3px, 0px);
}
.tb.btn.btn-primary.btn-arrow.btn-prev:hover:before {
  background-size: 9px 16px;
  -ms-transform: translate(-3px, 0px) rotate(180deg);
  transform: translate(-3px, 0px) rotate(180deg);
}
.tb.btn.btn-secondary.btn-arrow.btn-next:after {
  display: inline-block;
  content: "";
  background-image: url("/images/icons/ctaarrow-blue@2x.png");
  background-size: 9px 16px;
  width: 9px;
  height: 16px;
  vertical-align: middle;
  transition: all 0.5s ease-out;
  margin-left: 15px;
}
.tb.btn.btn-secondary.btn-arrow.btn-prev:before {
  display: inline-block;
  content: "";
  background-image: url("/images/icons/ctaarrow-blue@2x.png");
  background-size: 9px 16px;
  width: 9px;
  height: 16px;
  vertical-align: middle;
  transition: all 0.5s ease-out;
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 15px;
}
.tb.btn.btn-secondary.btn-arrow.btn-next:hover:after {
  background-size: 9px 16px;
  -ms-transform: translate(3px, 0px);
  transform: translate(3px, 0px);
}
.tb.btn.btn-secondary.btn-arrow.btn-prev:hover:before {
  background-size: 9px 16px;
  -ms-transform: translate(-3px, 0px) rotate(180deg);
  transform: translate(-3px, 0px) rotate(180deg);
}
.tb.btn.btn-positive {
  background-color: #1ba71b;
  box-shadow: 0 0 0 1px #1ba71b;
  color: #fff;
}
.tb.btn.btn-positive:hover {
  background-color: #1ba71b;
  box-shadow: 0 0 0 2px #1ba71b;
}
.tb.btn.btn-negative {
  background-color: #d0021b;
  box-shadow: 0 0 0 1px #d0021b;
  color: #fff;
}
.tb.btn.btn-negative:hover {
  background-color: #d0021b;
  box-shadow: 0 0 0 2px #d0021b;
}
.tb.btn[disabled] {
  background-color: #e4e8e9;
  color: #95a4ab;
  pointer-events: none;
  box-shadow: none;
  transition: none;
}

#links .links-facilitator li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  align-items: center;
  background-color: inherit;
  border-bottom: 1px solid #d1d9dd;
  position: relative;
  font-size: 12px;
  line-height: 14px;
  padding: 12px 15px;
  box-sizing: border-box;
}

#links ul.links-facilitator button.btn.btn-blue.link-btn {
  border-radius: 4px;
  background-color: #2d8095;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 50%);
  color: #fff;
  pointer-events: initial;
}

#form-view [data-icon="forms-icon_blue"] {
  background-image: url("/images/icons/forms-icon_blue.svg");
  height: 24px;
  width: 18px;
  margin-left: 0;
  margin-right: 15px;
}

#form-view:hover > [data-icon="forms-icon_blue"],
#form-view.active > [data-icon="forms-icon_blue"] {
  background-image: url("/images/icons/forms-icon_blue_hover.svg");
}

.chat-glow {
  border-radius: 50%;
  animation: glow-shadow 1s infinite;
  -webkit-animation: glow-shadow ease-in-out 1s infinite;
  background-color: #3aabc4 !important;
}
@keyframes glow-shadow {
  0% {
    box-shadow: 0px 1px 6px 0px #10a9dc;
  }
  50% {
    box-shadow: 0px 1px 10px 0px #10a9dc;
  }
  100% {
    box-shadow: 0px 1px 6px 0px #10a9dc;
  }
}

li.form-row > input[type="checkbox"] {
  width: auto;
  margin-right: auto;
}

button.btn.btn-blue.link-btn#send-links {
  border-radius: 0;
  background-color: #2d8095;
  color: #fff;
  pointer-events: initial;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

button.btn.btn-blue.link-btn#send-links:hover {
  background-color: #3e93ad;
}

button.btn.btn-blue.link-btn#send-links:active {
  color: #fff;
  background-color: #4ca4bf80;
}

button.btn.btn-blue.link-btn.disabled#send-links {
  background-color: #888888;
  pointer-events: none;
}

ul.links-facilitator {
  width: 100%;
  max-height: calc(100% - 50px);
  margin: 0;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 50px;
}

div.facilitator-container {
  height: calc(100% - 85px);
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.links-participants {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  height: 80%;
  width: 100%;
}

.links-participants p {
  font-size: 1rem;
  color: black;
}
.links-participants a {
  font-size: 1.2rem;
  color: #5ba9c1;
}

.links-participants #initiatives-one-pager {
  display: none;
  padding: 10px;
  width: 100%;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.links-participants #iframe-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#frameContainer {
  height: 100%;
  width: 100%;
  display: none;
}
#frameContainer header {
  height: 85px;
  width: 100%;
  font-size: 16px;
  text-align: left;
  background-color: #3f4f57;
  color: #728a95;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: flex-end;
}

#frameContainer header #closeForm {
  height: 19px;
  width: 19px;
  margin-right: 26px;
  cursor: pointer;
}

#chat .dialog-chat header .chat-title {
  border-bottom: 4px solid;
  border-color: transparent;
}

.link-list {
  height: 100%;
  width: 100%;
}
