
 /* CSS for Team Modal*/
 /**
 * Modals ($modals)
 */
 body.active{
  overflow-y: hidden;
}
.meetup-team-tab-contents .team-list .popup-wrap{
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  background-color: #0000007d;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  padding: 30px;
}
.meetup-team-tab-contents .team-list.nav-active .popup-wrap{
  display: flex;
}
.meetup-team-tab-contents .team-list .popup-wrap .pop-inner{
  max-width: 800px;
  width: 100%;
  height: auto;
  background-color: #fff;
  margin: auto;
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 20px;
  border-radius: 10px;
}
.meetup-team-tab-contents .team-list .col-left{
  max-width: 290px;
  width: 100%;
}
.meetup-team-tab-contents .team-list .col-left img{
  height: 380px !important;
  /* border-radius: 50% !important; */
}
.meetup-team-tab-contents .team-list .col-right{
  width: 100%;
  text-align: left;
  padding-left: 30px;
}
.meetup-team-tab-contents .team-list .team-in{
  width: 100%;
  cursor: pointer;
}
.meetup-team-tab-contents .team-list .p-close{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  color: #fff;
  background: linear-gradient(65deg,#f27336 11%,#d34f5f 17%,#664296);
  width: 45px;
  height: 45px;
  border-bottom-left-radius: 15px;
  cursor: pointer;
}
@media (max-width:767px){
  .meetup-team-tab-contents .team-list .popup-wrap .pop-inner{
       flex-direction: column;
  }
  .meetup-team-tab-contents .team-list .col-left{
    margin: 0 auto;
  }
  .meetup-team-tab-contents .team-list .col-right{
    text-align: center;
    padding-left: 0;
  }
}
@media (max-width:576px){
  .meetup-team-tab-contents .team-list .col-left{
    max-width: 200px;
  }
  .meetup-team-tab-contents .team-list .col-left img{
    height: 200px !important;
  }
  .meetup-team-tab-contents .team-list .popup-wrap{
    padding: 15px;
  }
}