/*Adjust tickets button on mobile*/
@media only screen and (max-width: 820px){
#bs-example-navbar-collapse-1 > ul:nth-child(1) > li:nth-child(6){
    position: relative !important;
    right: 0px !important;
    order: 1;
}
 #bs-example-navbar-collapse-1 > ul:nth-child(1){
       display: flex;
    flex-direction: column;
}
}

/*Adding text to agenda mario.r@bizzabo.com ZD:188413*/
body > div.react-main.footer-padding-confirmation > div > div > div.agenda-view.session-list-view.top-agenda-margin-single.agenda-custom-css.agenda-day-selector.agenda-view--search.row > div.container::after{
    content: '"Please note that this is a preliminary agenda and is subject to change."';
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 5px 5px 5px 0;
}

body > div.react-main.footer-padding-confirmation > div > div > div.agenda-view.session-list-view.agenda-custom-css.list.row > div{
    margin-top: 27px;
}

/*----End---- ZD:188413*/
/*specific pages container*/
.home-custom-css{}
.community-custom-css{}
.agenda-custom-css{}
.speakers-custom-css{}

/*main container of each section*/
.main-app-container {}

/*
call-to-action buttons e.g:
Register, Join The Community etc
*/
.btn-register {}

/*Top navigation bar container*/
.template-nav {}

/*Top navigation bar items container*/
#bs-example-navbar-collapse-1 {}

/*social share buttons container*/
.social-share-button {}

/*social share buttons per social network*/
.social-share-button.facebook {}
.social-share-button.twitter {}
.social-share-button.linkedin {}
.social-share-button.google {}



/*Update text to Program Streams on Agenda @Bizzabo Support (Radia) ZD #176960 */
#sessions-filter > span.hidden-xs.margin-horizontal-small.filter-label {
    font-size: 0px;
}

#sessions-filter > span.hidden-xs.margin-horizontal-small.filter-label:after {
    font-size: 12px;
    content: "Program Streams" !important;
}
/* register cta on the nav bar/
/*Changing navbar tabs text mario.r@bizzabo.com ZD:182907*/
.navColors .color-3, .navColors .color-3.custom-color{
  text-transform: capitalize;
  font-weight: 900;
}

#bs-example-navbar-collapse-1 > ul:nth-child(1) > li:nth-child(6){
    position: absolute;
    right: 119px;
}

#bs-example-navbar-collapse-1 > ul:nth-child(1) > li:nth-child(6) > a > div {
    background-color: #fff;  color: #e5007e;  font-weight: 900; border: 2px solid #e5007e ;  padding: 16px 24px 14px 24px;  display: inline;
   text-align: center;  text-decoration: none;   border-radius: 88px;  
   
  }
  
  @media only screen and (min-width: 1025px) and (max-width: 1790px)  {
    #bs-example-navbar-collapse-1 > ul:nth-child(1) > li:nth-child(6) > a > div {
      margin-left: 60px;
    }
  }
  
  #bs-example-navbar-collapse-1 > ul:nth-child(1) > li:nth-child(6) > a > div:hover {
    background-color: #e5007e;  color: #fff!important;
  }
  
/* gallery dalprato@teamworkhospitality.com */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 10px;
    padding: 10px;
    background-color: #f0f0f0;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery a:hover img {
    transform: scale(1.05);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-inner {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    position: relative;
}

.popup-inner img {
    max-width: 100%;
    height: auto;
    display: block;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    padding: 5px;
    line-height: 1;
}
