:root{
  --sidebar-background-color: #313443;
  --active-sidebar-link-color: #22252e;
  --hover-sidebar-link-color: var(--active-sidebar-link-color);
  --active-link-color: #98d7ec;
  --tooltip-background-color: var(--sidebar-background-color);
}
html,body{
  overflow-x: hidden;
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

.mobile_nav_sticky {
  background: #BB96FF;
  border-radius: 2rem;
  padding: 1rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  z-index: 99;
}
.mobile_nav_sticky_link{
  background: #8C65D8;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.mobile_nav_sticky_link .user-avatar{
  width: 48px;
  height: 48px;
  border-radius: 10rem;
  overflow: hidden;
}
.mobile_nav_sticky_link .user-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.custom-logo img{
  max-height: 2rem;
}
.profile_picture_container{
  display: flex;
  gap: 10px;
}
.sidebar-navigation {
  display: flex;
  min-height: 100vh;
  width: 100px;
  background-color: var(--white_tone_darker);
  float: left;

  ul {
      color: white;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      width: 100%;

      li {
          padding: 28px 10px;
          cursor: pointer;
          transition: all ease-out 120ms;
          list-style: none;
          a{
              text-decoration: none;
              color: #fff;
          }
      }
  }
  .logout_btn{
      background: none;
      border: none;
      padding: 0;
  }
}
dialog::backdrop{
  background-color: rgb(177 119 251 / 60%);
}
.upload_profile_image_popup{
  height: 10rem;

  .upload_profile_image_popup_align{
      display:flex;
      flex-direction:column;
      justify-content: center;
      height: 100%;
  }
  .close_button{
      position: absolute;
      height: 2rem;
      right: .5rem;
      top: .5rem;
  }
  .upload_profile_form{
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }

  .custom-file-label {
      background-color: #6a0dad;
      color: white;
      padding: 10px;
      border-radius: 5px;
      cursor: pointer;
      display: inline-block;
  }
  .custom-file-label:hover {
      background-color: #580c91;
  }
  #file-name {
      margin-left: 10px;
  }
}
.vote-buttons button.disabled {
  background-color: #ddd;
  color: #888;
  cursor: not-allowed;
  opacity: 0.6;
}

.vote-buttons button {
  text-decoration: none;
  margin: 5px;
  padding: 10px;
  width: fit-content;
  background-color: #6c58a8;
  color: #c377fe;
  border-radius: 10rem;
  border: none;
  cursor: pointer;
}

.vote-buttons button:hover {
  opacity: 0.7;
}

.vote-buttons button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.post-card {
  background-color: #4f3c88;
  border-radius: 2rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:1rem;
  position: relative;
}
.post_user_content{
  margin-top:0.5rem;
  color:#000000;
}
  
