@import url(https://fonts.googleapis.com/css?family=Bungee);
@import url(https://fonts.googleapis.com/css?family=Libre+Baskerville);
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");

.container-uuid {
    background-color: #0d0d0d;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    margin-top: 3%;
}

.header-uuid {
    text-align: center;
    margin-bottom: 30px;
}

.logo-uuid img {
    width: 80px;
    margin-bottom: 10px;
    float: inline-start;
}

.h1-uuid {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFD700;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Bungee';
}

.h2-uuid {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #FFD700;
    text-transform: uppercase;
    font-family: 'Baskerville';

}

.h3-uuid {
    font-size: 28px;
    margin: 20px 0 10px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    padding-bottom: 10px;
}

.stage-uuid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.box-uuid {
    background-color: #222;
    border: 1px solid #444;
    padding: 4px;
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
    border: #FFD700 3px solid;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.box-uuid:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.box-title-uuid {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 6px;
    color: #fff;
    text-transform: uppercase;
}

.box-text-uuid {
    font-weight: 400;
    font-size: 11px;
    color: #bbb;
    text-transform: uppercase;
}

.product-range-uuid {
    margin-top: 40px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
}

.product-range-uuid-survey {
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
}

.products-uuid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product-uuid {
    width: 20%;
    text-align: center;
    margin-bottom: 20px;
}

.product-uuid img {
    width: 140%;
    height: auto;
    max-width: 100px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 3px solid #fff;
}

.product-uuid p {
    font-weight: 700;
    font-size: 16px;
    color: #FFD700;
    margin-top: 8px;
}

.cursor {
    cursor: pointer;
}
.open_survey{
    width: 17% !important;
}

@media (max-width: 768px) {
    .product-uuid {
        width: 48%;
    }
    .open_survey{
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .product-uuid {
        width: 100%;
    }

    .h1-uuid {
        font-size: 24px;
        font-family: 'Bungee';
    }

    .h2-uuid {
        font-size: 18px;
        font-family: 'Baskerville';
    }

    .h3-uuid {
        font-size: 18px;
    }

    .box-uuid {
        height: 100px;
    }

    .box-title-uuid {
        font-size: 14px;
    }

    .box-text-uuid {
        font-size: 12px;
        text-transform: uppercase;
    }
    .open_survey{
        width: 100% !important;
    }
}


.process-package-btn:hover {
    background: linear-gradient(45deg, #8BC34A, #4CAF50);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.process-package-btn:active {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.proceed-div {
    text-align: center;
}

.hidden {
    display: none
}

.loader-uuid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with 50% opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.hidden {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.eprice-uuid {
    text-align: center;
    font-size: 20px;
    margin: 2%;
    color: #fff;
    font-weight: 700;
}

.uuid-survey-h2 {
    
    text-align: center;
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 20px!important;
}

.uuid-survey-form {

    padding: 20px;
    border-radius: 10px;
    border: 2px solid #fff;
    margin: 0 auto;
    max-width: 800px!important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-top: 3%!important;

    background-color: #222!important;
    border: 1px solid #444!important;
    border-radius: 8px!important;
    font-size: 16px!important;
    border: #FFD700 3px solid!important;
   
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.uuid-survey-form div {
    margin-bottom: 20px;
}

.uuid-survey-question {
    color: #FFD700;
    font-weight: 500;
    margin-bottom: 10px;
}

.uuid-survey-label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.uuid-survey-radio {
    margin-right: 10px;
    transform: scale(1.2);
}

.uuid-survey-button {
    background-color: #E0B000 !important;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
}

.uuid-survey-button:hover {
    background-color: #E0B000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .uuid-survey-form {
        padding: 15px;
    }

    .uuid-survey-question,
    .uuid-survey-label {
        font-size: 14px;
    }

    .uuid-survey-button {
        font-size: 16px;
    }
}


/* The Modal (background) */
.uuid-stage-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.75);
    /* Black background with opacity */
}

/* Modal Content */
.uuid-stage-modal-content {
    background-color: #222;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #444;
    width: 80%;
    /* Could be more or less, depending on screen size */
    max-width: 400px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

/* Close button */
.uuid-stage-modal-close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.uuid-stage-modal-close:hover,
.uuid-stage-modal-close:focus {
    color: #FFD700;
    text-decoration: none;
    cursor: pointer;
}

.package_active{
    background-color: #ffd900de!important;
}
.package_active .box-title-uuid{
    color:#0d0d0d !important;
}
.package_active .box-text-uuid{
    color:#0d0d0d !important;
    font-weight:700;
}
.uuid-survey-label{
	cursor:pointer;
}


/*************SURVEY*********************************/

.quiz-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

h1 {
    text-align: center;
}

.question {
    display: none;
    margin-bottom: 20px;
}

.question.active {
    display: block;
}

.answers {
    display: flex;
    flex-direction: column;
}

.answers label {
    margin-bottom: 10px;
    font-size: 18px;
    padding: 10px;
    color: #fff;
    /* background-color: #f4f4f4; */
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.answersx label:hover {
    background-color: #e0e0e0;
}

.answers input[type="radio"] {
    display: none;
}

.result {
    display: none;
    text-align: center;
    margin-top: 20px;
}


.bungee{
    font-family: 'Bungee';
}