body {
    font-family: Arial !important;
}

input[type=text],
input[type=email],
input[type=number],
input[type=file],
input[type=url],
select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#submit_form {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#submit_form:hover {
    background-color: #45a049;
}

div.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

span#response {
    margin-left: 10px;
    font-weight: bold;
}

.cr-green {
    color: green;
}

.cr-red {
    color: red;
}

#loader {
    display: none;
    margin: 0px;
    padding: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(102, 102, 102);
    z-index: 30001;
    opacity: 0.8;
}

#loader img {
    color: White;
    left: 45%;
    position: absolute;
    top: 35%;
    width: 10% !important;
}

#NotificationAlert {
    visibility: hidden;
    max-width: 250px;
    margin-left: -125px;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 80px;
    font-size: 17px;
    border-radius: 5px;
}

.bg-red {
    background-color: #F44336;
    color: white;
}

.bg-green {
    background-color: #5cb85c;
    color: white;
}

#NotificationAlert.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 80px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 80px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 80px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 80px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}


.progress {
    display: none;
    position: relative;
    width: 100%;
    background-color: #ddd;
    border: 1px solid blue;
    padding: 1px;
    border-radius: 3px;
}

.progress-bar {
    background-color: green;
    width: 0%;
    height: 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.percent {
    position: absolute;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    top: 35%;
    left: 50%;
    margin-top: -9px;
    margin-left: -20px;
    -webkit-border-radius: 4px;
}

#status {
    margin-bottom: 10px;
    font-size: 14px;
    margin-top: 5px;
    color: green;
    font-weight: bold;
}


.checkbox_row input {
    border: 1px solid #CCC !important;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 3px;
}

p.checkbox_row {
    position: relative;
    margin: 0;
    line-height: 16px;
    margin-bottom: 20px;
    margin-top: 5px;
    padding-bottom: 0px;
}

.checkbox_row label.error+label {
    padding-bottom: 15px;
}

.checkbox_row label {
    padding-left: 20px;
    position: relative;
    display: inline-block !important;
    vertical-align: middle;
    line-height: 22px;
    margin: 0;
}

.checkbox_row label.error {
    position: absolute;
    bottom: -7px;
}

.checkbox_row input.error {
    border-color: red;
}

.videographer_row label.error {
    display: block;
    margin-bottom: 15px;
}

.videographer_row label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 0px;
}




* {
    box-sizing: border-box;
}

#submit:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

#submit:disabled:hover {
    transform: none !important;
    box-shadow: 0 10px 25px rgba(255, 107, 26, 0.25) !important;
    background: rgba(255, 107, 26, 0.25) !important;
    color: #ff6e1f !important;
}

.jk_main_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

button.jk-prev {
    color: #ff6b1a;
    font-size: 14px;
    font-weight: 600;
    border: none;
    padding: 10px 5px;
}

button.jk-prev:hover {
    background: transparent;
    color: #ff6b1a;
    box-shadow: none;
    padding: 10px 5px;
    transform: none;
}

.jk-open-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff6b1a;
    color: #fff;
    border: 0;
    padding: 20px 35px;
    min-width: 260px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: all 0.35s ease;
    appearance: none;
    -webkit-appearance: none;
    z-index: 1;
}

.jk-open-btn::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -120%;
    width: 90%;
    height: 160%;
    background: #ff6b1a !important;
    transform: skewX(-25deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.jk-open-btn:hover::before {
    left: 130%;
}

.jk-open-btn:hover {
    transform: translateY(-5px);
    background: #FFB36B;
}

.jk-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    padding: 20px;
}

.jk-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jk-readiness-message p {
    font-weight: 400 !important;
    margin: 10px 0px !important;
}

