﻿.header {
    margin: 0px;
    padding: 0px;
    font-family: 'SF Pro';
    background: #161616;
    text-align: center;
    padding: 30px 15px;
}
/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #808080;
}

::-webkit-scrollbar-thumb {
    background-color: #cb5e28;
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #cb5e28 #f1f1f1;
    outline: none;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'SF Pro';
    background: #070707;
}

.progressbar {
    background: #808080;
    position: relative;
    height: 4px;
    width: 100%;
}

    .progressbar div {
        display: block;
        position: absolute;
        height: 4px;
        top: 0px;
        left: 0px;
        background: #cb5e28;
    }

h1.heading {
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    padding: 50px 0px;
}

h3 {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    padding-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.iphoneFront {
    text-align: center;
    padding: 30px;
    border: 1px solid #2c2f30;
    border-radius: 10px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-control {
    border: 2px solid #2c2f30;
    border-radius: 10px;
    background: #070707;
    padding: .7rem 1rem;
    font-size: 1.25rem;
    color: #fff;
}

    .input-control:focus {
        color: #ffffff;
        outline: none;
        box-shadow: none;
        border-color: #cb5e28;
        background: transparent;
    }

    .input-control::placeholder {
        color: #a4a4a4;
        opacity: 0.75;
    }

    .input-control:not(:placeholder-shown) {
        border-color: #cb5e28;
    }

select.custom-control {
    color: #ffffff; /* Text color */
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    position: relative;
    -moz-appearance: none;
    border: 2px solid #2c2f30;
    border-radius: 10px;
    background: #070707;
    padding: .7rem 1rem;
    font-size: 1.25rem;
}

    select.custom-control:focus {
        color: #ffffff;
        outline: none;
        box-shadow: none;
        border-color: #cb5e28;
        background: transparent;
    }

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

select.custom-control option {
    color: #ffffff; /* Option text color */
    background-color: #333; /* Option background */
}

.select-wrapper::after {
    content: "▼";
    font-size: 14px;
    color: #fff;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* click-through */
}

select.custom-control:valid {
    border-color: #cb5e28;
}

.divider {
    height: 2px;
    background: #2c2f30;
    margin: 70px 0px;
}


.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    min-height: 74px;
}

.color-option {
    display: flex;
    align-items: center;
    border: 2px solid #444;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    min-width: 170px;
    transition: border-color 0.2s ease;
    margin-right: 15px;
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid #ccc;
}

.color-option.selected {
    border-color: #cb5e28; /* highlight selected */
    background: #333;
}

.color-option span {
    color: #fff;
    font-size: 18px;
}

.btn-theme {
    font-size: 20px;
    min-width: 350px;
    padding: 15px;
}

.btn-wihte {
    background: #ffffff;
    border: none;
    color: #000;
}

.stepBox {
    margin-bottom: 100px;
}

    .stepBox .step {
        display: none;
    }

        .stepBox .step.active {
            display: block;
        }

.summaryInfo {
    text-align: left;
    color: #fff;
}

    .summaryInfo span {
        display: block;
        padding-bottom: 10px;
        color: #a4a4a4;
        font-size: 16px;
    }

.thankYou {
    color: #fff;
}

    .thankYou h2 {
        color: #fff;
        font-size: 30px;
        margin-bottom: 15px;
    }

    .thankYou p {
        color: #fff;
        font-size: 18px;
    }

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1000px;
    }
}
