/* New Unminified CSS */
.size_chart_popup {
    width: 100vw;
    height: 100%;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    z-index: 9998;
    background: #00000080;
    display: none;
    align-items: center;
    justify-content: center;
}

.size_chart_popup.active {
    display: flex;
}

.sc_wrap {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    padding: 60px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: start;
}

.size_chart_toggle_btn {
    display: flex;
    align-items: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.tops_section_btn,
.bottom_section_btn {
    flex: 0 1 50%;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    background: #F4F4F4;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.tops_section_btn.active,
.bottom_section_btn.active {
    color: #ffffff;
    background: #333333;
}

.sc_navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc_navbar_item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 0 0 50%;
    padding: 10px 10px 20px;
    color: #bbbbbb;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    border-bottom: 1px solid #bbbbbb;
    cursor: pointer;
}

.sc_navbar_item.active {
    color: #333333;
    border-bottom: 1px solid #333333;
}

.sc_table_wrap {
    display: none;
    width: 100%;
}

.sc_table_wrap.active,
.sc_details_wrap.active {
    display: block;
}

.sc_table_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sc_table_heading {
    color: #333333;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.sc_table_heading::after {
    content: "(Inch)";
    color: #777777;
    font-weight: 500;
}

.sc_table_header:has(.sc_table_btn.sc_table_cm_btn.active) .sc_table_heading::after {
    content: "(Cm)";
}

.sc_table_toggler {
    border-radius: 50px;
    background: #F4F4F4;
    display: flex;
    align-items: center;
    width: 150px;
    height: 40px;
}

.sc_table_btn {
    height: 100%;
    flex: 0 0 50%;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.sc_table_btn.active {
    color: #ffffff;
    background-color: #333333;
}

.sc_table {
    width: 100%;
    border-collapse: collapse;
}

.sc_table tr {
    border-bottom: 1px solid #D9D9D9;
}

.sc_table th {
    width: 20%;
    color: #333333;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    padding: 16px 6px;
}

.sc_table td {
    color: #777777;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding: 18px 6px;
}

.sc_table tr td:first-child {
    color: #333333;
}

.sc_table tr:nth-child(even) {
    background-color: #FAFAFA;
}

.sc_table_wrap .inch_value,
.sc_table_wrap .cm_value {
    display: none;
}

.sc_table_wrap .inch_value.active,
.sc_table_wrap .cm_value.active {
    display: block;
}

.sc_details_wrap {
    width: 100%;
    padding: 24px 24px 10px;
    display: none;
}

.sc_details_fyr {
    color: #777777;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 24px;
    text-align: center;
    display: none;
}

.sc_details {
    display: flex;
    align-items: center;
    gap: 46px;
    width: 100%;
    max-width: 725px;
    margin: auto;
}

.sc_details_img_wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 22px;
}

.sc_details_img_wrap h6 {
    color: #333333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.sc_details_img {
    max-width: 186px;
    width: 100%;
    aspect-ratio: 0.6;
}

.sc_details_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sc_details_content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
}

.sc_details_content p {
    color: #777777;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 135%;
}

.sc_details_content p span {
    color: #333333;
    font-weight: 400;
    text-transform: uppercase;
}

.sc_cls_btn {
    position: absolute;
    top: 12px;
    right: 16px;
    cursor: pointer;
    width: 32px;
    aspect-ratio: 1;
    z-index: 2;
}

.custom_size_popup.active {
    align-items: center;
    justify-content: center;
    z-index: 113;
}

.custom_size_popup .popup_containers_wrap {
    max-width: 900px;
    width: 100%;
}

.custom_size_popup .popup_containers_content {
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}

.custom_form {
    width: 100%;
    position: relative;
}

.custom__parent {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 4%;
}

.custom_input_wrap {
    flex: 0 0 48%;
}

.custom__input {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 16px;
    background-color: #fbfbfb;
    border-bottom: 1px solid #D9D9D9;
}

.select_text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    outline: none;
    border: none;
    width: 100%;
    color: #777777;
    background-color: transparent;
}

.sc_heading1 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.custom__Hed {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 12px
}

.custom_input_wrap:not(:last-of-type) .custom__Hed::after {
    content: "*";
    color: red;
    margin-left: 3px;
}

.custom_input_wrap:has(.error__msg.active) .custom__input {
    border-bottom: 1px solid #ff0000;
}

.note_para {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.note_para .name {
    font-weight: 600;
}

.note_para1__h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 16px;
}

.list_ol {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    margin-left: 24px;
}

