* {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

a {
  text-decoration: none;
}

b {
  font-weight: 500;
}

form {
  margin: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: #fff; */
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.topbar {
  background-color: var(--event-color);
}

.topbar-cont {
  max-width: 1380px;
  margin: 0 auto;
  padding: 4px 20px;
  height: 68px;
}

.topbar-event,
.topbar-user {
  height: 100%;
}

.event-logo {
  max-height: 40px;
  margin-right: 20px;
  max-width: 90%;
}

.event-title {
  color: #fff;
  letter-spacing: 0.011em;
  font-size: 16px;
}

.btn-my-account {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
  margin-left: 12px;
}

.btn-my-account > i {
  color: #fff;
}

.btn-my-account > span {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.022em;
}

.btn-my-account:hover {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.lang-op {
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid transparent;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  padding: 4px;
  margin: 0 2px;
}

.lang-op.on {
  color: #fff;
  border-color: #fff;
}

.main-menu {
  padding: 4px;
}

.main-menu-op {
  font-size: 14px;
  color: #595d6e;
  font-weight: 400;
  padding: 9px 8px;
  margin: 0 8px;
}

.main-menu-op.on {
  color: #3498db;
  font-weight: 500;
}

.body {
  flex-grow: 1;
  padding-top: 110px;
}

.body-cont {
  max-width: 1380px;
  margin: 0 auto;
  padding: 20px;
}

/* *** EMPTY STATE *** */

.empty-state {
  padding: 50px 40px;
  text-align: center;
}

.empty-state-icon > i {
  font-size: 72px;
  color: #ababab;
  margin-bottom: 16px;
}

.empty-state-title {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

.empty-state-desc {
  font-size: 18px;
  color: #ababab;
  font-weight: 500;
}

/* *** POPUP OPTIONS *** */

.mm-options {
  z-index: 62;
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 190px;
  border-radius: 3px;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.4);
  top: 46px;
  left: 262px;
  max-height: calc(100vh - 71px);
  overflow: auto;
}

.mm-options.on {
  display: inline-block;
}

.mm-opt {
  padding: 6px 10px;
  border-bottom: 1px solid #e2e2e2;
  cursor: pointer;
  line-height: 24px;
  display: block;
}

.mm-opt:hover {
  background-color: #f2f2f2;
}

.mm-opt > i {
  line-height: 28px;
  width: 28px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  color: #ababab;
  margin-right: 6px;
}

.mm-opt > span {
  display: inline-block;
  line-height: 28px;
  vertical-align: middle;
  font-size: 13px;
  color: #333;
}

.mm-opt.off > i {
  color: #d2d2d2;
}

.mm-opt.off > span {
  color: #d2d2d2;
}

.mm-opt.on {
  background-color: #f2f2f2;
}

.mm-opt.on > span {
  font-weight: 500;
}

.pu-op,
.pu-sop {
  line-height: 24px;
  padding: 6px 12px;
  color: #444;
  font-size: 13px;
  cursor: pointer;
  min-width: 120px;
}

.pu-sop {
  display: none;
}

.pu-op:hover,
.pu-sop:hover {
  background-color: #f8f8f8;
}

.pu-op.sel,
.pu-sop.sel {
  background-color: rgba(52, 152, 219, 0.2);
}

.pu-sop.on {
  display: block;
}

.pu-op.off,
.pu-sop.off {
  color: #d2d2d2;
}

/* *** POPUP ACCOUNT *** */

.popup {
  display: none;
  position: fixed;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  z-index: 9;
}

.popup-account {
  min-width: 300px;
}

.popup-scroll {
  overflow: auto;
  max-height: 400px;
}

.account-user {
  padding: 20px 16px 20px 16px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  /* border-bottom: 1px solid #e8e8e8; */
}

.account-user:hover{
  background-color: #f8f8f8;
  cursor:pointer;
}

.account-user-photo {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 12px;
  margin-left: 2px;
}

.account-user-name {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.account-user-mail {
  color: #888;
  font-size: 12px;
}

.account-ops {
  padding: 16px;
}

/* *** CHIPS *** */

.chip {
  display: inline-flex;
  line-height: 1.2em;
  background-color: #3498db;
  color: #fff;
  font-size: 11px;
  border-radius: 4px;
  font-weight: 500;
  padding: 5px 8px;
  margin: 4px;
  border: 1px solid transparent;
}

.chip.red {
  background-color: rgba(231, 76, 60, 0.2);
  color: rgba(192, 57, 43, 1);
}

.chip.green {
  background-color: rgba(46, 204, 113, 0.2);
  color: rgba(39, 174, 96, 1);
}

.chip.yellow {
  background-color: rgba(241, 196, 15, 0.2);
  color: rgba(230, 126, 34, 1);
}

.chip.white {
  background-color: #fff;
  color: #333;
  border: 1px solid #e2e2e2;
}

/* *** Tooltip jquery *** */

div.ui-tooltip {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  padding: 0px;
  border: 0px;
  border-radius: 4px;
}

div.ui-tooltip div {
  padding: 8px;
  background-color: #f8f8f8;
  border-radius: 4px;
  color: #333;
  display: inline-block;
  width: auto;
  line-height: 1.4em;
  font-size: 14px;
}

.content-box {
  background-color: #fff;
  padding: 16px;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.content-box.content-box--sponsors {
  display: inline-block;
  margin: 40px auto;
  background-color: transparent;
  box-shadow: none;
  width: 100%;
}

/* .content-box.content-box--sponsors .card-sponsor {
    box-shadow: 0px 1px 1px 0 rgba(0, 0, 0, 0.25), 0px 1px 8px 0 rgba(0, 0, 0, 0.1);
} */

.inside-box {
  border-radius: 8px;
  border: 1px solid #dfdfdf;
  padding: 18px;
  color: #333;
}

.inside-box.md-s {
  padding: 8px 12px;
  font-size: 12px;
  margin: 10px 0;
}

.lnk {
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}

/* *** Modal *** */

.m-modal {
  display: none;
  z-index: 60;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.m-modal > .flex {
  width: 100%;
  height: 100vh;
  justify-content: center;
}

.modal-cont {
  background-color: #fff;
  width: 100%;
  max-width: 620px;
  border-radius: 5px;
  box-shadow: 0 1px 6px #333;
}

.modal-cont.md-s {
  max-width: 460px;
}

.modal-cont.md-m {
  max-width: 684px;
  width: 100%;
}

.modal-cont.md-l {
  max-width: 860px;
}

.modal-cont.md-xl {
  max-width: 1024px;
}

.modal-header {
  background-color: #fff;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #e2e2e2;
  padding-right: 12px;
}

.modal-header > i {
  width: 48px;
  min-width: 48px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  color: #777;
}

.modal-title {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  color: #555;
  text-align: left;
  padding-left: 30px;
}

.modal-body-cont {
  padding: 12px 30px;
  max-height: 85vh;
  overflow: auto;
}

.modal-footer {
  display: flex;
  flex-flow: row nowrap;
  border-top: 1px solid #e2e2e2;
  padding: 12px 25px;
  justify-content: flex-end;
  align-items: center;
}

.modal-text-title {
  font-size: 18px;
  color: #333;
  line-height: 1.3em;
  font-weight: 500;
  margin-bottom: 4px;
}

.modal-text {
  font-size: 16px;
  color: #333;
  line-height: 1.3em;
}

.modal-text-icon {
  font-size: 42px;
  color: #3498db;
}

.field {
  padding: 6px 0 12px 0;
}

.field-title {
  font-weight: 400;
  font-size: 14px;
  color: #777;
  line-height: 1.4em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  border: 1px solid #d2d2d2;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  padding: 8px;
  border-radius: 3px;
}

.field-input--v2 {
  border: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  height: 34px;
  border-radius: 3px;
  padding: 0 8px;
  color: #888888;
  font-size: 13px;
  font-weight: 500;
}

.alert-bar {
  display: none;
  top: 110px;
  padding: 12px;
  background-color: #3498db;
  color: #fff;
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 9;
}

.aside-menu {
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 9;
  display: inline-flex;
  flex-flow: column nowrap;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  padding: 6px;
}

.aside-menu > div {
  padding-bottom: 6px;
  position: relative;
}

.aside-menu > div:last-child {
  padding: 0;
}

i.aside-menu-op {
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #3498db;
  background-color: #f2f2f2;
  font-size: 15px;
  transition: 0.2s;
  border-radius: 3px;
}

.aside-menu-op:hover {
  background-color: #3498db;
  color: #fff;
}

.aside-menu-op.on {
  background-color: #3498db;
  color: #fff;
}

.aside-menu-op.green {
  color: #0abb87;
}

.aside-menu-op.green:hover {
  background-color: #0abb87;
  color: #fff;
}

.aside-menu-op.green.on {
  background-color: #0abb87;
  color: #fff;
}

.aside-menu-op.red {
  color: #e74c3c;
}

.aside-menu-op.red:hover {
  background-color: #e74c3c;
  color: #fff;
}

.aside-menu-op.red.on {
  background-color: #e74c3c;
  color: #fff;
}

.aside-menu-op.orange {
  color: #e67e22;
}

.aside-menu-op.orange:hover {
  background-color: #e67e22;
  color: #fff;
}

.aside-menu-op.orange.on {
  background-color: #e67e22;
  color: #fff;
}

.aside-menu-op.yellow {
  color: #f1c40f;
}

.aside-menu-op.yellow:hover {
  background-color: #f1c40f;
  color: #fff;
}

.aside-menu-op.yellow.on {
  background-color: #f1c40f;
  color: #fff;
}

.aside-menu-op.carnation {
  color: #f64e60;
}

.aside-menu-op.carnation:hover {
  background-color: #f64e60;
  color: #fff;
}

.aside-menu-op.carnation.on {
  background-color: #f64e60;
  color: #fff;
}

.aside-modal {
  display: none;
  width: 100%;
  max-width: 575px;
  position: fixed;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  top: 130px;
  right: 62px;
  height: calc(100vh - 150px);
  border: 1px solid #d2d2d2;
  z-index: 10;
}

.aside-modal-header {
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
}

.aside-modal-title {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

i.aside-modal-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #666;
  cursor: pointer;
}

i.aside-modal-icon:hover {
  color: #999;
}

i.aside-modal-close {
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #666;
  cursor: pointer;
}

i.aside-modal-close:hover {
  color: #999;
}

.aside-modal-body {
  padding: 12px;
  height: calc(100% - 61px);
}

/* MODAL FAVORITES*/

.favorite-icon[data-t="product"] {
  color: #fff;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(136, 136, 136, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.favorite-icon.bg-fav {
  color: #fff;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(136, 136, 136, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.favorite-icon[data-t="product"].product-page {
  color: var(--event-color);
  cursor: pointer;
  background: none;
  width: auto;
  height: auto;
  border-radius: none;
  display: block;
}

.favorite-icon {
  color: var(--event-color);
  cursor: pointer;
}

.modal-favorites .aside-modal-body {
  padding: 0;
  /* background-color: #f8f8f8; */
}

.modal-favorites .cont-favorites {
  height: 100%;
}

.modal-favorites .tabs-cont {
  overflow-y: auto;
  height: calc(100% - 62px);
}

/* Firefox */

.modal-favorites .tabs-cont {
  scrollbar-width: auto;
  scrollbar-color: #8f54a0 #ffffff;
}

/* Chrome, Edge, and Safari */

.modal-favorites .tabs-cont::-webkit-scrollbar {
  width: 10px;
}

.modal-favorites .tabs-cont::-webkit-scrollbar-track {
  background: #ffffff;
}

.modal-favorites .tabs-cont::-webkit-scrollbar-thumb {
  background-color: #4e54a7;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.modal-favorites .tabs {
  background-color: var(--event-color);
  padding: 4px 8px 0 8px;
}

.modal-favorites .tabs .tab-favorites {
  padding: 20px 12px;
  background-color: var(--event-color);
  margin-right: 0;
  text-align: center;
}

.modal-favorites .tabs .tab:hover {
  /* filter: brightness(0.85); */
  background-color: var(--event-color);
}

.modal-favorites .tabs .tab.on {
  /* filter: brightness(0.85); */
  background-color: var(--event-color);
  border-bottom: 0;
}

.modal-favorites .tab-favorites-cont {
  padding: 0 5px;
}

.modal-favorites .tabs .tab.on::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.modal-favorites .tabs .tab:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
}

.modal-favorites .tabs .tab-favorites span {
  color: #fff;
}

@media screen and (max-width: 998px) {
  .favorites-columns .column-third,
  .favorites-columns .column-quarter {
    width: 50%;
  }
  /* .modal-favorites .tabs-cont {
        overflow-y: scroll;
        height: 80vh;
    } */
}

@media screen and (max-width: 640px) {
  .modal-favorites .tabs {
    padding: 0;
  }
  .favorites-columns .column-third,
  .favorites-columns .column-quarter {
    width: 100%;
  }
  [data-t="sponsors"] .favorites-columns .column-third,
  .favorites-columns .column-quarter,
  [data-t="exhibitors"] .favorites-columns .column-third {
    width: 50%;
  }
  .favorites-card {
    max-width: 100%;
  }
  .modal-favorites .tabs-cont {
    overflow-y: auto;
    height: calc(100% - 85px);
  }
}

/* session fav*/

.favorites-columns .session-date {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 24px 16px 8px 16px;
  width: 100%;
  background-color: #fff;
  text-transform: capitalize;
}

.modal-favorites .session-fav-column {
  background-color: #fff;
  margin-bottom: 0;
  padding: 16px;
  /*cursor: pointer;*/
}

.modal-favorites .session-fav-column:not(:last-child) {
  border-bottom: 1px solid #e8e7e7;
}

.modal-favorites .session-fav-column .sess-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
}

.modal-favorites .session-fav-column .sess-title:hover {
  color: var(--event-color);
  color: #4e54a7;
}

.modal-favorites .session-fav-column i {
  color: #888;
}

.modal-favorites .session-fav-column .time {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  padding-left: 10px;
}

/* product fav*/

.modal-favorites .product-fav-column {
  background-color: #fff;
  margin-bottom: 0;
}

.modal-favorites .product-fav-column:not(:last-child) {
  border-bottom: 1px solid #e8e7e7;
}

.modal-favorites .product-fav-column .img-wrapper {
  width: 20%;
  padding: 16px;
}

.modal-favorites .product-fav-column .info-wrapper-fav {
  width: 80%;
  padding: 16px;
}

.modal-favorites .product-fav-column .info-wrapper-fav .prod-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.modal-favorites .product-fav-column .info-wrapper-fav .prod-title:hover {
  color: var(--event-color);
}

.modal-favorites .product-fav-column .info-wrapper-fav p {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin: 0;
}

.modal-chat .aside-modal-body {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: calc(100% - 75px);
}

/* sponsors fav*/

.sponsor-category {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  padding: 24px 16px 8px 16px;
  text-transform: capitalize;
  width: 100%;
}

/* END MODAL FAVORITES*/

.cont-chats {
  overflow: auto;
  height: 100%;
}

.aside-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;
  position: absolute;
  top: -10px;
  left: -10px;
  font-style: normal;
}

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

.message-box {
  display: flex;
  padding: 12px 12px 2px 2px;
}

.message-content {
  padding: 10px;
  background-color: rgba(10, 187, 135, 0.1);
  border-radius: 6px;
  border: 1px solid #e2e2e2;
  display: inline-flex;
}

.message-name {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.3em;
  padding-bottom: 2px;
}

.message-text {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.3em;
  padding-bottom: 2px;
  word-break: break-word;
}

.message-time {
  font-size: 11px;
  font-weight: 400;
  color: #3498db;
  line-height: 1.3em;
  padding: 6px 12px;
}

.message-img {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background-color: #f8f8f8;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: top center;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  margin-right: 12px;
}

.message-section-title {
  font-weight: 500;
  color: #555;
  font-size: 15px;
  line-height: 1.3em;
  margin: 12px 0 8px 0;
}

.message-box.me {
  flex-direction: row-reverse;
}

.message-box.me .message-content {
  background-color: rgba(93, 120, 255, 0.1);
}

.message-box.me .message-img {
  margin: 0 0 0 12px;
}

.message-box.me .message-info {
  text-align: right;
}

.cont-chat-messages {
  height: 100%;
  overflow: auto;
}

.message-box.me .ev-att-info a {
  cursor: default;
}

.message-box .ev-att-info a {
  cursor: pointer;
}

.sender-box {
  display: flex;
  padding: 10px 0 0 0;
  height: 50px;
  justify-content: space-between;
}

.modal-chat .sender-box {
  height: auto;
  flex-grow: 1;
}

.sender-input {
  width: calc(100% - 46px);
  line-height: 1.3em;
  padding: 8px;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  height: 40px;
}

.sender-button {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  background-color: #3498db;
  color: #fff;
  cursor: pointer;
}

.sender-button.sending {
  background-color: #e67e22;
}

.sender-chat .sender-input {
  min-height: 42px;
}

/*CARD ATT*/

.card-att {
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.25);
}

.card-att .actions {
  margin: -8px -8px 0 -8px;
}

.card-att .actions,
.card-att .interactions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  text-align: center;
}

.card-att .actions .favourite {
  cursor: pointer;
  padding: 0.2em;
}

.card-att .profile {
  display: flex;
  align-items: center;
  padding-bottom: 0.5em;
  margin-top: -15px;
}

.card-att .profile img {
  object-fit: cover;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.9;
}

.card-att .profile .main-info {
  padding: 0 1rem;
}

.card-att .profile .main-info .name {
  font-weight: 500;
}

.card-att .profile .main-info .position {
  font-weight: 500;
  font-size: 12px;
  color: #b5b5c3;
}

.card-att .profile .main-info .company {
  font-weight: 500;
  font-size: 12px;
}

.card-att .profile .main-info .button {
  margin-top: 20px;
  border-radius: 20px;
  height: 25px !important;
}

.card-att .profile .main-info .button span {
  color: #fff;
}

.card-att .desc {
  padding: 0.5rem;
  justify-content: flex-end;
  font-size: 12px;
}

.card-att .interactions {
  padding-top: 0;
  justify-content: flex-end;
}

.card-att .interactions .btn-2 {
  cursor: pointer;
  font-size: 12px;
  padding: 0.6rem;
  font-weight: bold;
  border: none !important;
  background-color: #eaf4fb;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.container-video {
  position: relative;
  padding-bottom: 58%;
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

/*padding-bottom: 56.25%; */

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

.body-section {
  padding: 30px;
}

.btn-resp-menu {
  display: none;
  padding: 10px 12px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.2);
  margin-left: 8px;
}

.btn-resp-menu > i {
  color: #fff;
  margin: 0;
  font-size: 18px;
}

.btn-resp-menu:hover {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.ev-banner {
  height: 145px;
  background-size: cover;
  background-position: center;
  /*margin-bottom:16px;*/
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 841px) {
  .ev-banner.ev-banner--mobile {
    display: none;
  }
}

.ev-banner.ev-banner--desktop {
  display: none;
}

@media (min-width: 841px) {
  .ev-banner.ev-banner--desktop {
    display: block;
  }
}

.ev-banner--new {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  background: white;
}

.ev-banner--new img {
  width: 100%;
}

.ev-banner--new.ev-banner--desktop {
  display: none;
}

@media (min-width: 841px) {
  .ev-banner--new.ev-banner--desktop {
    display: block;
  }
  .ev-banner--new.ev-banner--mobile {
    display: none;
  }
}

.html-pages-content br {
  line-height: 0;
}

.no-br br {
  line-height: 0;
}

@media (max-width: 980px) {
  .event-title {
    display: none;
  }
}

@media (max-width: 840px) {
  .btn-resp-menu {
    display: inline-flex;
  }
  .btn-my-account > span {
    display: none;
  }
  .btn-my-account > i {
    margin: 0;
    font-size: 18px;
  }
  .btn-my-account {
    padding: 10px 12px;
  }
  div.main-menu {
    display: none;
  }
  .body {
    padding-top: 56px;
  }
  .aside-modal {
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 11;
  }
  .topbar-cont {
    padding: 4px 12px;
    height: 56px;
  }
}

.ic-mmteam {
  width: 18px;
  line-height: 18px;
  height: 18px;
  border: 1px solid #3498db;
  border-radius: 50%;
  color: #3498db;
  font-style: normal;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  box-sizing: content-box;
  margin: 0 3px;
}

/* Cristian unificar estilo seleccionable en todos los navs*/

select {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+)
    no-repeat 98% 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Footer */

.mm-footer {
  width: 100%;
  background-color: #404040;
  border-top: 1px solid #404040;
}

.mm-footer .body-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

@media screen and (min-width: 980px) {
  .mm-footer .body-cont {
    flex-direction: row;
  }
}

.mm-footer__brand {
  margin-bottom: 20px;
}

.mm-footer__brand a img {
  margin-top: 8px;
}

@media screen and (min-width: 980px) {
  .mm-footer__brand {
    margin-bottom: 0;
    margin-right: 40px;
  }
}

.mm-footer__brand img {
  max-height: 15px;
  /* filter: brightness(.6); */
  /*opacity: 0.6;*/
}

.mm-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  text-align: center;
}

.mm-footer__nav li {
  position: relative;
  display: inline-block;
}

.mm-footer__nav li:not(:last-child) {
  padding-right: 10px;
  margin-right: 6px;
}

.mm-footer__nav li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 2px;
  left: 100%;
  width: 1px;
  height: calc(100% - 4px);
  background: grey;
}

