a {
    text-decoration: none;
}

.hide {
    display: none;
}
.hiding-left, .hiding-bottom{
    opacity: 0;
    filter:blur(5px);
    transition: all 0.8s;
}
.hiding-left{
    transform: translateX(-100%);
}
.hiding-bottom{
    transform: translateY(+100%);
}
.show{
    opacity: 1;
    filter:blur(0);
    transform: translateX(0);
}

.hero-logo {
    width: 84%;
}

.download-app-btn {
    height: 4rem;
}

.cta-banner {
    text-align: center;
    height: 25rem;
    background-image: url("../img/zwemcosol/epdm-dak.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

input[type=radio], .checkbox-form {
    display: none;
}

input[type=radio] + label, .checkbox-form + label {
  padding: 3px 8px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}

input[type=radio]:checked + label, .checkbox-form:checked + label {
  border: 2px solid #65C9FF;
  background-color: #65C9FF;
  border-radius: 10px;
  padding: 3px 8px;
}

.imgPicker {
    margin: 8px auto;
    width: 10rem;
    border-radius: 10px;
}
.imgPicker-lg {
    margin: 8px auto;
    width: 15rem;
    border-radius: 10px;
}

.picker-label:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.picker-label {
    transition: box-shadow 0.3s ease-in-out;
    width: 12rem;
}
.picker-label-lg {
    transition: box-shadow 0.3s ease-in-out;
    width: 16rem;
}

.radio-title {
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.fw-bold{
    color:#f4ac45;
}

@media(prefers-reduced-motion) {
    .hiding-bottom, .hiding-left{
        transition: none;
    }
}