@charset "UTF-8";
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/**
* Transforms a given palette color to the transparent version of it
*/
/* stylelint-disable */
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.mh_modal .modal-dialog {
  width: 520px;
  margin: 30px auto;
}
.mh_modal .modal-content {
  border-radius: 4px;
  box-shadow: none;
  border: 0;
}
@media only screen and (max-width: 767px) {
  .mh_modal .modal-dialog {
    overflow: hidden;
  }
  .mh_modal .modal-dialog .modal-content {
    border-radius: 0;
    background-color: #f7f7f7;
  }
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/**
* Transforms a given palette color to the transparent version of it
*/
/* stylelint-disable */
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated--infinite {
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 20%, 53%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.75s;
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  100% {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  100% {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  100% {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
  animation-duration: 0.75s;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0) scaleY(1.2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scaleX(1.2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) scaleX(1.2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0) scaleY(1.2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  animation-duration: 0.75s;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
  animation-duration: 0.75s;
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/**
* Transforms a given palette color to the transparent version of it
*/
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/**
* Transforms a given palette color to the transparent version of it
*/
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/**
* Transforms a given palette color to the transparent version of it
*/
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/**
    Converts a hex color to rgb(r, g, b) representation

    Does NOT support colors with opacity, for that please use native rgba() function
 */
/**
    Converts a hex color to a red green blue tuple representation
 */
/**
  WARNING:
  These should not be changed without approval from the front end guild manager
 */
/**
  This adds supported variant colors to a given selector
  @param $attribute The css attribute to use
  @param classPrefix the class prefix to use F.E variant => variant_health
  @param $selectorSuffix The suffix to add to the selector F.E :hover => &.variant_health:hover
  @param $valuePrefix Value prefix to add, used in attribute that need extra metadata(box shadow etc)
                        F.E 2px 2px 0 0 => 2px 2px 0 0 $palette-color-24
  @param $mix-color Color to mix with the variant colors(Used to lighten colors or opacify)
  @param $mix-percent Percentage to use from variant color mixing with $mix-color
  @param $variant-map Map of variant colors, defaulted to general variants
 */
/* stylelint-disable */
/* stylelint-disable */
/**
    Converts a hex color to rgb(r, g, b) representation

    Does NOT support colors with opacity, for that please use native rgba() function
 */
/**
    Converts a hex color to a red green blue tuple representation
 */
.close_button {
  border: none;
  background: transparent;
  padding: 13px 17px;
  z-index: 10;
  border-radius: 4px;
}
.close_button .close_icon {
  font-size: 32px;
  font-weight: 100;
  color: #999;
  line-height: 25px;
}
.close_button:hover {
  cursor: pointer;
}
.close_button:hover .close_icon {
  color: #595959;
}

.close_btn {
  display: inline-block;
  line-height: 1;
  font-size: 24px;
}
.close_btn .close_btn_icon {
  color: #999;
  font-weight: 100;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}

.mh_toast {
  position: fixed;
  min-height: 22px;
  font-size: 15px;
  line-height: 17px;
  text-align: right;
  padding: 14px;
  font-weight: 300;
  letter-spacing: 1.6px;
  opacity: 0;
  z-index: 1000;
  box-sizing: border-box;
  display: inline;
}
.mh_toast close-button {
  position: absolute;
  left: -10px;
  margin-right: 14px;
}
.mh_toast close-button .close_button {
  margin-right: 0px;
  position: absolute;
  padding: 0;
  left: 23px;
}
.mh_toast close-button .close_button .close_icon {
  font-size: 32px;
  line-height: 5px;
  font-weight: 300;
  color: #fff;
}
.mh_toast .toast_content {
  float: right;
  width: 100%;
}
.mh_toast .toast_content > div {
  display: table-cell;
  vertical-align: middle;
}
.mh_toast .toast_content.content_with_close .content {
  padding-left: 25px;
}
.mh_toast .sub_content {
  font-weight: bold;
  margin-top: 10px;
  float: left;
}
.mh_toast.animated {
  animation-duration: 0.5s;
}
.mh_toast.start {
  right: 20px;
}
.mh_toast.end {
  left: 20px;
}
.mh_toast.top {
  top: 20px;
}
.mh_toast.bottom {
  bottom: 20px;
}
.mh_toast .content {
  max-width: 500px;
}
.mh_toast .action {
  padding-right: 50px;
  padding-left: 10px;
  vertical-align: middle;
  font-weight: 400;
  cursor: pointer;
}
.mh_toast .action:hover {
  text-decoration: underline;
}
.mh_toast .action.clicked {
  color: #93bc56;
  transition: color 0.5s;
}
.mh_toast div.mh_toast_icon {
  margin-left: 15px;
}

@media (max-width: 767px) {
  .mh_toast {
    width: 100%;
    min-width: 300px;
  }
  .mh_toast close-button {
    right: 25px;
    margin-right: 0;
  }
  .mh_toast.start {
    right: 0;
  }
  .mh_toast.end {
    left: 0;
  }
  .mh_toast.top {
    top: 0;
  }
  .mh_toast.bottom {
    bottom: 0;
  }
  .mh_toast .action {
    padding-right: 20px;
    padding-left: 36px;
  }
}
.mh_toast_type_default {
  color: #f7f7f7;
  background-color: #595959;
}
.mh_toast_type_default .action {
  color: #fff;
}

.mh_toast_type_primary {
  color: #fff;
  background-color: #f56932;
}

.mh_toast_type_inverse {
  color: #595959;
  background-color: #fff;
  border: 1px solid #595959;
}
.mh_toast_type_inverse .action {
  color: #595959;
}

.mh_toast_type_success {
  color: #fff;
  background-color: #93bc56;
}

.mh_toast_size_large {
  padding: 0.5em 1.33em;
  font-size: 22px;
}

.mh_toast_size_small {
  padding: 0.5em 1.33em;
  font-size: 12px;
  min-height: 20px;
}

.mh_toast_icon_none .mh_toast_icon {
  display: none;
}

.mh_toast_icon_success .mh_toast_icon {
  width: 19px;
  height: 19px;
  background-color: #93bc56;
  border-radius: 50%;
  text-align: center;
  margin: 1px;
  position: relative;
}
.mh_toast_icon_success .mh_toast_icon .inner_v_icon {
  box-shadow: #fff -3px -3px 0 0;
  transform: rotate(221deg);
  border-radius: 1px 1px 1px 1px;
  margin: auto;
  width: 33%;
  height: 73%;
  position: absolute;
  top: -8%;
  right: 33%;
}

.mh_toast.upload_flow_revamp {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 24px;
  color: #000;
  min-height: 60px;
  max-width: 410px;
  padding: 6px 20px;
  font-weight: 400;
  border-radius: 6px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}
.mh_toast.upload_flow_revamp.medium {
  font-weight: 500;
}
.mh_toast.upload_flow_revamp.bold {
  font-weight: 700;
}
.mh_toast.upload_flow_revamp close-button {
  top: 50%;
  margin-top: -10px;
  left: 20px;
}
.mh_toast.upload_flow_revamp close-button .close_button {
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 0;
  -webkit-mask-image: url("/FP/Assets/Images/Common/close_20x20.svg?v=1");
  mask-image: url("/FP/Assets/Images/Common/close_20x20.svg?v=1");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-image: none;
  background-color: #999;
}
.mh_toast.upload_flow_revamp close-button .close_button .close_icon {
  display: none;
}
.mh_toast.upload_flow_revamp.start {
  right: 20px;
}
.mh_toast.upload_flow_revamp.end {
  left: 20px;
}
.mh_toast.upload_flow_revamp.top {
  top: 20px;
}
.mh_toast.upload_flow_revamp.bottom {
  bottom: 20px;
}
.mh_toast.upload_flow_revamp .toast_content.content_with_close .content {
  padding-left: 40px;
}
.mh_toast.upload_flow_revamp div.mh_toast_icon {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .mh_toast.upload_flow_revamp {
    width: calc(100% - 40px);
  }
}

.mh_toast_type_default.upload_flow_revamp {
  color: #f7f7f7;
  background-color: #333;
}
.mh_toast_type_default.upload_flow_revamp .action {
  color: #fff;
}

.mh_toast_icon_success.upload_flow_revamp .mh_toast_icon {
  width: 20px;
  height: 20px;
  background-color: #93bc56;
  border-radius: 50%;
  text-align: center;
  margin: 1px;
  position: relative;
  background-color: #49cf77;
}
.mh_toast_icon_success.upload_flow_revamp .mh_toast_icon .inner_v_icon {
  box-shadow: #fff -1.5px -1.5px 0 0;
  transform: rotate(221deg);
  border-radius: 1px 1px 1px 1px;
  margin: auto;
  width: 33%;
  height: 73%;
  position: absolute;
  top: -8%;
  right: 33%;
}
.mh_toast_icon_success.upload_flow_revamp .mh_toast_icon .inner_v_icon {
  transform: rotate(225deg);
  width: 24%;
  height: 47%;
  top: 12%;
  right: 38%;
}

.newtree_sprite, .left_panel .main_title .close_left_panel a.close {
  background-image: url("/FP/Assets/Images/Sprites/newtree_sprite.png?v=23");
}
@media (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .newtree_sprite, .left_panel .main_title .close_left_panel a.close {
    background-image: url("/FP/Assets/Images/Sprites/newtree_sprite@2x.png?v=23");
    background-size: 587px 553px;
  }
}

.familysearch_sprite {
  background-image: url("/FP/Assets/Images/Sprites/familysearch_sprite.png?v=4");
}
@media (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .familysearch_sprite {
    background-image: url("/FP/Assets/Images/Sprites/familysearch_sprite@2x.png?v=4");
    background-size: 79px 40px;
  }
}

.pedigreetree_sprite, .toolbarLeft a#TreeSelection .ToolBar_Down::after, .treeSelectionMenu .treeSelectionMenuEntry.EntrySelected td.treeMenuIcon::before, .left_panel .match_link .match_link_icon::before, .left_panel .facts_container .section_link::before,
.left_panel .photos_container .section_link::before,
.left_panel .relatives_container .section_link::before,
.left_panel .biography_container .add_biography::before, .left_panel .all_events_container .section_name_and_count::after, .left_panel .facts_container .map_callout_link img, .left_panel .section_title .section_selector::before, .left_panel .greeting_container .greeting_icon_weddingAnniversary, .left_panel .greeting_container .greeting_icon_birthday::after, .left_panel .invite_container .invite_success .invite_success_icon, .left_panel .invite_container div.invite_panel .invite_close, .left_panel .actions_container ul.main_actions div.action_profile,
.left_panel .actions_container ul.main_actions div.action_edit,
.left_panel .actions_container ul.main_actions div.action_add,
.left_panel .actions_container ul.main_actions div.action_more,
.left_panel .actions_container ul.main_actions div.action_tree,
.left_panel .actions_container ul.main_actions div.action_invite,
.left_panel .actions_container ul.main_actions div.action_contact, .left_panel .details_container .died_in_holocaust .died_icon::before, .left_panel .edit_icon, .left_panel .crown::after, .mh_desktop .left_panel .close_left_panel .closer_icon, .mh_tablet .left_panel .close_left_panel .closer_icon, #NewTreeLeftPanel .lp_opener a {
  background-image: url("/FP/Assets/Images/Sprites/pedigreetree_sprite.png?v=173");
}
@media (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .pedigreetree_sprite, .toolbarLeft a#TreeSelection .ToolBar_Down::after, .treeSelectionMenu .treeSelectionMenuEntry.EntrySelected td.treeMenuIcon::before, .left_panel .match_link .match_link_icon::before, .left_panel .facts_container .section_link::before,
.left_panel .photos_container .section_link::before,
.left_panel .relatives_container .section_link::before,
.left_panel .biography_container .add_biography::before, .left_panel .all_events_container .section_name_and_count::after, .left_panel .facts_container .map_callout_link img, .left_panel .section_title .section_selector::before, .left_panel .greeting_container .greeting_icon_weddingAnniversary, .left_panel .greeting_container .greeting_icon_birthday::after, .left_panel .invite_container .invite_success .invite_success_icon, .left_panel .invite_container div.invite_panel .invite_close, .left_panel .actions_container ul.main_actions div.action_profile,
.left_panel .actions_container ul.main_actions div.action_edit,
.left_panel .actions_container ul.main_actions div.action_add,
.left_panel .actions_container ul.main_actions div.action_more,
.left_panel .actions_container ul.main_actions div.action_tree,
.left_panel .actions_container ul.main_actions div.action_invite,
.left_panel .actions_container ul.main_actions div.action_contact, .left_panel .details_container .died_in_holocaust .died_icon::before, .left_panel .edit_icon, .left_panel .crown::after, .mh_desktop .left_panel .close_left_panel .closer_icon, .mh_tablet .left_panel .close_left_panel .closer_icon, #NewTreeLeftPanel .lp_opener a {
    background-image: url("/FP/Assets/Images/Sprites/pedigreetree_sprite@2x.png?v=173");
    background-size: 404px 372px;
  }
}

#NewTreeLeftPanel {
  position: absolute;
  top: 1px;
  width: 100%;
  max-width: 370px;
  right: 0;
  transform: translate3d(430px, 0, 0);
  -moz-transform: translate3d(430px, 0, 0);
  -webkit-transform: translate3d(430px, 0, 0);
  transition: transform 0.5s linear;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
}
.mh_responsive.mh_mobile #NewTreeLeftPanel {
  height: 100%;
}
@media (max-width: 420px) {
  .mh_responsive #NewTreeLeftPanel {
    max-width: 100%;
    top: 0;
  }
}
#NewTreeLeftPanel.extended {
  max-width: 100%;
  transform: translate3d(105%, 0, 0);
  -moz-transform: translate3d(105%, 0, 0);
  -webkit-transform: translate3d(105%, 0, 0);
}
#NewTreeLeftPanel .lp_opener {
  position: absolute;
  top: 13px;
  right: 430px;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 10px;
  box-shadow: 0 0 6px 0 rgba(98, 108, 118, 0.24);
  cursor: pointer;
  z-index: 200;
  transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  -webkit-transition: opacity 0.5s linear;
  transition-delay: 0.5s;
}
.mh_desktop #NewTreeLeftPanel .lp_opener {
  width: 26px;
  height: 32px;
}
#NewTreeLeftPanel .lp_opener:hover {
  background-color: #f7f7f7;
  width: 34px;
  padding-right: 14px;
  transition: all 0.2s linear;
}
.mh_responsive.mh_mobile #NewTreeLeftPanel .lp_opener, .mh_responsive.mh_tablet #NewTreeLeftPanel .lp_opener {
  display: none;
}
#NewTreeLeftPanel .lp_opener a {
  background-position: -397px -18px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 6px;
  height: 10px;
  transform: scaleX(-1);
  transform: scaleX(1);
}
#NewTreeLeftPanel.opened {
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}
#NewTreeLeftPanel.opened .lp_opener {
  opacity: 0;
}

