.Header__homeContent .Header__navbar, .Header__defaultContent .Header__navbar {
    background-color: rgba(89,102,104,0.85);
  min-height:180px;
}

#company_tabName {
color:white;
  font-weight: 600;
  display: none
}

.Header__logo {
    display: flex;
    align-items: center;
    justify-content: space-evenly
}
#navBarContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Header__logo img {
    min-height: 120px;
    display: block;
  padding-top:25px;
  
}


.li#portal_OldPortal.Header_tabsTab a {
	color: #ffffff
}

.ContentBox__boxThree:nth-child(1)  p,
.ContentBox__boxThree:nth-child(3)  p{
    font-size:0;
}

#userPreference, #portal_tabCommunity {
  display: none;
}

.ContentBox__boxThree:nth-child(3)  p::after{
    content:"Tickets weergeven; helpdesk, sommaties en customer service";
    font-size:16px;
}.ContentBox__boxThree:nth-child(1)  p::after{
    content:"Artikelen, contracten, handleidingen en FAQ's";
    font-size:16px;
}

.calendlyButton {
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid #fff;
    padding: 15px;
    margin: 10px;
    text-align: left;
    font-weight: 600;
    min-width: 240px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
  	gap: 10px;
  	font-family: "Latoregular", "sans-serif";
    font-size: 15px;
  letter-spacing: 1.2px;
}
#calendlyButton a {
  color: #fff;
}

#link {
  color:white!important
}

#divButtons {
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: absolute;
    top: 0;
    right: 50px;
    color: #ae986f;
}

#headerContainer {
	display: flex;
  	flex-direction: column;
}

#iamFrame {
height: 300px
}

@media only screen and (max-width: 600px) {
  #divButtons {
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: initial;
    top: 0;
    right: 50px;
    color: #ae986f;
}
  #iamFrame {
  height: 250px!important;
  }
  
  .Header__menuicon {
  top: 75%
  }
}


@media only screen and (min-device-width: 601px) and (max-width: 1550px) {
  #divButtons {
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: initial;
    display: flex;
    top: 0;
    right: 50px;
    color: #ae986f;
    justify-content: space-evenly;
}
  
}

/* hide zoho footer banner, format mine */
.Footer__footerBg {
    display: none;
}

.myFooterBanner {
    background: #f5f5f5;
    padding: 1.875rem 0;
}

/*Closing portal modifications*/
#notice-banner {
  background-color: #0d1f2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 20px 50px;
  gap: 30px;
}
#notice-banner-message {
  margin: 0 0 30px;
  font-size: 18px;
  color: #fff;
  max-width: 800px;
  font-size: 16px;
}

#notice-banner-buttons {
  display: flex;
  gap: 50px;
  align-items: center;
}

.button {
  display: inline-block;
  margin-right: 10px; /* Add margin to separate button and link */
  padding: 10px 20px;
  background-color: #ae986f;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #ae986f;
}

.link {
  display: inline-block; /* Display link in-line */
  font-size: 16px;
  color: #ae986f; /* Set link color to #ae986f */
  text-decoration: underline;
}

.link:hover {
  color: white;
}

/* Add CSS for closing the banner when clicking outside */
input[type="checkbox"] {
  display: none; /* Hide the checkbox */
}

input[type="checkbox"]:checked ~ .overlay,
input[type="checkbox"]:checked ~ .banner {
  display: none; /* Hide overlay and banner when checkbox is checked */
}

