.c {
  text-align: center;
}

.l {
  text-align: left;
}

.r {
  text-align: right;
}

.t {
  vertical-align: top;
}

.b {
  vertical-align: bottom;
}

.m {
  vertical-align: middle;
}

.x1 {
  width: 100%;
}

.x2 {
  width: 50%;
}

.x3 {
  width: 33%;
}

.x4 {
  width: 25%;
}

.x5 {
  width: 20%;
}

.table {
  display: table;
  border-spacing: 0;
}

.cell {
  display: table-cell;
}

.flex {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.flex-v {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.inflex {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
}

.inflex-v {
  display: inline-flex;
  flex-flow: column nowrap;
  align-items: center;
}

.fc {
  justify-content: center;
}

.fl {
  justify-content: flex-start;
}

.fr {
  justify-content: flex-end;
}

.ft {
  align-items: flex-start;
}

.fb {
  align-items: flex-end;
}

.fm {
  align-items: center;
}

.fs {
  justify-content: space-between;
}

.grid {
  display: grid;
}

.gx1 {
  grid-template-columns: 1fr;
}

.gx2 {
  grid-template-columns: 1fr 1fr;
}

.gx3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.gg20 {
  grid-gap: 20px;
}

.gg30 {
  grid-gap: 30px;
}

.grid > * {
  min-width: 0;
}

.dn {
  display: none !important;
}

.c-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.c-red {
  color: #e74c3c !important;
}

.bg-red {
  background-color: #e74c3c !important;
}

.c-blue {
  color: #3498db !important;
}

.bg-blue {
  background-color: #3498db !important;
}

.c-grey {
  color: #999 !important;
}

.bg-grey {
  background-color: #999 !important;
}

.c-lightgrey {
  color: #c2c2c2 !important;
}

.bg-lightgrey {
  background-color: #c2c2c2 !important;
}

.c-green {
  color: #2ecc71 !important;
}

.bg-green {
  background-color: #2ecc71 !important;
}

.c-orange {
  color: #f39c12 !important;
}

.bg-orange {
  background-color: #f39c12 !important;
}

.bg-sel {
  background-color: #f8f8f8;
}

.snackbar {
  display: none;
  position: fixed;
  z-index: 61;
  top: 20px;
  width: 100%;
  max-width: 560px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 12px;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  border: 1px solid #34495e;
  border-left: 5px solid #34495e;
}

.snackbar > i {
  margin-right: 6px;
}

.snackbar.success {
  border-color: #2ecc71;
}

.snackbar.success > i {
  color: #2ecc71;
}

.snackbar.error {
  border-color: #e74c3c;
}

.snackbar.error > i {
  color: #e74c3c;
}

/* *** BUTTONS *** */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e2e5ec;
  line-height: 1.3em;
  padding: 6px 16px;
  border-radius: 3px;
  /*margin:0 5px;*/
  cursor: pointer;
  transition: 0.2s;
  user-select: none;
  background-color: #fff;
}

.button:hover {
  box-shadow: 0 2px 12px 0 rgb(0 0 0 / 12%);
}

.button.md-s {
  padding: 2px 10px;
}

.button > i {
  color: #333;
  font-size: 14px;
  margin-right: 6px;
  vertical-align: middle;
}

.button.rv > i {
  margin-left: 0;
  margin-left: 6px;
}

.button > span {
  color: #333;
  font-size: 14px;
  vertical-align: middle;
  font-weight: 500;
}

.button.flat-blue {
  background-color: #fff;
  border-color: #3498db;
}

.button.flat-blue > i,
.button.flat-blue > span {
  color: #3498db;
}

.button.blue {
  background-color: #3498db;
  border-color: #3498db;
}

.button.blue > i,
.button.blue > span {
  color: #fff;
}

.button.flat-red {
  background-color: #fff;
  border-color: #e74c3c;
}

.button.flat-red > i,
.button.flat-red > span {
  color: #e74c3c;
}

.button.green {
  background-color: #1abc9c;
  border-color: #1abc9c;
}

.button.ambaix {
  background-color: #78003a;
  border-color: #78003a;
}

.button.green > i,
.button.green > span {
  color: #fff;
}

.button.dis {
  background-color: #f8f8f8 !important;
  border-color: #e2e2e2 !important;
}

.button.dis > i,
.button.dis > span {
  color: #bdbdbd !important;
}

.button.dis:hover {
  box-shadow: none;
}

.button.md-l {
  padding: 8px 16px;
  border-radius: 5px;
}

.button.md-l > span {
  font-size: 14px;
  font-weight: 400;
}

.button.md-l:hover,
.button.md-l:focus {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button.xl {
  width: 100%;
  padding: 10px;
}

.button.xl > span {
  font-size: 16px;
}

.button.xl > i {
  font-size: 14px;
}

.button.no-border {
  border: 0;
}

.button.no-border:hover {
  box-shadow: none;
}

/* *** TABS *** */

.tabs {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #d2d2d2;
}

.tab {
  font-size: 14px;
  font-weight: 400;
  color: #595d6e;
  padding: 2px 10px 10px 10px;
  margin: 0 10px 0 0;
  position: relative;
  top: 0;
  cursor: pointer;
}

.tab.on {
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #333;
}

.tab > i {
  margin-right: 5px;
}

.tabs-cont {
  padding: 10px 0 0 0;
}

.tab-cont {
  display: none;
}

.tab-cont.on {
  display: block;
}

/* *** CHECKBOX *** */

.cb-container {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.cb {
  display: inline-flex;
  width: 18px;
  min-width: 18px;
  height: 18px;
  border: 1px solid rgba(41, 128, 185, 1);
  border-radius: 3px;
  cursor: pointer;
  transition: 0.1s;
}

.cb.md-s {
  width: 15px;
  height: 15px;
  min-width: 15px;
}

.cb:hover,
.cb:focus {
  background-color: rgba(41, 128, 185, 0.1);
}

.cb-container.on > .cb,
.cb.on {
  background-color: rgba(41, 128, 185, 1);
}
.cb.mod {
  background-color: rgba(41, 128, 185, 0.1);
  font-weight: 500;
  font-style: normal;
  text-align: center;
  line-height: 18px;
  font-size: 16px;
}

.cb.mod:after {
  content: "--";
}

.cb.dis {
  border-color: #cdcdcd;
}

.cb.on.dis {
  border-color: #ababab;
  background-color: #d2d2d2;
}

.cb-desc {
  margin-left: 8px;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

/* *** List Box *** */

.lb {
  display: flex;
  align-items: stretch;
  background-color: #fff;
}

.lb.lb-lnk {
  cursor: pointer;
  transition: 0.2s;
}

.lb > div {
  padding: 10px;
}

.lb-image {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background-size: cover;
  background-position: top center;
  background-color: #f2f2f2;
  font-size: 20px;
  color: #666;
}

.lb-data {
  flex: 1;
  border-bottom: 1px solid #e1e1e1;
  overflow: hidden;
}

.lb-info {
  width: 90px;
  padding-left: 0;
  border-bottom: 1px solid #e1e1e1;
  text-align: right;
}

.lb-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 22px;
}

.lb-subtext {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 22px;
}

.ic-noti {
  display: none;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e74c3c;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  font-style: normal;
}

.ic-noti.on {
  display: inline-flex;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* textarea.autogrow {box-sizing: content-box;} */

.field-suffix-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 48px;
  color: #555;
  position: absolute;
  right: 0;
  cursor: pointer;
}

.module-upgrade {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  max-width: 800px;
  grid-template-rows: 380px;
}

.upgrade-title {
  font-size: 32px;
  font-weight: 700;
  color: #423e93;
  margin-bottom: 4px;
  line-height: 1.3em;
}
.upgrade-text {
  font-size: 15px;
  color: #423e93;
  line-height: 1.4em;
}
.upgrade-subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #423e93;
  line-height: 1.3em;
  margin: 0 0 16px 0;
}
#modal-upgrade ul {
  padding: 0 0 0 20px;
  margin: 0;
}
#modal-upgrade li {
  color: #423e93;
  font-size: 15px;
  line-height: 1.3em;
  margin: 5px 0px;
}
.btn-upgrade,
.btn-module-upgrade {
  background-color: #423e93;
  border-color: #423e93;
  height: 34px;
}
.btn-upgrade > span,
.btn-upgrade > i,
.btn-module-upgrade > span,
.btn-module-upgrade > i {
  color: #fff;
}
.modal-close {
  cursor: pointer;
  user-select: none;
}
#modal-upgrade .modal-cont,
#modal-upgrade-account .modal-cont {
  max-width: 960px;
}
#modal-upgrade-account {
  z-index: 5;
}
.upgrade-image {
  width: 90%;
}
#cropperModal .modal-body-cont {
  padding: 0;
}

