@charset "UTF-8";
/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto-thin";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v30-latin-300.eot"); /* IE9 Compat Modes */
  src: url("../fonts/roboto-v30-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v30-latin-300.woff2") format("woff2"), url("../fonts/roboto-v30-latin-300.woff") format("woff"), url("../fonts/roboto-v30-latin-300.ttf") format("truetype"), url("../fonts/roboto-v30-latin-300.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto-regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/roboto-v30-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v30-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v30-latin-regular.woff") format("woff"), url("../fonts/roboto-v30-latin-regular.ttf") format("truetype"), url("../fonts/roboto-v30-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto-medium";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v30-latin-500.eot"); /* IE9 Compat Modes */
  src: url("../fonts/roboto-v30-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v30-latin-500.woff2") format("woff2"), url("../fonts/roboto-v30-latin-500.woff") format("woff"), url("../fonts/roboto-v30-latin-500.ttf") format("truetype"), url("../fonts/roboto-v30-latin-500.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto-bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v30-latin-700.eot"); /* IE9 Compat Modes */
  src: url("../fonts/roboto-v30-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v30-latin-700.woff2") format("woff2"), url("../fonts/roboto-v30-latin-700.woff") format("woff"), url("../fonts/roboto-v30-latin-700.ttf") format("truetype"), url("../fonts/roboto-v30-latin-700.svg#Roboto") format("svg"); /* Legacy iOS */
}
.dropdown-selectbox-container {
  /*  hide the dropdowns */
  /* Displays second level dropdowns to the right of the first level dropdown */
  /* Simple clearfix */
  /* manage size of dropdowns*/
}
.dropdown-selectbox-container .styled-select {
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #000;
}
.dropdown-selectbox-container ul {
  width: fit-content;
  padding: 0;
  margin: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 1px #c8c8c8 solid;
  border-radius: 5px;
  box-shadow: 0 8px 9px -9px #bdbeb2;
  z-index: 10;
}
.dropdown-selectbox-container ul.dropdown-selectbox {
  margin-bottom: 10px;
  display: none;
  position: absolute;
  /*top: 230px;*/
  z-index: 30;
  height: fit-content;
  margin-top: -15px;
}
.dropdown-selectbox-container ul li {
  font-size: 13px;
  list-style: none;
  display: block;
  position: relative;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  margin: 2px 43px 2px 0;
  float: left;
  width: 100%;
  min-width: 200px;
}
.dropdown-selectbox-container ul li span {
  height: 100%;
  width: 100%;
  display: block;
  padding: 0.5em;
}
.dropdown-selectbox-container li ul {
  display: none;
}
.dropdown-selectbox-container ul.has-sub > li:not(.has-sub) span:after,
.dropdown-selectbox-container ul li.has-sub button {
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-left: solid 1px #ccc;
  padding: 0;
  cursor: pointer;
  transition: transform 0.4s ease;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
}
.dropdown-selectbox-container ul.has-sub > li:not(.has-sub) span:after {
  content: "";
  width: 40px;
  cursor: initial;
  background-image: url(/event/media/images/icon_chevron-right-greyed.svg);
}
.dropdown-selectbox-container ul li.has-sub button {
  background-color: #fff;
  background-image: url(/event/media/images/icon_chevron-right.svg);
}
.dropdown-selectbox-container ul li.has-sub.expanded > button {
  background-color: #6a6a6a;
  background-image: url(/event/media/images/icon_goto.svg);
}
.dropdown-selectbox-container li.has-sub.expanded {
  color: #000;
  background-color: #f1f1f1;
}
.dropdown-selectbox-container ul li span:hover {
  color: #fff;
  background-color: #6a6a6a;
}
.dropdown-selectbox-container ul ul ul {
  left: 100%;
  top: 0;
}
.dropdown-selectbox-container ul:before,
.dropdown-selectbox-container ul:after {
  content: " ";
  display: table;
}
.dropdown-selectbox-container li.has-sub.expanded > ul {
  display: block;
  position: absolute;
  left: 100%;
  top: -3px;
}
.dropdown-selectbox-container li:nth-child(n+5).expanded > ul {
  transform: translate(0, -38%);
}
.dropdown-selectbox-container li:nth-child(n+9).expanded > ul {
  transform: translate(0, -60%);
}
.dropdown-selectbox-container .FullWidthContainer .HalfWidthContainer .__CbRegButtonContainer {
  position: initial;
}
.dropdown-selectbox-container ul.dropdown-sub {
  max-height: 420px;
  overflow: auto;
}