.vote-buttons{
  display: flex;
  flex-direction: column;
  width: 5%;
  align-items: center;
}
.vote-buttons p {
  font-size: 16px;
  margin: 0;
  color:#fff;
  text-align: center;
}
.party_info{
  border-radius: .5rem;
  width: 95%;
  display:flex;
  justify-content: space-between;
  text-decoration: none;
}
.post-card h2 {
  font-size: 20px;
  margin: 0;
  width: fit-content;
  padding: 1rem;
  border-radius: 0rem 1rem 1rem 0;
  color: #ffffff;
}
/* .post-card h2.first-place{
  background: #FFFF3F;
}
.post-card h2.second-place{
  background: #A5A5A5;
}
.post-card h2.third-place{
  background: #DAA566;
} */
.party_info p{
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.party_info_details {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0 1rem;
}
.party_info_details svg path {
  stroke: #09ff9a;
}
.vote-buttons{
  flex: 1;
}
@media(orientation: portrait){
  .vote-buttons{
    width: 20%;
  }
  .party_info{
    width:80%;
  }
}
/*******  globals *********/
::selection {
  background: var(--main_colour);
  -webkit-text-fill-color: var(--white_tone);
}
@media screen and (max-width: 600px) {
  #wpadminbar {
      position: fixed !important;
  }
}
body{
  background-color: #1D1A31;
  margin: 0;
  font-family: system-ui;
}
body h2, body h3, body h3, body h4, body h5, body h6{
  color: #000;
  font-weight: 800;
  margin: 2rem 0 1rem 0;
  line-height: 1;
}
body h2{
  font-size: 2.5rem;
}
body h3{
  font-size: 1.6rem;
}
body h4{
  font-size: 1.4rem;
}
body h5{
  font-size: 1.3rem;
}
body h6{
  font-size: 1.2rem;
}
@media (orientation: portrait){
  body h2{
      font-size: 2rem;
  }
  body h3{
      font-size: 1.4rem;
  }
  body h4{
      font-size: 1.2rem;
  }
  body h5{
      font-size: 1.1rem;
  }
  body h6{
      font-size: 1.1rem;
  }
}
.text-primary{
  color: var(--main_colour);
}
.custom-logo img {
  height: auto;
  max-height: 3rem;
}
/* Custom Buttons */
.cta_button{
  background: var(--main_colour);
  color: var(--white_tone);
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: flex!important;
  align-items: center;
  gap: 0.35rem;
  border-radius: 4px;
  width: fit-content;
  padding: 0.75rem 1rem;
  --tw-bg-opacity: 1;
  --tw-text-opacity: 1;
  transition-duration: 1s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  height: 2rem;
  position: relative;
}
.cta_number_msg{
  font-size: 24px;
  font-weight: bold;
}
.cta_button_text{
  position: relative;
  z-index: 1;
}
.cta_number a{
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}
.cta_number_phone{
  color: var(--black_tone);
}
.cta_button_primary {
  background-color: var(--main_colour);
  color: var(--white_tone);
  fill: var(--white_tone);
}
.cta_button_primary:before {
  --tw-bg-opacity: 1;
  background-color: var(--main_colour_darker);
  content: "";
  height: 0;
  left: 0;
  outline: none;
  position: absolute;
  top: 0;
  transition: all .8s ease;
  width: 0;
  z-index: 1;
}
.cta_button_primary:hover {
  --tw-shadow: 4px 4px #ffae35;
  --tw-shadow-colored: 4px 4px;
}
.cta_button_primary:hover:before {
  --tw-text-opacity: 1;
  border-radius: 50px;
  color: rgb(255 255 255);
  height: 30px;
  transform: scale(36.5);
  width: 30px;
}
.cta_button_secondary {
  background-color: var(--secondary_colour);
  color: var(--white_tone);
  fill: var(--main_colour);
  border: 1px solid var(--secondary_colour);
}
.cta_button_secondary:before {
  --tw-bg-opacity: 1;
  background-color: var(--main_colour);
  content: "";
  height: 0;
  left: 0;
  outline: none;
  position: absolute;
  top: 0;
  transition: all .8s ease;
  width: 0;
  z-index: 1;
}
.cta_button_secondary:hover {
  --tw-shadow: 4px 4px #ffae35;
  --tw-shadow-colored: 4px 4px;
  color: var(--white_tone);
}
.cta_button .cta_button_secondary {
  transition: fill 1.5s ease;
}
.cta_button:hover .cta_button_secondary{
  fill: var(--white_tone);
}
.cta_button_secondary:hover:before {
  --tw-text-opacity: 1;
  border-radius: 50px;
  color: var(--white_tone);
  height: 30px;
  transform: scale(36.5);
  width: 30px;
}
.nav_links{
  background:#32363f;
}
/* Custom Buttons */
.cta_buttons_nav{
  display: flex;
  align-items: center;
}
.grey_btn{
  background:#484848;
  color: #fff;
  border-radius: 10rem;
  padding: .5rem 1rem;
  margin: .5rem;
  cursor: pointer;
  border:none;
}
.purple_btn{
  background: var(--main_colour);
  color: #fff;
  border-radius: 10rem;
  padding: .5rem 1rem;
  cursor: pointer;
  border:none;
}
/* background colours */
.light{
    background-color: var(--white_tone);
}
.medium{
    background-color: var(--light_grey_tone);
}
.dark{
    background-color: var(--black_tone);
}

/* spacing */
.small-padding{
    padding: 1.5rem 0;
}
.medium-padding{
    padding: 2.5rem 0;
}
.large-padding{
    padding: 3.5rem 0;
}

/* Contact Form */
.wpcf7{
  width: 40vw;
}

.wpcf7-form input, .wpcf7-form textarea, .wpcf7-form select,.wpcf7-form input[type="submit"] {
    border-radius: 8px;
    padding: 1rem;
    border: none;
    width:100%;
    box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}