#modal-speaker-info .modal-header {
  border: none;
}

#modal-speaker-info .modal-body-cont {
  padding: 0 40px 24px 40px;
}

#modal-speaker-info .profile-card {
  display: flex;
}

#modal-speaker-info .profile-card img {
  width: 180px;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  max-height: 185px;
}

#modal-speaker-info .profile-info {
  margin-left: 32px;
  text-align: left;
}

#modal-speaker-info .profile-info h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

#modal-speaker-info .profile-info .position {
  font-size: 14px;
  color: #333;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 8px;
}

#modal-speaker-info .profile-info .company {
  font-size: 14px;
  color: #333;
  display: flex;
  gap: 4px;
  align-items: center;
}

#modal-speaker-info .profile-info p {
  color: #888;
  margin-top: 16px;
}

#modal-speaker-info .placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
}

#modal-speaker-info .sessions-wrapper {
  margin-top: 32px;
  overflow: auto;
  max-height: 400px;
  height: 250px;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#modal-speaker-info .sessions-wrapper::-webkit-scrollbar {
  width: 4px;
}

/* Track */
#modal-speaker-info .sessions-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
#modal-speaker-info .sessions-wrapper::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
#modal-speaker-info .sessions-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#modal-speaker-info .sessions-wrapper .session-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  align-items: flex-start;
  border: 2px dashed #ccc;
  min-height: 100px;
}
#modal-speaker-info .sessions-wrapper .session-card h3 {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}
#modal-speaker-info .sessions-wrapper .session-card .details {
  font-size: 12px;
  display: flex;
  color: #333;
  align-items: center;
  gap: 16px;
}
#modal-speaker-info .sessions-wrapper .session-card .session-desc {
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