.jk-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.jk-modal-content {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    z-index: 2;
    overflow-y: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.jk-close-modal {
    position: absolute;
    right: 18px;
    top: 0px;
    color: #000B47 !important;
    font-size: 35px;
    padding: 0px;
    border: none;
}

.jk-close-modal:hover {
    background: transparent;
    color: #000b47;
    padding: 0px;
    border: none;
}

.jk-progress-bar {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d7d7d7;
    transition: 0.3s ease;
}

.jk-progress-bar.active {
    background: #ff6e1f;
    transform: scale(1.15);
}

.jk-step {
    display: none;
    padding: 5px 40px 20px;
    animation: jkFade 0.3s ease;
}

.jk-step.active {
    display: block;
}

@keyframes jkFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jk-step h2 {
    margin: 0px;
    font-size: 18px;
    line-height: 1.2;
    color: #000b47;
    font-weight: 700;
}

.jk-step p {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.jk-options {
    display: grid;
    gap: 14px;
}

.jk-options label {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: 0.5px solid #2b2b2b;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    color: #2b2b2b;
}

.jk-options label:hover {
    border-color: #ff672170;
    background: #ff5a0017;
    transform: translateY(-1px);
}

.jk-options input[type="radio"] {
    display: none;
}

.jk-options label.active-option {
    border-color: #000b47;
    background: #eef2ff;
    box-shadow: 0 0 0 2px rgba(0, 11, 71, 0.08);
}

.jk-btns {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 0px;
    flex-wrap: wrap;
}

#checklist_form input[type="text"],
#checklist_form input[type="email"] {
    width: 100%;
    border: 0.5px solid #2b2b2b;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: 0.3s;
}

.jk-form-title font {
    font-size: 18px;
    font-weight: 500;
}

#checklist_form input[type="text"]:focus,
#checklist_form input[type="email"]:focus {
    border-color: #000b47;
    box-shadow: 0 0 0 4px rgba(0, 11, 71, 0.08);
}

#checklist_form button {
    height: auto !important;
}

#submit,
#jk-go-form,
#jk-print-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff6b1a !important;
    color: #fff !important;
    border: 0 !important;
    padding: 15px 35px !important;
    border-radius: 999px !important;
    margin-top: 15px;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.2em !important;
    text-align: center;
    transition: all 0.35s ease !important;
    -webkit-appearance: none !important;
    box-shadow: 0 10px 25px rgba(255, 107, 26, 0.25);
    z-index: 1;
}

.jk-prev::before,
#submit::before,
#jk-print-btn::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -120%;
    width: 90%;
    height: 160%;
    background: rgba(255, 255, 255, 0.18);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.jk-prev:hover::before,
#submit:hover::before,
#jk-print-btn:hover::before {
    left: 130%;
}

.jk-prev:hover,
#submit:hover,
#jk-print-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 107, 26, 0.35);
}

.jk-prev:active,
#submit:active,
#jk-print-btn:active {
    transform: scale(0.98);
}

label.error {
    color: red !important;
    font-size: 12px !important;
    margin-top: 0px !important;
    display: block;
    font-weight: 200 !important;
}

#jk_response {
    margin-top: 10px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

table td,
table th {
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.jk-popup-header {
    padding: 30px 40px 15px;
    border-bottom: 1px solid #ececec;
}

.jk-popup-header h2 {
    font-size: 18px;
    line-height: 1.5em;
    color: #000b47;
    font-weight: 700;
    margin: 0px;
}

#jk-result-step h2 {
    font-size: 18px;
    line-height: 1.5em;
    color: #000b47;
    font-weight: 700;
    margin: 5px 0 0px;
}

.jk-readiness-message h4 {
    font-size: 16px;
    line-height: 1.2em;
    color: #000b47;
    font-weight: 700;
    margin: 5px 0 0px;
}

.jk-popup-header p {
    font-size: 14px;
    line-height: 1.2em;
    color: #5f6368;
    margin: 0;
}

.jk-progress-top {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    flex-wrap: wrap;
}

.jk-progress-text {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #ff6e1f;
    text-transform: uppercase;
    white-space: nowrap;
}

.jk-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 7px;
}

.jk-modal-content .tisax-booking button {
    background: #ff6b1a;
    border: none;
}

.jk-result-table tr th {
    padding: 2px 5px;
    font-size: 14px;
}

.jk-result-table tr td {
    padding: 5px;
    font-size: 12px;
    font-weight: 400;
}

td.jk-answer {
    padding: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: black;
}

.jk-score {
    font-size: 22px;
    font-weight: 600;
    color: #ff6e1f;
}

.jk-readiness-message {
    line-height: 1.8;
}

.jk-success-box {
    margin-top: 15px;
    padding: 10px;
    color: #ff6b1a;
    font-size: 14px;
    text-align: center;
    font-weight: 300;
}

.jk-form-title {
    margin-bottom: 25px;
}

