@import url("design.css");

/* General */
    body { background: var(--background-color); font-family: 'Roboto', sans-serif; font-weight: 400; position: relative; overflow-x: hidden; font-size: 14px; }
    ul { list-style: none; }
    ol { padding-left: 0.5em; display: flex; flex-direction: column; gap: 10px; }
        ol li { list-style-type: decimal; list-style-position: outside; margin-left: 1em; }
    img { max-width: 100%; }
    a { text-decoration: none; }
    .container { width: 920px; max-width: calc(100% - 40px); margin: 0 auto; }
    .container { width: 1400px; }
    .container_wrapper { min-height: calc(100vh - 273px); }

    .bold { font-weight: 600; }

    .hidden { display: none !important; }

    .ta-c { text-align: center !important; }
    .ta-r { text-align: right !important; }
    .ta-l { text-align: left !important; }
    .ta-j { text-align: justify !important; }

    .fl-r { float: right !important; }

    .ml-auto{ margin-left: auto !important; }
    .ml-10{ margin-left: 10px !important; }

    .m-auto { margin:auto; }

    .color-white { color: #fff; }
    .color-primary { color: var(--primary-color) !important; }
    .color-red { color: var(--error-color) !important; }

    .w100p { width: 100%; }

    .min-w100{ min-width: 100px; }

    .w100{ width: 100px; }

    .mobile { display: none !important; }
    .mobile_menu { display: none; }

	.tagBox { display:inline-block;padding:3px 8px;border-radius:5px;font-size:12px;height:16px;white-space: nowrap;background-color:#999;color:#fff; }

	#websocket { position:fixed;display:inline-block;padding:3px 6px;border-radius:3px;font-size:10px;height:12px;white-space: nowrap;background-color:#f7a000;color:#fff;bottom:10px;right:10px;opacity:0.5; }
	#websocket.disconnected { background-color:#e9573f; }

/* Texts */
    .title { font-size: 28px; line-height: 36px; }
    .title.extra_large { font-size: 36px; line-height: 48px; display: flex; align-items: center; flex-wrap: wrap; row-gap: 10px; }
    .title.large { font-size: 32px; line-height: 40px; }
    .title.small { font-size: 16px; line-height: 20px; }

	.title.extra_large a.participantTitle { color:#ffffff;text-decoration:none;width:60%; }
	.title.extra_large a.participantTitle { font-size:26px;line-height: 28px; }
	.title.extra_large a.participantTitle .company { font-size:14px;line-height: 16px;margin-top:4px; }
    .title.extra_large .button{ height: 24px; margin-left: auto; }
    .title.extra_large .avatar{ width: 48px; height: 48px; margin-right: 10px; top: 0px;float:left; line-height: 48px; }
    .title.extra_large .avatar img{ position: relative; top: -2px; }

    .title_row { background: var(--secondary-color); padding: 30px 0; }

    .title .avatar { display: inline-block; top: -4px; }

    .text { line-height: 20px; }
    .text.gray { color:#ccc; }
    .text.large { font-size: 16px; line-height: 24px; }
    .text.small { font-size: 12px; line-height: 16px; }
    .text p { margin-bottom:10px; }
    .text ul { margin-left:20px;margin-bottom:10px; }
    .text ul li:before { content:'•'; color:var(--primary-color); margin-right:5px; }

    .textSection p { margin-bottom:10px; text-align:justify; }
    .textSection ul { margin-left:20px;margin-bottom:10px; }
    .textSection ul li:before { content:'•'; color:var(--primary-color); margin-right:5px; }
    .textSection a { color:var(--primary-color);text-decoration:none; }
    .textSection a:hover { text-decoration:underline; }
    .textSection h2 { font-size:16px;margin-bottom:10px; }
    .textSection h3 { margin-bottom:5px; }
	.textSection table { width: 100%; border-collapse: collapse;margin-bottom:1px; }
    .textSection table td, .textSection table th{ padding: 10px; vertical-align: middle; border: 1px solid #000; }
    .textSection table th{ background-color: var(--button-primary-color); color: var(--button-primary-text-color); font-weight: 600; }

    .supporters h3 { font-size:16px;text-align:center; }
    .supporters ul { list-style:none;text-align:center; }
    .supporters ul li { display:inline-block;max-width:150px;max-height:150px;margin:25px; }
    .supporters ul li .svgLogo { min-width:150px; }

    .quote { font-size: 24px; line-height: 32px; padding: 16px 32px; border-left: 4px solid var(--button-primary-color); }

    .link { color: var(--button-primary-color); text-decoration: none; }
    .link:not(.no_hover):hover { color: var(--button-secondary-color); text-decoration: underline; cursor:pointer; }
    .pointer:hover{ cursor: pointer; }

/* Buttons */
    .button { border-radius: 34px; background-color: var(--button-primary-color); color: var(--button-primary-text-color); font-weight: 600; display: inline-block; text-align: center; outline: none; border: none; text-decoration: none;white-space: nowrap; }
    .button:hover { cursor: pointer; }

    .button.secondary_color { background-color: var(--button-secondary-color); color: var(--button-secondary-text-color);border: 1px solid var(--button-secondary-text-color); }
    .button.secondary_color_filled { background-color: var(--button-secondary-color); color: var(--button-secondary-text-color);border: 1px solid var(--button-secondary-text-color); } /* tbd */
    .button.primary_transparent { background-color: transparent; color: var(--button-primary-color); border: 1px solid var(--button-primary-color); }
    .button.white { background-color: #fff; color: var(--button-primary-color); }
    .button.red { background-color: var(--error-color);color: #fff;  }
    .button.green { background-color: var(--success-color);color: #fff;  }

	.button.rect { border-radius:5px; }

	.button.small { padding: 7px 20px; }
    .button.medium { padding: 10px 20px; }
    .button.big { padding: 10px 20px; min-width: 100px; }

    a.button { max-width: calc(100% - 40px); }

    .button.success { color: var(--button-primary-color); background-color: var(--button-success-text_color); font-weight: 400; }

    .title .button { font-size: 16px; line-height: 1.5; }

    .switch_buttons { display: flex; }
    .switch_buttons button { flex: 1; background: #F5F5F5; text-align: center; color: var(--secondary-color); padding: 8px; outline: none; border: none; font-size: 14px; font-weight: 600; }
    .switch_buttons button.active { color: #fff; background-color: var(--button-primary-color); }
    .switch_buttons button:first-child { border-top-left-radius: 8px; border-bottom-left-radius: 8px; }
    .switch_buttons button:last-child { border-top-right-radius: 8px; border-bottom-right-radius: 8px; }
    .switch_buttons button:hover { cursor: pointer; }

    .add_button { width: 32px; height: 32px; background: url('../img/plus_button.svg'); }

/* Icons */

	.svgIcon { stroke: var(--primary-color); fill: var(--primary-color);width:24px;height:24px; }
		.svgIcon.px48 { width:48px;height:48px; }
		.svgIcon.px32 { width:32px;height:32px; }
		.svgIcon.px20 { width:20px;height:20px; }
		.svgIcon.red { stroke: var(--error-color); fill: var(--error-color); }
		.svgIcon.white { stroke: #ffffff; fill: #ffffff; }

/* Header */
    .header_menu { background: var(--primary-color); display: flex; align-items: center; height: 64px; gap: 30px; padding: 0 10px; }
    .header_menu.reversed { background: #fff !important; }
    .header_menu .logo { height: 60px; }

    .header_menu .menu { display: flex; color: #fff; gap: 15px; font-weight: 600; align-items: center; text-align: center; height: 100%; }
    .header_menu .menu li a { text-decoration: none; padding: 5px 0; color: var(--button-primary-text-color); }
    .header_menu .mobile_menu .menu li a { color: #123654; }
    .header_menu .menu li a:hover { cursor: pointer; }
    .header_menu .menu li a.active { border-bottom: 2px solid var(--button-primary-text-color); }

    .header_menu.reversed .menu li a { color:var(--primary-color) !important; }
	.header_menu.reversed .menu > li > a.active { border-bottom: 2px solid var(--primary-color) !important; }

    .header_menu .menu > ul > li{ position: relative; }
    .header_menu .menu .sub_menu{ display: none; position: absolute; top: 45px; text-align: left; background: #fff; border: 2px solid var(--primary-color);z-index:100 }
    .header_menu .sub_menu:hover{ display: block; }
    .header_menu .menu li:hover .sub_menu{ display: block; }
    .header_menu .menu li .sub_menu li:not(:last-child){ border-bottom: 1px solid var(--primary-color); }
    .header_menu .menu li .sub_menu li a{ padding: 10px; display: block; }
    .header_menu .menu li .sub_menu li a:hover{ opacity: 0.6; }

    .header_menu .right_block { margin-left: auto; display: flex; align-items: center; gap: 20px; }
    .header_menu .messangerNew { display: inline-block;position:relative;width:32px;height:32px; }
        .header_menu .messangerNew span { position: absolute;background: var(--error-color);border-radius: 30px;color: #fff;padding: 2px;font-size: 10px;top: -2px;right: -3px;border: 2px solid var(--primary-color);}
        .header_menu .messangerNew .svgIcon  { fill:#ffffff;stroke:#ffffff;}
        .header_menu.reversed .messangerNew .svgIcon  { fill:var(--primary-color);stroke:var(--primary-color); }

    .header_menu .profile { padding: 5px 30px 5px 15px; position: relative; }
    .header_menu .profile:hover { cursor: pointer; }
    .header_menu .profile::after { content: ''; width: 10px; height: 6px; background: url('../img/arrow_down.svg'); background-size: 10px 6px; position: absolute; right: 10px; top: 18px; }
    .header_menu .profile.active { background: #ffffff29; border-radius: 4px; }
    .header_menu .profile.active::after { transform: rotate(180deg); }
    .header_menu .profile .name { display: flex; gap: 10px; align-items: center; color: var(--button-primary-text-color); }
    .header_menu.reversed .profile .name { color: #000000; }
    .header_menu .profile .avatar { border-radius: 4px; width: 32px; height: 32px;border:1px solid var(--button-primary-text-color); }
    .header_menu .profile .avatar img { border-radius: 4px; width: 100%; height: 100%; }

    .header_menu .profile_menu { display: none; position: absolute; background-color: #fff; border-radius: 4px; padding: 5px; width: 100%; top: 46px; right: 0px;box-sizing:border-box;z-index:100; }
    .header_menu .mobile_menu .profile_menu { padding: 0; }
    .header_menu .profile.active .profile_menu { display: block; }
    .header_menu .profile_menu ul { display: flex; flex-direction: column; }
    .header_menu .profile_menu ul li a { display: flex; align-items: center; gap: 10px; color: #123654; padding: 5px 10px 5px 5px;border-radius: 5px;font-weight:bold;height:36px;line-height:36px; }
    .header_menu .profile_menu ul li a:hover { background-color:#eee; }
    .header_menu .profile_menu ul li a.active { color: var(--primary-color); }
    .header_menu .profile_menu ul li a .svgIcon { width:32px;height:32px; }
    .header_menu .profile_menu ul li a .svgIcon.small { width:28px;height:28px;margin:2px; }
    .header_menu .newMessagesCount { background: var(--error-color);display:inline-block;height:20px;width:20px;line-height:20px;border-radius:10px;color:#fff;font-size:11px;text-align:center;margin-left: auto; }

/* Top */
    .top_block_with_bg { background-image: url('../img/top_bg_image.svg'); background-color: var(--secondary-color); }
    .top_block_with_bg .container { padding: 50px 0; color: #fff !important; }

/* Agenda */
    .horizontal_menu { display: flex; justify-content: space-between; }
    .horizontal_menu li { padding: 10px; border: 1px solid transparent; background: #F5F5F5; flex: 1; }
    .horizontal_menu.settings_menu li { padding: 0; }
    .horizontal_menu li:hover { border-color: #000; cursor: pointer; }
    .horizontal_menu li.active { border-color: var(--primary-color); background: none; }
    .horizontal_menu li:first-child { border-top-left-radius: 8px; border-bottom-left-radius: 8px; }
    .horizontal_menu li:last-child { border-top-right-radius: 8px; border-bottom-right-radius: 8px; }
    .horizontal_menu li a { font-size:14px; color:#000;font-weight:bold;display:block;padding: 10px; }
    .horizontal_menu li .date { font-size: 12px; }
    .horizontal_menu li .name { word-wrap: anywhere; }
    .horizontal_menu li.active .name { color: var(--primary-color); }
    .horizontal_menu li.active a { color: var(--primary-color); }
    .horizontal_menu li.all_days{ width: 100px; flex: unset; text-align: center; display: flex; justify-content: center; align-items: center; }

    .agenda_rooms .button:not(.active) { background-color: transparent; color: var(--button-primary-color); border: 1px solid var(--button-primary-color); }

    .button_list { display: flex; gap: 5px; flex-wrap: wrap; }

    .agenda_list { display: flex; flex-direction: column; gap: 15px; }
    .agenda_list .finished_agenda:not(.active){ opacity: 0.7; }
    .agenda_item { background-color: #F5F5F5; border-radius: 12px; padding: 16px; position: relative; padding-right: 42px; }
    .divider { background: #D3D1D1; height: 1px; width: 100%; margin: 15px 0; }

    .agenda_item.has-description:hover { cursor: pointer; }
    .agenda_item .title_block { position: relative; }
    .agenda_item .arrow { position: absolute; right: -26px; top: 50%; transform: translate(0, -50%); width: 16px; height: 32px; background: url('../img/arrow_right.svg'); background-size: 16px 32px; transition: all 0.5s; }
    .agenda_item.active .arrow { transform: rotate(90deg) translate(-50%,-50%); right: -6px; }

    .open_agenda_list .text.small{ font-size: 11px; line-height: 12px; }
    .open_agenda_list .title.small{ font-size: 14px; line-height: 18px; }
    .open_agenda_list .agenda_item .arrow{ width: 10px; height: 20px; background-size: 10px 20px; }
    .open_agenda_list .agenda_item.active .arrow{ right: -12px; }
    .open_agenda_list .description{ font-size: 12px; }

    .participants { display: flex; flex-direction: column; gap: 5px; }
    .participant { display: flex; gap: 20px; align-items: center; }
    .participant .right_block{ display: flex; justify-content: space-between; align-items: center; width: 100%; flex-wrap: wrap; row-gap: 10px; }
    .participant img { border-radius: 4px; }
    .participant .avatar { width: 64px;height: 64px;min-width: 64px; }
    .participant .avatar span { font-size: 16px; font-weight: 600; }
    .open_participant .participant .avatar { width: 200px; height: 200px; min-width: 200px; background: var(--primary-color); overflow: hidden; }
    .open_participant .participant .avatar.transparent { width: 262px; height: 262px; min-width: 202px; background: transparent; overflow: hidden;margin-right:20px; }
    /*.open_participant .participant .avatar.transparent img { border: 1px solid #bdbdbd; border-radius: 10px; }*/
    .open_participant .participant .avatar span { font-size: 48px; }
    .open_participant .participant .name { font-size: 42px; }

	a.participant:hover { background: #f5f5f5; border-radius: 10px; }

    .participants.with_occupation { gap: 15px; }
    .participants.with_occupation .participant img { width: 64px; height: 64px; }
    .participants.open_participant .participant img { width: auto; height: auto; }

    .participants.big_image .participant img { max-width: 260px; max-height: 260px; border-radius: 0px; }
    .participants.medium_image .participant img { width: 80px; height: 80px; border-radius: 10px; }
    .open_speaker .participant { align-items: flex-start; }
    .open_speaker .participant .name { font-size: 24px; line-height: 32px; }

    .open_speaker .avatar { width: 200px; height: 200px; border-radius: 16px; }
    .open_speaker .avatar img { width: 200px; height: 200px; }
    .open_speaker .avatar span { font-size:36px; }

    .open_agenda_item .description ul{ margin-left: 0; }
    .open_agenda_item .description ul li::before{ display: none; }

    

/* Post */
    .post_list { display: flex; flex-direction: column; gap: 20px; }
    .post { display: flex; gap: 10px; }
    .avatar { width: 32px; height: 32px; background: var(--primary-color); border-radius: 10px; text-align: center; display: flex; align-items: center; justify-content: center; font-size: 14px; position: relative; }
    .avatar span { color: #fff; }
    .avatar.transparent span.empty { background: var(--primary-color);  width: 128px;  height: 128px;  line-height: 128px; }
    .avatar .status { position:absolute;width:8px;height:8px;border-radius:4px;top:6px;left:6px; }
    .avatar .status.green { background-color: var(--success-color); }
    .avatar .status.red { background-color: var(--error-color); }
    .post .post_data { width: calc(100% - 40px); }
    .post .post_data .author { margin-bottom: 5px; }
    .post .post_data .author .date { color: #123654; opacity: 0.5; margin-left: 5px; }

/* Text sections */
    .rounded_img { border-radius: 8px; }
    .gray_block { background: #F5F5F5; border-radius: 12px; padding: 8px; }
    .white_block { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0px 0px 16px #00000042;}

/* Speakers */
	a.participant { color: var(--button-primary-color); }
	.participants  a.participant { color: #000; }
	.participant_tags { margin-left: auto; padding:5px 10px;max-width:30%;text-align:right; }
	.participant_tags .tagBox { margin: 2px 0; }

    .socials { display: flex; gap: 5px; }
    .socials a { display: inline-block; text-align:center;width: 32px; height: 32px; background-color: var(--primary-color); background-position: center; border-radius: 16px; background-repeat: no-repeat; }
    .socials a.white { background-color: #fff; }
    .socials a svg { display: inline-block; margin-top:6px;width: 20px; height: 20px; stroke:#fff; fill:none; }
    .socials a.white svg { stroke: var(--primary-color); }

    .socials_with_links { display: flex; gap: 10px; flex-direction: column; }
    .socials_with_links a { display: flex; height: 32px; align-items: center; }
    .socials_with_links a::before { content: ''; display: inline-block; width: 32px; height: 32px; background-color: var(--primary-color); background-position: center; border-radius: 16px; background-repeat: no-repeat; margin-right: 5px; }

	.detailedSearch { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; }

	.dropToggle { cursor:pointer;position:relative;font-size:12px;padding:10px 30px 10px 10px !important; }
    .dropToggle .svgIcon { width: 10px; height: 6px; position: absolute; right: 10px; top: 15px;fill:var(--primary-color); }
    .dropToggle.active .svgIcon { transform: rotate(180deg); }

/* Forms */
    .form-group { position: relative; }
    .form-group label { font-size: 12px; }
    .form-group label .star { margin-right:5px;color:var(--error-color); }
    .form-group input,
    .form-group select,
    .form-group textarea { background: #F5F5F5; border-radius: 8px; width: 100%; border: 1px solid #ccc; outline: none; padding: 10px; color: #000000;  box-sizing: border-box; }
    .form-group textarea { min-width: 100%;min-height:120px;resize: vertical; }
    .form-group input.field-error { border:1px solid var(--error-color); }
    .form-group input:read-only, .form-group textarea:read-only { color:#aaa; }
    .form-group .remove { color: #FC0D1C70; background: none; padding: 0; text-align: left; }
    .form-group.search_input input { padding-left: 30px; }
    .form-group.question_input input { padding-left: 35px; }

    .form-group .input_block { position: relative; }
    .form-group .input_block input { padding-right: 30px; }
    .form-group .input_block .svgIcon { position: absolute; right: 8px; top: 6px;cursor:pointer; }

    .form-group.search_input::before { content: ''; background: url('../img/search.svg'); background-size: 16px; width: 16px; height: 16px; display: inline-block; position: absolute; left: 8px; top: 10px; }
    .form-group.question_input::before { content: ''; background: url('../img/question.svg'); background-size: 18px 19px; width: 18px; height: 19px; display: inline-block; position: absolute; left: 10px; top: 10px; }

	#profile_picture ~ label, #expo_picture ~ label, #post_picture ~ label, #post_edit_picture ~ label { position:relative; }
	#profile_picture ~ label span, #expo_picture ~ label span, #post_picture ~ label span, #post_edit_picture ~ label span {  position: absolute; right: -5px; top: -5px; width: 20px; height: 20px; line-height: 20px; border-radius: 10px; background-color: var(--error-color); }

	::placeholder { color: #aaa;font-size:11px; }
	::-ms-input-placeholder { color: #aaa;font-size:11px; }

    .form-group.image_input { display: flex; gap: 20px; }
    .form-group.image_input .avatar { width: 128px; height: 128px; }
    .form-group.image_input .avatar img { width: 128px; height: 128px; border-radius: 10px; object-fit: cover; }
    .form-group.image_input .options { display: flex; flex-direction: column; justify-content: space-between; padding: 10px 0; }
    .form-group.image_input .options .info_text{ font-size: 11px; color: #808080; }

		.expo_data .form-group.image_input .avatar{ background-color: var(--primary-color); overflow: hidden; }
		.expo_data .form-group.image_input .avatar img{ width: auto; height: auto; border-radius: 0px; max-width: 128px; max-height: 128px; }
		.expo_data .form-group.image_input .avatar.transparent{ background: transparent; overflow: hidden; }
		.expo_data .form-group.image_input .avatar.transparent img{ border: 1px solid #bdbdbd; width: auto; height: auto; border-radius: 0px; max-width: 126px; max-height: 126px; border-radius: 10px; }

	.toogle_label label { font-weight:bold;display:block; }
	.toogle_label span { font-size:11px;color:#999; }

/* Checkbox and radio */
	.custom-control { position: relative;display: -webkit-inline-box;display: -webkit-inline-flex;display: -ms-inline-flexbox;display: inline-flex;min-height: 1.5rem;padding-left: 1.5rem;margin-right:0.5rem; cursor: pointer; }
	.custom-control input { position: absolute;z-index: -1;opacity: 0; }
	.custom-control.radio, .custom-control.checkbox { min-height: 20px; line-height: 20px; padding-left: 30px; }
	.custom-control .control { position: absolute; top: 0; left: 0; width: 20px; height: 20px; z-index:80; }

	.custom-control.checkbox .control { background: #fff; border: 1px solid rgba(0,0,0,.15); border-radius: 3px;box-sizing:border-box;-webkit-transform-style: preserve-3d; }
	.custom-control.checkbox .control:after{ content: ""; position: absolute; display: none; left: 5px; top: 0; width: 5px; height: 11px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg);-ms-transform: rotate(45deg); transform: rotate(45deg);  }
	.custom-control.checkbox input:checked ~ .control{ background: var(--secondary-color); border: 1px solid var(--secondary-color); }
	.custom-control.checkbox input:checked ~ .control:after{ display: block; }

	.custom-control.radio .control{ background: #fff; border: 1px solid rgba(0,0,0,.15); border-radius: 10px;box-sizing:border-box; }
	.custom-control.radio .control:after{ content: ""; position: absolute; display: none;left: 5px; top: 5px; width: 8px; height: 8px; background: #fff; border-radius: 4px; }
	.custom-control.radio input:checked ~ .control{ background: var(--secondary-color); border: 1px solid var(--secondary-color); }
	.custom-control.radio input:checked ~ .control:after{ display: block; }

/* Toggle button */
	.togglebutton { vertical-align: middle; margin-bottom: 20px;display:inline-block; }
	.togglebutton.small { margin-bottom: 0; }
	.togglebutton, .togglebutton label, .togglebutton input, .togglebutton .toggle {-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
	.togglebutton label { cursor: pointer; color: rgba(0, 0, 0, 0.26); }

	.togglebutton label input[type=checkbox] { opacity: 0; width: 0; height: 0; position: absolute; }
	.togglebutton label .toggle { text-align: left; margin-left: 0px; }
	.togglebutton label .toggle, .togglebutton label input[type=checkbox][disabled] + .toggle { content: ""; display: inline-block; width: 66px; height: 30px; background-color: rgba(80, 80, 80, 0.7); border-radius: 15px; margin-right: 0; transition: background 0.3s ease; vertical-align: middle; }
	.togglebutton.small label .toggle, .togglebutton.small label input[type=checkbox][disabled] + .toggle {width: 38px; height: 20px; border-radius: 10px; }
	.togglebutton label .toggle:after { content: ""; display: inline-block; width: 24px; height: 24px; line-height: 26px; background-color: #FFFFFF; border-radius: 12px; position: relative; left: 3px; top: 3px; transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease; text-align: center; }
	.togglebutton.small label .toggle:after { width: 16px; height: 16px; line-height: 18px; border-radius: 8px;left: 2px; top: 2px; }

	.togglebutton label input[type=checkbox][disabled] + .toggle:after, .togglebutton label input[type=checkbox][disabled]:checked + .toggle:after { background-color: #BDBDBD; }
	.togglebutton label input[type=checkbox] + .toggle:active:after, .togglebutton label input[type=checkbox][disabled] + .toggle:active:after { box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1); }
	.togglebutton label input[type=checkbox]:checked + .toggle:after { left: 39px; }
	.togglebutton.small label input[type=checkbox]:checked + .toggle:after { left: 20px; }
	.togglebutton label input[type=checkbox]:checked + .toggle { background-color: var(--primary-color); }
	.togglebutton label input[type=checkbox]:checked + .toggle:active:after { box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(156, 39, 176, 0.1); }

	.togglelabel.small { line-height: 18px; margin-left:10px; position: relative; top: 1px; }

/* Poll */
    .poll_block { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
    .poll_block .inactive { opacity: 0.2; }
    .poll_block .title { font-size: 16px; line-height: 20px; }
    .poll_block .answers { display: flex; flex-direction: column; gap: 16px; }
    .poll_block .answers .answer { font-weight: 600; border-radius: 66px; background-color: #fff; color: var(--button-primary-color); padding: 16px 20px; position: relative; }
    .poll_block .answers .answer:hover { cursor: pointer; }


    .poll_block .answers.answered .content { z-index: 90; position: relative; color: #fff; }
    .poll_block .answers.answered .percents { float: right; z-index: 90; position: relative; }
    .poll_block .answers.answered .fill { content: ''; display: inline-block; height: 100%; background: var(--primary-color); position: absolute; top: 0px; left: 0px; border-top-left-radius: 66px; border-bottom-left-radius: 66px; }

    .poll_block .answers.answered .fill-0 .fill { width: 0%; }
    .poll_block .answers.answered .fill-1 .fill { width: 1%; }
    .poll_block .answers.answered .fill-2 .fill { width: 2%; }
    .poll_block .answers.answered .fill-3 .fill { width: 3%; }
    .poll_block .answers.answered .fill-4 .fill { width: 4%; }
    .poll_block .answers.answered .fill-5 .fill { width: 5%; }
    .poll_block .answers.answered .fill-6 .fill { width: 6%; }
    .poll_block .answers.answered .fill-7 .fill { width: 7%; }
    .poll_block .answers.answered .fill-8 .fill { width: 8%; }
    .poll_block .answers.answered .fill-9 .fill { width: 9%; }
    .poll_block .answers.answered .fill-10 .fill { width: 10%; }
    .poll_block .answers.answered .fill-11 .fill { width: 11%; }
    .poll_block .answers.answered .fill-12 .fill { width: 12%; }
    .poll_block .answers.answered .fill-13 .fill { width: 13%; }
    .poll_block .answers.answered .fill-14 .fill { width: 14%; }
    .poll_block .answers.answered .fill-15 .fill { width: 15%; }
    .poll_block .answers.answered .fill-16 .fill { width: 16%; }
    .poll_block .answers.answered .fill-17 .fill { width: 17%; }
    .poll_block .answers.answered .fill-18 .fill { width: 18%; }
    .poll_block .answers.answered .fill-19 .fill { width: 19%; }
    .poll_block .answers.answered .fill-20 .fill { width: 20%; }
    .poll_block .answers.answered .fill-21 .fill { width: 21%; }
    .poll_block .answers.answered .fill-22 .fill { width: 22%; }
    .poll_block .answers.answered .fill-23 .fill { width: 23%; }
    .poll_block .answers.answered .fill-24 .fill { width: 24%; }
    .poll_block .answers.answered .fill-25 .fill { width: 25%; }
    .poll_block .answers.answered .fill-26 .fill { width: 26%; }
    .poll_block .answers.answered .fill-27 .fill { width: 27%; }
    .poll_block .answers.answered .fill-28 .fill { width: 28%; }
    .poll_block .answers.answered .fill-29 .fill { width: 29%; }
    .poll_block .answers.answered .fill-30 .fill { width: 30%; }
    .poll_block .answers.answered .fill-31 .fill { width: 31%; }
    .poll_block .answers.answered .fill-32 .fill { width: 32%; }
    .poll_block .answers.answered .fill-33 .fill { width: 33%; }
    .poll_block .answers.answered .fill-34 .fill { width: 34%; }
    .poll_block .answers.answered .fill-35 .fill { width: 35%; }
    .poll_block .answers.answered .fill-36 .fill { width: 36%; }
    .poll_block .answers.answered .fill-37 .fill { width: 37%; }
    .poll_block .answers.answered .fill-38 .fill { width: 38%; }
    .poll_block .answers.answered .fill-39 .fill { width: 39%; }
    .poll_block .answers.answered .fill-40 .fill { width: 40%; }
    .poll_block .answers.answered .fill-41 .fill { width: 41%; }
    .poll_block .answers.answered .fill-42 .fill { width: 42%; }
    .poll_block .answers.answered .fill-43 .fill { width: 43%; }
    .poll_block .answers.answered .fill-44 .fill { width: 44%; }
    .poll_block .answers.answered .fill-45 .fill { width: 45%; }
    .poll_block .answers.answered .fill-46 .fill { width: 46%; }
    .poll_block .answers.answered .fill-47 .fill { width: 47%; }
    .poll_block .answers.answered .fill-48 .fill { width: 48%; }
    .poll_block .answers.answered .fill-49 .fill { width: 49%; }
    .poll_block .answers.answered .fill-50 .fill { width: 50%; }
    .poll_block .answers.answered .fill-51 .fill { width: 51%; }
    .poll_block .answers.answered .fill-52 .fill { width: 52%; }
    .poll_block .answers.answered .fill-53 .fill { width: 53%; }
    .poll_block .answers.answered .fill-54 .fill { width: 54%; }
    .poll_block .answers.answered .fill-55 .fill { width: 55%; }
    .poll_block .answers.answered .fill-56 .fill { width: 56%; }
    .poll_block .answers.answered .fill-57 .fill { width: 57%; }
    .poll_block .answers.answered .fill-58 .fill { width: 58%; }
    .poll_block .answers.answered .fill-59 .fill { width: 59%; }
    .poll_block .answers.answered .fill-60 .fill { width: 60%; }
    .poll_block .answers.answered .fill-61 .fill { width: 61%; }
    .poll_block .answers.answered .fill-62 .fill { width: 62%; }
    .poll_block .answers.answered .fill-63 .fill { width: 63%; }
    .poll_block .answers.answered .fill-64 .fill { width: 64%; }
    .poll_block .answers.answered .fill-65 .fill { width: 65%; }
    .poll_block .answers.answered .fill-66 .fill { width: 66%; }
    .poll_block .answers.answered .fill-67 .fill { width: 67%; }
    .poll_block .answers.answered .fill-68 .fill { width: 68%; }
    .poll_block .answers.answered .fill-69 .fill { width: 69%; }
    .poll_block .answers.answered .fill-70 .fill { width: 70%; }
    .poll_block .answers.answered .fill-71 .fill { width: 71%; }
    .poll_block .answers.answered .fill-72 .fill { width: 72%; }
    .poll_block .answers.answered .fill-73 .fill { width: 73%; }
    .poll_block .answers.answered .fill-74 .fill { width: 74%; }
    .poll_block .answers.answered .fill-75 .fill { width: 75%; }
    .poll_block .answers.answered .fill-76 .fill { width: 76%; }
    .poll_block .answers.answered .fill-77 .fill { width: 77%; }
    .poll_block .answers.answered .fill-78 .fill { width: 78%; }
    .poll_block .answers.answered .fill-79 .fill { width: 79%; }
    .poll_block .answers.answered .fill-80 .fill { width: 80%; }
    .poll_block .answers.answered .fill-81 .fill { width: 81%; }
    .poll_block .answers.answered .fill-82 .fill { width: 82%; }
    .poll_block .answers.answered .fill-83 .fill { width: 83%; }
    .poll_block .answers.answered .fill-84 .fill { width: 84%; }
    .poll_block .answers.answered .fill-85 .fill { width: 85%; }
    .poll_block .answers.answered .fill-86 .fill { width: 86%; }
    .poll_block .answers.answered .fill-87 .fill { width: 87%; }
    .poll_block .answers.answered .fill-88 .fill { width: 88%; }
    .poll_block .answers.answered .fill-89 .fill { width: 89%; }
    .poll_block .answers.answered .fill-90 .fill { width: 90%; }
    .poll_block .answers.answered .fill-91 .fill { width: 91%; }
    .poll_block .answers.answered .fill-92 .fill { width: 92%; }
    .poll_block .answers.answered .fill-93 .fill { width: 93%; }
    .poll_block .answers.answered .fill-94 .fill { width: 94%; }
    .poll_block .answers.answered .fill-95 .fill { width: 95%; }
    .poll_block .answers.answered .fill-96 .fill { width: 96%; }
    .poll_block .answers.answered .fill-97 .fill { width: 97%; }
    .poll_block .answers.answered .fill-98 .fill { width: 98%; }
    .poll_block .answers.answered .fill-99 .fill { width: 99%; }
    .poll_block .answers.answered .fill-100 .fill { width: 100%; }


/* Expo */
    .expo > a { display: flex; gap: 10px; align-items: center; flex-direction: row; }
    /* .expo .image, .expo .image img { border-top-right-radius: 8px; border-top-left-radius: 8px; } */
    .expo .image { min-width:160px; width:160px; height:80px; display: flex; align-items: center; justify-content: center; }
    .expo .image img { max-width:100%; max-height:100%; }
    .expo .gray_block { border-bottom-right-radius: 8px; border-bottom-left-radius: 8px; }
    .expo .expo_content { padding: 16px; width:calc(100% - 30px); color:#000; }
    .expo .expo_content .image { max-width: 100%; width: auto; height: auto; }
    .expo .expo_content .promoted_tag, .expo .expo_content .pinned_tag { display: none; }
    .expo.promotion .expo_content .promoted_tag, .expo.pinned .expo_content .pinned_tag { display: inline-block; border-radius: 34px; background-color: var(--button-primary-color); color: var(--button-primary-text-color); font-size: 12px; padding: 7px 20px; font-weight: 600; text-align: center; outline: none; border: none; text-decoration: none; white-space: nowrap; }
    .expo .option_row { display: flex; justify-content: space-between; align-items: center; }
    .expo .option_row .more_option { margin-left: auto; }

    .more_option { display: inline-block; position: relative; }
    .more_option .dots{ font-size: 18px; font-weight: 600; position: relative; top: -6px;z-index:90; }
    .more_option .dots:hover{ cursor: pointer; }
    .more_option .options{ display: none; }
	.more_option.active .options{ display: block; position: absolute; width: 115px; background: #fff; border-radius: 5px; right: 0px; z-index: 999; box-shadow: 1px 1px 2px #2624243b; padding: 8px; text-align: center; }
	.more_option .options span{ color: var(--primary-color); display: block; padding: 3px 0; }
	.more_option .options span:hover{ cursor: pointer; }
	.more_option .options span:not(:last-child){ border-bottom: 1px solid var(--primary-color); }

    .likes { padding-left: 20px; position: relative; }
    .likes:before { content: ''; background: url('../img/heart_red.svg'); width: 14px; height: 13px; position: absolute; left: 0px; top: 2px; }

    .stats_row { display: flex; justify-content: space-between; }
    .stats_row .like,
    .stats_row .comment { padding-left: 25px; text-decoration: none; color: #123654; position: relative; }
    .stats_row .like:before { content: ''; background: url('../img/heart.svg'); width: 20px; height: 19px; position: absolute; left: 0px; top: -1px; }
    .stats_row .comment:before { content: ''; background: url('../img/question.svg'); width: 18px; height: 19px; position: absolute; left: 0px; top: -1px; }

    .notes_block{ border-bottom: 1px solid var(--primary-color); padding-bottom: 10px; }
    .notes_block .data{ display: flex; align-items: center; gap: 10px; }
    .notes_block .btn{ border-radius: 20px; padding: 5px 15px; }
    .notes_block .btn:hover{ cursor: pointer; }
    .notes_block .tagBox.green{ background: rgb(9, 104, 9); }
    .notes_block .tagBox.red{ background: rgb(155, 9, 9); }
    .notes_block .tagBox.yellow{ background: rgb(208, 206, 47); }
    .notes_block .form-group{ display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .notes_block .form-group select{ width: auto; margin-right: 5px; }
    .notes_block .form-group .input_block{ width: auto; max-width: 100%; }
    .notes_block .form-group .input_block input{ width: 350px; max-width: calc(100% - 50px);}
    .notes_block .form-group .buttons{ display: flex; gap: 5px; }

	.notes_block.via_profile { border: 1px solid var(--primary-color); padding:15px;border-radius:5px; }

    .flex_row{ display: flex; gap: 10px; align-items: center; }

    .comments_list{ margin-top: 20px; display: flex; flex-direction: column; gap: 10px; margin-left: 0 !important; margin-bottom: 0 !important; }
    .comment_block .comment{ display: flex; gap: 10px; }
    .comment .avatar .status{ top: 2px; left: 2px; }
    .comment .comment_data { width: calc(100% - 40px); }
    .comment .comment_data .author { margin-bottom: 5px; }
    .comment .comment_data .author .date { color: #123654; opacity: 0.5; margin-left: 5px; }

/* Table */
    .table{ width: 100%; border-collapse: unset; }
    .table td, .table th{ padding: 10px; vertical-align: middle; border: 1px solid #000; border-right: 0; }
    .table th{ background-color: var(--button-primary-color); color: var(--button-primary-text-color); font-weight: 600; }
    .table td:last-child, .table th:last-child{ border-right: 1px solid #000; }
    .table td{ border-top: none; }
    .table th:first-child{ border-top-left-radius: 5px; }
    .table th:last-child{ border-top-right-radius: 5px; }
    .table tbody tr:last-child td:first-child{ border-bottom-left-radius: 5px; }
    .table tbody tr:last-child td:last-child{ border-bottom-right-radius: 5px; }

/* Chats */
    /* Post */
    .chat_list { display: flex; flex-direction: column; gap: 20px; }
    .chat { display: flex; gap: 20px; align-items: center;position:relative; }
    a.chat { color: var(--button-primary-color); }
    .chat .chat_data { width: calc(100% - 40px); color: #333; }
    .chat .chat_data .author { margin-bottom: 5px;line-height:14px; }
    .chat .chat_data .author .company { font-size:11px; }
    .chat .chat_data .author .date { color: #123654; opacity: 0.5;float:right;font-size:11px; }
	.chat .newCount { background: var(--error-color);display:none;height:20px;width:20px;line-height:20px;border-radius:10px;color:#fff;font-size:11px;text-align:center;position:absolute;top: -5px;left: 49px; }
    .chat .chat_data .text { opacity: 0.5; }
    .chat .more_option { display: inline-block; position: relative; }
    .chat .more_option .dots{ font-size: 18px; font-weight: 600; position: relative; top: -6px;z-index:90; }
    .chat .more_option .dots:hover{ cursor: pointer; }
    .chat .more_option .options{ display: none; }
	.chat .more_option.active .options{ display: block; position: absolute; width: 100px; background: #fff; border-radius: 5px; right: 0px; z-index: 999; box-shadow: 1px 1px 2px #2624243b; padding: 8px; }
	.chat .more_option .options span{ color: var(--primary-color); display: block; }
	.chat .more_option .options span:hover{ cursor: pointer; }


    .chat .avatar { width: 64px; height: 64px; min-width: 64px; }
    .chat .avatar span { font-size: 16px; font-weight: 600; }
    .chat .avatar img { border-radius: 4px; }

    .chat.unread .newCount { display:inline-block; }
    .chat.unread .chat_data .text { opacity: 1; }

    .messanger_wrapper{ overflow-y: auto; max-height: calc(100vh - 273px); }
    .messages { display: flex; flex-direction: column; gap: 15px;padding:0 11px; position: relative; width: calc(100% - 23px); }
    .messages li.date { text-align: center; width: 100%; color: #123654; opacity: 0.5; }
    .messages li .message_data{ position: relative;border-radius: 8px; width: 80%; padding: 8px; background: var(--primary-color); color: #fff; }
    .messages li.sent .message_data, .messages li.sent .notification_data { float: right; }
    .messages li.sent .message_data { background: var(--secondary-color); align-self: end; }
    .messages li.sent .message_data:before, .messages li.received .message_data:before { content: "";position: absolute;z-index: 1;bottom: 0;height: 20px;width: 20px; }
    .messages li.sent .message_data:after, .messages li.received .message_data:after { content: "";position: absolute;z-index: 1;bottom: 0;width: 12px;height: 20px;background:var(--background-color); }
	.messages li.received .message_data:before { left: -11px;background: var(--primary-color);border-bottom-right-radius: 15px; }
	.messages li.sent .message_data:before { right: -11px;background: var(--secondary-color);border-bottom-left-radius: 15px; }
	.messages li.received .message_data:after { left: -12px;border-bottom-right-radius: 10px;}
	.messages li.sent .message_data:after { right: -12px;border-bottom-left-radius: 10px; }
	
	.messages li .notification_data {  position: relative;border-radius: 8px; width: 80%; padding: 8px; color: #000;border:1px solid #999;font-style: italic;margin:0 -11px; }
	
	.messages li .more_option{ position: absolute; display: none; }
	.messages li.active_options .more_option, .messages li:hover .more_option{ display: inline-block; }
	.messages li.sent .more_option{ left: -19px; color: #3b3a4a; }
    .messages li.received .more_option{ right: -19px; color: #3b3a4a; }
	.messages li .more_option .dots{ font-size: 18px; font-weight: 600; position: relative; top: -6px; }
	.messages li .more_option .dots:hover{ cursor: pointer; }
	.messages li .more_option .options{ display: none; }
	.messages li.active_options .more_option .options{ display: block; position: absolute; width: 100px; background: #fff; border-radius: 5px; right: 0px; z-index: 999; box-shadow: 1px 1px 2px #2624243b; padding: 8px;font-size:11px; }
	.messages li.received.active_options .more_option .options{ left: 0px; }
	.messages li .more_option .options a{ color: var(--primary-color); display: block; }
	


    .form-group.chat_message input { padding-right: 30px; }
    .form-group.chat_message .file_icon { position: absolute; right: 10px; top: 9px; background: url('../img/file_upload.svg'); width: 22px; height: 20px; }

    .new_chat_list { gap: 10px; }
    .new_chat_list .avatar { width: 40px; height: 40px; }

/* Leads */
    .notes_block .more_option { display: inline-block; position: relative;color:var(--button-primary-color);margin-left: auto; }
    .notes_block .more_option .dots{ font-size: 18px; font-weight: 600; position: relative; top: -6px;z-index:90; }
    .notes_block .more_option .dots:hover{ cursor: pointer; }
    .notes_block .more_option .options{ display: none; }
	.notes_block .more_option.active .options{ display: block; position: absolute; width: 100px; background: #fff; border-radius: 5px; right: 0px; z-index: 999; box-shadow: 1px 1px 2px #2624243b; padding: 8px; }
	.notes_block .more_option .options span{ color: var(--primary-color); display: block; }
	.notes_block .more_option .options span:hover{ cursor: pointer; }

/* Notification */
    .notif_icon { width: 36px; height: 36px; background: url('../img/info_icon.svg'); display: inline-block; background-size: 36px; }

    .notification { padding: 20px; margin-bottom: 10px; border-radius: 5px; color: #fff; font-weight: 600; }
    .notification.error { background: var(--error-color); }
    .notification.success { background: var(--success-color); }

/* Favorite */
    .favorite{ display: inline-block; }
    .favorite .flex{ display: flex; gap: 5px; align-items: center; }
    .favorite .icon{ background-image: url('../img/favorite.svg'); display: inline-block; width: 20px; height: 20px; background-size: 20px; position: relative; top: -1px; }
    .favorite.active .icon{ background-image: url('../img/favorite-full.svg'); }

/* Typing */
.typing { position: relative; }
.typing span { content: ''; animation: typingBlink 1.5s infinite; animation-fill-mode: both; height: 10px; width: 10px; background-color: var(--primary-color);position: absolute;left:0;top:0;border-radius: 50%; }
.typing span:nth-child(2) { animation-delay: .2s; margin-left: 15px; }
.typing span:nth-child(3) { animation-delay: .4s; margin-left: 30px; }

@keyframes typingBlink {
  0% { opacity: .1; }
  20% { opacity: 1; }
  100% { opacity: .1; }
}

/* Footer */
    .footer { background-color: var(--secondary-color); padding-top: 10px; }
	.footer.reversed { background:#fff; }
    .footer .logo { width:150px; }
    .footer .menu { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
    .footer .menu a { color: #fff; font-weight: 600; text-decoration: none; }
	.footer.reversed .menu a { color:var(--primary-color); }
    .footer .socials { display: flex; gap: 5px; justify-content: center; }
    .footer .socials a { background-color: #fff; }
	.footer.reversed .socials a { background:var(--primary-color); }
	.footer.reversed .socials a .svgIcon { stroke: #fff; }
    .footer .socials a.facebook { background-image: url('../img/social_facebook.svg'); background-size: 8px 15px; }
    .footer .socials a.linkedin { background-image: url('../img/social_linkedin.svg'); background-size: 15px; }
    .footer .socials a.youtube { background-image: url('../img/social_youtube.svg'); background-size: 16px 19px; }
    .footer .socials a.x { background-image: url('../img/social_x.svg'); background-size: 16px; }
    .footer .socials a.instagram { background-image: url('../img/social_instagram.svg'); background-size: 16px; }

    .footer .copyright { margin-top:10px;width:100%;padding:10px 0;line-height:20px;font-size:11px;background-color: var(--primary-color);color: var(--button-primary-text-color); }
	.footer .copyright .svgIcon.mitto { stroke:#fff;fill:#fff;top:5px;position:relative;margin-left:5px; }

    .footer .supporterLine img{ height: 70px; }

/* Cookies */
	#cookies { width:100%;min-height:30px;background-color:var(--secondary-color);border-top:2px solid var(--primary-color);position:fixed;bottom:0;padding:8px 0;z-index:100; }
	#cookies p { display:inline-block;font-size:14px;line-height:30px;color:#fff; }
	#cookies p a { color:#fff;text-decoration:none;border-bottom:1px solid #fff; }
	#cookies p a:hover { border-bottom:1px dashed #fff; }
	#cookies button { margin-left:10px; }

/* Error */
	#errorPage, #closedSite { padding:100px 0 50px; }
	#errorPage h1 { font-size:120px;margin-bottom:30px;color:var(--error-color); }
	#errorPage h2 { font-size:40px;margin-bottom:30px;color:var(--primary-color); }
	#closedSite h1 { font-size:40px;margin-bottom:30px;color:var(--secondary-color); }
	#closedSite h2 { font-size:25px;margin-bottom:30px;color:var(--primary-color); }


/* Popup */
    #overlay{ position:fixed;top:0px;left:0px; bottom:0px;right:0px; background-color:rgba(0, 0, 0, 0.5); z-index: 30; }
    #popup { position: fixed; display: inline-block; padding: 10px 20px 20px; background-color: #fbfbfb; z-index: 100; width: 500px; max-width: calc(100vw - 40px); }
        #close_popup { position: absolute; cursor: pointer; width: 16px; height: 16px; background: url('../img/close.svg') no-repeat; top: 10px; right: 10px; filter: brightness(0%) invert(0%); }
        #popup h3 { font-size: 16px; color: #000; text-align: left;line-height:25px;padding-bottom:10px; }
        #popup .notification h3 { color: #fff; line-height: unset; padding-bottom: 0; font-size: 12px; }
        #popup a { color:#000;text-decoration:underline; }
        #popup a:hover { text-decoration:none; }
        #popup .overlay { position: absolute; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: #cccccc85; left: 0; top: 0; z-index: 99; }


/* Networking tables */
    .networking_tables{ display: flex; gap: 20px; flex-wrap: wrap; }
    .networking_tables table{ width: 300px; }
    .networking_tables table td{ padding: 10px 5px; border: 1px solid #000; }
    .networking_tables table td.date_title{ text-align: center; font-weight: 600; background-color: var(--button-primary-color); color: var(--button-primary-text-color); }

    .status_flag{ border-radius: 34px; font-weight: 600; display: inline-block; text-align: center; }
    .status_flag.red{ background-color: var(--error-color); color: #fff; }
    .status_flag.orange{ background-color: #e6a631; color: #fff; }
    .status_flag.green{ background-color: #1ddf1d; color: #fff; }
    .status_flag.yellow{ background-color: #ecec34; color: #000; }

    .my_networking_meetings table { width: 100%; }
    .my_networking_meetings table th, .my_networking_meetings table td{ padding: 10px 5px; border: 1px solid #000; }
    .my_networking_meetings table td.date_title{ text-align: center; font-weight: 600; background-color: var(--button-primary-color); color: var(--button-primary-text-color); }

    .networking_tables .status_flag, 
    .networking_tables .button, 
    .my_networking_meetings .status_flag, 
    .my_networking_meetings .button{ padding: 5px 20px; }
    .my_networking_meetings .button{ margin-right: 5px; }


    .no_records{ background-color: #ccc; text-align: center; padding: 10px; font-weight: 600; }

    .meeting_buttons{ display: flex; gap: 5px; flex-wrap: wrap; }
    .meeting_buttons .button{ padding: 5px 10px; }