@import url("flex.css");
/* Help Classes */
.w-rows {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.w-row {
    display: flex;
    flex-flow: row;
}
.w-row:last-child {
  	margin-bottom: 0;
}
.w-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width:768px) {
    .w-mobile-column {
        flex-direction: column;
    }
    .x-container.w-mobile-reverse {
        display: flex!important;
        flex-direction: column-reverse;
    }
}
.w-shadow {
    box-shadow: 0em 0.15em 2em rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0em 0.15em 2em rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0em 0.15em 2em rgba(0, 0, 0, 0.15);
}
.w-hidden {
  	display: none;
  	visibility: hidden;
}
.w-image {
  	object-fit: cover;
}
.w-clickable {
    cursor: pointer;
}
.w-spacer {
    display: flex;
    flex: 1 1 auto;
}
.w-page-title {
    margin: 0;
}

/* Pops */
/* Wordpress popup styling.*/
.w-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.85);
}
.w-popup.w-pop-over {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    z-index: 9999;
    min-width: 400px;
}
.w-popup.w-pop-corner {
    position: fixed;
    width: 100%;
    max-width: 400px;
    z-index: 99999;
    padding: 40px 20px 20px;
    background-color: #fff;
    color: #000;
    text-align: center;
}
.w-popup .w-close-popup {
    position: absolute;
    top: 0;
    margin-top: 10px;
    right: 0;
    margin-right: 20px;
}
.w-popup .w-close-popup:hover {
    cursor: pointer;
}
.w-popup .w-close-popup:empty:after {
    content: 'X';
}


/* Positions */
/* Dit zijn de postitions van wordpress? */
/* Zo ver wij weten maakt het geen verschil als dit er in staat of niet. Of we hebben echt geen idee wat dit zou moeten verranderen.*/
.w-top {
	top: 0;  
}
.w-bottom {
	bottom: 0;  
}
.w-left {
	left: 0;  
}
.w-right {
	right: 0;  
}
.wep-bottom-right,
.wep-right-bottom {
    bottom: 0;
    right: 0;
}
.wep-bottom-left,
.wep-left-bottom {
    bottom: 0;
    left: 0;
}
.wep-top-right,
.wep-right-top {
    top: 0;
    right: 0;
}
.wep-top-left,
.wep-left-top {
    top: 0;
    left: 0;
}

/* Box Style */
/* Styling voor de w-boxes. */
.w-boxes {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    overflow: hidden;
}
.w-box {
    position: relative;
}
.w-box .w-box-title,
.w-box .w-box-title h2 {
    background-color: var(--xtt-primary);
    color: #ffffff;
    width: 100%;
    height: auto;
    margin: 0px;
    line-height: var(--xtt-spacing);
    font-size: 25px;
    text-align: center;
    overflow: hidden;
}
.w-box .w-box-title.w-title-top,
.w-box .w-box-title.w-title-bottom,
.w-box .w-box-title.w-title-center,
.w-box .w-box-title.w-title-top-spacing,
.w-box .w-box-title.w-title-bottom-spacing {
    position: absolute;
    left: 0px;
    right: 0px;
}
.w-box .w-box-title.w-title-top {
    top: 0px;
}
.w-box .w-box-title.w-title-bottom {
    bottom: 0px;
}
.w-box .w-box-title.w-title-top-spacing {
    top: var(--xtt-spacing);
}
.w-box .w-box-title.w-title-bottom-spacing {
    bottom: var(--xtt-spacing);
}
.w-box .w-box-title.w-title-center {
    top: 0px;
    bottom: 0px;
    margin: auto;
}
.w-box .w-box-content {
    background-color: #ffffff;
    padding: 2em;
    margin-bottom: 2em;
}
.w-box:last-child .w-box-content {
    margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
    .w-box .w-box-content {
          padding: 1em;
    }
}

/* Box List */
/* Simpele styling voor w-box list. Overigs weet ik niet precies over welke box dit gaat. */
.w-box.w-box-list .w-box-item {
    border-bottom: 1px solid #000000;
}
.w-box.w-box-list a:last-child .w-box-item {
  	border: none;
}
.w-item-title.w-item-first, .w-item-description.w-item-second {
    overflow: hidden;
}