#left_panel_app {
  position: relative;
}
.mh_responsive.mh_mobile #left_panel_app {
  height: 100%;
}

.left_panel {
  min-width: 320px;
  background-color: #fff;
  overflow-y: auto;
  color: #595959;
  box-shadow: 0 10px 40px 0 rgba(139, 153, 168, 0.2);
}
.mh_responsive.mh_mobile .left_panel {
  margin-top: 50px;
}
.left_panel .main_title {
  display: none;
  height: 70px;
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 0;
  background-color: #fff;
}
.left_panel .main_title .photo_in_title,
.left_panel .main_title .details_in_title {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
.left_panel .main_title .photo_in_title {
  padding: 16px 20px 16px 16px;
}
.left_panel .main_title .photo_in_title .PK_Silhouette {
  z-index: 1;
}
.left_panel .main_title .photo_in_title .image {
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  width: 72px;
  height: 72px;
}
.left_panel .main_title .photo_in_title .silhouette .image {
  border: solid 1px #ccc;
}
.left_panel .main_title .photo_in_title .silhouette_container {
  position: relative;
}
.left_panel .main_title .photo_in_title .silhouette_container .silhouette {
  cursor: pointer;
}
.left_panel .main_title .photo_in_title .silhouette_container .add_profile_photo {
  position: absolute;
  bottom: -3px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid transparent;
  padding: 5px;
  outline: none;
  cursor: pointer;
  background-color: #f2f2f2;
}
.left_panel .main_title .photo_in_title .silhouette_container .add_profile_photo .edit_icon {
  background-position: -184px -249px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .main_title .photo_in_title .silhouette_container:hover .silhouette .image {
  box-shadow: 0 0 4px 0 #ccc;
}
.left_panel .main_title .photo_in_title .silhouette_container:hover .add_profile_photo {
  background-color: #e5e5e5;
}
.left_panel .main_title .details_in_title {
  width: 252px;
  padding: 15px 0 15px 28px;
}
.left_panel .main_title .full_name_in_title {
  font-size: 15px;
  color: #000;
  vertical-align: middle;
}
.left_panel .main_title .name_in_title,
.left_panel .main_title .relationship_in_title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: text;
}
.left_panel .main_title .relationship_wrapper {
  display: flex;
  column-gap: 6px;
  align-items: flex-start;
}
.left_panel .main_title .relationship_wrapper .relationship_in_title {
  width: 245px;
}
.left_panel .main_title .close_left_panel {
  width: 42px;
  height: 37px;
  float: left;
  cursor: pointer;
}
.left_panel .main_title .close_left_panel a.close {
  background-position: -564px -368px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 16px;
  height: 16px;
  transform: scaleX(-1);
  display: block;
  float: left;
  margin-top: 12px;
  margin-left: 12px;
}
.no_animate .left_panel .main_title .close_left_panel {
  display: none;
}
.left_panel .close_left_panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 64px;
  background-color: #fff;
  z-index: 12;
}
.mh_mobile .left_panel .close_left_panel {
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
}
.left_panel .close_left_panel .close_left_panel_button {
  margin-top: 13px;
  margin-right: 2px;
  background-color: #fff;
  border-top: solid 1px #e5e5e5;
  border-bottom: solid 1px #e5e5e5;
  border-right: solid 1px #e5e5e5;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 10px;
  cursor: pointer;
}
.mh_desktop .left_panel .close_left_panel .close_left_panel_button {
  width: 26px;
  height: 32px;
}
.mh_mobile .left_panel .close_left_panel .close_left_panel_button {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 0;
}
.left_panel .close_left_panel .close_left_panel_button:hover {
  background-color: #f2f2f2;
  margin-right: -2px;
  width: 30px;
  transition: all 0.2s linear;
}
.mh_desktop .left_panel .close_left_panel .closer_icon, .mh_tablet .left_panel .close_left_panel .closer_icon {
  background-position: -397px -18px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 6px;
  height: 10px;
  transform: scaleX(-1);
}
.mh_mobile .left_panel .close_left_panel .closer_icon {
  width: 24px;
  height: 24px;
  background-image: url("/FP/Assets/Images/Common/close_24x24.svg?v=1");
}
.left_panel .crown {
  display: inline-flex;
  vertical-align: middle;
  padding-right: 3px;
}
.left_panel .crown::after {
  content: "";
}
.left_panel .CrownOmni::after {
  display: block;
  background-image: url("/FP/Assets/Images/NewTree/CrownOmni.png");
  background-size: auto;
  width: 26px;
  height: 20px;
}
.left_panel .CrownPremium::after {
  background-position: -293px -112px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .CrownPremiumPlus::after {
  background-position: -293px -140px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .CrownComplete::after {
  background-position: -293px -56px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .CrownOther::after {
  background-position: -293px -84px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .spinner_container {
  height: 400px;
}
.left_panel .photo_and_details {
  padding: 20px;
}
.left_panel .edit_icon {
  background-position: -124px -92px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 17px;
  height: 17px;
}
.left_panel .photo_container {
  float: right;
  width: 72px;
  position: relative;
}
.left_panel .photo_container .image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}
.left_panel .photo_container .silhouette .image {
  border: solid 1px #ccc;
}
.left_panel .photo_container .photo:hover .edit_profile_photo {
  display: block;
}
.left_panel .photo_container .edit_profile_photo,
.left_panel .photo_container .add_profile_photo {
  position: absolute;
  bottom: -3px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid transparent;
  padding: 5px;
  outline: none;
  cursor: pointer;
}
.left_panel .photo_container .edit_profile_photo {
  background-color: #fff;
  box-shadow: 0 0 6px 0 #ccc;
}
.left_panel .photo_container .edit_profile_photo:hover {
  background-color: #f7f7f7;
}
.mh_desktop .left_panel .photo_container .edit_profile_photo {
  display: none;
}
.mh_mobile .left_panel .photo_container .edit_profile_photo, .mh_tablet .left_panel .photo_container .edit_profile_photo {
  display: block !important;
}
.left_panel .photo_container .edit_profile_photo .edit_icon {
  background-position: -212px -249px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .photo_container .add_profile_photo {
  background-color: #f2f2f2;
}
.left_panel .photo_container .add_profile_photo .edit_icon {
  background-position: -184px -249px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .photo_container .silhouette.clickable_silhouette {
  cursor: pointer;
}
.left_panel .photo_container .PK_Silhouette {
  border-radius: 8px;
  z-index: 1;
  margin: -18px;
}
.left_panel .photo_container .death_ribbon {
  display: none;
}
.left_panel .photo_container .PK_Silhouette {
  background-size: cover;
  background-position: 0 0;
  background-color: rgba(255, 255, 255, 0.01);
}
.left_panel .photo_container .PK_Silhouette_S_96_M_A_RTL {
  background-image: url("/FP/Assets/Images/NewTree/male.svg?v=3");
}
.left_panel .photo_container .PK_Silhouette_S_96_F_A_RTL {
  background-image: url("/FP/Assets/Images/NewTree/female.svg?v=3");
}
.left_panel .photo_container .PK_Silhouette_S_96_M_C_RTL {
  background-image: url("/FP/Assets/Images/NewTree/boy.svg?v=3");
}
.left_panel .photo_container .PK_Silhouette_S_96_F_C_RTL {
  background-image: url("/FP/Assets/Images/NewTree/girl.svg?v=3");
}
.left_panel .photo_container .PK_Silhouette_S_96_U_A_RTL,
.left_panel .photo_container .PK_Silhouette_S_96_U_C_RTL {
  background-image: url("/FP/Assets/Images/NewTree/unknown.svg?v=3");
}
.left_panel .photo_container .PK_Silhouette_S_96_Ribbon {
  background-image: url("/FP/Assets/Images/NewTree/Ribbon.svg?v=3");
  transform: scaleX(-1);
}
.left_panel .photo_container .add_profile_photo_wrapper {
  position: relative;
  top: 6px;
}
.left_panel .photo_container .add_profile_photo_wrapper .add_profile_photo {
  width: 100%;
}
.mh_mobile .left_panel .photo_container .add_profile_photo_wrapper .add_profile_photo {
  width: 90px;
}
.left_panel .photo_container .add_profile_photo_wrapper.mouse_over .css_button.css_button_white {
  background-color: whitesmoke;
}
.left_panel .photo_container .silhouette_container:hover {
  cursor: pointer;
}
.left_panel .photo_container .silhouette_container:hover .clickable_silhouette .image {
  box-shadow: 0 0 4px 0 #ccc;
}
.left_panel .photo_container .silhouette_container:hover .add_profile_photo {
  background-color: #e5e5e5;
}
.left_panel .relationship_diagram_viewer:hover {
  color: #000;
}
.left_panel .details_container {
  float: right;
  margin-top: -2px;
  margin-right: 22px;
  width: calc(100% - 98px);
}
.mh_mobile .left_panel .details_container {
  padding-left: 1px;
}
.left_panel .details_container .name {
  font-size: 15px;
  color: #000;
}
.left_panel .details_container .full_name {
  vertical-align: middle;
}
.left_panel .details_container .relationship_wrapper {
  display: flex;
  column-gap: 6px;
  align-items: flex-start;
}
.left_panel .details_container .relationship_wrapper .relationship {
  width: 214px;
}
.left_panel .details_container .birth,
.left_panel .details_container .death {
  margin-top: 4px;
  max-height: 40px;
  overflow: hidden;
}
.left_panel .details_container .birth .icon,
.left_panel .details_container .birth .info,
.left_panel .details_container .death .icon,
.left_panel .details_container .death .info {
  display: table-cell;
  vertical-align: top;
}
.left_panel .details_container .birth .icon,
.left_panel .details_container .death .icon {
  padding-top: 3px;
  padding-left: 5px;
}
.left_panel .details_container .birth .icon::before,
.left_panel .details_container .death .icon::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background-repeat: no-repeat;
}
.left_panel .details_container .birth .info,
.left_panel .details_container .death .info {
  width: 100%;
}
.left_panel .details_container .birth .separator,
.left_panel .details_container .death .separator {
  padding: 0 2px;
}
.left_panel .details_container .birth .separator::before,
.left_panel .details_container .death .separator::before {
  content: "•";
}
.left_panel .details_container .birth .icon::before {
  background-image: url("/FP/Assets/Images/NewTree/birth_icon.svg?v=2");
}
.left_panel .details_container .death .icon::before {
  background-image: url("/FP/Assets/Images/NewTree/death_icon.svg?v=2");
}
.left_panel .details_container .died_in_holocaust .died_icon,
.left_panel .details_container .died_in_holocaust .died_text {
  display: inline-block;
  vertical-align: middle;
}
.left_panel .details_container .died_in_holocaust .died_icon {
  width: 14px;
}
.left_panel .details_container .died_in_holocaust .died_icon::before {
  content: "";
  background-position: -154px -336px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 10px;
  height: 11px;
}
.left_panel .details_container .died_in_holocaust .died_text {
  padding-right: 3px;
}
.left_panel .details_container .research_person {
  margin-top: 6px;
  display: block;
  float: right;
  color: #f56932;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.platform_windows .left_panel .details_container .research_person, .lang_HE .left_panel .details_container .research_person, .NewTreeEmbed.mh_android .left_panel .details_container .research_person {
  font-weight: bold;
}
.left_panel .details_container .research_person:hover {
  text-decoration: underline;
}
.left_panel .details_container .research_person::after {
  content: "";
  border: solid 0 #f56932;
  border-top-width: 2px;
  border-left-width: 2px;
  display: inline-block;
  padding: 2px;
  margin-right: 4px;
  margin-bottom: 1px;
  transform: rotate(-45deg);
}
.left_panel .details_container .purchase_dna_kit,
.left_panel .details_container .upload_dna_data {
  margin-top: 4px;
  display: inline-block;
  float: right;
}
.left_panel .details_container .purchase_dna_kit_a,
.left_panel .details_container .upload_dna_a {
  font-weight: 400;
  color: #f56932;
  letter-spacing: 0.3px;
}
.left_panel .details_container .purchase_dna_kit_a:hover,
.left_panel .details_container .upload_dna_a:hover {
  color: #fe701c;
  text-decoration: none;
}
.left_panel .details_container .purchase_dna_kit_a:hover::after,
.left_panel .details_container .upload_dna_a:hover::after {
  border-color: #fe701c;
}
.left_panel .details_container .purchase_dna_kit_a::after,
.left_panel .details_container .upload_dna_a::after {
  content: "";
  border: solid 0 #f56932;
  border-top-width: 1px;
  border-left-width: 1px;
  display: inline-block;
  padding: 2px;
  margin-right: 4px;
  margin-bottom: 1px;
  transform: rotate(-45deg);
}
.left_panel .details_container .purchase_dna_kit_a.disabled {
  pointer-events: none;
}
.left_panel .details_container .sites_container {
  position: relative;
  margin-top: 5px;
}
.left_panel .details_container .sites_title {
  text-decoration: none;
}
.left_panel .details_container .sites_title::after {
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  position: relative;
  top: 10px;
  margin-right: 4px;
}
.left_panel .details_container .sites {
  position: absolute;
  background-color: #fff;
  z-index: 1;
  border: 1px solid #d1d1ca;
  border-radius: 4px;
  margin-top: 5px;
  width: 100%;
}
.left_panel .details_container .site {
  padding: 5px;
  border-bottom: 1px solid #d1d1ca;
}
.left_panel .details_container .site:last-child {
  border-bottom: none;
}
.left_panel #family_search_person_panel_info {
  margin-top: 0;
  padding: 8px 0;
}
.left_panel .actions_container {
  box-sizing: border-box;
  position: relative;
  top: 0;
  padding: 8px 10px 6px 10px;
  border-bottom: solid 1px #e5e5e5;
  display: inline-block;
  width: 100%;
  transition: padding 0.1s ease-out, box-shadow 0.1s ease-out;
}
.left_panel .actions_container ul.main_actions {
  list-style-type: none;
}
.left_panel .actions_container ul.main_actions.total_items_1, .left_panel .actions_container ul.main_actions.total_items_3 {
  width: 100%;
  text-align: center;
}
.left_panel .actions_container ul.main_actions > li > button {
  width: 100%;
}
.left_panel .actions_container ul.main_actions li {
  box-sizing: border-box;
  float: right;
  display: inline-block;
}
.left_panel .actions_container ul.main_actions li button {
  color: #595959;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  margin: 6px 0;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.left_panel .actions_container ul.main_actions div.action_button {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  margin: auto;
  background-color: #f2f2f2;
}
.left_panel .actions_container ul.main_actions div.action_text {
  padding-top: 10px;
}
.left_panel .actions_container ul.main_actions div.action_profile,
.left_panel .actions_container ul.main_actions div.action_edit,
.left_panel .actions_container ul.main_actions div.action_add,
.left_panel .actions_container ul.main_actions div.action_more,
.left_panel .actions_container ul.main_actions div.action_tree,
.left_panel .actions_container ul.main_actions div.action_invite,
.left_panel .actions_container ul.main_actions div.action_contact {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
}
.left_panel .actions_container ul.main_actions div.action_profile {
  background-position: -84px -281px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .actions_container ul.main_actions div.action_edit {
  background-position: -173px -132px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 21px;
}
.left_panel .actions_container ul.main_actions div.action_add {
  right: -2px;
  background-position: -217px -176px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 21px;
}
.left_panel .actions_container ul.main_actions div.action_more {
  background-position: -128px -249px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 21px;
}
.left_panel .actions_container ul.main_actions div.action_tree {
  background-position: -73px -336px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 18px;
  height: 14px;
}
.left_panel .actions_container ul.main_actions div.action_invite {
  background-position: -261px -192px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 24px;
  height: 24px;
}
.left_panel .actions_container ul.main_actions div.action_contact {
  background-position: -261px -160px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 24px;
  height: 24px;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action {
  float: inherit;
}
.left_panel .actions_container ul.main_actions.total_items_3 li.main_action {
  padding: 0 24px;
  float: inherit;
  width: 33%;
}
.left_panel .actions_container ul.main_actions.total_items_4 li.main_action {
  width: 25%;
}
.left_panel .actions_container ul.main_actions.total_items_5 li.main_action {
  width: 20%;
}
.left_panel .actions_container ul.main_actions.total_items_5 li.main_action button {
  letter-spacing: 0;
}
.lang_DE .left_panel .actions_container ul.main_actions.total_items_5 li.main_action button {
  font-size: 10px;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action {
  padding: 0 10px;
  width: 50%;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action button, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action button {
  height: 36px;
  border-radius: 36px;
  background-color: #f2f2f2;
  padding: 0 14px;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action button:hover, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action button:hover {
  background-color: #e5e5e5;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action button .action_button,
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action button .action_text, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action button .action_button,
.left_panel .actions_container ul.main_actions.total_items_2 li.main_action button .action_text {
  display: inline-block;
  vertical-align: middle;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action button .action_button, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action button .action_button {
  width: unset;
  height: unset;
  background-color: unset;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action button .action_button:hover, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action button .action_button:hover {
  background-color: transparent;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action button .action_icon, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action button .action_icon {
  transform: unset;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action button .action_text, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action button .action_text {
  padding-top: 0;
  padding-right: 6px;
  max-width: calc(100% - 32px);
  text-align: right;
  line-height: 1;
}
.left_panel .actions_container ul.main_actions.total_items_1 li.main_action div.action_profile, .left_panel .actions_container ul.main_actions.total_items_2 li.main_action div.action_profile {
  background-position: -321px -28px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .actions_container ul.main_actions li button[disabled=disabled] {
  color: #ccc;
  cursor: default;
}
.left_panel .actions_container ul.main_actions li button[disabled=disabled] .action_button {
  background-color: #f7f7f7;
}
.left_panel .actions_container ul.main_actions li button[disabled=disabled] div.action_profile,
.left_panel .actions_container ul.main_actions li button[disabled=disabled] div.action_edit,
.left_panel .actions_container ul.main_actions li button[disabled=disabled] div.action_add {
  opacity: 0.5;
}
.left_panel .actions_container ul.main_actions li button[disabled=disabled] div.action_invite {
  background-position: -195px -46px;
}
.left_panel .actions_container ul.main_actions li button[disabled=disabled] div.action_contact {
  background-position: -217px -50px;
}
.left_panel .actions_container ul.main_actions li:hover button[disabled=disabled] {
  color: #ccc;
}
.left_panel .actions_container ul.main_actions li.main_action:hover .action_button {
  background-color: #e5e5e5;
}
.left_panel .actions_container ul.main_actions li.main_action:hover button[disabled=disabled] .action_button {
  background-color: #f7f7f7;
}
.left_panel .actions_container ul.main_actions li.main_action:last-child {
  position: relative;
}
.left_panel .actions_container ul.more_actions {
  position: absolute;
  background-color: #fff;
  border: solid 1px #f7f7f7;
  border-radius: 2px;
  padding: 10px 0;
  margin-left: -1px;
  left: 0;
  list-style-type: none;
  z-index: 1;
  text-align: initial;
  box-shadow: -2px 2px 8px 0 rgba(0, 0, 0, 0.1);
}
.left_panel .actions_container ul.more_actions li {
  color: #595959;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  min-height: 24px;
}
.left_panel .actions_container ul.more_actions li:hover {
  background-color: #f7f7f7;
}
.left_panel .actions_container ul.more_actions li button {
  height: auto;
  border: none;
  outline: none;
  text-align: right;
  padding: 10px 20px 10px 44px;
  width: 100%;
  white-space: nowrap;
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.left_panel .actions_container ul.more_actions li button::before {
  display: block;
  float: right;
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 10px;
  margin-top: -3px;
}
.left_panel .actions_container ul.more_actions li button.action_viewTree::before {
  background-image: url("/FP/Assets/Images/NewTree/more_tree.svg?v=1");
}
.left_panel .actions_container ul.more_actions li button.action_editPhoto::before {
  background-image: url("/FP/Assets/Images/NewTree/more_photo.svg?v=1");
}
.left_panel .actions_container ul.more_actions li button.action_connect::before {
  background-image: url("/FP/Assets/Images/NewTree/more_connect.svg?v=1");
}
.left_panel .actions_container ul.more_actions li button.action_disconnect::before {
  background-image: url("/FP/Assets/Images/NewTree/more_disconnect.svg?v=1");
}
.left_panel .actions_container ul.more_actions li button.action_manageParents::before {
  background-image: url("/FP/Assets/Images/NewTree/more_manageParents.svg?v=2");
}
.left_panel .actions_container ul.more_actions li button.action_delete::before {
  background-image: url("/FP/Assets/Images/NewTree/more_delete.svg?v=1");
}
.left_panel .actions_container ul.more_actions li button.action_invite::before {
  background-image: url("/FP/Assets/Images/NewTree/more_invite.svg?v=1");
}
.left_panel .actions_container ul.more_actions li button.action_contact::before {
  background-image: url("/FP/Assets/Images/NewTree/more_contact.svg?v=1");
}
.left_panel .actions_container ul.more_actions li button .label,
.left_panel .actions_container ul.more_actions li button .new_badge {
  display: inline-block;
  vertical-align: middle;
}
.left_panel .actions_container ul.more_actions li button .new_badge {
  background-color: #2d7559;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.98px;
  text-align: center;
  position: relative;
  right: 8px;
  top: -2px;
}
.left_panel .actions_container ul.more_actions li button[disabled=disabled]::before {
  opacity: 0.5;
}
.left_panel .invite_container {
  width: 100%;
  display: table;
  position: relative;
  background-color: #fff;
  border-bottom: solid 1px #e5e5e5;
  padding: 24px;
}
.left_panel .invite_container div.invite_panel {
  display: table-cell;
  vertical-align: middle;
}
.left_panel .invite_container div.invite_panel .invite_close {
  background-position: -196px -281px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0.6;
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
}
.left_panel .invite_container div.invite_panel .invite_close:hover {
  opacity: 1;
}
.left_panel .invite_container div.invite_panel .invite_title {
  padding-bottom: 16px;
  padding-left: 8px;
  letter-spacing: 0.3px;
}
.left_panel .invite_container div.invite_panel span.email_input {
  padding: 0;
  display: block;
  overflow: hidden;
  border-bottom: solid 1px #999;
  background-color: #fff;
}
.left_panel .invite_container div.invite_panel input[type=email] {
  width: 100%;
  height: 27px;
  border: none;
  outline: none;
}
.left_panel .invite_container div.invite_panel a.send_invite_button {
  border-radius: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-size: 13px;
  float: left;
  margin-top: -1px;
  margin-right: 11px;
  padding: 5px 15px;
}
.left_panel .invite_container .invite_success {
  color: #333;
  letter-spacing: 1.2px;
  font-weight: 500;
  display: table-cell;
  vertical-align: middle;
}
.platform_windows .left_panel .invite_container .invite_success, .lang_HE .left_panel .invite_container .invite_success, .NewTreeEmbed.mh_android .left_panel .invite_container .invite_success {
  font-weight: bold;
}
.left_panel .invite_container .invite_success span {
  margin: 4px 10px;
  display: inline-flex;
}
.left_panel .invite_container .invite_success .invite_success_icon {
  background-position: -261px -128px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 24px;
  height: 24px;
  float: right;
}
.left_panel .invite_container .invite_error {
  color: red;
  display: table-row;
}
.left_panel .invite_container .invite_error span {
  display: block;
  margin-top: -4px;
}
.left_panel .greetings_container {
  border-bottom: solid 1px #e5e5e5;
}
.left_panel .greeting_container {
  padding: 24px 20px 12px 20px;
  display: flex;
  align-items: center;
}
.left_panel .greeting_container .greeting_details {
  margin-right: 18px;
  width: 240px;
  order: 2;
}
.left_panel .greeting_container .greeting_title {
  color: #333;
}
.left_panel .greeting_container a {
  display: block;
  color: #f56932;
  letter-spacing: 0.3px;
  font-weight: 500;
  padding-top: 8px;
}
.platform_windows .left_panel .greeting_container a, .lang_HE .left_panel .greeting_container a, .NewTreeEmbed.mh_android .left_panel .greeting_container a {
  font-weight: bold;
}
.left_panel .greeting_container a:hover {
  text-decoration: underline;
}
.left_panel .greeting_container .greeting_icon_birthday,
.left_panel .greeting_container .greeting_icon_weddingAnniversary {
  order: 1;
  width: 58px;
  height: 57px;
  border: solid 1px #f2f2f2;
  border-radius: 50%;
  background-color: #fff;
  padding: 1px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
.left_panel .greeting_container .greeting_icon_birthday::after {
  content: "";
  background-position: 0px 0px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 54px;
  height: 53px;
}
.left_panel .greeting_container .greeting_icon_weddingAnniversary {
  content: "";
  background-position: -62px 0px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 54px;
  height: 53px;
}
.left_panel .section_title {
  background-color: #fff;
  padding: 8px 20px 8px 16px;
}
.left_panel .section_title .section_name_and_count {
  float: right;
  color: #595959;
  padding-top: 5px;
  letter-spacing: 0.3px;
}
.left_panel .section_title.has_selector .section_name_and_count {
  cursor: pointer;
}
.left_panel .section_title.has_selector .section_name_and_count:hover {
  color: #000;
}
.left_panel .section_title.has_selector .section_name_and_count:hover .section_selector::before {
  opacity: 1;
}
.left_panel .section_title .section_link {
  float: left;
  color: #f56932;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: transparent;
}
.left_panel .section_title .section_link:hover {
  background-color: #fff5f4;
}
.left_panel .section_title .section_selector {
  display: inline-block;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  top: 2px;
}
.left_panel .section_title .section_selector::before {
  content: "";
  background-position: -373px -269px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 12px;
  height: 12px;
  opacity: 0.6;
}
.left_panel .section_title .section_selector.collapsed {
  top: 0;
}
.left_panel .section_title .section_selector.collapsed::before {
  transform: scaleY(-1) translateY(-2px);
  transition: 0.5s;
}
.left_panel .section_content {
  overflow: hidden;
}
.left_panel .section_content.collapsed {
  max-height: 0 !important;
  transition: max-height 1s ease-in-out;
}
.left_panel .section_content_collapsed {
  height: 0;
  transition: 0.5s;
}
.left_panel .matches_container {
  padding: 4px 0;
  border-bottom: solid 1px #e5e5e5;
}
.left_panel .matches_container li {
  padding: 10px 20px;
}
.left_panel .matches_container img {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
}
.left_panel .matches_container p {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 70px);
  margin-right: 15px;
}
.left_panel .matches_container a {
  color: #595959;
}
.left_panel .matches_container a b {
  display: block;
  font-weight: 500;
}
.platform_windows .left_panel .matches_container a b, .lang_HE .left_panel .matches_container a b, .NewTreeEmbed.mh_android .left_panel .matches_container a b {
  font-weight: bold;
}
.left_panel .photos_container {
  padding: 4px 0;
  border-bottom: solid 1px #e5e5e5;
}
.left_panel .photos_container .section_title {
  margin-bottom: 0;
}
.left_panel .photos_container ul {
  list-style-type: none;
  padding: 5px 20px 12px 20px;
}
.left_panel .photos_container ul li {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: relative;
}
.left_panel .photos_container ul li:not(:last-child) {
  margin-left: 9px;
}
.left_panel .photos_container ul li:hover {
  cursor: pointer;
}
.left_panel .photos_container ul li:hover button {
  border-color: #2385c4;
}
.left_panel .photos_container ul li:hover div.upload_prompt {
  color: #1d9ce3;
}
.left_panel .photos_container ul li:hover div.add_photo_icon {
  background-position: -37px -31px;
}
.left_panel .photos_container ul li .add_photo {
  display: none;
}
.left_panel .photos_container ul li .upload_prompt {
  padding-right: 15px;
  max-width: 250px;
  height: 64px;
  display: table-cell;
  vertical-align: middle;
}
.left_panel .photos_container ul li img.left_panel_photo,
.left_panel .photos_container ul li img.left_panel_video, .left_panel .photos_container ul li.view_all_items_placeholder {
  height: 72px;
  width: 72px;
  cursor: pointer;
  border-radius: 3px;
}
.left_panel .photos_container ul li .left_panel_image_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  opacity: 0;
}
.left_panel .photos_container ul li:hover .left_panel_image_overlay {
  opacity: 1;
}
.left_panel .photos_container ul li button {
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 3px;
  border: 1px solid #d1d1d1;
  background: none;
  cursor: pointer;
  outline: none;
}
.left_panel .photos_container ul li .add_photo_icon {
  display: block;
  width: 35px;
  height: 27px;
  margin-right: 11px;
  background-image: url("/FP/Assets/Images/NewTree/leftPanel_Sprite.png?v=9");
  background-position: -37px -2px;
  background-repeat: no-repeat;
}
.left_panel .photos_container ul li.view_all_item .media_item_view_all, .left_panel .photos_container ul li.view_all_items_placeholder .media_item_view_all {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.left_panel .photos_container ul li.view_all_item .media_item_view_all .lang_RU, .left_panel .photos_container ul li.view_all_items_placeholder .media_item_view_all .lang_RU {
  font-size: 11px;
}
.left_panel .photos_container ul li.view_all_item .left_panel_image_overlay {
  opacity: 1;
}
.left_panel .photos_container ul li.view_all_item .media_item_view_all {
  color: #fff;
}
.left_panel .photos_container ul li.view_all_item:hover .left_panel_image_overlay {
  background-color: rgba(0, 0, 0, 0.6);
}
.left_panel .photos_container ul li.view_all_items_placeholder {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.left_panel .photos_container ul li.view_all_items_placeholder .media_item_view_all {
  color: #595959;
}
.left_panel .photos_container ul li.view_all_items_placeholder:hover {
  background-color: #f2f2f2;
}
.left_panel .photos_container .total_items_3,
.left_panel .photos_container .total_items_4 {
  justify-content: space-between;
  display: flex;
}
.left_panel .photos_container .total_items_3 li,
.left_panel .photos_container .total_items_4 li {
  margin-left: 0 !important;
}
@media (max-width: 320px) {
  .left_panel .photos_container .total_items_3 li img.left_panel_photo,
.left_panel .photos_container .total_items_3 li img.left_panel_video,
.left_panel .photos_container .total_items_4 li img.left_panel_photo,
.left_panel .photos_container .total_items_4 li img.left_panel_video {
    height: 68px;
    width: 68px;
  }
}
.left_panel .live_story_container {
  border-bottom: solid 1px #e5e5e5;
}
.left_panel .live_story_container.close {
  display: none;
}
.left_panel .live_story_container .live_story_inner {
  padding: 12px 16px 12px 20px;
}
.left_panel .live_story_container .live_story_close {
  float: left;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 6px;
  margin: 2px;
  cursor: pointer;
}
.left_panel .live_story_container .live_story_close:hover {
  background-color: #e5e5e5;
}
.left_panel .live_story_container .live_story_close:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("/FP/Assets/Images/NewTree/small-close-x.svg?v=1");
}
.left_panel .live_story_container .live_story_image,
.left_panel .live_story_container .live_story_details {
  display: inline-block;
  vertical-align: middle;
}
.left_panel .live_story_container .live_story_image {
  cursor: pointer;
  width: 92px;
  height: 57px;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-image: url("/FP/Assets/Images/NewTree/create-livestory.png?v=2");
}
.left_panel .live_story_container .live_story_image_photo {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 28px;
  right: 57px;
}
.left_panel .live_story_container .live_story_details {
  width: calc(100% - 115px);
  cursor: pointer;
}
.left_panel .live_story_container .live_story_new {
  display: inline-block;
  background-color: #2d7559;
  color: #fff;
  padding: 1px 5px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.98px;
  text-align: center;
}
.left_panel .live_story_container .live_story_description {
  padding-top: 4px;
}
.left_panel .live_story_container .live_story_link {
  display: block;
  padding-top: 4px;
  color: #f56932;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.platform_windows .left_panel .live_story_container .live_story_link, .lang_HE .left_panel .live_story_container .live_story_link, .NewTreeEmbed.mh_android .left_panel .live_story_container .live_story_link {
  font-weight: bold;
}
.left_panel .live_story_container .live_story_link:hover {
  text-decoration: underline;
}
.left_panel .live_story_container .live_story_link::after {
  content: "";
  border: solid 0 #f56932;
  border-top-width: 2px;
  border-left-width: 2px;
  display: inline-block;
  padding: 2px;
  margin-right: 4px;
  margin-bottom: 1px;
  transform: rotate(-45deg);
}
.left_panel .biography_container {
  padding: 4px 0;
  border-bottom: solid 1px #e5e5e5;
}
.left_panel .biography_container ul {
  list-style-type: none;
}
.left_panel .biography_container li {
  display: inline-flex;
  justify-content: space-between;
  padding: 10px 20px 10px 12px;
  width: 100%;
}
.left_panel .biography_container li:hover .note_edit {
  visibility: visible;
}
.NewTreeEditable .left_panel .biography_container li:hover {
  background-color: #f7f7f7;
}
.left_panel .biography_container .note_text .note_text_paragraph {
  max-height: 60px;
  overflow: hidden;
}
.left_panel .biography_container .note_full_text {
  display: none;
}
.left_panel .biography_container .note_text_paragraph {
  word-wrap: break-word;
  color: #333;
}
.left_panel .biography_container .note_expand_full_text,
.left_panel .biography_container .note_collapse_full_text {
  color: #595959;
  text-decoration: underline;
}
.left_panel .biography_container .note_expand_full_text {
  display: none;
}
.left_panel .biography_container .note_collapse_full_text {
  display: none;
}
.left_panel .biography_container .note_edit {
  visibility: hidden;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: solid 1px #e5e5e5;
  border-radius: 50%;
  background-color: transparent;
  padding: 7px;
}
.left_panel .biography_container .note_edit:hover {
  background-color: #e5e5e5;
}
.left_panel .biography_container .note_edit .edit_icon {
  background-position: -173px -132px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 21px;
}
.left_panel .biography_container .ai_biography_links {
  float: left;
}
.left_panel .facts_container {
  padding: 4px 0;
  border-bottom: solid 1px #e5e5e5;
  color: #595959;
}
.left_panel .facts_container a {
  color: inherit;
}
.left_panel .facts_container .section_title {
  margin-bottom: 0;
}
.left_panel .facts_container ul {
  width: 100%;
  list-style-type: none;
}
.left_panel .facts_container ul li {
  min-height: 44px;
  padding-top: 10px;
  display: table;
  width: 100%;
}
.left_panel .facts_container ul li:hover .fact_edit button {
  visibility: visible;
}
.mh_responsive.mh_mobile .left_panel .facts_container ul li:hover .fact_edit button {
  visibility: hidden;
}
.NewTreeEditable .left_panel .facts_container ul li:hover {
  background-color: #f7f7f7;
}
.left_panel .facts_container .year_and_age {
  float: right;
  margin-right: 10px;
  width: 80px;
  text-align: center;
  min-height: 20px;
  margin-top: -2px;
}
.left_panel .facts_container .year_and_age .year,
.left_panel .facts_container .year_and_age .fact_year_empty {
  color: #000;
  letter-spacing: 0.3px;
  font-size: 18px;
}
.left_panel .facts_container .year_and_age .age {
  font-size: 11px;
  letter-spacing: 0.25px;
  color: #999;
}
.left_panel .facts_container .year_and_age .fact_year_empty {
  color: #999;
}
.left_panel .facts_container .year_and_age .fact_year_empty::after {
  content: "--";
}
.left_panel .facts_container .fact_details {
  float: right;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 212px;
}
.left_panel .facts_container .fact_details .title {
  color: #000;
  font-weight: 500;
}
.platform_windows .left_panel .facts_container .fact_details .title, .lang_HE .left_panel .facts_container .fact_details .title, .NewTreeEmbed.mh_android .left_panel .facts_container .fact_details .title {
  font-weight: bold;
}
.left_panel .facts_container .fact_details .title,
.left_panel .facts_container .fact_details .relative,
.left_panel .facts_container .fact_details .spouse_of_relative_wrapper,
.left_panel .facts_container .fact_details .content,
.left_panel .facts_container .fact_details .additional_content,
.left_panel .facts_container .fact_details .date,
.left_panel .facts_container .fact_details .place {
  margin-bottom: 2px;
  overflow: hidden;
}
.left_panel .facts_container .fact_details .relative .relative_photo,
.left_panel .facts_container .fact_details .relative .relative_name,
.left_panel .facts_container .fact_details .spouse_of_relative_wrapper .relative_photo,
.left_panel .facts_container .fact_details .spouse_of_relative_wrapper .relative_name {
  display: table-cell;
  vertical-align: middle;
}
.left_panel .facts_container .fact_details .relative .relative_photo,
.left_panel .facts_container .fact_details .spouse_of_relative_wrapper .relative_photo {
  background-color: transparent;
  padding-top: 3px;
  padding-left: 6px;
}
.left_panel .facts_container .fact_details .relative .relative_photo .photo,
.left_panel .facts_container .fact_details .spouse_of_relative_wrapper .relative_photo .photo {
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  width: 24px;
  height: 24px;
}
.left_panel .facts_container .fact_details .relative a,
.left_panel .facts_container .fact_details .spouse_of_relative_wrapper a {
  color: #000;
}
.left_panel .facts_container .fact_details .additional_content {
  position: relative;
}
.left_panel .facts_container .fact_details .additional_content .prefix {
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 2px;
  width: 1px;
  border-right: solid 1px #e5e5e5;
  padding-right: 8px;
}
.left_panel .facts_container .fact_details .additional_content .text {
  position: relative;
  padding-right: 13px;
}
.left_panel .facts_container .fact_details .additional_content .residence_flag {
  border-radius: 50%;
}
.left_panel .facts_container .fact_details .place .map_callout_link {
  display: table-row;
}
.left_panel .facts_container .fact_details .place .map_callout_link a {
  display: table-cell;
}
.left_panel .facts_container .fact_details .place .map_callout_link a:first-child {
  width: 10px;
}
.left_panel .facts_container .fact_edit {
  border: none;
  margin: 0;
  padding-top: 14px;
  min-height: 0;
  vertical-align: top;
  height: 100%;
  width: 40px;
  float: right;
}
.left_panel .facts_container .fact_edit button {
  width: 36px;
  height: 36px;
  border: solid 1px #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  padding: 7px;
  margin-top: -10px;
  margin-left: 7px;
  visibility: hidden;
}
.left_panel .facts_container .fact_edit button:hover {
  background-color: #e5e5e5;
}
.left_panel .facts_container .fact_edit button .edit_icon {
  background-position: -173px -132px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 21px;
}
.left_panel .facts_container .map_callout_link img {
  background-position: -397px 0px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 7px;
  height: 10px;
  display: inline;
  margin-top: 2px;
}
.left_panel .facts_container .map_callout_link a {
  color: inherit;
}
.left_panel .relatives_container {
  padding: 4px 0;
  border-bottom: solid 1px #e5e5e5;
}
.left_panel .relatives_container .relative_family .relative_family_type {
  display: none;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting,
.left_panel .relatives_container .relative_family .relative_family_type.foster,
.left_panel .relatives_container .relative_family .relative_family_type.biological {
  display: block;
  padding: 8px 20px;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting .radio,
.left_panel .relatives_container .relative_family .relative_family_type.adopting .label,
.left_panel .relatives_container .relative_family .relative_family_type.foster .radio,
.left_panel .relatives_container .relative_family .relative_family_type.foster .label,
.left_panel .relatives_container .relative_family .relative_family_type.biological .radio,
.left_panel .relatives_container .relative_family .relative_family_type.biological .label {
  display: inline-block;
  vertical-align: middle;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting .radio,
.left_panel .relatives_container .relative_family .relative_family_type.foster .radio,
.left_panel .relatives_container .relative_family .relative_family_type.biological .radio {
  width: 14px;
  height: 14px;
  border: solid 1px #595959;
  border-radius: 50%;
  padding: 3px;
  margin-left: 8px;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting .radio .radio_inner,
.left_panel .relatives_container .relative_family .relative_family_type.foster .radio .radio_inner,
.left_panel .relatives_container .relative_family .relative_family_type.biological .radio .radio_inner {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #f56932;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting .label,
.left_panel .relatives_container .relative_family .relative_family_type.foster .label,
.left_panel .relatives_container .relative_family .relative_family_type.biological .label {
  color: #595959;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting:not(.selected),
.left_panel .relatives_container .relative_family .relative_family_type.foster:not(.selected),
.left_panel .relatives_container .relative_family .relative_family_type.biological:not(.selected) {
  cursor: pointer;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting:not(.selected) .radio_inner,
.left_panel .relatives_container .relative_family .relative_family_type.foster:not(.selected) .radio_inner,
.left_panel .relatives_container .relative_family .relative_family_type.biological:not(.selected) .radio_inner {
  opacity: 0;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting:not(.selected):hover .radio_inner,
.left_panel .relatives_container .relative_family .relative_family_type.foster:not(.selected):hover .radio_inner,
.left_panel .relatives_container .relative_family .relative_family_type.biological:not(.selected):hover .radio_inner {
  opacity: 0.5;
}
.left_panel .relatives_container .relative_family .relative_family_type.adopting:not(.selected):hover .label,
.left_panel .relatives_container .relative_family .relative_family_type.foster:not(.selected):hover .label,
.left_panel .relatives_container .relative_family .relative_family_type.biological:not(.selected):hover .label {
  text-decoration: underline;
}
.left_panel .relatives_container .relative_family .relative_family_bottom {
  margin: 8px 20px;
  border-bottom: solid 1px #e5e5e5;
}
.left_panel .relatives_container .relative_family:last-child .relative_family_bottom {
  display: none;
}
.left_panel .relatives_container .relative {
  padding: 10px 0;
  list-style-type: none;
}
.mh_desktop .left_panel .relatives_container .relative {
  cursor: pointer;
}
.mh_desktop .left_panel .relatives_container .relative:hover {
  background-color: #f7f7f7;
}
.left_panel .relatives_container .relative_photo,
.left_panel .relatives_container .relative_info,
.left_panel .relatives_container .relative_expand {
  display: table-cell;
  vertical-align: middle;
}
.left_panel .relatives_container .relative_photo {
  padding: 0 20px 0 15px;
}
.left_panel .relatives_container .relative_photo .profile_photo {
  vertical-align: middle;
  background-color: transparent !important;
}
.left_panel .relatives_container .relative_photo .svg_silhouette,
.left_panel .relatives_container .relative_photo .actual_photo {
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
.left_panel .relatives_container .relative_photo .svg_silhouette {
  border: solid 1px #ccc;
}
.left_panel .relatives_container .relative_info {
  width: 100%;
  padding-left: 20px;
}
.left_panel .relatives_container .relative_info .name,
.left_panel .relatives_container .relative_info .relationship,
.left_panel .relatives_container .relative_info .life_span {
  line-height: 17px;
}
.left_panel .relatives_container .relative_info .name {
  color: #000;
  font-weight: 500;
}
.platform_windows .left_panel .relatives_container .relative_info .name, .lang_HE .left_panel .relatives_container .relative_info .name, .NewTreeEmbed.mh_android .left_panel .relatives_container .relative_info .name {
  font-weight: bold;
}
.left_panel .relatives_container .relative_expand {
  padding-left: 20px;
}
.left_panel .relatives_container .relative_expand .icon {
  width: 20px;
  height: 20px;
  background-image: url("/FP/Assets/Images/Common/arrow_right_20x20.svg?v=1");
  transform: scaleX(-1);
}
.mh_desktop .left_panel .relatives_container .relative_expand {
  display: none;
}
.left_panel .all_events_container {
  padding: 4px 0;
  border-bottom: solid 1px #e5e5e5;
}
.left_panel .all_events_container .section_title {
  margin-bottom: 0;
}
.left_panel .all_events_container .section_name_and_count {
  cursor: pointer;
}
.left_panel .all_events_container .section_name_and_count::after {
  content: "";
  background-position: -373px -269px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 4px;
  transform: scaleY(-1) translateY(-3px);
}
.left_panel .all_events_container .section_name_and_count.events_opened::after {
  transform: scaleY(1);
  transition: 0.5s;
}
.left_panel .all_events_container .events_list {
  padding: 0 12px 0 20px;
}
.left_panel .all_events_container .event {
  margin-top: 10px;
  word-wrap: break-word;
}
.left_panel .all_events_container .event:last-child {
  margin-bottom: 10px;
}
.left_panel .all_events_container .sub_events {
  padding-right: 15px;
}
.left_panel .facts_container .section_link::before,
.left_panel .photos_container .section_link::before,
.left_panel .relatives_container .section_link::before,
.left_panel .biography_container .add_biography::before {
  content: "";
  background-position: -118px -336px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 10px;
  height: 11px;
  display: inline-block;
  margin-left: 4px;
}

.left_panel.scroll_mode_hide_name .main_title, .left_panel.scroll_mode_hide_photo .main_title {
  display: block;
}
.left_panel.scroll_mode_hide_name .photo_container, .left_panel.scroll_mode_hide_photo .photo_container {
  visibility: hidden;
}
.left_panel.scroll_mode_hide_photo .actions_container {
  position: absolute;
  transform: translateY(14px);
  -moz-transform: translateY(14px);
  -webkit-transform: translateY(14px);
  background-color: #fff;
  top: 44px;
  box-shadow: 0 1px 10px rgba(150, 150, 150, 0.5);
  z-index: 1;
}
.left_panel.scroll_mode_hide_photo .actions_container ul.main_actions li.main_action:first-child {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.left_panel.scroll_mode_hide_photo .actions_container ul.main_actions li.main_action:last-child {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.left_panel.scroll_mode_hide_photo .actions_container ul.main_actions li.main_action .action_text {
  display: none;
}
.left_panel.scroll_mode_hide_photo .push_for_docking {
  margin-top: 90px;
}
.left_panel.scroll_mode_hide_photo .push_for_docking::after {
  content: "";
  display: table;
}
.left_panel.scroll_mode_hide_photo .invite_container {
  position: absolute;
  margin: 0;
  top: 129px;
  z-index: 1;
  box-shadow: -7px 8px 10px -7px rgba(150, 150, 150, 0.5);
}
.left_panel .match_link {
  display: block;
  padding: 8px 20px 8px 8px;
}
.left_panel .match_link.smart, .left_panel .match_link.record, .left_panel .match_link.dna_status_public, .left_panel .match_link.consistency_issues {
  cursor: pointer;
}
.left_panel .match_link.smart:hover, .left_panel .match_link.record:hover, .left_panel .match_link.dna_status_public:hover, .left_panel .match_link.consistency_issues:hover {
  background-color: #f7f7f7;
}
.left_panel .match_link a {
  display: inline-block;
  vertical-align: middle;
  color: #000;
}
.left_panel .match_link a:hover {
  text-decoration: none;
}
.mh_mobile .left_panel .match_link a {
  text-decoration: underline;
}
.left_panel .match_link .secondary {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}
.left_panel .match_link .secondary::before {
  padding: 0 8px;
  content: "•";
}
.left_panel .match_link .secondary a {
  color: #595959;
}
.left_panel .match_link .secondary a:hover {
  text-decoration: underline;
}
.left_panel .match_link .match_link_icon {
  display: table-cell;
  vertical-align: top;
  padding-left: 8px;
}
.left_panel .match_link .match_link_icon::before {
  content: "";
}
.left_panel .match_link.smart .match_link_icon::before {
  background-position: -56px -281px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .match_link.record .match_link_icon::before {
  background-position: -28px -281px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .match_link.dna_status_public .match_link_icon::before {
  background-position: -293px -252px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .match_link.dna_status_private .match_link_icon::before {
  background-position: 0px -281px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .match_link.consistency_issues .match_link_icon::before {
  background-position: -293px 0px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
}
.left_panel .match_link .match_link_label {
  display: table-cell;
  vertical-align: top;
}
.left_panel .match_link .match_link_primary:hover,
.left_panel .match_link .match_link_secondary:hover {
  text-decoration: underline;
}
.mh_mobile .left_panel .match_link .match_link_primary,
.mh_mobile .left_panel .match_link .match_link_secondary {
  text-decoration: underline;
}
.left_panel .dna_buttons {
  padding: 16px 24px 4px 8px;
  display: flex;
  justify-content: center;
  column-gap: 16px;
}
.left_panel .dna_buttons a.dna_button {
  min-height: 30px;
  border: solid 1px #ccc;
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-block;
  color: #595959;
  text-align: center;
}
.mh_standard .left_panel .dna_buttons a.dna_button {
  min-height: 21px;
}
.mh_tablet .left_panel .dna_buttons a.dna_button {
  min-width: 126px;
}
.left_panel .dna_buttons a.dna_button:hover {
  border-color: #f2f2f2;
  background-color: #f2f2f2;
  text-decoration: none;
}
.left_panel .dna_buttons a.dna_button .dna_button_text {
  color: #595959;
  letter-spacing: 0.3px;
}
.left_panel .panel_footer {
  height: 16px;
}

.pk_page_header {
  display: none;
}

.treeSelectionMenu {
  top: 1px;
  right: 0;
  z-index: 20;
  border: solid 1px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  max-height: 392px;
  overflow: auto;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 10px 0;
  color: #595959;
}
.treeSelectionMenu .treeSelectionMenuEntry {
  line-height: 40px;
  border: none;
}
.treeSelectionMenu .treeSelectionMenuEntry:hover {
  background-color: #f2f2f2;
}
.treeSelectionMenu .treeSelectionMenuEntry td.treeMenuName {
  padding: 0 20px;
}
.treeSelectionMenu .treeSelectionMenuEntry td.treeMenuCount {
  padding: 0;
  padding-left: 16px;
  text-align: right;
}
.treeSelectionMenu .treeSelectionMenuEntry td.treeMenuIcon {
  padding: 0;
  padding-top: 15px;
  padding-left: 20px;
}
.treeSelectionMenu .treeSelectionMenuEntry.EntrySelected {
  color: #f56932;
}
.treeSelectionMenu .treeSelectionMenuEntry.EntrySelected td.treeMenuName,
.treeSelectionMenu .treeSelectionMenuEntry.EntrySelected td.treeMenuCount {
  font-weight: normal !important;
}
.treeSelectionMenu .treeSelectionMenuEntry.EntrySelected td.treeMenuIcon::before {
  content: "";
  background-position: -373px -289px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 12px;
  height: 12px;
}
.treeSelectionMenu .treeSelectionMenuEntry.EntryHighlight {
  background-color: #f2f2f2;
}

.toolbarLeft {
  width: 100%;
  color: #8d8d8d;
}
.toolbarLeft a {
  color: #8d8d8d;
}
.toolbarLeft #TreeSelection {
  margin: 0 4px;
  font-size: 15px;
  color: #333;
  background-color: transparent;
  padding: 8px;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.platform_windows .toolbarLeft #TreeSelection, .lang_HE .toolbarLeft #TreeSelection, .NewTreeEmbed.mh_android .toolbarLeft #TreeSelection {
  font-weight: bold;
}
.toolbarLeft a#TreeSelection {
  color: #333;
}
.toolbarLeft a#TreeSelection .ToolBar_Down {
  display: inline-block;
  height: unset;
  margin: 0;
  position: relative;
  width: 17px;
  top: 2px;
  right: 6px;
}
.toolbarLeft a#TreeSelection .ToolBar_Down::after {
  content: "";
  background-position: -373px -309px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 12px;
  height: 12px;
}
.toolbarLeft a#TreeSelection:hover {
  text-decoration: none;
  background-color: #f2f2f2;
}
.toolbarLeft a#TreeSelection.opened .ToolBar_Down::after {
  transform: scaleY(-1);
}
.toolbarLeft #TotalPeopleSummary {
  margin-top: 3px;
  float: right;
}

#ToolBarExtension {
  position: absolute;
  left: 0;
  margin-top: 6px;
}

/*
#family_search_sync_button {
    float: $start;
    left: 0;
    margin-top: -2px;
    margin-left: 8px;
    margin-right: 4px;
}
*/
#tree_view_selector {
  margin-top: -8px;
  padding: 0 11px;
  float: left;
}
.mh_mobile #tree_view_selector {
  margin-top: 0;
  padding: 0;
}

.flexbox .extended .main_actions {
  display: flex;
}
.flexbox .extended .main_actions > li {
  width: 100% !important;
}

.mh_modal.dna_modal .modal-dialog {
  width: 90%;
  border-radius: 4px;
}

.dna_modal_content {
  color: #595959;
}

.dna_modal_close {
  left: 20px;
  top: 20px;
}

.dna_modal_content {
  padding: 40px 20px 15px;
  font-size: 15px;
  overflow: hidden;
}
.dna_modal_content .close_button {
  background: #f56932;
  padding: 10px 20px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  border-radius: 2px;
  float: left;
}
.dna_modal_content .close_button:hover {
  text-decoration: none;
}

.modal_section_separator {
  background: #e5e5e5;
  width: 100%;
  height: 1px;
  margin: 20px 0;
}