@font-face {
    font-family: 'American Typewriter';
    src: url('../fonts/american_typewriter_regular.woff2') format('woff2'),
         url('../fonts/american_typewriter_regular.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    
}
:root {
    --primary: #5CB750;
    --secondary: #FF8E00;
    --white: #ffffff;
    --black: #000000;
    --field-border: #BFBFBF; 
    --transition: .2s;
    --border1: rgb(0 0 0 / 25%);
    --default: #999999;
}
body {
    font-family: "Akshar", sans-serif;
    font-weight: 400;
    min-height: 100svh;
    color: var(--black);
    line-height: 1.1;
}
img {
    max-width: 100%;
    height: auto;
    font-size: 0.875rem;
    font-style: italic;
    text-indent: .5rem;
}
.svg-hidden {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}
strong {
    font-weight: 600;
}
a {   
    color: var(--black); 
    text-decoration: none;
    /* text-underline-offset: .375rem; */
}
.container {
transition: var(--transition);
}
::placeholder {
    color: #999999;
}
ul, ol, h1, h2, h3, h4, h5, h6, p {
    padding: 0;
    margin: 0;
    line-height: inherit;
}
.header,
.main-content,
.footer {
    display: block;
    width: 100%;
    
} 
.header,
.footer {
    background: var(--black);
    height: 8.75rem;
    display: flex;
    align-items: center;
    color: var(--white);
}
.header .register-navigation {
    display: inline-flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    font-size: 1.0625rem;
    counter-reset: section;
}

.header .register-navigation li {    
    position: relative;
    min-width: 97px;
    color: var(--white);
    transition: var(--transition);
    text-align: center;
    padding-top: 2.5625rem;
    /* cursor: pointer; */
}
.header .register-navigation li span {
    opacity: .5;
    transition: var(--transition);
}
.header .register-navigation li.active span {
    opacity: 1;
}
/* .header .register-navigation li:not(.active):hover span {
    opacity: .8;
} */
.header .register-navigation li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -10px;
    right: -10px;
    height: 2px;
    background: var(--white);
    pointer-events: none;
}
.header .register-navigation li:first-child::before {
    left: 50%;
}
.header .register-navigation li:last-child::before {
    right: 50%;
}
.header .register-navigation li::after {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2.125rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border-radius: 100vw;
    border: 2px solid var(--white);
}
.header .navbar-navigation {
    display: inline-flex;
    list-style: none;
    padding: 0;
    font-size: 1.25rem;
}
.header .navbar-navigation li:not(:first-child):not(:last-child) {
    margin-inline: clamp(10%, 5vw , 6.1875rem);
}
.header .navbar-navigation li, 
.header .navbar-navigation li a {
    color: var(--white);
    transition: var(--transition);
}
.header .navbar-navigation li a:hover {
    color: var(--secondary);
}
.main-content {
    padding-block: 2.25rem 6.25rem;
    flex: 1 1 auto;
}
.footer .contect-link {
    color: var(--secondary);
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
}
.footer .contect-link:hover {
    text-decoration: underline;
}

.form-box {
    max-width: 541px;
    min-height: 60vh;
    flex-direction: column;
}
.form-box a:not(.btn) {
    text-decoration: underline;
}
.form-box.step-menu {
    max-width: 966px;
}
.page-title {
    font-family: 'American Typewriter';
    font-weight: 600;
    margin-bottom: 2.625rem;
}
.page-title h1 {
    color: var(--white);
    background: var(--primary);
    display: inline-block;
    padding-inline: 0.9375rem;
    font-size: 3.125rem;
    line-height: 1.14;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 1.875rem;
    max-width: 380px;
}
.form-group .form-label {
    font-size: 1rem;
}
.form-group .form-control {
    border-color: var(--field-border);
    min-height: 50px;
    border-radius: 10px;
}
.form-group .input-group.custom .btn-inline {
    position: absolute;
    right: -0.9375rem;
    transform: translateX(100%);
    border-top-left-radius: 100vw !important;
    border-bottom-left-radius: 100vw !important;
}
.form-group .input-group.custom .form-control {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.btn {
    border-radius: 100vw;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 700;
    padding-block: 0.563rem;
    max-width: 380px;
}
.btn.btn-inline {
    font-size: 1rem;
    text-transform: initial;
    padding: 0.75rem 1.5625rem;
    min-width: 147px;
}
.btn:hover,
.btn:focus {
    opacity: .9;
}
.btn:active {
    opacity: .8;
}
.btn.btn-primary,
.btn.btn-primary:active {
    background: var(--primary);
    border-color: var(--primary);
}
.btn.btn-secondary,
.btn.btn-secondary:active {
    background: var(--secondary);
    border-color: var(--secondary);
}
.btn.btn-default,
.btn.btn-default:active {
    background: var(--white);
    border-color: var(--default);
    color: var(--default);
}
.btn.transform-normal {
    text-transform: initial;
}
.btn.btn-secondary-invert,
.btn.btn-secondary-invert:active {
    background: var(--white);
    border-color: var(--secondary);
    color: var(--secondary);
}
.btn.withIcon {
    position: relative;
    min-width: 204px;
}
.btn.withIcon .btn-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}
.btn.withIcon.leftIcon .btn-icon {
    left: 1rem;
    right: initial;
}
.form-group.width-full {
    max-width: inherit;
}