@media screen and (max-width: 800px) {
    #modal-speaker-info .modal-body-cont{
        padding: 0 18px 24px 18px;
    }

    #modal-speaker-info .profile-card{
        flex-wrap: wrap;
        justify-content: center;
    }

    #modal-speaker-info .profile-card img {
        width: 75%;
    }

    #modal-speaker-info .profile-info {
        margin-left: 0;
        margin-top: 18px;
    }
}

/* */

#modal-sponsor-info .modal-header {
  border: none;
}

#modal-sponsor-info .modal-body-cont {
  padding: 0 40px 24px 20px;
}

#modal-sponsor-info .profile-card {
  display: flex;
}
#modal-sponsor-info .profile-card .chip {
  background-color: #b2e6ff;
  color: #35beff;
  border-radius: 10px;
  padding: 3px 8px;
}

#modal-sponsor-info .profile-info {
  margin-left: 32px;
  text-align: left;
}

#modal-sponsor-info .profile-info h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}
#modal-sponsor-info .profile-info .chips {
  margin-bottom: 8px;
}

#modal-sponsor-info .profile-info .info-field {
  font-size: 14px;
  color: #333;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 8px;
}

#modal-sponsor-info .profile-info p {
  color: #888;
  margin-top: 16px;
}

#modal-sponsor-info .img-wrapper {
  width: 220px;
  height: 180px;
  background-color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  min-height: 220px;
  border-radius: 8px;
}