.__EventWindow {
  /*
  .button-parent-reference-page-level3 .cb-flex-event-editor-button{
      top: 100px;
  }*/
}
.__EventWindow .button-parent-reference,
.__EventWindow .button-parent-reference-page-level2 {
  position: relative;
}
.__EventWindow .button-parent-reference-page-level3 {
  /*    position: relative;*/
}
.__EventWindow .cb-flex-event-editor-button.page-level-3,
.__EventWindow button.show-share-layer {
  top: 150px !important;
}
.__EventWindow button.page-level-1 {
  background-color: #9b4234 !important;
}
.__EventWindow button.page-level-2 {
  background-color: #747474 !important;
}
.__EventWindow .dynamic-page-article {
  min-height: 0px;
}
.__EventWindow .editorContainer {
  background: rgba(0, 0, 0, 0.7);
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__EventWindow button.cb-flex-event-editor-button,
.__EventWindow button.show-share-layer {
  font-family: "Roboto", sans-serif;
  border: 0px solid #478bbe;
  border-radius: 0px;
  color: #fff;
  padding: 5px 10px;
  font-weight: 500;
  font-size: 14px;
  background-color: #3e73c0;
  line-height: 20px;
  outline: none;
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 900;
  cursor: pointer;
  display: none;
  align-items: center;
}
.__EventWindow button.cb-flex-event-editor-button svg,
.__EventWindow button.show-share-layer svg {
  margin: 5px;
}
.__EventWindow button.cb-flex-event-editor-button span,
.__EventWindow button.show-share-layer span {
  display: none;
}
.__EventWindow button.cb-flex-event-editor-button:hover span,
.__EventWindow button.show-share-layer:hover span {
  display: flex;
}
.__EventWindow .accordion button.cb-flex-event-editor-button {
  display: none;
}
.__EventWindow .accordion .show button.cb-flex-event-editor-button {
  display: flex;
}
.__EventWindow .blog-edit-button {
  box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.3607843137);
}
.__EventWindow .accordion-body button.media-editor-button.scrolled {
  position: fixed !important;
  top: 140px;
}
.__EventWindow button.cb-flex-event-editor-button.article-editor-button,
.__EventWindow button.cb-flex-event-editor-button.article-delete-button {
  position: absolute;
  top: 0px;
  bottom: initial;
  right: 0;
  margin-right: 20px;
}
.__EventWindow button.cb-flex-event-editor-button.pix-edit-button {
  position: absolute;
  left: unset;
  top: unset;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  display: block;
  background-image: url("/module/jscript/lib/cb_ui/img/edit_icon_bg.png");
  border: 0px solid #478bbe;
  background-color: unset;
}
.__EventWindow button.cb-flex-event-editor-button.article-delete-button {
  background-color: #9b4234;
  right: 100px;
  z-index: 99;
}
.__EventWindow button.show-share-layer {
  position: absolute;
  bottom: initial;
  background-color: #56ada2;
  right: 172px !important;
  z-index: 98;
  padding-bottom: 6px;
}
.__EventWindow button.show-share-layer svg {
  margin: 4px;
}
.__EventWindow button.cb-flex-event-editor-button.article-editor-button:not(.media-editor-button) {
  right: 50px;
  z-index: 100;
}
.__EventWindow button.cb-flex-event-editor-button.article-editor-button:not(.media-editor-button) svg {
  margin-bottom: 6px;
}
.__EventWindow .badge-editor-container button.cb-flex-event-editor-button.article-editor-button:not(.media-editor-button) {
  top: 140px !important;
}
.__EventWindow .__EditorWindowDraggableButton {
  top: 0;
  right: auto;
  width: 67px;
  height: 63px;
  background-color: #efebeb;
  background-image: url(../images/icon_move_window.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  border-left: 1px solid #d0d0d0;
  cursor: move;
  position: relative;
  z-index: 99;
  left: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.__EventWindow,
.__EventWindowp .__CbUiText,
.__EventWindow textarea,
.__EventWindow input {
  /*    font-family: $roboto-regular;*/
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

button, select, input, textarea {
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.__EventScrollLock {
  overflow: hidden;
}

.__CbUiInputError {
  border-color: red !important;
  /* border: 1px solid red !important; */
}

.__CbUiLayer.__CbUiLoader {
  z-index: 10001 !important;
}

.__EventWindow {
  width: 930px;
  min-height: 660px;
  max-height: 100vh;
  height: 660px;
  overflow: visible;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333 !important;
  -moz-osx-font-smoothing: auto;
  border-radius: 1px;
}
.__EventWindow select {
  min-width: initial;
}

.__EventWindow .__EventContainer td {
  position: relative;
}

.__EventWindow .__EventContainer .__EventSideMenu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  background-color: #fff;
  box-shadow: 0 0 10px #999999;
  list-style: none;
  z-index: 10;
}

table.__EventContainer {
  table-layout: fixed;
}
table.__EventContainer td:not(.__EventState) {
  overflow: hidden;
}
table.__EventContainer tr.bottom-position .__EventSideMenu {
  bottom: 0;
  top: initial;
}

.__EventContentAvailable,
.__EventNoContentAvailable {
  display: none;
}

.__EventContentAvailable {
  height: 470px;
  overflow-y: auto;
}

.__EventEmptyResults {
  margin-top: 80px;
  padding: 0 5%;
}

.__EventTab {
  /* padding-button should cover .__EventTabFooter's height */
  padding-bottom: 130px;
}

#__EventTabMyOverview {
  padding-bottom: 0;
}
#__EventTabMyOverview .__EventTabFooter {
  height: 70px;
}
#__EventTabMyOverview .__EventExpertModeBtn,
#__EventTabMyOverview .__EventDetailWindowButton {
  margin-top: 0;
}