.mm-footer__nav a {
  color: #d3d3d3;
  text-decoration: none;
  opacity: 0.6;
  transition: all 100ms ease-out;
}

.mm-footer__nav a:hover,
.mm-footer__nav a:focus {
  opacity: 0.8;
  text-decoration: underline;
}

.hr-utc-event {
  font-size: 10px;
}

.utc-server-modal {
  font-weight: 400;
  color: #333;
}

.utc-tt {
  font-style: initial;
}

.utc-tt.on {
  cursor: pointer;
}

/* BOX TYPE ONE STAND */

.mm-left-cont {
  width: 350px;
  text-align: center;
}

.mm-right-cont {
  flex: 1;
  max-width: 700px;
  width: 350px;
  min-width: 0;
  padding-left: 2em;
}

.mm-div-cont {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.mm-chips-cont {
  width: 100%;
  text-align: right;
}

.mm-title-stand {
  font-size: 18px;
  font-weight: 500;
  padding: 20px 0 16px 0;
  color: #333;
}

.mm-desc-stand {
  height: auto;
}

.mm-info-detail {
  color: #888;
  margin-top: 20px;
  height: 34px;
  padding: 0 10px;
}

.mm-info-detail div {
  margin-right: 20px;
}

.mm-info-detail span {
  margin-left: 12px;
  font-weight: 400;
  font-size: 13px;
}

.mm-box-img {
  width: 100%;
  display: block;
  margin: auto;
  max-height: 135px;
}

.mm-box-img > img {
  display: block;
  margin: auto;
  max-height: 135px;
  max-width: 100%;
  border-radius: 4px;
}

.mm-box-letter {
  border-radius: 4px;
  margin: auto;
  width: 220px;
  height: 220px;
}

.mm-box-firts-letter {
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  background-color: #f8f8f8;
  color: #666;
  border: 1px solid #e2e2e2;
}

.mm-btn-grey {
  background-color: #e4e4ee !important;
  border-color: #e4e4ee !important;
}

.mm-btn-grey > i,
.mm-btn-grey > span {
  color: grey !important;
}

/*Lateral filters*/

/* .mm-req-page { grid-gap: 2em; grid-template-columns: 291px auto; } */

.mm-req-title {
  margin-bottom: 15px;
  border-bottom: 0.05em solid #dfdfdf;
}

.mm-title-h4 {
  margin-top: 0;
  margin-bottom: 11px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.mm-searcher {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  height: 34px;
  border-radius: 3px;
  padding: 0 8px;
}

.mm-searcher > input {
  outline: none;
  color: #555;
  font-size: 13px;
  border: 0;
  width: 100%;
}

.mm-searcher > i {
  cursor: pointer;
  margin-left: 6px;
  color: #7f7f7f;
}

.mm-req-box {
  margin-bottom: 20px;
}

.mm-title {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}

.mm-btn-filter {
  padding: 8px 16px !important;
  border: none;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 1em !important;
  justify-content: left;
  line-height: normal;
}

.mm-btn-filter.on {
  background-color: #f3f3f3;
}

.mm-btn-filter > span,
.mm-btn-filter > i {
  font-size: 14px;
  color: #7f7f7f !important;
}

/* Video gallery */

.mm-req-page {
  display: flex;
  flex-direction: column;
}

.mm-req-page .filt-box {
  margin-bottom: 2em;
}

@media screen and (min-width: 1024px) {
  .mm-req-page {
    flex-direction: row;
  }
  .mm-req-page .cont-videos {
    flex: 1;
  }
  .mm-req-page .filt-box {
    width: 291px;
    min-width: 291px;
    margin-right: 2em;
  }
}

.cont-chats .session-image {
  object-fit: cover;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: 0.9;
}

.cont-chats .icon-letter {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  background-color: #f8f8f8;
  color: #666;
  border: 1px solid #e2e2e2;
}

.cont-chats .session-image {
  background-position: center;
  background-size: cover;
}

.message-box .session-image {
  object-fit: cover;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  opacity: 0.9;
  margin-right: 12px;
}

.message-box .icon-letter {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  background-color: #f8f8f8;
  color: #666;
  border: 1px solid #e2e2e2;
}

.message-box .session-image {
  background-position: center;
  background-size: cover;
}

.aside-status-span {
  font-size: 12px;
  letter-spacing: 0;
  margin-left: 37px;
}

.aside-status-span.connected {
  color: #30a24c;
}

.aside-status-span.disconnected {
  color: #888888;
}

.videos-box {
  width: 100%;
}

.list-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 16px;
  background-color: #fff;
  border: 0;
}
.list-item.link {
  cursor: pointer;
}
.list-item.link:hover {
  background-color: #f8f8f8;
}
.list-icon {
  font-size: 16px;
  width: 32px;
  text-align: center;
  color: #888;
  margin-right: 10px;
}
.list-text {
  color: #333;
  font-size: 14px;
}

.generate-ics-btn {
  cursor: pointer;
  white-space: nowrap;
}
.generate-ics-btn i {
  border-radius: 16px;
  border: 1px solid grey;
  width: 24px;
  height: 24px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.attendees-pagination {
  text-align: center;
  padding: 1px 16px;
  margin-top: 30px;
}

.pagination-prev {
  display: inline-block;
  border: 1px solid #e2e5ec;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-number {
  display: inline-block;
  border: 1px solid #e2e5ec;
  border-radius: 0;
}

.pagination-next {
  display: inline-block;
  border: 1px solid #e2e5ec;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.bar-color {
  width: 5px;
  background-color: #1abc9c;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.mm-card-session.left_border--event-color, .mm-card-session.left_border--opacity, .day-agenda.left_border--event-color, .day-agenda.left_border--opacity{
  position: relative;
}

.mm-card-session.left_border--event-color::before, .mm-card-session.left_border--opacity::before, .day-agenda.left_border--event-color::before, .day-agenda.left_border--opacity::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height:100%;
  background-color: var(--event-color);
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.mm-card-session.left_border--opacity::before, .day-agenda.left_border--opacity::before{
  opacity: 60%;
}

.confirm-dialog {
  max-width: 35em;
  padding: 2rem;
  width: 90vw;
  border: none;
  border-radius: 4px;
}

.confirm-dialog h3 {
  margin-top: 0;
}

.confirm-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.3);
}

.confirm-dialog-question {
  font-size: 1em;
  text-align: left;
}

.confirm-dialog-question {
  font-size: 1em;
  text-align: left;
}

.confirm-dialog-question p{
  font-weight: 400;
}
.confirm-dialog-question span{
  font-weight: 400;
}

.confirm-dialog-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem -1rem -1rem;
}
  
.confirm-dialog-button-group > * {
  margin: 1rem;
}

.confirm-dialog-button {
  font-size: 14px;
  padding: 8px 38px;
  border: 1px solid var(--event-color);
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}

.confirm-dialog-button:hover {
  box-shadow: 0 2px 12px 0 rgb(0 0 0 / 12%);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.confirm-dialog-button--false{
  color: var(--event-color);
  background-color: #FFF;
}
.confirm-dialog-button--true{
  background-color: var(--event-color);
  color: #FFF;
}