/* Agenda */
/* Deze styling zorgt ervoor dat een agenda netjes opgemaakt wordt.*/
.w-agenda-item {
    display: flex;
    margin: 10px 0;
}
.w-agenda-items .w-agenda-item:first-child {
    margin-top: 0;
}
.w-agenda-items .w-agenda-item:last-child {
    margin-bottom: 0;
}
.w-agenda-date {
    width: 50px;
    height: auto;
    text-align: center;
}
.w-agenda-day {
    background-color: var(--xtt-secondary);
    color: #ffffff;
}
.w-agenda-month {
    background-color: #cccccc;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}
.w-agenda-info {
    width: 100%;
    padding-left: 1em;
}
.w-agenda-day, .w-agenda-first {
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    font-weight: bold;
}
.w-agenda-month, .w-agenda-second {
    height: 20px;
    line-height: 20px;
    font-size: 11px;
}



/* List item */
.w-row.w-list-item .w-list-item-title {
    margin: 0;
}



/* Filter */
.w-filter-bar {
    display: flex;
    justify-content: space-between;
}
.w-filter-count {
  	color: #cccccc;
}



/* Products */
/* Styling voor producten. Overigs lijkt dit helemaal niks te verranderen in woocommerce. */
.w-products .w-boxes {
    justify-content: flex-start;
}
.w-products .w-box {
    margin: 25px;
}
.w-products .w-box .w-item-featured-image img {
    width: 600px;
    height: 600px;
}
.w-product .w-item-image img {
    width: 150px;
    height: 150px;
}



/* Accordions */
/* Dit zorgt ervoor dat de accordions in de webprofit plugin de juiste styling krijgen.*/
.accordions {
    display: flex;
    flex-direction: column;
}
.accordions .accordion {
    order: 1;
    background-color: #FFF;
    box-shadow: 0 -1px 0 #e0e0e0,0 0 2px rgba(0,0,0,0.12),0 2px 4px rgba(0,0,0,0.24);
}
.accordions .accordion .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row;
    height: 48px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 16px;
    border-bottom: 1px solid #e0e0e0;
}
.accordions .accordion .accordion-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.accordions .accordion .accordion-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.accordions .accordion .accordion-icon::before {
    content: "\f053";
}
.accordions .accordion .accordion-body {
    height: 0;
    max-height: 0;
    padding-left: 24px;
    padding-right: 24px;
    visibility: hidden;
    overflow: hidden;
}
.accordions .accordion.opened {
    margin-top: 16px;
    margin-bottom: 16px;
}
.accordions .accordion.opened .accordion-header {
    height: 64px;
}
.accordions .accordion.opened .accordion-icon::before {
    content: "\f078";
}
.accordions .accordion.opened .accordion-body {
    padding-top: 24px;
    padding-bottom: 24px;
    visibility: visible;
    height: auto;
    max-height: none;
}
.accordions .accordion.opened:first-child {
    margin-top: 0;
}
.accordions .accordion.opened:last-child {
    margin-bottom: 0;
}
.accordions .accordion .accordion-header,.accordions .accordion .accordion-body {
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0,1,0.5,1);
}

/* Search Form */
/*Styling voor zoek balk. Bijvoorbeeld die van hoorprofs intranet.*/
.w-search-input {
    font-size: 19px!important;
    height: 59px!important;
    margin: 0!important;
    width: 100%;
    max-width: 500px;
}

/* Thickbox style */
/* Deze styling is bedoeld voor de thickbox (TB staat voor thickbox). */
img#TB_Image {
    border: none!important;
}
div#TB_caption {
    width: 100%;
    height: var(--xtt-spacing);
    line-height: var(--xtt-spacing);
    padding: 0px;
    text-align: center;
}
div#TB_closeWindow {
    display: none;
}

/* Rating stars */
/* Dit zorgt ervoor dat de rating stars geel worden. */
i.x-icon.x-icon-star, i.x-icon.x-icon-star-half-empty, .x-icon-star-o {
    color: #e5a923;
}

/* Tooltip */
/* https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip */
.w-tooltip {
	position: relative;
}
.w-tooltip .w-tooltip-text {
	visibility: hidden;
  	opacity: 0;
  	background-color: #555;
    color: #fff;
	font-size: 12px;
    text-align: center;
	padding: 5px 0;
	position: absolute;
	width: 120px;
	border-radius: 6px;
	transition: all 300ms;
}
.w-tooltip:hover .w-tooltip-text {
	visibility: visible;
  	opacity: 1;
}
.w-tooltip.w-tooltip-top .w-tooltip-text {
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
}
.w-tooltip.w-tooltip-bottom .w-tooltip-text {
	top: 125%;
    left: 50%;
    margin-left: -60px;
}
.w-tooltip.w-tooltip-left .w-tooltip-text {
	top: -50%;
	right: 100%;
	margin-right: 5px;
}
.w-tooltip.w-tooltip-right .w-tooltip-text {
	top: -50%;
	left: 100%;
	margin-left: 5px;
}
.w-tooltip .w-tooltip-text::after {
    content: "";
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
}
.w-tooltip.w-tooltip-top .w-tooltip-text::after {
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-top-color: #555;
}
.w-tooltip.w-tooltip-bottom .w-tooltip-text::after {
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-bottom-color: #555;
}
.w-tooltip.w-tooltip-left .w-tooltip-text::after {
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-left-color: #555;
}
.w-tooltip.w-tooltip-right .w-tooltip-text::after {
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-right-color: #555;
}


/* Disable text-shadow */
/* Verwijderd text-shadow in het x thema. */
.x-btn {
    text-shadow: none!important;
}

/* Overwrite Default Theme Styles */
/* Dit lijkt er voor te zorgen dat de margin gefixt word tussen content. Deze zou waarschijnlijk soms fout staan zoals ook in het forum hieronder.*/
/* https://generatepress.com/forums/topic/random-margin-bottom-being-added-to-entry-content/  */
.entry-content.content {
    margin: 0px;
}

/* Pagination */
.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
  	margin: 0;
}
.pagination span {
    color: #fff!important;
    background-color: var(--xtt-primary)!important;
    border-color: var(--xtt-primary)!important;
}
.pagination a {
    color: var(--xtt-primary)!important;
}