.__EventTabFooter {
  height: 128px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.__EventWindowHeader .__EventOverviewWindowButton {
  margin-right: 40px;
}

.__EventWindow .__EventLeftColumn,
.__EventWindow .__EventRightColumn {
  width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0;
}
.__EventWindow .__EventLeftColumn {
  margin: 20px 0;
}
.__EventWindow .__EventRightColumn {
  margin: 27px 0 20px;
}
.__EventWindow .__EventRightColumn hr {
  margin: 16px 0 35px;
  border: 1px solid #ccc;
  border-top: 0;
}
.__EventWindow .__EventAutocompleteContainer {
  position: relative;
}
.__EventWindow .__EventAutocompleteContainer input.__AC_invalidated {
  background-color: #e4eef4;
}
.__EventWindow .__EventAutocompleteContainer input.__AC_validated {
  background-color: #EDF4D8 !important;
  color: #42443F !important;
  background-image: url(/event/media/images/icon_validated.svg);
  background-position: 98% center;
  background-repeat: no-repeat;
  font-style: normal !important;
}
.__EventWindow .__EventContainer tr {
  border: medium none;
  height: 41px;
  cursor: pointer;
}
.__EventWindow .__EventContainer tr:not(.__EventHeader):hover {
  background: #f7f7f7;
}
.__EventWindow .__EventContainer td {
  border-bottom: 1px solid #cccccc;
  height: 20px;
  position: relative;
  white-space: nowrap;
}
.__EventWindow .__EventContainer .__EventFadeScreen {
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
}
.__EventWindow .__EventContainer .__EventFadeScreen.grey {
  display: none;
}
.__EventWindow .__EventContainer tr:hover .__EventFadeScreen.grey {
  display: block;
}
.__EventWindow .__EventContainer tr:hover .__EventFadeScreen.white {
  display: none;
}
.__EventWindow .__EventContainer .__EventFadeScreen.white,
.__EventWindow .__EventContainer .__EventFadeScreen.grey {
  background-color: transparent;
}
.__EventWindow .__EventTabButton.__EventActiveTab {
  background-color: #ffffff;
}
.__EventWindow .__EventWindowHeader .__EventTabButton {
  padding: 0 18px;
  background-color: #efefef;
}
.__EventWindow .__EventInfoCntnr .__EventInputInfo,
.__EventWindow .__EventInfoCntnr .__EventInputErrorInfo {
  display: none;
  margin-bottom: 10px;
}
.__EventWindow .__EventInfoCntnr .__EventInputErrorInfo {
  color: red;
  font-size: 13px;
}
.__EventWindow .__EventInputInfo {
  color: #555555;
}
.__EventWindow .__EventAddMediaButtonContainer,
.__EventWindow .__EventMediaItem {
  width: 48%;
  height: 130px;
}
.__EventWindow .__EventAddMediaButtonContainer {
  background: url(/event/media/images/img_plus-icon.jpg) no-repeat right 10px top 10px transparent;
  display: inline-block;
}
.__EventWindow .__EventAddMediaButton,
.__EventWindow .__EventMediaItem {
  width: 48%;
  height: 130px;
  border: 1px solid #b5b5b5;
  background-size: contain;
  border-radius: 0px;
}
.__EventWindow .__EventAddMediaButton {
  width: 100%;
  cursor: pointer;
  outline: none;
}
.__EventWindow .__EventMediaItem {
  margin-right: 2%;
  margin-bottom: 7px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset;
  float: left;
  position: relative;
  overflow: hidden;
  background-size: cover;
}
.__EventWindow .__EventMediaItem img {
  width: 100%;
  height: auto;
}
.__EventWindow .__EventDeleteMediaItemButton {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 1px solid #c9c3b8;
  border-radius: 3px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  box-shadow: 0 0 5px rgb(189, 190, 178);
  background: url(/event/media/images/img_event-terminate.png) no-repeat center center #ffffff;
}
.__EventWindow .__EventEditMediaItemButton {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 1px solid #c9c3b8;
  border-radius: 3px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  box-shadow: 0 0 5px rgb(189, 190, 178);
  background: url(/event/media/images/img_pics-edit.png) no-repeat center center #ffffff;
}
.__EventWindow .__EventRightColumn input::-webkit-input-placeholder {
  color: #555555;
  font-style: normal;
  font-size: 1.1em;
}
.__EventWindow .__EventRightColumn input:-moz-placeholder { /* Firefox 18- */
  color: #555555;
  font-style: normal;
  font-size: 1.1em;
}
.__EventWindow .__EventRightColumn input::-moz-placeholder { /* Firefox 19+ */
  color: #555555;
  font-style: normal;
  font-size: 1.1em;
}
.__EventWindow .__EventRightColumn input:-ms-input-placeholder {
  color: #555555;
  font-style: normal;
  font-size: 1.1em;
}
.__EventWindow input.__EventCmnToggleRound + label {
  padding: 2px;
  width: 44px;
  height: 24px;
  float: right;
  background-color: #dddddd;
  border-radius: 20px;
  margin-top: 7px;
}
.__EventWindow input.__EventCmnToggleRound + label:before,
.__EventWindow input.__EventCmnToggleRound + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
.__EventWindow input.__EventCmnToggleRound + label:after {
  width: 22px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: margin 0.4s;
}
.__EventWindow input.__EventCmnToggleRound + label::before {
  background-color: #f1f1f1;
  border-radius: 20px;
  right: 1px;
  transition: background 0.4s ease 0s;
}
.__EventWindow input.__EventCmnToggleRound:checked + label:before {
  background-color: #757575;
}
.__EventWindow input.__EventCmnToggleRound:checked + label:after {
  margin-left: 20px;
}

.__EventLeftColumn .__EventSwitch {
  float: none;
  margin: 40px 0 15px 0;
  border-top: 1px solid #ccc;
  padding: 15px 0 0 0;
}
.__EventLeftColumn .__EventSwitch .bootstrap-switch {
  margin: 0;
  overflow: hidden;
  width: 45px !important;
  height: 24px;
  background-color: #eeeeee;
}
.__EventLeftColumn .__EventSwitch .bootstrap-switch .flip-switch-handle {
  /*          border: 1px solid #cccccc;    */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #cccccc;
  margin: 0;
}
.__EventLeftColumn .__EventSwitch .bootstrap-switch .bootstrap-switch-container {
  background-color: #eeeeee;
}
.__EventLeftColumn .__EventSwitch .bootstrap-switch .bootstrap-switch-container .bootstrap-switch-label {
  top: 0 !important;
  right: 17px;
}
.__EventLeftColumn .__EventSwitch .bootstrap-switch .bootstrap-switch-container .bootstrap-switch-primary {
  line-height: 22px;
}
.__EventLeftColumn .__EventSwitch .bootstrap-switch-on {
  background-color: #2f74a9;
}
.__EventLeftColumn .__EventSwitch .bootstrap-switch-on .bootstrap-switch-container {
  background-color: #2f74a9;
}

.__EventToggleText {
  color: #757575;
  margin: 0;
  position: static;
  float: right;
  padding: 2px 10px 0 0;
  text-transform: uppercase;
  font-size: 14px;
}

.__EventMediaContainer {
  margin-bottom: 20px;
  max-height: 440px;
  overflow: auto;
}

.__EventAddMediaButton {
  background: url(/event/media/images/img_camera.png) no-repeat center center transparent;
}

.__EventDescTabMedia {
  font-size: 16px;
  line-height: 23px;
}

.__EventCopyrightInfoText {
  display: none;
  font-size: 13px;
}

.__EventSideMenu button[value="1"] {
  border: none;
  background: url(/event/media/images/img_event-published.png) no-repeat transparent;
}

.__EventSideMenu button[value="0"] {
  border: none;
  background: url(/event/media/images/img_event-unpublished.png) no-repeat transparent;
}

.__EventSideMenu button[value="2"] {
  border: none;
  background: url(/event/media/images/img_event-terminate.png) no-repeat left 5px top 6px transparent;
}

.__EventDeleteLocationButton,
.__EventDeleteOrganisationButton {
  background-image: url(/event/media/images/img_close-event.png);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #EDF4D8;
  border: none;
  position: absolute;
  right: 8px;
  top: 4px;
  display: none;
}

.__EventNoContentAvailable {
  margin: 34px auto 0;
  width: 91.5%;
}
.__EventNoContentAvailable .__EventLeftColumn {
  margin-top: 0;
}
.__EventNoContentAvailable .__EventRightColumn {
  position: absolute;
  bottom: 25px;
  right: 0px;
  padding: 0 4%;
  margin-bottom: 0;
}

.__EventNextTabButton, .__EventSaveButton {
  bottom: 25px;
  position: absolute;
  right: 5%;
  width: 40%;
}
.__EventNextTabButton:hover, .__EventSaveButton:hover {
  background-color: #23527c;
}

.__EventDescriptionField {
  height: 17em;
  resize: vertical;
  font-size: 0.8em;
  padding-left: 1em;
}
.__EventDescriptionField#Description {
  height: 35em;
}

.__EventWindow .__EventContainer .__EventStatus {
  display: inline-block;
  width: 5px;
  height: 36px;
  float: left;
  margin-right: 5px;
}

