/* Sass Document */
.leader-card {
  cursor: pointer; }

/* Modal Base */
.leader-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 9999; }
  @media only screen and (max-width: 600px) {
    .leader-modal {
      padding: 20px; } }
  .leader-modal button {
    background: white;
    color: gray; }
  .leader-modal .leader-modal button:after {
    content: ''; }
  .leader-modal.open {
    display: flex; }
    @media only screen and (max-width: 600px) {
      .leader-modal.open {
        display: block;
        overflow: scroll !important; } }

.leader-modal-content.is-scrollable {
  overflow-y: auto;
  max-height: 90vh; }

.no-scroll {
  overflow: hidden; }

.leader-modal-content {
  background: #fff;
  max-width: 900px;
  width: 100%;
  padding: 30px;
  position: relative;
  animation: fadeInUp 0.25s ease-out; }
  @media only screen and (max-width: 600px) {
    .leader-modal-content {
      padding: 20px; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.leader-modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  line-height: 1; }
  .leader-modal-close:after {
    content: ''; }

.leader-modal-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; }

.leader-modal-text {
  flex: 1; }