.jk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 15px;
}

h2.jk-form-title {
    margin: 5px 0px 10px;
}

.jk-form-group {
    display: flex;
    flex-direction: column;
}

.jk-form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.jk-form-group label span {
    color: red;
}

.jk-form-group input {
    height: 48px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 14px;
    background: #fff;
}

.jk-form-group input:focus {
    outline: none;
    border-color: #ff6e1f;
}

.jk-checkbox-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}

.jk-checkbox-wrap input[type="checkbox"] {
    margin-top: 4px;
}

.jk-checkbox-wrap>label:not(.error) {
    flex: 1;
}

.jk-checkbox-wrap label.error {
    width: 100%;
    order: 99;
    margin-left: 12px;
}

.jk-checkbox-wrap input {
    margin-top: 3px;
}

.jk-checkbox-wrap label {
    font-size: 12px;
    line-height: 1.7;
    color: #666;
}

.jk-checkbox-wrap a {
    color: #ff6e1f;
    text-decoration: none;
}

.jk-form-submit #submit {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 40px;
    background: #ff6e1f;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.jk-form-submit #submit:hover {
    opacity: .9;
}

p.jk-form-p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    padding: 1px 0px 2px 0px;

}

/* TABLET */
@media (max-width: 992px) {
    .jk-modal-content {
        padding: 40px 30px;
    }

    .jk-step h2 {
        font-size: 30px;
    }

    .jk-step p {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    p.jk-form-p {
        margin: 0px !important;
        font-size: 12px !important;
        font-weight: 400;
        padding: 1px 0px 1px 0px;
    }

    .jk-form-group label {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 5px;
        color: #1a1a1a;
    }

    .jk-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px 15px;
        padding: 0 5px;
    }

    h2.jk-form-title {
        font-weight: 700;
        margin: -10px 0px 5px 0 !important;
    }

    .jk-step.step-14 {
        padding: 0px 0;
    }

    #jk-result-step h2 {
        margin-top: 0px;
        font-size: 16px;
    }

    .jk-readiness-message h4 font {
        font-size: 16px;
        color: #000;
    }

    .jk-readiness-message p {
        font-weight: 400 !important;
        margin: 3px 0 !important;
        font-size: 12px !important;
    }

    .jk-modal {
        padding: 12px;
    }

    button.jk-prev {
        padding: 15px 0 0 0;
        text-align: left;
    }

    .jk-modal-content {
        padding: 20px 10px;
        border-radius: 18px;
        /* max-height: 75vh; */
    }

    .jk-close-modal {
        width: 36px;
        height: 36px;
        font-size: 30px;
        right: 6px;
        top: 0px;
    }

    .jk-step h2 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .jk-step-h2 {
        margin: 0px !important;
        font-size: 18px;
    }

    .jk-step p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .jk-options {
        gap: 12px;
    }

    .jk-options label {
        padding: 14px;
        font-size: 15px;
        border-radius: 12px;
        align-items: flex-start;
    }

    .jk-options input[type="radio"] {
        margin-top: 2px;
    }

    .jk-btns {
        flex-direction: column;
        gap: 1px;
        margin-top: 0px;
    }

    #submit,
    #jk-go-form,
    #jk-print-btn,
    .jk-open-btn {
        width: 100% !important;
        min-width: 100% !important;
        min-height: 40px !important;
        padding: 10px 20px !important;
        font-size: 15px !important;
    }

    #checklist_form input[type="text"],
    #checklist_form input[type="email"] {
        padding: 7px;
        font-size: 13px;
        border-radius: 4px;
        height: 35px;
    }

    table td,
    table th {
        padding: 10px;
        font-size: 13px;
    }

    .jk-popup-header {
        padding: 0px 0px 10px;
        margin-bottom: 10px;
    }

    .jk-popup-header h2 {
        font-size: 16px;
        line-height: 1.2em;
        width: 90%;
    }

    .jk-popup-header p {
        font-size: 12px;
    }

    .jk-progress-top {
        gap: 10px;
        margin-bottom: 10px;
        padding: 0;
    }

    .jk-progress-text {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .jk-progress-wrapper {
        gap: 6px;
    }

    .jk-progress-bar {
        width: 6px;
        height: 6px;
    }

    .jk-step.active {
        padding: 10px 0;
    }
}