.subheading {
    display: block;
    border-top: 1px solid var(--border1);
    padding-top: 1.4375rem;
}
.subheading h3 {
    font-size: 1.5625rem;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 2.8125rem;
    position: relative;
}

.subheading .subheading-info {
    position: absolute;
    width: 219px;
    font-size: 1rem;
    right: -2.1875rem;
    transform: translateX(100%);
    top: 0.625rem;
}
.welcome-section {
    width: 100%;
    max-width: 651px;
}
.welcome-graphic {
    display: inline-block;
    margin-right: -17px;
    max-width: 100%;
}
.welcome-section h2 {
    font-size: 1.5625rem;
    font-weight: 600;
}
.welcome-section .welcome-links {
    gap: 2rem;
}

/*custom select css S*/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}
.custom-select {
    position: relative;
    cursor: pointer;
    width: 100%;
}
.custom-select select {
    display: none; 
}
.custom-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 20px;
    background: url('../images/select-arrow.svg') no-repeat center center;
    background-size: contain;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}
.custom-select-selected {
    padding: 0;
    padding-right: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 175px;
    display: block;
    width: 100%;
    color: #999;
    line-height: 2.25;
    cursor: pointer;

    border-radius: 10px;
}
.custom-select-items {
    position: absolute;
    border:1px solid var(--field-border);
    background: var(--white);
    min-height: 50px;
    border-radius: 10px;
    top: -1px;
    left: -1px;
    right: -1px;
    z-index: 1;
    display: none;
    overflow: hidden;
    padding: .575rem .75rem;
    z-index: 1;
}
.custom-select-items span {    
    line-height: 1.875;
    display: block;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}
.custom-select-items span:hover {
    color: #000;
}  

/*custom select css E*/

.table td {
    box-sizing: content-box;
}
.table .col-cate {
    max-width: 201px;
    width: 201px;
}
.table .col-img {
    max-width: 54px;
    width: 54px;
}
.table .col-item {
    max-width: 156px;
    width: 156px;
}
.table .col-desc {
    max-width: 284px;
    width: 284px;
}
.table .col-size,
.table .col-price,
.table .col-action {
    max-width: 65px;
    width: 65px;
}
.table .form-group .uploadImage {
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    cursor: pointer;
    height: 50px;
}
.table .form-group .uploadImage input {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;

} 
.table .form-group .uploadImage img {
    width: auto;
    max-height: 100%;
}
.table .table-deleteBtn, .close-btn {
    appearance: none;
    background: transparent;
    border: 0;
    width: 25px;
    aspect-ratio: 1;
    padding: 0;
    color: var(--secondary);
    transition: var(--transition);
}
.table .table-deleteBtn:hover {
    color: var(--primary);
}
.table .table-deleteBtn svg, .close-btn svg {
    width: 100%;
    height: 100%;
}


.customFileBtn {
    position: relative;
}
.customFileBtn input[type="file"] {
    position: absolute;
    visibility: hidden;
    inset: 0;
} 
.form-box.step-menu  .form-group {
    max-width: 100%;
}
.floorPlan-label {
    padding-top: 1.5rem;
}
.floorPlan-label,
.floorPlan-label ~ p {
    font-size: 1.125rem;
}
.floorPlan-label.large {
    font-size: 1.5rem;
}
.floorPlan-label span {
    color: var(--secondary);
}
.contact-section, 
.thankyou-section {
    margin-top: 4rem;
}
.thankyou-section {
    max-width: 600px;
}
.thankyou-status {
    margin-bottom: 230px;
}
.thankyou-section p,
.contact-section .form-label {
    font-size: 1.5rem;
}
.thankyou-section .w-467 {
    max-width: 467px;
}
/*Responsive CSS S*/
@media (min-width: 1200px) {
    .container {
        max-width: 1100px;
    }
}

