.workshop__content {
    padding: 50px 10%;
    background-image: -ms-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -moz-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -o-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -webkit-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
}

.workshop__content__header {
    padding: 50px;
    border: 30px solid white;
    position: relative;
    width: 100%;
    min-height: fit-content;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    display: grid;
    place-items: center;
    grid-template-columns: 2fr 1fr;
}

.workshop__content__header .stock_label {
    background: #28a745;
    color: black;
    font-size: 14px;
    padding: 5px 10px;
}

.workshop__content__header .stock_label.uitverkocht {
    background: #DC143C;
}

.workshop__content__header > div {
   padding: 30px;
}

.workshop__content__header::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.workshop__content__header * {
    position: relative;
    z-index: 3;
}


.workshop__content__header__info {
    width: 20vw;
    max-height: 450px;
    background: white;
    border-radius: 20px;
    color: black;
    padding: 50px;
    box-sizing: border-box;
}

.workshop__content__header__info #workshop_inschrijving:disabled {
    background: #ccc !important;
}

#workshop__content {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.inschrijving-popup-container {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    place-items: center;
    background: rgba(0,0,0,0.8);
    z-index: 100;
    box-sizing: border-box;
}

.inschrijving-popup {
    width: 40vw;
    background: white;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.inschrijving-popup input {
    height: 70px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0px;
    outline: 0;
}

.inschrijving-popup button {
    width: 50%;
    height: 50px;
    border: none;
    margin-top: 40px;
    background: #CCB9AA;
    color: white;
    font-size: 16px;
    margin-right: 20px;
}

.inschrijving-popup button:nth-child(2) {
    background: gray;
}


@media only screen 
and (max-device-width : 1025px) {
    .workshop__content {
        padding: 50px 10px !important; 
    }
    .workshop__content__header {
        padding: 0;
        grid-template-columns: 1fr;
    }
    .workshop__content__header__info {
        width: 90%;
        margin-bottom: 30px;
    }

    .inschrijving-popup {
        width: 100%;
    }
}

@media only screen and (max-width: 780px) {
    h1 {
        line-height: 40px !important;
    }

    #workshop__content {
        grid-template-columns: 1fr;
    }

    #workshop__content__beschrijving p {
        margin-right: 0px !important;
    }
}

@keyframes fade {
    0% {
        transform: translateY(-50%) translateX(-50%);
        opacity: 0;
    }
    20% {
        transform: translateY(0%) translateX(-50%);
        opacity: 1;
    }
}