.__EventWindow .__AC_button {
  display: block;
}

.__EventWindow .__AC_position {
  z-index: 100;
}

.__EventNewAddressPopUp {
  position: absolute;
  top: -20px;
  left: -2.5%;
  background-color: #fff;
  z-index: 10;
  padding: 10px;
  border: 1px solid #b5b5b5;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.75);
  width: 107.5%;
}

.__EventNewAddressPopUp button {
  cursor: pointer;
  border-color: #456771;
  width: 50px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  padding: 5px;
  font-size: 11px;
  background-color: #fcfcf9;
  background-image: linear-gradient(bottom, rgb(238, 238, 238) 15%, rgb(218, 218, 218) 45%, rgb(238, 238, 238) 85%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.15, rgb(246, 246, 239)), color-stop(0.85, rgb(255, 255, 255)));
  background-image: -webkit-linear-gradient(bottom, rgb(246, 246, 239) 15%, rgb(255, 255, 255) 85%);
  background-image: -moz-linear-gradient(bottom, rgb(246, 246, 239) 15%, rgb(255, 255, 255) 85%);
  background-image: -ms-linear-gradient(bottom, rgb(246, 246, 239) 15%, rgb(255, 255, 255) 85%);
  background-image: -o-linear-gradient(bottom, rgb(246, 246, 239) 15%, rgb(255, 255, 255) 85%);
  font-weight: bold;
  border: 1px solid rgb(189, 190, 178);
  -moz-box-shadow: 0 0 5px rgb(189, 190, 178);
  -webkit-box-shadow: 0 0 5px rgb(189, 190, 178);
  line-height: 250%;
  -moz-border-radius: 2px 2px 2px 2px;
  -webkit-border-radius: 2px 2px 2px 2px;
  border-radius: 2px 2px 2px 2px;
  cursor: pointer;
  float: right;
}

.__EventNewAddressSave {
  background-image: url(/module/lib/framework/images/edit_save_icon.png) !important;
}

.__EventNewAddressCancel {
  background-image: url(/module/lib/framework/images/edit_close_icon.png) !important;
  margin-right: 10px;
}

.__EventNewAddressHeader {
  font-size: 0.8em;
}

/* datepicker */
.datepick a {
  text-decoration: none;
}

.datepick td,
.datepick th {
  text-align: center;
  width: 40px;
}

.datepick {
  width: 100% !important;
}

