body,h1,h2,h3,h4,h5,h6 {font-family: "Poppins", sans-serif}

body, html {
  height: 100%;
  line-height: 1.5;
  max-width: 100%;
}

fieldset {
    border: 0 none;
}

table {
    width:100%;
    text-align:right;
    border-collapse: collapse;
    /* table-layout: fixed; */
}
thead tr th:first-child,
tbody tr td:first-child {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}
/* th {
    background-color: #ccc;
} */
tr{
    transition: all 200ms ease-in-out;
    border-bottom: 0.5px solid #ccc
}
.small_field {
    font-size: 0.7em;
    padding: 1px !important;
    border: 0 !important;
}

/* #page_content {
    max-width: 200px;
} */

/* Full height image header */
.bgimg-1 {
    background: rgba(0, 0, 0, .50);
    background-position: center;
    background-size: cover;
    /* background-image: url("../img/gid-image-1-1600x550.jpg"); */
    /* background-image: SET_INLINE_ON_HTML_ELEMENT */
    background-blend-mode: darken;
    min-height: 400px;
    height:100%;
}

.bgimg-2 {
    background: rgba(0, 0, 0, .50);
    background-position: center;
    background-size: cover;
    background-blend-mode: darken;
    min-height: 150px;
    /* background-image: SET_INLINE_ON_HTML_ELEMENT */

}

.gid_blue {
    color: #009fe3;
}
.gid_blue_bg {
    background-color: #009fe3 !important;
    color:white !important;
}
.red {
    color: red;
}
.green {
    color: #4CAF50;
}

.no_underline {
    text-decoration: none;
}




#myNavbar{
    z-index: 100;
    width:100%;
    opacity:0.95;
}

#gid_account_link{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#page_content{
    min-height: calc(100vh - 42px - 180px);
    /* top-nav - footer */
}

#organisation_details{
    background-color: lightgray;
    font-size: 0.7em;
    color: #333;
}

.login {
    background-color: #ccc;
    max-width: 500px;
}
.login_outer {
    display: flex;
    justify-content: center;
}
.login_inner {
    /* background-color: #ccc; */
    width: 100%;
    max-width: 500px;
}



.w3-bar .w3-button {
  padding: 16px;
}



.nav_current{
    background-color: #ccc;
}





footer {
    max-width: 100%;
    overflow: hidden;
}

/* SPONSOR BANNER */
:root {
    --sponsor_banner_translate_x: -100%;
}
.sponsor_banner img {
    max-height: 20px;
    max-width: 100%;
    transition: all .2s ease-in-out;
}
.sponsor_banner img:hover {
    transform: scale(1.1);
}
.sponsor_banner {
    position:relative; 
    top:0px; 
    left:0px; 
    /* overflow:hidden;  */
    white-space: nowrap;
    animation: sponsor_banner_move 60s linear infinite;
}

.sponsor_banner img {
    margin: 0 20px 
}

.active {
    color: pink,;
}

@keyframes sponsor_banner_move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate( var(--sponsor_banner_translate_x), 0);
    }
}

button.active {
    background-color: #999 !important;
}
.section_title {
    cursor: pointer;
}
.section_title > i:first-of-type {
    transition: transform 0.2s;
}
.section_title_open > i:first-of-type {
    transform: rotate(90deg);
}


.flex_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: space-around;
    row-gap: 0px;
    column-gap: 0px;
}

.flex_item {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    margin:20px;
}

.f_event_future {
    max-width:300px; 
    width:300px;
    opacity:1;
    transition: max-width 0.5s;
    /* transition: opacity 0.5s; */
    /* transition: width 0.5s; */
}

.clickable{
    cursor: pointer;
}

.hide {
    display: none;
    width: 0px;
}

.hide2 {
    max-width:0;
    overflow:hidden;
    white-space: nowrap;
    transition: max-width 0.1s;
    /* display: none; */
}

.f_vacancy {
    width:300px;
    max-width:300px;
    overflow: hidden;
}



/* SCROLL BAR */

/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #fff; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #ddd; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #ccc; 
  }



  /* 5-star ratings: */




.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.rating > input{
    display:none;
}

.rating > label {
    /* content: "\2605"; */
    position: relative;
    width: 1.1em;
    font-size: 4em;
    color: #ccc;
    cursor: pointer;
}

.rating > label::before{
    content: "\2605";
    position: absolute;
    opacity: 0;
}

.rating > label:hover:before,
.rating > label:hover ~ label:before {
    opacity: 0.7 !important;
    color: #FFD700;
}

.rating > input:checked ~ label:before{
    opacity:0.9;
    color: #FFD700;
}

.rating:hover > input:checked ~ label:before{ 
    opacity: 0.3;
}



.offer_img {
    min-width: 200px;
    max-width: 300px;
    padding:8px;
    vertical-align: top;
}

.offer_img_landscape {
    min-height: 300px;
    max-height: 400px;
    padding:8px;
    vertical-align: top;
}

a {
    color: #009fe3;
}






    .captcha-container {
      margin: 15px 0;
    }
    .captcha-image {
      border: 1px solid #ddd;
      padding: 5px;
      background: #f9f9f9;
      display: inline-block;
    }
    .refresh-captcha {
      margin-left: 10px;
      cursor: pointer;
      padding: 5px 10px;
      background: #007bff;
      color: white;
      border: none;
      border-radius: 3px;
    }
    .error {
      color: red;
      margin-top: 5px;
    }