/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root{
	--keuzehulp-modal-progress-bg: #ccc;
	--keuzehulp-modal-progress-bg-progress: #999;
}

.modal-with-steps .modal-content{
	height: 80vh;
}

.modal-step-title{
}

.modal-progress{    
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background-color: var(--keuzehulp-modal-progress-bg);
    height: 0.6rem;
}

.modal-progress span{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background-color: var(--keuzehulp-modal-progress-bg-progress);
	height: 0.6rem;
	transition: 0.3s width;
}

.modal-step{
	display: none;
	height: calc(100% - 11rem);
}

.modal-step.keuzehulp_startvraag{
	display: block;
}

.keuzehulp_startvraag .modal-config-nav > div:nth-child(1){
	display: none;
}

.modal-step-footer{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3rem;
    background: #fff;
	box-shadow: 0 -2rem 3rem rgba(0, 0, 0, 0.04);
}

.button_terug{
	padding: 0;
    border: none;
    box-shadow: none;
    background: none;
}

.modal-step-inner{
	height: calc(100% - 7rem);
	overflow: auto;
}

.modal-with-steps ::-webkit-scrollbar {
    -webkit-appearance:none;
    width:1.4rem;
    height:1.4rem;
}

.modal-with-steps ::-webkit-scrollbar-thumb {
    border-radius:0.8rem;
    border:0.3rem solid #fff;
    background-color:rgba(0, 0, 0, .3);
}
@-moz-document url-prefix() {
    .modal-with-steps .scroller {
        scrollbar-width: thin;
        scrollbar-color: #ccc;
    }
}

.modal-opties {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    column-gap: 3rem;
    row-gap: 3rem;
    padding-bottom: 1rem;
}

.modal-optie {
    border: 0.1rem solid #dedede;
    border-radius: 0 0 2.5rem 2.5rem;
    background: #fff;
    cursor: pointer;
}

.modal-optie-img {
    padding: 1rem;
    transition: 0.3s padding;
}

.modal-optie-img img {
    aspect-ratio: 316 / 200;
    width: 100%;
}

.modal-optie-inner {
    padding: 2rem;
}

.modal-optie-titel{
    position: relative;
    padding-left: 2.5rem;	
}

.modal-optie-titel:before{
	content: "\f192";
    font-family: 'Font Awesome 6 Pro';
    color: var(--keuzehulp-modal-progress-bg);
    position: absolute;
    left: 0;
	font-weight: 300;
    top: 0.1rem;
}

.modal-optie:not(.modal-optie-single) .modal-optie-titel:before{
    content: "\f0c8";
}

.modal-optie.modal-optie-active:not(.modal-optie-single) .modal-optie-titel:before{
    content: "\f14a";
	color: #2D2D2D
}

.modal-optie-active .modal-optie-titel:before{
	content: "\f192";
	font-weight: 700;
	color: #2D2D2D
}

.modal-optie-active{
	background-color: var(--keuzehulp-modal-progress-bg);
	border-color: var(--keuzehulp-modal-progress-bg);
}

.modal-with-steps .modal-body.loading-multi:before,
.modal-with-steps .modal-body.loading:before{
    content: "";
    background: rgba(255,255,255,0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: 1;
}

.modal-config-results .woocommerce-Price-currencySymbol{
	display: none !important;
}

.modal-with-steps .modal-body.loading-multi:after,
.modal-with-steps .modal-body.loading:after{
    background: url(/inhoud/plugins/woocommerce/assets/images/icons/loader.svg) center center;
    height: 1em;
    width: 1em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -.5em;
    margin-top: -.5em;
    content: '';
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0,0,0,.75);
	z-index: 15;
}

[data-goto=""]{
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.keuzehulp_volgende[data-goto=""]{
	display: none;
}