#modal-sponsor-info .profile-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#modal-sponsor-info .rrss-logos {
  display: flex;
  gap: 8px;
}

#modal-sponsor-info .rrss-logos .rrss-logo {
  color: #fff;
  background-color: #333;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}

#modal-sponsor-info .placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
}

#modal-sponsor-info .description-wrapper {
  margin-top: 16px;
  max-height: 400px;
  padding: 16px;
  height: 100%;
  border: 2px dashed #ccc;
  text-align: left;
  color: #888;
}

@media screen and (max-width: 800px) {
    #modal-sponsor-info .modal-body-cont{
        padding: 0 18px 24px 18px;
    }

    #modal-sponsor-info .profile-card{
        flex-wrap: wrap;
    }
    #modal-sponsor-info .img-wrapper {
        margin: 0 auto;
        padding: 0;
        height: 115px;
        min-height: 115px;
    }

    #modal-sponsor-info .profile-card img {
        width: 75%;
    }

    #modal-sponsor-info .profile-info {
        margin-left: 0;
        margin-top: 18px;
    }
}

.m-button {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  background-color:#fff;
  border:1px solid #cbd6e2;
  transition:0.2s;
  position:relative;
}
.m-button > i{ color:#506e91; font-size:13px; padding:0 4px; }
.m-button > i.ic-mmteam{ width: auto; }
.m-button > i.ph-fill{ font-size:14px; }
.m-button > span{ color:#506e91; font-size:13px; padding:0 4px; font-weight:500; }
.m-button:hover{ box-shadow:0 0 0px 1px #cbd6e2;  }
.m-button.rounded{ border-radius:25px; }

.m-button.md-icon{ padding:4px 7px; }
.m-button.md-icon > i{ font-size:16px; }
.m-button.md-icon > i.material-icons{ font-size:18px; }

.m-button.flat-blue{ border-color:#15539A;  }
.m-button.flat-blue > i, .m-button.flat-blue > span{ color:#15539A; }
.m-button.flat-green{ border-color:#1abc9c;  }
.m-button.flat-green > i, .m-button.flat-green > span{ color:#1abc9c; }
.m-button.flat-red{ border-color:#e74c3c;  }
.m-button.flat-red > i, .m-button.flat-red > span{ color:#e74c3c; }

.m-button.blue{ background-color:#0019ce; }
.m-button.green{ background-color:#1abc9c;  }
.m-button.red{ background-color:#e74c3c;  }
.m-button.grey{ background-color: #dfe6e9; }
.m-button.hp{ background-color:#eaf0f6; border-color:#cbd6e2; }
.m-button.blue > i, .m-button.blue > span, 
.m-button.green > i, .m-button.green > span,
.m-button.red > i, .m-button.red > span{ color:#fff; }

.m-button.b-mm{ padding-right:42px; }
.m-button.b-mm::after{
  position:absolute; top:0; right:0;
  width:32px; height:100%; 
  background-color:inherit; 
  content:''; 
  background-image:url(../images/meetmaps_icon.png);
  background-size:contain;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: center;
  padding: 8px;
  border-left: 1px solid #cbd6e2;
  box-sizing: border-box;
}
.m-button.green.b-mm::after,
.m-button.blue.b-mm::after,
.m-button.red.b-mm::after{ background-image:url(../images/meetmaps_icon_white.png); }
.m-button.rounded::after{ border-radius:0 25px 25px 0; }

.m-button.flat{ border:none; background-color:transparent; }
.m-button.flat:hover{ box-shadow:none; }

#modal-session-info .modal-header {
  border: none;
}

#modal-session-info .modal-body-cont {
  padding: 0;
}

#modal-session-info .agenda-card .chip {
  background-color: #b2e6ff;
  color: #35beff;
  border-radius: 10px;
  padding: 3px 8px;
}

#modal-session-info .agenda-info {
  text-align: left;
  padding: 0 40px 24px 40px;
}

#modal-session-info .agenda-info h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
#modal-session-info .agenda-info .chips {
  margin-bottom: 8px;
}

#modal-session-info .agenda-info .info-field {
  font-size: 14px;
  color: #333;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 8px;
}

#modal-session-info .agenda-info p {
  color: #888;
  margin-top: 16px;
}

#modal-session-info .img-wrapper {
  width: 220px;
  height: 180px;
  background-color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  min-height: 220px;
  border-radius: 8px;
}

#modal-session-info .agenda-card .img-wrapper {
  max-height: 200px;
  width: 100%;
}

#modal-session-info .agenda-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#modal-session-info .description-wrapper {
  margin-top: 16px;
  height: 400px;
  padding: 16px;
  height: 100%;
  border: 2px dashed #ccc;
  text-align: left;
  color: #888;
}

#modal-session-info ul {
  margin-top: 16px;
}

#modal-session-info ul li {
  margin-left: 28px;
  position: relative;
  display: flex;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 4px;
}
#modal-session-info ul li:hover::after {
    content: ""; 
    background: var(--event-color);
    display: inline-block;
    width: 100%;
    height: 1px;
    align-items: center;
    margin-right: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#modal-session-info ul li .desc {
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#modal-session-info ul li .name {
  white-space: nowrap;
  font-weight: 500;
}
#modal-session-info ul li .company {
  margin: 0;
}
#modal-session-info ul li .position {
  margin: 0;
  white-space: nowrap;
}

