/**************************\
  Teams Modal Styles
\**************************/

.modal {
    font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
  }

  
  
  .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(178, 184, 184, 0.80);
        /* Background Blurs/4 */
        backdrop-filter: blur(32px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 10000;
    overflow-y: auto;
  }
  
  .modal__container {
    padding: 0px;
    width: 100%;
    margin: auto;
    
    max-width: 70vw;
    
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-sizing: border-box;
  }
  
  .modal__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
  }
  
  .modal__close {
    background: transparent;
    border: 0;
    width: 27.807px;
    height: 27.807px;
  }
  
  .modal__header .modal__close:before { content: "\2715"; }
  
  .modal__content-all {
    margin-top: 2px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
    display: flex;
    gap: 40px;
    padding: 70px;
    background-color: #fff;
    border-radius: 10px;
    /* overflow-y: auto; */
    /* max-height: 100%; */
  }

  .modal__content {
    /* margin-top: 2px;
    margin-bottom: 20px; */
    line-height: 1.5;
    color: rgba(0,0,0,.8);
    display: flex;
    gap: 40px;
    margin-bottom: -1rem;
    /* padding: 70px; */
    /* background-color: #fff; */
    /* border-radius: 10px; */
    /* overflow-y: scroll;
    max-height: inherit; */
  }

  .modal__content-expand {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .modal__profile-details {
    border-bottom: 1px solid #9FA9AB;
  }

  .modal__member-name {
    color: #000;
    font-family: Roboto;
    font-size: 46px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
    letter-spacing: -0.92px;
    margin-bottom: 5px;
  }

  .modal__member-role {
    color: #161717;
    font-family: "omnes-pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
  }

  .modal__member-details {
    color: #212529;
    font-family: "omnes-pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border-bottom: 1px solid #9FA9AB;
  }

  .modal__member-details p {
    margin-bottom: 25px;
  }

  .modal__member-qual {
        /* color: #212529; */
        font-family: "omnes-pro", sans-serif;
        font-size: 15.75px;
        font-style: normal;
        /* font-weight: 400; */
        /* line-height: 25.2px; */
  }
  
  .modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
  }
  
  .modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  
  .modal__btn-primary {
    background-color: #00449e;
    color: #fff;
  }
  
  
  
  /**************************\
    Demo Animation Style
  \**************************/
  @keyframes mmfadeIn {
      from { opacity: 0; }
        to { opacity: 1; }
  }
  
  @keyframes mmfadeOut {
      from { opacity: 1; }
        to { opacity: 0; }
  }
  
  @keyframes mmslideIn {
    from { transform: translateY(15%); }
      to { transform: translateY(0); }
  }
  
  @keyframes mmslideOut {
      from { transform: translateY(0); }
      to { transform: translateY(-10%); }
  }
  
  .micromodal-slide {
    display: none;
  }
  
  .micromodal-slide.is-open {
    display: block;
  }
  
  .micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
  }
  
  .micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
  }
  
  .micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
  }
  
  .micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
  }
  
  .micromodal-slide .modal__container,
  .micromodal-slide .modal__overlay {
    will-change: transform;
  }

  .modal__photo{
    max-width: 237px;
    height: auto;
    width: 20vw;
    border-radius: 20px;
  }
  .modal__profile-details-mob {
    display: none;
   }


  @media (max-width: 720px) {
    .modal__content {
        /* padding: 40px; Adjust padding as needed */
        flex-direction: column;
        gap: 20px;
    }
    .modal__content-all {
      padding: 40px; /* Adjust padding as needed */
      /* flex-direction: column;
      gap: 20px; */
  }
    .modal__profile-details {
    display: none;
   }
   .modal__profile-details-mob {
    display: flex;
    justify-content: center;
    flex-direction: column;
   }


    .modal__image {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding-bottom: 25px;
        border-bottom: 1px solid #9FA9AB
    }

    .modal__photo {
        width: 100%;
        height: 100%;
        max-width: 100px;
        max-height: 100px;
        border-radius: 20px;
    }

    .modal__member-name {
        color: #000;
        font-family: Roboto;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%; /* 33.6px */
        letter-spacing: -0.92px;
        margin-bottom: 5px;
    }
    .modal__member-role {
        color: #161717;
        /* p */
        font-family: "omnes-pro", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 175% */
        margin-bottom:0px;
    }
    .modal__container {
        max-width: 85vw;
    }
    .modal__member-details {
        color: #212529;
        /* P */
        font-family: "omnes-pro", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
    }
    .modal__member-qual {
        color: #212529;
        font-family: "omnes-pro", sans-serif;
        font-size: 15.75px;
        font-style: normal;
        font-weight: 400;
        line-height: 25.2px;
    }
}
