.navButton {
    background-color: white;
    color: #f27479 !important;
    font-weight: 600 !important;
}

dialog {
    background-color: #FFB0B0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 460px;
    min-width: 320px;
    border-radius: 4px;
    border: 0;
    box-shadow: 0 5px 30px 0 #000;
    animation: fadeIn 300ms ease both;
    padding: 1rem;
    margin: 0;
}

dialog::backdrop {
    animation: fadeIn 300ms ease both;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.planDialog .closePlanDialogBtn,
.closeLogoDialogBtn {
    all: unset;
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 0;
}

.planDialog .closePlanDialogBtn img,
.closeLogoDialogBtn img {
    width: 12px;
    height: 12px;
}

.planDialog .dialogHeader {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.planDialog .dialogHeader img {
    background-color: white;
    height: 48px;
    width: 48px;
    padding: 1rem;
    border-radius: 100%;
    border: solid 1.5px #9e9e9e;
}

.planDialog .dialogHeader h6 {
    padding-top: 0;
    padding-bottom: 8px;
    line-height: 1;
    font-size: 20px;
}

.planDialog .dialogHeader p {
    line-height: 1.5;
    margin: 0;
}

.planDialog .features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.planDialog .features img {
    width: 14px;
    height: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logoDialog .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.logoDialog .logos button {
    all: unset;
}

.logoDialog .logos img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.2s ease;
    cursor: pointer;

    &:hover {
        scale: 1.1;
        filter: drop-shadow(rgba(0, 0, 0, 0.5) 2px 2px 2px);
    }

}

.errorDialog .closeErrorDialogBtn {
    all: unset;
    position: absolute;
    top: 8px;
    right: 8px;
}

.errorDialog .closeErrorDialogBtn img {
    height: 14px;
}

.errorDialog .content {
    text-align: center;
}

.errorDialog .content p {
    font-size: 20px;
}

.errorDialog .content .okayBtn {
    background-color: #f27479;
    color: white;
    border: none;
    outline: none;
    padding: 8px 16px;
    border-radius: 16px;
}

.planForm .planHolder {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-block: 1rem;
}

.planForm label {
    background-color: white;
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all 0.2s ease;
}

.planHolder input[type="radio"]:checked+label,
.planHolder label:has(input[type="radio"]:checked) {
    border: 4px solid red;
    box-shadow: 0 0 10px #F27479;
}

.planHolder .priceBtn {
    padding: 0.25rem 0.75rem;
    border-radius: 100vh;
    background-color: #F27479;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    letter-spacing: 1px;
    margin-top: 8px;

    &:hover {
        background-color: #FFB0B0;
    }
}

.planForm label input[type="radio"] {
    display: none;
}

.planForm label img {
    width: 40px;
    height: 40px;
    margin-bottom: 4px;
}

.planForm label .headerPara {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1;
}

.planForm label .subheaderPara {
    margin: 0;
}

.planForm label .desc {
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
    color: rgb(0, 0, 0, 0.6);
}

.planForm .submitBtn {
    background-color: white;
    color: #f27479;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;

    &:hover {
        background-color: #f27479;
        color: white;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
}

#multiStepForm {
    background-color: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    position: relative;
}

#multiStepForm h3 {
    color: black;
    padding-top: 0;
    padding-top: 20px;
    padding-bottom: 16px;
}

.select-cont {
    position: absolute;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.select-cont select {
    width: 160px;
    padding: 8px;
    border: solid 1.5px #9e9e9e;
    border-radius: 0.75rem;
    background: none;
    color: black;
}

.form-input-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    /* margin-bottom: 1.5rem; */
}

.profile-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-block: 16px;
}

.profile-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
    border: solid 1.5px #9e9e9e;
}

.form-section .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-input {
    color: #444;
    padding: 2px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(8, 8, 8, 0.288);
}

.profile-input::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

.profile-input::file-selector-button:hover {
    background: #0d45a5;
}

.logo-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-image {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
    border: solid 1.5px #9e9e9e;
}

.logo-image-container button {
    background-color: #f27479;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;

    &:hover {
        background-color: white;
        color: #f27479;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
}

.logo-image-container input[type="text"] {
    border: solid 1.5px #9e9e9e;
    border-radius: 0.75rem;
    background: none;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    color: black;
    transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.coolinput {
    display: flex;
    flex-direction: column;
    position: static;
}

.coolinput label.text {
    font-size: 0.75rem;
    color: #f27479;
    font-weight: 600;
    position: relative;
    top: 16px;
    margin: 0 0 0 12px;
    padding: 0 3px;
    background: white;
    width: fit-content;
}

.coolinput input.input {
    padding: 11px 10px;
    font-family: inherit;
    font-size: 0.75rem;
    border: 2px #f27479 solid;
    border-radius: 5px;
    background: white;
}

.coolinput input.input::placeholder {
    color: rgb(0, 0, 0, 0.25);
}

.coolinput input.input:focus {
    outline: none;
}

.buttons {
    /* display: flex;
    justify-content: center;
    gap: 8px; */
    margin-top: 8px;
}

.buttons button {
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: #f27479;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-right: 10px;

    &:hover {
        background-color: #d41e5b;
    }
}

.selectCont {
    display: flex;
    align-items: end;
    margin-top: 22px;
}

select {
    width: 100%;
    padding: 11px 10px;
    font-family: inherit;
    font-size: 0.75rem;
    border: 2px #f27479 solid;
    border-radius: 5px;
    background: white;
}

#cropped-image {
    display: none;
    margin-top: 20px;
    max-width: 100%;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 5px;
    background: white;
}

.btn {
    padding: 12px 18px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: white;
    background: #007BFF;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn:hover {
    background: #0056b3;
}

/* Popup modal styles */
.modal {
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 15px;
    border-radius: 12px;
    width: 95%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.close {
    font-size: 22px;
    cursor: pointer;
    color: #666;
    transition: 0.3s;
}

.close:hover {
    color: #000;
}

.modal-body {
    padding: 10px 0;
}

.cropper-container {
    max-width: 100%;
    height: 300px;
    overflow: hidden;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #545b62;
}

img {
    max-width: 100%;
}

.profile-remove-btn .profile-remove-btn {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.profile-remove-btn .profile-remove-btn img {
    height: 18px;
}

/* Mobile styles */
@media screen and (max-width: 600px) {
    .modal-content {
        width: 100%;
        max-width: 380px;
    }

    .cropper-container {
        height: 250px;
    }
}

@media screen and (max-width: 600px) {
    .form-input-container {
        grid-template-columns: 1fr;
    }

    .buttons button {
        margin-right: 0;
    }

    .form-section {
        margin-top: 48px;
    }

    .planForm .planHolder {
        grid-template-columns: repeat(2, 1fr);
    }
}