.wpcf7-form input, .wpcf7-form textarea, .wpcf7-form select {
  background: var(--white_tone);
  color: var(--black_tone);
  box-sizing: border-box;
  border: solid 1px #cfcfcf;
  max-height: 3rem;
}

/* Profile styles moved from author.php (namespaced with ph- prefix) */
.profile-header { gap:1rem; align-items:center;}
.profile-avatar img{ border-radius:50%; width:96px; height:96px; }
.profile-meta { flex:1; }
.ph-profile-tags { display:flex; gap:0.5rem; flex-wrap:wrap; margin-top:0.5rem; }
.ph-profile-tag { background:#f1f1f1; border-radius:999px; padding:6px 10px; font-size:0.85rem; display:inline-flex; align-items:center; gap:6px; }
.ph-profile-tag .ph-tag-remove { font-weight:700; color:#900; }
.ph-profile-edit { margin-top:0.75rem; }
.ph-profile-edit textarea{ width:100%; min-height:80px; padding:0.6rem; border-radius:0.5rem; border:1px solid #e0e0e0; }
.ph-profile-edit .ph-tags-input { display:flex; gap:0.5rem; align-items:center; margin-top:0.5rem; position:relative; }
.ph-profile-edit .ph-tags-input input { flex:1; padding:0.45rem; border:1px solid #e0e0e0; border-radius:0.5rem; }
.ph-emoji-picker { right:0; top:calc(100% + 6px); z-index:60; background:#fff; border:1px solid #e8e8e8; padding:8px; border-radius:8px; display:flex; flex-wrap:wrap; gap:6px; box-shadow:0 8px 20px rgba(0,0,0,0.08); max-width:260px; }
.ph-emoji-btn { border:none; background:transparent; cursor:pointer; font-size:18px; padding:6px; border-radius:6px; }
.ph-emoji-btn:hover { background:#f5f5f5; }
.follow-btn { padding:0.5rem 1rem; border-radius:0.5rem; border:none; cursor:pointer; }
.follow-btn.following { background:#f5f5f5; }
.posts-list { margin-top:1rem; display:flex; flex-direction:column; gap:0.75rem; }
.small-list { display:flex; gap:0.5rem; align-items:center; flex-wrap:wrap; }
.small-list a { display:flex; align-items:center; gap:0.5rem; text-decoration:none; color:inherit; }
.author_info{display:grid;grid-template-columns:1fr 320px;gap:1rem;margin-top:1rem;}

.profile-page { width: 50vw; margin: 0 auto; padding: 0; }
@media(orientation: portrait){
  .profile-page{
    width: auto;
    padding: .5rem;
  }
  .author_info{
    grid-template-columns:1fr;
  }
}
/* End profile styles */

/* Badges next to author name (smaller) */
.ph-profile-badges .ph-profile-tag, #ph-profile-badges .ph-profile-tag { font-size:0.78rem; padding:4px 8px; }
.wpcf7-form input[type="submit"]{
  background: var(--secondary_colour);
  color: var(--white_tone);
  cursor: pointer;
}

.wpcf7-form label{
    color: var(--white_tone);
    font-weight: 700;
}

@media(orientation: portrait){
    .wpcf7{
        width: 100%;
    }
}

/* Contact Form */
/* Fixed width container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* Responsive fixed width container for small screens */
@media (min-width: 576px) {
  .container {
      max-width: 540px;
  }
}

/* Responsive fixed width container for medium screens */
@media (min-width: 768px) {
  .container {
      max-width: 720px;
  }
}

/* Responsive fixed width container for large screens */
@media (min-width: 992px) {
  .container {
      max-width: 1000px;
  }
}

/* Responsive fixed width container for extra large screens */
@media (min-width: 1200px) {
  .container {
      max-width: 1100px;
  }
}
/* Responsive fixed width container for extra large screens */
@media (min-width: 1400px) {
  .container {
      max-width: 1300px;
  }
}
/* Responsive fixed width container for extra large screens */
@media (min-width: 1600px) {
  .container {
      max-width: 1500px;
  }
}
/* Responsive fixed width container for extra large screens */
@media (min-width: 1800px) {
  .container {
      max-width: 1700px;
  }
}
.menu-item a{
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.img-auto{
  width:100%;
  height:auto;
}
.p-1{
  padding:1rem;
}
.py-1{
  padding: 1rem 0;
}
.d-flex{
  display:flex;
}
.flex-end{
  justify-content: flex-end;
}
.align-center{
  align-items: center;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.d-grid{
  display:grid;
}
.grid-4{
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-5{
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.text-center{
  text-align:center;
}
.text-right{
  text-align:right;
}
.text-white{
  color:#fff;
}
.gap-_25{
  gap: 0.25rem;
}
.gap-1{
  gap:1rem;
}
.gap-2{
  gap:2rem;
}
/*******  top-bar *********/
.top-bar{
  background-color: #000;
}
.link-header{
  color:#fff;
  text-decoration: none;
}
.link-header:hover{
  color: #d42127;
}
.social-icon{
  background: #d42127;
  border-radius: 5px;
  padding: 8px;
}
.social-icon:hover{
  background: #fff;
  border-radius: 5px;
  padding: 8px;
}
.social-icon:hover svg {
  fill: #d42127;
}
/*******  navbar-bar *********/
.navbar-bar{
  position: relative;
  z-index: 90;
}

.top-details li{
  list-style: none;
}
/*******  navigation bar *********/
.navigation .user-avatar{
  overflow: hidden;
  border-radius: 10rem;
  width: 32px;
  height: 32px;
}
.navigation .user-avatar img{
  object-fit: cover;
}

.nav-class{
  display:flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}
.nav-class ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.ast-menu-toggle{
  display:none;
}
.icon-arrow{
  display:none;
}
.menu-item-has-children .sub-menu {
  display: none;
  transition: display 0.5s ease-in-out;
  list-style: none;
  padding: 0;
  background: var(--white_tone);
  border-radius:1rem;
}
.menu-item-has-children:hover .sub-menu {
  display: block;
  position: absolute;
  transition-duration: 1s;
}
.menu-item-has-children div > a:after{
  content: '⌵';
  padding: 0 0 0 0.5rem;
}
.sub-menu-toggle{
  display:none;
}
.menu-item-has-children .icon-arrow{
  display:unset;
}
.navigation ul.nav-class {
  display:flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.navigation li a {
  padding:1rem;
  display:block;
  color:var(--white_tone);
  font-weight: bold;
  font-size:1rem;
  text-decoration: none;
}
.navigation li a:hover {
  color: var(--main_colour);
}
.navigation ul.nav-class li ul.sub-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 15%) 7px 8px 8px 0px;
  padding: 0;
  z-index:999;
  overflow:hidden;
}
.navigation ul.nav-class li ul.sub-menu li {
  display: block;
}
.navigation ul.nav-class li:hover > ul.sub-menu {
  display: block;
}
.menu-item-has-children .sub-menu li a{
  padding:1rem;
  text-decoration: none;
  display:block;
  color: var(--main_colour);
  min-width: 10rem;
  text-align:left;
}
.menu-item-has-children .sub-menu li a:hover{
  background: var(--main_colour);
  color: var(--white_tone);
  transition-duration: 0.5s;
}
.navigation .menu-item-has-children .sub-menu li a:hover {
  background: var(--main_colour);
  color: var(--white_tone);
}
.head-book{
  color: #fff !important;
  background: linear-gradient(-45deg, #d42127, #000000, #d42127, #000000);
  background-size: 400% 400%;
  animation: gradient 8s ease infinite;
}
.head-book a{
  color: #fff !important;
}
@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}
.desktop_none{
  display:none;
}
.heading_raw h1, .heading_raw h2,.heading_raw h3,.heading_raw h4,.heading_raw h5,.heading_raw h6{
  margin: 0;
  line-height: 1;
}
@media(orientation: portrait){
  .menu-item-has-children div > a:after{
    display:none;
  }
  .sub-menu-toggle{
    display:block;
    background: var(--black_tone);
    color: var(--white_tone);
    border: none;
    border-radius: 1rem;
    padding: 0.25rem 0.5rem;
  }
  .menu_item_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navigation ul.nav-class li ul.sub-menu{
    position: unset;
    background-color: #ececec;
    box-shadow: rgb(196 202 198) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  }
  .nav-class{
    flex-direction: column;
  }
  .nav-class ul{
    flex-direction: column;
    padding: 0;
  }
  .navigation li a{
    color: var(--main_colour);
  }
  .navigation{
    display:none;
  }
  .mobile_nav{
    padding: 0.7rem;
  }
  .button_mb{
    background: var(--black_tone);
    color:var(--white_tone);
    border: none;
    padding: 0.5rem 1rem;
    border-radius:1rem;
  }
  .navigation ul.nav-class{
    flex-direction: column;
  }
  .navigation.active {
    display: block;
    position: absolute;
    right: 0;
    z-index: 1;
    width: 100%;
    top: 4rem;
    background: var(--white_tone);
  }
  .mb_none{
    display:none;
  }
  .desktop_none{
    display:block;
  }
  .grid-1_mb{
    grid-template-columns: 1fr;
  }
  .p-0_mb{
    padding:0;
  }
  .m-0_mb{
    margin:0;
  }
}
.modular_theme_footer {
  font-size: .875rem;
  background-color: #030501;
  padding: 28px 0;
}
.footer_logo{
  display:flex;
  align-items: center;
}
.return_to_top{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  width: 100% !important;
}
#return-to-top {
  position: fixed;
  bottom: 95px;
  right: 13px;
  z-index: 9;
  background: #1094c4;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.footer_row{
  justify-content: space-between;
  align-items: center !important;
  display: flex;
  flex-wrap: wrap;
}
.footer_info_{
  color: #fff;
  gap: 0.5rem;
  justify-content: center !important;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
  margin-right: calc(-0.5* var(--bs-gutter-x));
  margin-left: calc(-0.5* var(--bs-gutter-x));
}
.logo_footer_wrap{
  display:flex;
  justify-content: space-between;
}
.footer-background {
  background: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.footer-background img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: repeat;
}
.footer-menu-list .menu-item a, .site-footer-section a{
  color: #707070;
  text-decoration: none;
}
.footer-menu-list li{
  list-style: none;
}
.site-footer {
  font-family: system-ui;
  background-color: var(--white_tone_darker);
}
.z-1{
  position:relative;
  z-index:1;
}
.footer-bottom{
  background-color: var(--main_colour);
  font-family: system-ui;
}
.widget-title-1 {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: var(--main_colour) !important;
  padding-left: 0px !important;
}
.site-primary-footer-wrap{
  padding: 3rem;
}
.site-primary-footer-wrap a {
  color: #5d5e5e;
  text-decoration: none;
}
.site-primary-footer-wrap a:hover {
  color: #D42127 !important;
}
.site-footer .menu-item{
  position: relative;
  padding: 0.5rem 0;
  list-style:none;
}
.site-footer .menu-item:before {
  content: '>';
  display: block;
  font-family: cursive;
  position: absolute;
  left: -1rem;
  font-weight: 900;
  color: var(--main_colour);
}
.footer-icon {
  background: var(--main_colour);
  box-shadow: 4px 4px 0 0 #000000;
  border-radius: 5px;
  height: 2rem;
  width: 2rem;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-ques {
  background: #3A3A3A;
  padding: 50px 35px;
  outline: 1px dashed #888;
  outline-offset: -15px;
  text-align: center;
  color: #fff;
  font-weight:bold;
}
.footer-ques:hover {
  background: #D42127;
  transition: 0.5s;
  outline-color: #fff !important;
}
.footer-ques a {
  color: #fff;
  font-weight: bold;
}
.footer-ques a:hover {
  color: #000!important;
}
.footer-rec{
  color: white;
  text-align: center;
  font-size: 2rem;
  margin: 0;
}
.footer-payment{
  display:grid;
  grid-template-columns: 1fr 1fr;
}
.footer-payment li{
  list-style:none;
}
.footer-payment li img {
  width: 70px;
  height:auto;
  padding-right: 3px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.footer_info{
  color:#000;
  margin:0;
}
.footer-copyright{
  color: #fff;
  font-family: monospace;
}
.grid_footer{
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media(orientation: portrait){
  .footer_row{
    justify-content: center;
  }
  .custom_logo_footer{
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
  .logo_footer_wrap{
    flex-direction: column;
  }
  .grid_footer{
    grid-template-columns: 1fr 1fr;
  }
  .grid_footer div:nth-child(1) {
    grid-column: span 1;
  }
  .grid_footer div:nth-child(2) {
    grid-column: span 1;
  }
  .grid_footer div:nth-child(3) {
    grid-column: span 2;
  }
  .grid_footer div:nth-child(4) {
    grid-column: span 2;
  }
}
.grid-links{
  display: flex;
  justify-content: space-between; 
}
.grid-links a{
  color:var(--main_colour)!important;
}
@media(orientation: portrait){
  .grid-links{flex-direction: column;}
}
.site-main > * {
  margin-top: 0!important;
  margin-bottom: 0!important;
}
::selection {
background-color: var(--main_colour);
color: #fff;
}
input::selection,
textarea::selection,
input::-moz-selection,
textarea::-moz-selection {
background-color: var(--main_colour);
color: #fff; /
}
.blocks-padding{
  padding: 1.5rem 0rem;
}
.banner-img{
  position: absolute;
  margin-right: -60rem;
}
.text-white p,.text-white h1,.text-white h2,.text-white h3,.text-white h4,.text-white h5,.text-white h6{
  color: #fff;
}
.mainh1{
  font-size: 3rem;
  color: #ffffff!important;
  font-weight: bold;
  text-shadow: 0 0 5px #32327c, 0 0 5px #32327c, 0 0 5px #32327c, 0 0 5px #32327c, 0 0 5px #32327c;
}
.suburb-banner-section {
  justify-content: center;
}
/* new */
.d-block{
  display:block;
}
.d-flex_newcss{
  display:flex;
}
.d-grid_newcss{
  display: grid;
}
.col-6_newcss{
  width:50%;
}
.front-img {
  position: relative;
}
.img__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-zag{
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.fd-column{
  flex-direction:column;
}
.justify-center_newcss{
  justify-content: center;
}
.align_center_blocks{
  align-items: center;
}
.vthz-center{
  justify-content: center;
  align-items: center;
}
.gap_1{
  gap: 1rem;
}
.gap_3{
  gap: 3rem;
}
.bg-white{
  background-color: #fff;
}
.headings_newcss{
  font-size: 3rem;
}
.headings_small_newcss{
  font-size: 1.6rem;
}
.w-100_newcss{
  width:100%;
}
.flex-1{
  flex: 1;
}
.justify-space-around{
  justify-content: space-around;
}
.b-radius-1{
  border-radius:1rem;
}
.py-2{
  padding: 2rem;
}
.mb_3{
  margin-bottom: 3rem!important;
}
.text-center{
  text-align:center;
}
.order-left{
  flex-direction: row-reverse;
}
.order-right{
  flex-direction: row;
}
.centered-block_img{
  max-height: 10rem;
  overflow: hidden;
}
.front-images-2 {
  flex: 0 0 calc(50% - (5rem * 2) / 3);
}
.front-images-3 {
  flex: 0 0 calc(33.33% - (5rem * 3) / 4);
}
.front-images-4 {
  flex: 0 0 calc(25% - (5rem * 4) / 5);
}
.front-images-5 {
  flex: 0 0 calc(20% - (5rem * 5) / 5);
}
.front-images-6 {
  flex: 0 0 calc(16.6% - (5rem * 6) / 5);
}
@media(max-width: 1600px){
  .banner-img{
      margin-right: -80rem;
  }
}
@media(orientation: portrait){
  .front-images-2,.front-images-3,.front-images-4,.front-images-5,.front-images-6 {
      flex: unset;
  }
  .blocks-padding{
      padding: 0rem;
  } 
  .row_newcss{
      flex-direction: column;
  }
  .fd-column-r_mb{
      flex-direction:column-reverse;
  }
  .flex-d-column_mb{
      flex-direction: column;
  }
  .headings_newcss{
      font-size:2rem;
  }
  .front-hero{
      margin-bottom: unset!important;
      padding-top: unset!important;
  }
  .banner-img{
      position: unset;
      margin-right: unset;
  }
  #colophon .footer-form-section-wrap{
      margin: -50px auto 0;
  }
  .order-left{
      flex-direction: column;
  }
  .order-right{
      flex-direction: column;
  }
  .break-anywhere{
      overflow-wrap: anywhere;
  }
}

.produtor_page .container {
  justify-content: center;
}
.produtor_page .row{
  align-items: flex-start;
}
.events-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #fff;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item:hover {
    background-color: #f5f5f5;
}

.event-item a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    flex-grow: 1;
}

.event-actions {
    display: flex;
    gap: 1rem;
}

.edit-event {
    padding: 0.5rem 1rem;
    background-color: var(--main_colour);
    color: var(--white_tone);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.edit-event:hover {
    background-color: var(--main_colour_darker);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (orientation: portrait) {
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .event-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
.mural_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.profile-comment{
  width: auto;
}