section {
    min-height: calc(100dvh - 75px);
    max-width: 1500px;

    margin: 0px auto;

    padding: 50px 25px;

    display: none;
}

section.noProduct {
    display: block;
    padding: 25px;
}

.noProduct .image {
    width: 90vw;
    max-width: 450px;

    height: 450px;

    margin: 0px auto;
    margin-bottom: 25px;
}

.noProduct .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.noProduct .title {
    font-size: 30px;
    font-weight: 600;

    text-align: center;

    margin-bottom: 25px;
}

.noProduct .button {
    margin: 0px auto !important;
}

.noProduct a.btn {
    margin-left: 125px;

    cursor: pointer;
}

.noProduct a.btn:hover {
    text-decoration: underline;
}

section .colorized {
    width: fit-content;
    background: -webkit-linear-gradient(0deg, #2d9de2, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section .buttons {
    display: flex;
    justify-content: center;

    margin: 0px auto;
    margin-top: 50px;
}

section .buttons .button:not(:last-child) {
    margin-right: 25px !important;
}

section .button {
    margin: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

section .button i {
    padding-left: 15px;
    color: white;
}

section .level {
    width: fit-content;

    margin: 0px auto;
    margin-bottom: 50px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.level .levelpoint {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;

    position: relative;
}

.level .levelpoint .title {
    text-align: center;

    position: absolute;
    top: 50px;
}

.level .line {
    width: 75px;
    height: 2px;

    background-color: #4A00E0;

    margin: 0px 15px;
}

.level .point {
    width: 45px;
    height: 45px;

    border: 1px solid #4A00E0;

    border-radius: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.level .point.active {
    background-color: #4A00E0;
}

.level .point.done {
    background-color: #4A00E0;
}

.level .point .icon {
    display: none;
    width: 50%;
    height: 50%;
}

.level .point.done .icon {
    display: block;
}

.level .point .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.level .point .number {
    display: block;

    font-size: 20px;
    font-family: 'azonix', sans-serif;
    color: #4A00E0;
}

.level .point.active .number {
    color: white;
}

.level .point.done .number {
    display: none;
}

.checkout {
    display: none;
}



.product {
    display: block;
}

.product .card {
    width: 100%;
    height: fit-content;

    padding: 25px;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.product .card .button {
    margin: 0px auto;
    margin-top: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.product .card .button i {
    padding-left: 15px;
    color: white;
}

.product .card .firstRow {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.product .card .firstRow .mainImage {
    height: 532px;

    margin-right: 25px;
}

.product .card .firstRow .mainImage img {
    width: calc(100%);
    height: calc(100%);
    object-fit: cover;
    object-position: center;
    border-radius: 30px;

    background-color: white;
}

.product .card .firstRow .data {
    width: calc(100% - 35px - 50%);
    padding: 2px 0px;
    margin-left: 25px;
}

.product .card .firstRow .data .name {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 15px;
}

.product .card .firstRow .data .desc {
    font-size: 17px;
    color: #6d6d6d;
    margin-bottom: 25px;
}

.product .card .firstRow .data .price {
    display: flex;
    align-items: center;
}

.product .card .firstRow .data .price .normal {
    width: fit-content;
    background: -webkit-linear-gradient(0deg, #2d9de2, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    font-weight: 600;
}

.product .card .firstRow .data .price .uvp {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.product .card .firstRow .data .price .uvp .number {
    color: #ddd;
    font-size: 20px;
    font-weight: 600;
    text-decoration: line-through;
    padding-left: 15px;
}

.product .card .firstRow .data .price .save {
    
    background-color: #ff000040;
    padding: 5px 10px;
    border-radius: 12px;
    color: red;
    font-weight: bold;

    margin-left: 15px;
}

.product .card .firstRow .data .buttons {
    justify-content: flex-start;
    margin: 0px !important;
    margin-top: 0px !important;
}

.product .card .secondRow {
    margin-top: 25px;

    display: none;
}

.product .card .secondRow .otherImages {
    width: calc(50% - 12.5px);

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.product .card .secondRow .otherImages .image {
    width: calc(50%);
    height: 150px;

    border-radius: 12px;

    box-shadow: 0px 0px 20px #c7c7c7;
}

.product .card .secondRow .otherImages .image:not(:last-child) {
    margin-right: 25px;
}

.product .card .secondRow .otherImages .image img {
    width: calc(100%);
    height: calc(100%);
    object-fit: cover;
    object-position: top;
    border-radius: 12px;

    background-color: white;
}




/* PERSONAL DATA */
.form {
    width: 90vw;
    max-width: 650px;
    height: fit-content;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    margin: 0px auto;
    margin-top: 25px;
}

.form .group {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 0px 15px;
}

.form .group:not(:last-child) {
    margin-bottom: 25px;
}

.form .group p.error {
    display: none;
    color: red;
    margin-top: 5px;
}

.form .group .input input.error {
    border: 1px solid red;
}

.form .group .input textarea.error {
    border: 1px solid red;
}

.form .group .error::placeholder {
    color: red;
}

.form .group .input {
    width: 50%;

    padding: 0px 15px;
}

.form .group .input.fullwidth {
    width: 100%;
}

.form .group label {
    font-weight: 600;
}

.form .group .input input {
    width: 100%;
    height: 40px;

    margin-top: 10px;

    padding: 5px 10px;

    border: 1px solid #ddd;
    border-radius: 8px;

    outline: none;
}

.form .group .input textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;

    height: 90px;
    min-height: 90px;
    max-height: 250px;

    margin-top: 10px;

    padding: 5px 10px;

    border: 1px solid #ddd;
    border-radius: 8px;

    outline: none;
}

.form .group .input .checkboxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.form .group .input .checkboxes .checkbox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 50%;
    
    margin: 5px 0px;
}

.form .group .input .checkboxes .checkbox input {
    width: 15px;
    height: 15px;
    accent-color: black;
    margin: 0px;
}

.form .group .input .checkboxes .checkbox label {
    font-weight: normal;
    padding-left: 10px;
}

.form .group .input input:hover {
    border: 1px solid grey;
}

.form .group .input input:focus {
    border: 1px solid grey;
}

.form .group .input input.invalid {
    border: 1px solid red;
}

.form .button {
    width: 100%;
    margin: 0px 30px;
}

.form .button span {
    display: block;
    width: 100%;
    text-align: center;
}









section.pay .pageTitle {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

section.pay .paypalError {
    display: none;

    width: 750px;
    max-width: 750px;

    margin: 0px auto;
    margin-top: 25px;

    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: red;
}

section.pay #paypal-button-container {
    width: 750px;
    margin: 0px auto;
    margin-top: 25px;
}

section.pay .paypal-container {
    max-width: 399px;
    margin: 0px auto ;
    margin-top: 25px ;
}

section.confirmation .image {
    max-width: 450px;
    width: 90vw;
    max-height: 450px;
    height: fit-content;

    margin: 0px auto;
}

section.confirmation .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

section.confirmation .pageTitle {
    width: fit-content;

    text-align: center;
    font-size: 40px;
    font-weight: 600;

    margin: 0px auto;
}

section.confirmation .info {
    max-width: 950px;
    text-align: center;

    font-size: 17px;
    color: #6d6d6d;

    margin: 0px auto;
    margin-top: 25px;
}

section.confirmation .form {
    margin-top: 25px;
}

section.confirmation .form .formTitle {
    padding: 0px 15px;
    margin: 0px auto;
    margin-bottom: 15px;
}

section.confirmation .smallInfoAfterForm {
    max-width: 630px;
    padding: 0px 15px;
    margin: 0px auto;
    margin-top: 25px;
}




/* HANDY */

@media only screen and (max-width: 770px) {
    .level .point {
        width: 35px !important;
        height: 35px !important;
    }

    .level .line {
        width: 30px;
    }

    .level .levelpoint .title {
        top: 40px !important;
        font-size: 12px !important;
    }

    .product .card {
        padding: 0px !important;
    }

    .product .card .firstRow {

    }
    
    .product .card .firstRow .data {
        width: 100% !important;
        margin-left: 0px !important;
    }

    .product .card .firstRow .mainImage {
        display: none !important;
    }

    .product .card .firstRow .data .name {
        text-align: center !important;
    }

    .product .card .firstRow .data .price {
        flex-direction: column !important;
    }

    .product .card .firstRow .data .price .normal {
        margin-bottom: 25px !important;
    }

    section .buttons {
        flex-direction: column !important;
    }

    section .buttons .button span {
        font-size: 14px !important;
    }

    section .buttons .button:nth-child(1) {
        margin-right: 0px !important;
    }

    section .buttons .button:nth-child(2) {
        margin-top: 25px !important;
    }

    section.pay #paypal-button-container {
        width: 100% !important;
        max-width: 750px;
    }
}