.list_ol_para {
    margin-top: 8px;
    margin-left: 0px;
    text-indent: -14px;
    line-height: 1.5;
}

.custom__button_sub {
    width: 100%;
    padding: 16px 0px;
    cursor: pointer;
}

.size_change_info_popup.active {
    z-index: 113;
    align-items: center;
    justify-content: center;
}

.size_change_info_popup .popup_containers_wrap {
    max-width: 675px;
}

.size_change_info_popup .popup_containers_cont {
    padding: 0px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup_btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.popup_btns button {
    flex: 0 1 50%;
    height: 50px;
    cursor: pointer;
}

.Cls_customize_display {
    display: none;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #000000;
}

.Cls_customize_display.active {
    display: block;
}

.size_change_info_details {
    color: #333333;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

@media screen and (max-width: 1024px) {

    .tops_section_btn,
    .bottom_section_btn {
        font-size: 18px;
        height: 50px;
    }

    .custom_size_popup .popup_containers_content {
        max-height: calc(100% - 57px);
        height: 100%;
        overflow: hidden scroll;
        scrollbar-width: auto;
        gap: 20px;
        padding: 20px 16px;
    }

    .custom_size_popup .popup_containers_content::-webkit-scrollbar {
        display: block;
    }
}

@media screen and (max-width:767px) {
    .size_chart_popup {
        align-items: end
    }

    .sc_wrap {
        gap: 16px;
        padding: 40px 0px 32px;
        max-height: 80%;
        overflow: hidden scroll;
        scrollbar-width: auto;
    }

    .sc_wrap::-webkit-scrollbar {
        display: block;
    }

    .size_chart_toggle_btn {
        width: 100%;
        padding: 0px 12px;
    }

    .tops_section_btn,
    .bottom_section_btn {
        font-size: 14px;
        height: 40px;
    }

    .sc_cls_btn {
        width: 20px;
        top: 10px;
        right: 10px;
    }

    .sc_navbar {
        padding: 0 12px
    }

    .sc_navbar_item {
        padding: 8px 0;
        font-size: 14px;
    }

    .sc_table_wrap {
        padding: 5px
    }

    .sc_table_header {
        margin-bottom: 4px;
        padding: 0 10px
    }

    .sc_table_heading {
        font-size: 14px
    }

    .sc_table_toggler {
        width: 100px;
        height: 26px
    }

    .sc_table td {
        padding: 15px 0;
        font-size: 12px
    }

    .sc_table th {
        padding: 12px 0;
        font-size: 12px
    }

    .sc_details_wrap {
        padding: 0
    }

    .sc_details_fyr {
        font-size: 14px;
        margin-bottom: 12px
    }

    .sc_details {
        flex-direction: column;
        gap: 12px
    }

    .sc_details_img_wrap {
        gap: 12px;
        align-items: center;
    }

    .sc_details_img {
        max-width: 150px;
        aspect-ratio: initial;
    }

    .sc_details_img_wrap h6,
    .sc_details_content p,
    .sc_table_btn {
        font-size: 12px
    }

    .sc_details_content {
        padding: 0 16px;
        gap: 14px;
    }

    .custom_size_popup .popup_containers_wrap {
        height: 100%;
        margin-top: auto;
    }

    .custom__parent {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .Cls_customize_display {
        display: none;
        margin-top: 12px;
        font-size: 12px;
    }

    .custom_size_popup.active,
    .size_change_info_popup.active {
        align-items: end;
    }

    .size_change_info_popup .popup_containers_cont {
        gap: 16px;
        padding: 0px 12px 20px;
    }

    .popup_btns button {
        height: 40px;
    }

    .custom__input {
        padding: 16px;
    }

    .custom__Hed {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .select_text,
    .note_para,
    .list_ol_para {
        font-size: 14px;
    }

    .sc_heading1,
    .size_change_info_details {
        font-size: 16px;
    }

    .size_change_info_popup .popup_containers_wrap {
        max-width: 100%;
    }
}

@media screen and (max-width:359px) {

    .sc_navbar_item,
    .sc_details_img_wrap h6,
    .sc_details_content p {
        font-size: 12px
    }

    .sc_table_btn,
    .sc_table td,
    .sc_table th {
        font-size: 10px
    }

    .custom_size_popup .popup_containers_content {
        gap: 16px;
        padding: 16px 10px;
    }

    .custom__input {
        padding: 12px;
    }

    .custom__Hed {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .sc_heading1 {
        font-size: 14px;
    }

    .select_text,
    .note_para,
    .list_ol_para {
        font-size: 12px;
    }
}