body.body_dp_event_modul > .datepick-popup.dp_event_modul {
  color: #2f74a9;
  z-index: 9999999;
  background-color: #f7f7f7;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.39) !important;
  padding: 10px;
  width: 320px;
  border: 2px solid #adabab;
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 14px;
  line-height: 1.42857143;
  -moz-osx-font-smoothing: auto;
  margin-top: 5px;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul a {
  color: #2f74a9;
  -moz-osx-font-smoothing: auto;
  padding: 2px 5px !important;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul a:hover {
  color: #23527c;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul a.datepick-selected {
  font-weight: 600;
  border: 2px solid #ff0000 !important;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul a.datepick-today {
  color: #000 !important;
  border: 0 !important;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul a,
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick thead {
  font-size: 14px !important;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick {
  background-color: transparent;
  padding: 0;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-nav {
  position: relative;
  margin-bottom: 4px;
  height: inherit;
  padding: 0 !important;
  width: inherit;
  top: inherit;
  display: block;
  left: inherit;
  transform: inherit;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-nav .datepick-cmd-today {
  text-align: center;
  display: block;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-nav .datepick-cmd-prev {
  position: absolute;
  top: 0;
  left: 0;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-nav .datepick-cmd-next {
  position: absolute;
  top: 0;
  right: 0;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-nav a.datepick-cmd {
  margin: 0;
  width: auto;
  height: auto;
  text-indent: 0;
  background-image: none;
  transform: rotate(0);
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-nav a.datepick-cmd.datepick-cmd-today {
  display: block;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row {
  padding: 0;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row .datepick-month .datepick-month-header {
  width: 100%;
  display: flex;
  margin: 0 0 8px 0;
  padding: 0 8px;
  text-align: left;
  margin-top: 0 !important;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row .datepick-month .datepick-month-header select {
  max-width: initial;
  font-size: 14px;
  line-height: 14px;
  text-align: left;
  background: transparent;
  border: 1px solid #D4D4C7;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  height: auto;
  border-radius: 1px;
  padding: 6px 7px 6px 12px;
  margin: 0;
  text-transform: none;
  color: #2f74a9 !important;
  font-family: Helvetica, Arial, sans-serif !important;
  appearance: auto;
  font-weight: normal;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row .datepick-month .datepick-month-header select:nth-child(1) {
  margin-right: 5px;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row .datepick-month .datepick-month-header select:nth-child(2) {
  max-width: fit-content;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row .datepick-month .datepick-month-header select:hover {
  text-decoration: none;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row th {
  text-align: center;
  font-weight: 600;
  padding-bottom: 0;
  color: #2f74a9;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row td {
  line-height: inherit;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row td a {
  color: #2f74a9;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row td a:not(.datepick-selected) {
  border-bottom: 0;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-month-row td a:not(.datepick-selected):hover {
  color: #23527c;
  border-bottom: 2px #2f74a9 solid;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-ctrl {
  margin-top: 10px;
  position: relative;
}
body.body_dp_event_modul > .datepick-popup.dp_event_modul .datepick .datepick-ctrl .datepick-cmd {
  display: block;
  margin: 0;
  text-indent: inherit;
  width: inherit;
  height: inherit;
  background-image: none;
}

.datepick-popup table {
  width: 100%;
}

.datepick-cmd-clear {
  float: left;
}

.datepick-cmd-close {
  float: right;
}

.__EventDatepickContainer {
  position: relative;
}

.datepick-trigger {
  position: absolute;
  top: 7px;
  right: 11px;
  width: 22px;
  height: 22px;
  background-image: url(/event/media/images/calendar_blue.png);
  cursor: pointer;
}

.__EventNewAddressPopUp .__EventInputErrorInfo {
  display: none;
  color: red;
  font-size: 0.8em;
}

.__EventNewAddressPopUp .__CbUiInputError + .__EventInputErrorInfo {
  display: block;
}

.__EventWindow .list-prefix,
.__EventWindow .__EventResponsiveMenuBtn {
  display: none;
}

select.__EventNewAddressCategory,
select.__EventNewAddressOrganiserLocationType {
  padding-left: 13px;
  padding-top: 0;
}

/**  START  resolve conficts with default.css from module */
.__EventWindow .list-prefix,
.__EventWindow .__EventResponsiveMenuBtn {
  display: none;
}
.__EventWindow .__EventContainer td {
  color: #aaa;
  border-bottom: 1px solid #cccccc;
  vertical-align: middle;
  font-size: 16px !important;
  letter-spacing: 0 !important;
}
.__EventWindow .__EventDetailWindowButton {
  width: 45%;
  padding: 16px 20px;
  margin-top: 39px;
  transition: background-color 0.2s ease-in-out;
  outline: none;
}
.__EventWindow .__EventNextTabButton {
  margin-top: 20px;
  bottom: 25px;
}
.__EventWindow .__EventNextTabButton,
.__EventWindow .__EventSaveButton {
  letter-spacing: 0.15em;
  transition: background-color 0.2s ease-in-out;
  outline: none;
  letter-spacing: 0.15em;
  font-size: 16px !important;
}
.__EventWindow .__EventNextTabButton span,
.__EventWindow .__EventSaveButton span {
  color: white;
}
.__EventWindow .__EventTabFooter .__EventExpertModeBtn,
.__EventWindow #__EventTabMyOverview .__EventExpertModeBtn {
  padding: 14px 14px;
  outline: none;
  transition: all 0.2s ease-in-out;
}
.__EventWindow .__EventTabFooter {
  padding-left: 40px;
  padding-right: 40px;
  font-size: 14px;
}
.__EventWindow .__EventTabFooter .__EventDetailWindowButton,
.__EventWindow .__EventTabFooter .__EventExpertModeBtn {
  font-size: 14px !important;
}

.__EventWindow.__CbUiFrame {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 1px;
}
.__EventWindow.__CbUiFrame a {
  color: #2f74a9;
}
.__EventWindow #__EventDetailForm,
.__EventWindow #__EventTabMyOverview {
  font-size: 16px !important;
}

.__EventWindow button.__CbUiCloseButton.__EventWindowCloseButton {
  top: 0;
  right: 0;
}

/**  END  resolve conficts with default.css from module */
@media only screen and (max-width: 767px) {
  .__EventWindow .__EventPaddedBoxBg {
    display: none;
  }
  .__EventWindow .__EventRightColumn {
    margin-top: 0;
  }
  .__EventWindow .__EventLeftColumn .__EventSwitch {
    margin: 30px 0;
  }
  .__EventWindow .__EventWindowHeader {
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .__EventWindow .__EventTabButton {
    display: block;
    border: none;
  }
  .__EventWindow .__EventActiveTab {
    background-color: transparent;
  }
  .__EventWindow .__EventWindowHeader {
    background-color: #f7f7f7;
    border-bottom: 1px solid #c0c0c0;
  }
  .__EventWindow .__EventWindowHeader button.__EventTabButton,
  .__EventWindow .__EventWindowHeader button.__EventTabButton.active {
    border: none;
    background: transparent;
    height: 40px;
  }
  .__EventWindow .__EventTabButton:not(.active) {
    display: none;
  }
  .__EventWindow .__EventTabButton:not(:empty) {
    min-height: 0;
    box-sizing: border-box;
  }
  .__EventWindow .__EventTabButton .list-prefix,
  .__EventWindow .__EventResponsiveMenuBtn {
    display: inline-block;
  }
  .__EventWindow .__EventResponsiveMenuBtn {
    background: transparent url("/event/media/images/toggle_view_big_list_icon.png") no-repeat scroll center center/contain;
    cursor: pointer;
    height: 20px;
    position: absolute;
    right: 115px;
    top: 15px;
    width: 20px;
    z-index: 10;
  }
  .__EventWindow .__EventResponsiveMenuBtn.collapsed {
    background-image: url("/event/media/images/toggle_view_big_list_icon.png");
  }
  .__EventWindow .__EventResponsiveMenuBtn.open {
    background-image: url("/event/media/images/toggle_view_big_list_icon_grey.png");
  }
  .__EventWindow .__EventWindowHeader .__EventOverviewWindowButton {
    position: absolute;
    right: 0px;
    top: 0;
    height: 51px;
    padding: 10px;
    margin: 0;
    border-left: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
  }
  .__EventWindow .__EventWindowHeader .__EventWindowCloseButton {
    border: none;
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-left: 1px solid #c0c0c0;
  }
  .__EventWindow .__EventTabFooter .__EventDetailWindowButton {
    width: 100%;
    margin-top: 20px;
  }
  .__EventWindow .__EventTab .__EventSaveButton,
  .__EventWindow .__EventTab .__EventNextTabButton {
    width: 90%;
  }
  .__EventTab {
    padding-bottom: 90px;
  }
  .__EventWindow .show-tab {
    display: block !important;
  }
  .__EventWindow .hide-tab {
    display: none !important;
  }
}
/* @todo: new event window css should be merged here */
.__EventWindow {
  background-color: #fff;
  width: 930px;
  border: 3px solid #ffffff;
  border-radius: 0px;
  box-shadow: 0px 1px 17px 0px rgba(50, 50, 50, 0.83) !important;
}

.__EventWindow .__EventContainer {
  margin: 40px auto 40px;
  width: 91.5%;
  border-collapse: collapse;
  font-size: 15px;
}

.__EventWindow .__EventContainer th,
.__EventWindow .__EventContainer td {
  font-weight: normal;
}

.__EventWindow .__EventContainer th {
  color: #ccc;
  text-align: left;
}

.__EventWindow .__EventContainer td {
  color: #aaa;
  border-bottom: 1px solid #cccccc;
}

.__EventWindow .__EventContainer tbody td {
  color: #808080;
}

.__EventWindow .__EventContainer .__EventSideMenu {
  margin: 0;
  padding: 10px;
}

.__EventWindow .__EventContainer .__EventSideMenu li {
  margin-bottom: 10px;
  padding-left: 0;
}
.__EventWindow .__EventContainer .__EventSideMenu li:before {
  display: none;
}

.__EventStatus.__EventPublished {
  background-color: #00bb00;
}

.__EventStatus.__EventNotPublished {
  background-color: #bb0000;
}

.__EventWindow .__EventPaddedBoxBg {
  background-color: #f7f7f7;
  border-bottom: 1px solid #cccccc;
  height: 63px;
  position: absolute;
  width: 100%;
  z-index: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.__EventWindow .__EventTabFooter {
  padding-left: 40px;
  padding-right: 40px;
}
.__EventWindow .__EventWindowCloseButton, .__EventWindow __EventWindowCbLink {
  border: none;
}
.__EventWindow .__EventWindowHeader {
  padding-left: 36px;
}
.__EventWindow .__EventWindowHeader:after {
  display: none;
}
.__EventWindow .__EventWindowHeader button, .__EventWindow .__EventWindowHeader a {
  position: relative;
  height: 63px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px !important;
}

.__EventWindowHeader .__EventWindowCloseButton {
  background: url("/event/media/images/img_close-black.png") no-repeat scroll center center transparent !important;
  width: 80px;
  border-left: 1px solid #cccccc;
}

.__EventWindowHeader .__EventWindowCbLink {
  display: none;
  /*    background: url("/media/images/icon_cb_small.png") no-repeat scroll center center transparent;*/
  background: url("/event/media/images/icon_cb_small.png") no-repeat scroll center center transparent;
  width: 80px;
  border-left: 1px solid #cccccc;
}

.__EventWindowHeader a.__EventWindowSupportLink {
  float: right;
  line-height: 63px;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 700;
}

.__EventWindowHeader [class~=langLink]:last-of-type {
  margin-right: 10px !important;
  position: relative;
}

.__EventWindowHeader [class~=langLink]:last-of-type::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -7px;
  width: 2px;
  height: 20px;
  background-color: #000;
}

.activeLang.lang_EN .langLinkEN,
.activeLang.lang_DE .langLinkDE {
  color: #000;
  pointer-events: none;
}

.langLink {
  display: none;
}

body.event-standalone .langLink {
  display: block;
}

.__EventWindowHeader .__EventTabButton {
  border-top: none;
  border-right: 1px solid #cccccc;
  border-bottom: none;
  border-left: 1px solid #cccccc;
  color: #c0c0c0;
  margin-right: -1px;
  outline: none;
}

.__EventWindowHeader .__EventTabButton.active {
  background: #ffffff;
  height: 65px;
  margin-top: -1px;
}

.__EventWindowHeader .__EventOverviewWindowButton {
  border: none;
  float: right;
  color: #757575;
  background-color: #efefef;
  padding: 0 4px;
}

.__EventNextTabButton,
.__EventDetailWindowButton,
.__EventExpertModeBtn,
.__EventSaveButton {
  background-color: #2f74a9;
  border: medium none;
  border-radius: 0px;
  color: #ffffff;
  display: block;
  /*    font-weight: bold;*/
  height: auto;
  letter-spacing: 0.3em;
  line-height: 14px;
  min-height: 16px;
  padding: 16px 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s all;
}

.__EventDetailWindowButton {
  width: 45%;
  margin-top: 40px;
  float: right;
}
.__EventDetailWindowButton:hover {
  background-color: #23527c;
}

.__EventExpertModeBtn {
  float: left;
  margin-top: 40px;
  width: 100%;
  height: 46px;
  border: medium solid #2f74a9;
  background-color: transparent;
  color: #2f74a9;
}
.__EventExpertModeBtn:hover {
  border-color: #23527c;
  color: #23527c;
}

.__EventTabFooter .__EventExpertModeBtn {
  width: 45%;
}

.__EventWindow {
  /*
   * We need a separate rule for each vendor prefix
   * otherwise they will be ignored
   */
  /*
   *************************
     OVERVIEW-TAB
   *************************
  */
}
.__EventWindow form#__EventDetailForm .__CbUiText {
  letter-spacing: 0;
}
.__EventWindow form#__EventDetailForm .__CbUiText a {
  color: #2f74a9;
  transition: all 0.4s ease;
  font-weight: normal;
  font-style: normal;
}
.__EventWindow form#__EventDetailForm .__CbUiText a:hover {
  color: #23527c;
  text-decoration: unterline;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn > input {
  border: 2px solid #d0d0d0;
  box-sizing: border-box;
  margin-bottom: 8px;
  padding: 10px 0 10px 20px;
  width: 100%;
  border-radius: 5px;
  display: block;
  height: auto;
  min-height: 16px;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventLeftColumn,
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn {
  padding: 0 5%;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn {
  padding-bottom: 60px;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn input {
  color: #000;
  width: 100%;
  padding: 0.7em 1em !important;
  border-radius: 0px;
  margin-bottom: 13px !important;
  border: 1px solid #b5b5b5;
  font-size: 13px;
  line-height: 18px;
  height: auto;
  background-position: 97% center !important;
  letter-spacing: 0;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn input::placeholder {
  font-size: 14px;
  font-weight: 400 !important;
  letter-spacing: 0;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn .add_keyword_wrapper {
  display: flex;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn .add_keyword_wrapper input {
  flex: 1;
  background-color: #e4eef4;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn .add_keyword_wrapper .add_keyword_button {
  width: 39px;
  height: 39px;
  background-color: #2f74a9;
  font-size: 0;
  margin-left: 8px;
  background-image: url("/event/media/images/icon_check_white.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 25px;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn .add_keyword_wrapper .add_keyword_button:hover {
  background-color: #23527c;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn .__EventRightColumnInner {
  height: fit-content;
  max-height: 470px;
  overflow: auto;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn .__EventRightColumnInner::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventRightColumn .__EventRightColumnInner::-webkit-scrollbar-thumb {
  border-radius: 6px;
  border: 2px solid white; /* Angleichen mit Hintergrundfarbe-nicht transparent! */
  background-color: rgba(0, 0, 0, 0.3);
}
.__EventWindow form#__EventDetailForm .__EventTab .__EventLeftColumn br {
  display: initial;
}
.__EventWindow .__EventRightColumn input::-webkit-input-placeholder {
  color: #c0c0c0;
  font-style: normal;
  font-size: 1.1em;
}
.__EventWindow .__EventRightColumn input:-moz-placeholder { /* Firefox 18- */
  color: #c0c0c0;
  font-style: normal;
  font-size: 1.1em;
}
.__EventWindow .__EventRightColumn input::-moz-placeholder { /* Firefox 19+ */
  color: #c0c0c0;
  font-style: normal;
  font-size: 1.1em;
}
.__EventWindow .__EventRightColumn input:-ms-input-placeholder {
  color: #c0c0c0;
  font-style: normal;
  font-size: 1.1em;
}
.__EventWindow .__EventTabButton[data-target=MyOverview] {
  background: #ffffff;
  color: #383838;
}
.__EventWindow .__EventTabButton.__EventActiveTab {
  color: #383838;
}
.__EventWindow .__EventInputInfo {
  font-size: 13px;
  line-height: 19px;
}
.__EventWindow .__EventDetailWindowButton {
  width: 45%;
  margin-top: 40px;
}
.__EventWindow .__EventNoContentAvailable .__EventDetailWindowButton {
  width: 100%;
}
.__EventWindow .__EventWindowCloseButton,
.__EventWindow .__EventWindowCbLink {
  float: right;
  top: 0;
  right: 0;
}
.__EventWindow .__EventSideMenuButton {
  background: url("/event/media/images/img_table_dropdown.png") repeat scroll center center rgba(0, 0, 0, 0);
  border: medium none;
  height: 21px;
  width: 25px;
}
.__EventWindow .__EventSideMenu button {
  cursor: pointer;
}
.__EventWindow .__EventSideMenu .new-copy {
  border-top: 1px solid #cccccc;
  border-right: none;
  border-bottom: none;
  border-left: none;
  background: transparent;
  padding: 0;
}

.__EventWindow .__EventContainer .__EventHeader td {
  padding-bottom: 9px;
  color: #c0c0c0 !important;
}
.__EventWindow .__EventContainer .__EventHeader td.event-location {
  width: inherit !important;
}
.__EventWindow .__EventContainer .__EventHeader td.selected {
  color: grey;
}
.__EventWindow .__EventContainer .__EventHeader td.selected.asc:after {
  content: " ↑";
}
.__EventWindow .__EventContainer .__EventHeader td.selected.desc:after {
  content: " ↓";
}

.__EventState img,
.__EventState button {
  float: left;
}

.__EventState img {
  visibility: hidden;
}

tr:hover .__EventState img {
  visibility: visible;
}

tr:hover .__EventSideMenuButton {
  background: url("/event/media/images/img_table_dropdown_hover.png") no-repeat scroll center center rgba(0, 0, 0, 0);
  background-size: 18px;
}

.__EventSideMenu button {
  width: 190px;
  height: 30px;
  font-size: 13px;
  padding-bottom: 8px;
  padding-left: 40px;
  text-align: left;
}

.__EventSideMenu button[value="1"] {
  border: none;
  background: url("/event/media/images/img_event-published.png") no-repeat transparent;
}

.__EventSideMenu button[value="0"] {
  border: none;
  background: url("/event/media/images/img_event-unpublished.png") no-repeat transparent;
}

.__EventWindow .__EventResponsiveMenuBtn.collapsed {
  background: transparent url("/event/media/images/toggle_view_big_list_icon.png") no-repeat scroll center center/contain;
}

/*
 *************************
   EVENT-TAB
 *************************
*/
/*
 *************************
   DESCRIPTION-TAB
 *************************
*/
.__EventWindow .styled-select,
.__EventDescriptionField {
  border: 1px solid #b5b5b5;
  border-radius: 0px;
  width: 100%;
}

.__EventDescriptionField#Description {
  resize: none;
  padding: 10px;
}
.__EventDescriptionField#Description::placeholder {
  color: #c0c0c0;
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0;
}

#DescriptionTranslated {
  height: 31em;
  resize: none;
  padding: 10px;
  border: 1px solid #b5b5b5;
  font-size: 0.8em;
  color: #000000;
}
#DescriptionTranslated::placeholder {
  color: #c0c0c0;
  font-style: normal;
  font-size: 1.1em;
}

.__EventWindow .styled-select {
  background: url("/event/media/images/img_table_dropdown_hover.png") no-repeat scroll right 3% center/5% auto rgba(0, 0, 0, 0);
  background-size: 5%;
  color: #000;
  width: 100%;
  height: auto;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  border-radius: 0px;
  margin-bottom: 13px;
  border: 1px solid #b5b5b5;
  font-size: 0.8em;
  cursor: pointer;
}
.__EventWindow .styled-select select {
  cursor: pointer;
  height: initial;
  padding: 0.7em 1em;
}

#dropdown-selectbox-container .styled-select {
  padding: 0.7em 1em;
}

.__EventWindow select {
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left !important;
}

.__EventCheckboxElement {
  float: left;
  position: relative;
  width: 50%;
  margin-bottom: 10px;
}

.__EventCheckboxElement input {
  visibility: hidden;
  width: 15px;
  height: 18px;
  background: #ddd;
  border-radius: 100%;
  position: relative;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.__EventCheckboxElement .__EventCheckboxIndicator {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  position: absolute;
  top: 11px;
  left: 5px;
  z-index: 1;
  background: #fff;
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.__EventCheckboxElement .__EventCheckboxLabel {
  font-size: 12px;
  font-family: "Apex Sans", "Helvetica", "Arial", "sans-serif";
  margin-left: 5px;
  color: rgb(66, 62, 63);
  cursor: pointer;
}

.__EventCheckboxElement input[type=checkbox]:checked + label .__EventCheckboxIndicator {
  background: #757575;
}

.__EventWindow .bootstrap-switch {
  float: right;
}

#lang-button {
  position: absolute;
  top: 100px;
  right: 60px;
}
#lang-button .flag-label {
  background-image: url("/module/lib/location/language_flags/24x17.png");
  width: 24px;
  float: right;
  height: 17px;
  margin-left: 5px;
}
#lang-button .flag-label-pl {
  background-image: url("/module/lib/location/language_flags/24x17.png");
  width: 24px;
  float: right;
  height: 17px;
  margin-left: 5px;
}

.button-event-search {
  width: 33px;
  height: 33px;
  border: 0;
  background: url(/event/media/images/icon_glass_light-grey.svg) no-repeat;
  background-color: #2f74a9;
  background-position: center 7px;
  background-size: 19px;
  border-radius: 1px;
  transition: 0.3s all;
}
.button-event-search:hover {
  background-color: #23527c;
}

.event-search-wrapper {
  position: absolute;
  width: 91.5%;
  height: fit-content;
  top: 95px;
  left: 50%;
  transform: translate(-50%, 0);
  margin: 0 auto;
  z-index: 2;
  background: #fff;
  background-color: rgb(255, 255, 255);
  display: none;
}
.event-search-wrapper input {
  width: 100%;
  padding: 7px;
}
.event-search-wrapper input::placeholder {
  font-size: 0.8em;
}
.event-search-wrapper .__EventDatepickContainer {
  display: none;
  position: relative;
  width: 30%;
  padding-right: 14px;
}
.event-search-wrapper .__EventDatepickContainer:after {
  position: absolute;
  right: 10px;
  top: 0px;
  width: 55px;
  height: 100%;
  pointer-events: none;
  content: "";
  background: url(/event/media/images/img_table_dropdown.png) no-repeat center transparent;
  display: block;
}
.event-search-wrapper .__EventSearchContainer {
  position: relative;
  width: 70%;
  flex-grow: 2;
}
.event-search-wrapper .__EventSearchContainer:after {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 55px;
  height: 100%;
  pointer-events: none;
  content: "";
  background: url(/event/media/images/icon_glass_light-grey.svg) no-repeat center transparent;
  display: block;
}
.event-search-wrapper .__EventSearchContainer input {
  border: 1px solid #D4D4C7;
  height: 39px;
}
.event-search-wrapper .event-search-wrapper-close {
  width: 39px;
  height: 39px;
  background-color: #D4D4C7;
  margin-left: 5px;
  background-image: url(/event/media/images/img_close-black.png);
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 0;
  margin-right: 1px;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s all;
}
.event-search-wrapper .event-search-wrapper-close:hover {
  opacity: 0.8;
}

.events-loader {
  display: none;
  width: 100%;
  max-width: 40px;
  margin: 10px auto;
}
.events-loader.show {
  display: block;
}
.events-loader .loader-6 {
  top: 40px;
  left: -2.5px;
}
.events-loader .loader-6 div {
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: #373434;
}
.events-loader .loader-6 div:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}
.events-loader .loader-6 divide:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}
.events-loader .loader-6 div:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}
.events-loader .loader-6 div:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}

ul#keywords-list {
  margin-bottom: 10px;
  padding: 0;
}
ul#keywords-list li.keyword-list-item {
  display: inline-block;
  background: #2f74a9;
  border-radius: 5px;
  padding: 5px 23px 5px 10px;
  color: #fff;
  min-width: 30px;
  position: relative;
  font-size: 12px;
  margin: 0px 7px 7px 0;
  position: relative;
}
ul#keywords-list li.keyword-list-item button.keword-delete-button {
  background-color: transparent;
  border: none;
  width: 13px;
  height: 10px;
  margin-left: 5px;
  background-image: url(/event/media/images/img_close_cropped.png);
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  cursor: pointer;
  font-size: 0;
  background-size: contain;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translate(0, -50%);
}

.__EventContentAvailable {
  height: inherit;
  overflow-y: inherit;
}
.__EventContentAvailable table.__EventContainer {
  margin: 34px auto 0;
  width: 91.5%;
  border-collapse: collapse;
  font-size: 15px;
  table-layout: fixed;
}
.__EventContentAvailable table.__EventContainer tbody {
  display: block;
  width: 846px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 428px;
  margin-top: 2px;
  padding-bottom: 100px;
}
.__EventContentAvailable table.__EventContainer tbody tr {
  width: 846px;
  display: block;
  height: 39px;
  margin-bottom: 2px;
}
.__EventContentAvailable table.__EventContainer tbody tr td {
  display: inline-block;
  height: 39px;
  text-overflow: ellipsis;
  padding-top: 8px;
}
.__EventContentAvailable table.__EventContainer tbody tr td.event-state-color {
  width: 8.4px;
  padding-top: 0;
}
.__EventContentAvailable table.__EventContainer tbody tr td.__EventDateTime {
  width: 131px;
}
.__EventContentAvailable table.__EventContainer tbody tr td.__EventCity {
  width: 105.6px;
}
.__EventContentAvailable table.__EventContainer tbody tr td.__EventHost {
  width: 202.9px;
}
.__EventContentAvailable table.__EventContainer tbody tr td.__EventTitle {
  width: 236.7px;
}
.__EventContentAvailable table.__EventContainer tbody tr td.__EventType {
  width: 126.8px;
}
.__EventContentAvailable table.__EventContainer tbody tr td.__EventState {
  width: 33.8px;
}

div#styled-select-keywords.hidden {
  display: none;
}

.datepick-popup {
  z-index: 999;
  color: #313131;
  background-color: #b1b1b1;
  padding: 0px;
  width: 320px;
  border: 0px solid #ccc;
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.5);
  padding: 10px;
}
.datepick-popup a {
  color: #313131;
  transition: none;
}
.datepick-popup a:not(.datepick-cmd):hover {
  border-bottom: 2px solid #313131;
  color: #313131;
  text-decoration: none;
  margin-bottom: -2px;
}
.datepick-popup a.datepick-selected:hover {
  margin-bottom: 0;
}
.datepick-popup .datepick .datepick-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
}
.datepick-popup .datepick .datepick-nav .datepick-cmd-today {
  display: none;
}
.datepick-popup .datepick .datepick-month-row {
  margin-bottom: 8px;
}
.datepick-popup .datepick .datepick-month-row .datepick-month-header {
  /*                gap: 12px;*/
  width: 82%;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-top: -28px;
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
  text-align: center;
}
.datepick-popup .datepick .datepick-month-row .datepick-month-header select {
  flex: 1;
}
.datepick-popup .datepick .datepick-month-row .datepick-month-header .datepick-month-year {
  margin-top: -4px;
  text-align-last: initial;
  text-transform: uppercase;
  color: black;
  font-size: 14px;
  letter-spacing: 2px;
  height: 27px;
  background: transparent;
  text-align: center;
  border-radius: 15px;
  -webkit-box-shadow: 0 0px 0px 0px #bdbeb2;
  -moz-box-shadow: 0 0px 0px 0px #bdbeb2;
  box-shadow: 0 0px 0px 0px #bdbeb2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  pointer-events: auto;
  cursor: pointer;
}
.datepick-popup .datepick .datepick-month-row table th {
  text-align: center;
}
.datepick-popup .datepick .datepick-month-row table tbody {
  height: 176px;
}
.datepick-popup .datepick .datepick-month-row table a {
  color: #fff;
  transition: none;
  padding: 2px 1px;
  border-bottom: 0;
}
.datepick-popup .datepick .datepick-month-row table a:hover {
  border-bottom: 1px solid #313131;
  text-decoration: none;
  color: #313131;
  padding: 2px 1px;
}
.datepick-popup .datepick .datepick-month-row table a.datepick-today {
  border-bottom: 1px #fff solid;
}
.datepick-popup .datepick .datepick-month-row table a.datepick-selected {
  color: #313131;
  font-weight: 500;
  background-color: #fff;
  min-width: 30px;
  display: inline-block;
  /*                        &:hover{
                              border-bottom: none;
                              text-decoration: none;
                              pointer-events: none;
                          }*/
}
.datepick-popup .datepick .datepick-ctrl {
  display: none;
}

/*# sourceMappingURL=event_window.css.map */