.custom-select::after {
    transition: .3s;
    z-index: 1;
}
.custom-select.form-control:has(.custom-select-items[style="display: block;"]) {
    z-index: 2;
}
.custom-select.form-control:has(.custom-select-items[style="display: block;"])::after {
    transform: translateY(-50%) rotate(-90deg);
}
.form-group:has(> .price-field) {
    position: relative;
}
.form-group .form-control.price-field {
    padding-left: 16px;
}
.form-group:has(> .price-field)::before {
    content: "£";
    position: absolute;
    left: 8px;
    top: 16px;
    z-index: 1;
}
.loader-section{
    background: rgba(0, 0, 0, 0.75) center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;

    z-index: 10000;
}
.loader-overlay{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.loader-overlay img{
    width: 50px;
}
.custom-select-items span.add-new-option {
    color: var(--secondary);
}
.custom-select-items span.add-new-option:hover {
    color: var(--primary);
}
.custom-select-items span.newCategory {
    position: relative;
    padding-right: 20px;
}
.custom-select-items span.newCategory i.edit {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    background: url(../images/edit-icon.svg);
    cursor: pointer;
}
i.edit:hover {
    filter: brightness(0) saturate(100%) invert(63%) sepia(61%) saturate(449%) hue-rotate(66deg) brightness(90%) contrast(82%);
}
.custom-select-items {
    overflow: auto;
    padding: .575rem 1.325rem .575rem .75rem;
    max-height: 300px;
    scrollbar-width: thin;
}
.custom-select-items span {
    line-height: 1.3;
    padding-block: 0.29rem;
}
.custom-select::after {
    right: 8px;
}
.contact-section {max-width: 450px;}
.price-field, .size-field {min-width: 75px;}
.custom-select.form-control:has(.custom-select-items[style="display: block;"]) {
    border-radius: 10px 10px 0 0;
}
.custom-select-items {
    border-top-width: 0;
    border-radius: 0 0 10px 10px;
    top: calc(100% - 1px);
}
.form-box:not(.step-floorplan) {
    max-width: max-content;
}
.form-group {
    width: 380px;
    max-width: 100%;
}
.step-register .alert {
    max-width: 380px !important;
}
.form-box.step-menu .form-group, .table .form-group {
    width: auto; 
}
@media (max-width: 767px) {
    .form-group .input-group.custom .btn-inline {
        position: relative;
        transform: translateX(0px);
        margin-left: 0.9375rem !important;
        right: 0;
        padding-inline: 1rem;
        min-width: inherit;
    }
    .subheading .subheading-info {
        display: block;
        width: 100%;
        transform: translateX(0px);
        position: relative;
        right: inherit;
        top: inherit;
        margin-top: 0.625rem;
    }
}
.stripe-connect {
    max-width: max-content;
    flex-direction: column;
}



/*menu page css*/
.menu-section {
    max-width: 498px;
    width: 100%;
}
.menu-section .category-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 986px;
    overflow: auto;
    scrollbar-width: none;
}
.menu-section .category-menu > div {
    background: #D7D7D7;
    padding-block: 14px;
}
.menu_width {
    min-width: 498px;
    max-width: 498px;
}
.menu-section .category-menu > div:first-child {
    padding-top: 46px;
}
.menu-section .category-menu > div h4 {
    font-family: 'American Typewriter';
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding:8px 15px;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 1.154;
    display: inline-block;
    margin-bottom: 15px;
}
.menu-section .category-menu > div ul {
    width: 100%;
    list-style: none;
    display: flex;
    gap: 10px;
    overflow: auto;
    scrollbar-width: none;
    padding-inline: 15px;
    scroll-padding-inline: 15px;
    scroll-snap-type: x mandatory;
}
.menu-section .category-menu > div ul li.snap-area {
    scroll-snap-align: start;
}
.menu-section .category-menu > div ul li.snap-area > div {
    display: flex;
    flex-direction: column;
    width: 134px;
    min-height: 134px;
    height: 100%;
    background: var(--white);
    padding: 8px;
    gap: 8px;
    align-items: center;
    text-align: center;
}
.menu-section .category-menu > div ul li.snap-area > div .category-image {
    max-width: 88px;
    width: 100%;
    aspect-ratio: 1; 
    margin-inline: auto;
}
.menu-section .category-menu > div ul li.snap-area > div .category-image img {
    width: 100%;
    height: 100%;
    display: inline-block;
    object-fit: contain;
}
.menu-section .category-menu > div ul li.snap-area > div .category-name-price {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.menu-section .category-menu > div ul li.snap-area > div .category-name-price h5 {
    font-size: 15px;
    line-height: 1.38;
    font-weight: 500;
    color: var(--black);
}
.menu-section .category-menu > div ul li.snap-area > div .category-name-price p {
    color: var(--primary);
    margin-top: auto;
    font-size: 12px;
    line-height: 1.38;
    font-weight: 700;
}
.menu-section .form-group {
    max-width: 100%;
}

@media (max-width: 532px) {
    .menu-section .category-menu > div {
        padding-block: 7px;
    }
    .menu_width {
        min-width: 340px;
        max-width: 340px;
    }
    .menu-section .category-menu > div h4 {
        line-height: 1.1;
        margin-bottom: 10px;
    }
    .menu-section .category-menu > div ul li.snap-area > div {
        width: 110px;
        min-height: 110px;
        height: 100%;
        padding: 4px;
        gap: 4px;
    }
}