/*
==============================================================
  main.css 
==============================================================
*/

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
*{
    outline:none;
    box-sizing: border-box;
}

.noscroll {
    overflow: hidden;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*PLACEHOLDER*/
::-webkit-input-placeholder { /*/ WebKit, Blink, Edge /*/
color: #666;
} :-moz-placeholder { /*/ Mozilla Firefox 4 to 18 /*/
color: #666;
}
::-moz-placeholder { /*/ Mozilla Firefox 19+ /*/
color: #666;
} :-ms-input-placeholder { /*/ Internet Explorer 10-11 /*/
color: #666;
}

/*IFRAME RESPONSIVE*/
#tc-video-banner .videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 57%;
    padding-top: 0;
    height: 0;
}

.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*LOGO*/
.tc-main-logo {
    display: inline-block;
}

.tc-main-logo img{
		width: 100%;
	}

/*LINKS*/
a {
    color: #E00061;
}

/*BUTTON*/


#topmenu .language-item.active {
	background-color: #CCC;
}
#topmenu .language-item:hover {
	background-color: #CCC;
}

#topmenu #icon-wrapper {
	display: inline-block;
    float: right;
}

#topmenu #icon-wrapper .icon {
    margin: 10px;
    cursor: pointer;
    color: #333;
}

#topmenu #icon-wrapper .icon:hover {

}

#topmenu #icon-wrapper .icon:not(.login-required) {
	display: inline-block;
}

.login-required {
    display: none;
}

#cartmarker {
    position: absolute;
    margin: -8px 18px;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    background-color: #E00061;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    display: none;
}

/* HEADER */
#tc-header-wrapper {

    display: flex;
	align-items: center;
	justify-content: space-between;
    /*width: 80%;*/
}

#tc-main-nav-wrapper {
	display: flex;
	justify-content: center;
}

#header {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* BANNER */
#ajax-banner{
	position:relative;
	width:100%;
	z-index:0;
    overflow: hidden;
    height: 60vh;
	}

#banner-content{
    position:absolute;
    top:0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	}

#banner-content p{
    color: #FFF
}

#banner-bg{
/*    position:absolute;*/
}

.bgvideo{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
	min-width: 100%;
	min-height: 100%;
}

.fa, .fas {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
	display: none;
}

.image-container{
    background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
	/*position:fixed;*/
	z-index:-1;
}

/* CONTENT */
#ajax-content{
    width: 100%;
    background-color: #FFF;
}

h1:first-child { margin-top: 0px; }

#sm-icons a{
	padding:5px;
}

/* COLLAPSIBLE BLOCKS */

.collapsible{
	padding: 10px 10px 10px 0;
	background-color: #FFF;
	width: 100%;
    box-sizing: border-box;
}

.collapsible a{
	color: #C467A5;
}

.collapsible > *:not(.collapsible-title){
	display: none;
}

.collapsible-title{
  display: flex;              /* makkelijker uitlijnen dan floats */
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  padding: 8px 0;
	border-bottom: 1px solid black;
}

.collapsible-title.open {
	padding-bottom: 10px;
}

.collapsible-title * {

}

.collapsible p {
     margin: 0 0 1em 0;
    white-space: normal;        /* zorgt dat tekst normaal kan wrappen */
    overflow-wrap: normal;      /* breekt woorden niet af, enkel bij spaties */
    word-break: normal;         /* lange woorden blijven één stuk */
    width: 100%;
}

/* pseudo-element als pijl */
.collapsible-title::after{
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 16px;
  background-image: url("../../img/pijl.svg"); /* <-- PAS HIER HET PAD AAN (zie uitleg) */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .25s ease;
  transform: rotate(90deg); /* gesloten staat */
}

/* open staat - roteer pijl */
.collapsible-title.open::after{
  transform: rotate(270deg);
}

/*checkbox label*/

/* hide native checkbox */
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

/* label container */
input[type="checkbox"] + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 22px;
  display: inline-block;
  color: #000; /* default text color */
}

/* box */
input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #333;
  background: #fff;
}

/* X mark */
input[type="checkbox"] + label::after {
content: '×';
  position: absolute;
  left: 0px;
  top: -7px;
  font-family: Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  color: #C467A5;
  opacity: 0;
  transition: opacity 0.2s;
}

/* checked state */
input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

/* disabled state */
input[type="checkbox"]:disabled + label {
  color: #aaa; /* greyed out label */
  cursor: not-allowed;
}

input[type="checkbox"]:disabled + label::before {
  background: #ddd; /* greyed box */
  border-color: #bbb;
}

input[type="checkbox"]:disabled:checked + label::after {
  color: #999; /* greyed X */
  opacity: 1;
}

/* MEDIA QUERIES SCREEN */

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) iPhone Portrait*/
@media only screen and (max-width: 479px) {

    /*IPHONE ZOOM FIX*/
    input[type='text'],
    select:focus,
    textarea {
        font-size: 16px;
    }

}

