* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

:root {
    --cl-1: #008ca8;
    --cl-2: #000000;
    --cl-3: #ffffff;
}

body {}

@keyframes back {
    0% {
        transform: translateX(0);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}


.background {

    position: absolute;
    height: 100vh;
    background-image: url(../images/pepkor/pepkor-bg-2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    z-index: -1000;
}

.supplierPortal {}

.back-btn {
    grid-area: header;
    width: 90px;
    height: 30px;
    cursor: pointer;
}

.back-btn-image {
    height: 30px;
    transition: all 0.5s ease-out;
}

.back-btn::after {
    content: "BACK";
    position: absolute;

    font-size: 15px;
    font-family: var(--fnt-primary);
    color: var(--cl-2);

    padding-left: 10px;
    margin-top: 4px;
}

.back-btn:hover .back-btn-image {
    animation: back 1s ease-in-out infinite;
}

.jdg-logo {
    grid-area: header;
    justify-self: center;
}

.jdg-logo-img {
    width: 180px;
/*    height: 90px;*/
}

.title {

    margin: 15px 0px 15px 17px;
    width: 110%;

    color: var(--cl-primary);

    font-size: 1.6vw;
    font-weight: 700;
    line-height: 1.1em;

    position: relative;
}

.title::before {
    content: '';
    width: 7px;
    height: 3.5vw;
    background-color: black;
    position: absolute;
    margin-left: -17px;

}



.cell {
    width: 20vw;
    justify-self: center;
    align-self: center;

    padding: 20px;

}

.link-img {
    width: 100%;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 60px;

}

.btn {

    background-color: var(--cl-1);
    color: var(--cl-3);
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    margin: 15px 0px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    transform: translateY(0px);

    text-decoration: none;
    display: block;
    
    font-weight: 600;
}

.btn:hover {
    box-shadow: 0px 3px 15px rgba(0, 140, 168, 0.44);
    transform: translateY(-3px);
}

.grid {
    position: absolute;

    background-image: url(../images/pepkor/pepkor-bg-2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;



    height: 100vh;
    width: 100%;
    overflow: hidden;
    

    padding: 20px;
    display: grid;

    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr 100px;
    grid-template-areas:
        "header "
        "main"
        "footer"
    ;
}

.mainContent-container {
    grid-area: main;
    justify-self: center;
    align-self: center;

    width: 90%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: width 1s ease-in-out;

}

.logo-display {
    display: none;
}



.links-grid-mod {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.jdg-logo-left {
    justify-self: center;
    align-self: center;

    width: 35vw;
}

.heading {
    color: var(--cl-primary);

    font-size: 4vw;
    font-weight: 900;
    line-height: 1em;
}

.form-divider {
    height: 2px;
    width: 100px;

    margin: 20px auto;

    background-color: var(--cl-2);

}

.form {

    justify-self: center;
    align-self: center;

    width: 70%;

    text-align: center;

}

.corset {
    margin: auto;
    width: 80%;

}

input {
    /*    outline: 0;*/
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    border: 0px;
    border-bottom: solid 2px;
    text-transform: none;
    text-align: center;
    color: #898989;

    line-height: 3em;

    font-size: 17px;

}

input:focus {
    outline: none;
    border-bottom: solid 2px var(--cl-1);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.supHeading {
    font-size: 20px;
}

.vendor-code {
    margin: 50px 0px;
}

@media only screen and (max-width: 1200px) {
    .mainContent-container {
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .cell {
       width: 30vw;
    }

    .links-grid-mod {
        grid-template-columns: 1fr 1fr;
    }
    
    .grid {
        overflow: auto;
/*        overflow-y: auto;*/
    }
    
    .title {
    margin: 15px 0px 15px 17px;
    font-size: 2.3vw;
}

    .jdg-logo-left {
        display: none;
    }

    .logo-display {
        display: block;
    }

    .heading {

        font-size: 70px;

    }

}

@media only screen and (max-width:700px) {
    .form {
        width: 100%;
    }

    .corset {

        width: 90%;
    }
}


.articleEnrichment {
    opacity: 0;
    pointer-events: none;
}

.active {
    pointer-events: auto;
    opacity: 1;
}

.fix-to-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}