#modal-session-info ul li::before {
  content: "";
  background: var(--event-color);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  align-items: center;
  margin-right: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#modal-session-info .sponsors-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

#modal-session-info .sponsors-wrapper .sponsor-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

.group-buttons{ display:flex; align-items:center; gap:10px; }
.page-access{
  display:flex;
  flex-flow:column nowrap;
  justify-content: space-between;
  align-items: center;
  height:100vh;
}
.page-access-body{     
  width: 100%;
  padding: 20px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center; 
}
.box{ 
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2);
  background-color: #fff; 
  padding:25px;
}
.page-access .box{ width:520px; max-width:100%; padding:48px 40px 40px 40px; }
.box-title{ font-size:24px; color:#333; font-weight:700; }
.box-subtitle{ font-size:14px; color:#333; }
.link-guest{ color:#333; text-transform: lowercase; }
.link-guest:hover{ text-decoration:underline; }

.legal-footer{ background-color:#404040; width:100%;  }
.legal-footer-container{ margin:auto; max-width: 1380px; padding:0 20px; display:flex; justify-content:space-between; align-items:center; height:52px; }
.legal-footer img{ height:13px; vertical-align: middle; }
.legal-footer-links{ display:flex; align-items:center; flex-flow: row wrap; justify-content: center; }
.legal-footer-links > a{ color:#999; font-size:12px; display:inline-flex; padding:0 9px; border-right:1px solid #808080; }
.legal-footer-links > a:last-child{ border:0; }
.legal-footer-links > a:hover{ color:#bababa; text-decoration:underline; }


@media screen and (max-width:800px) {
    #modal-session-info .agenda-info {
        padding: 0 18px 24px 18px;
    }

    #modal-session-info ul li {
        display: block;
    }

    #modal-session-info ul li::before {
        top: 6px;
        transform: none;
    }
    #modal-session-info .speaker-info .separator {
        display: none;
    }
    #modal-session-info .speaker-info .position {
       width: 100%;
       display: block;
       white-space: inherit;
    }
    #modal-session-info .speaker-info .desc {
        display: block;
    }
    .legal-footer-container{ flex-direction:column; padding:16px; height:auto; gap:10px; }
    .page-access .box{ width:100%; }
}