@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
}
body {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding:0;
}
a, input, select, button {
    font-family: 'Inter', sans-serif;
}
.disabled {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}
h1.app_title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    column-gap: 10px;
    align-items: center;
}
h1.app_title a {
    font-size: 0;
}
h2.app_subheading {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.app_div {
    background-color: #fff;
    padding: 0 20px;
    max-width: 420px;
    margin: 60px auto 30px auto;
}
.app_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.switch_bar {
    display: flex;
    justify-content: center;
    align-items: center;
}
.switch_bar input {
	display: block;
	opacity: 0;
    display: none;
}
.switch_bar label {
    position: relative;
    width: 36px;
    height: 20px;
    display: inline-block;
    background: #3190ce;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    margin: 0 8px;
}
.switch_bar label:after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 1px 3px 6px #666666;
}
.switch_bar input:checked + label {
    background: #3190ce;
}
.switch_bar input:checked + label:after {
    left: auto;
    right: 2px;
}
.switch_bar span {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}
.form_row {
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
    margin-bottom: 20px;
}
.form_col {
    position: relative;
    width: 100%;
}
.form_col p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}
label.field_name {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px 0;
    display: flex;
    column-gap: 5px;
}
.input_img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
select.form-control, input.form-control {
    width: 100%;
    border-radius: 0;
    background-color: #fafafa;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #a9a9a9;
    padding-right: 35px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    min-height: 45px;
}
select.form-control:hover,
select.form-control:focus, 
input.form-control:hover,
input.form-control:focus {
    outline: none;
}
.form_col .cust-form-control {
    background-color: #fafafa;
    border: 1px solid #a9a9a9;
}
select.form-control.in_icon, input.form-control.in_icon {
    padding-left: 35px;
}
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../svg/Dropdown.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
}
select.form-control * {
    background-color: #fff;
    color: #000;
}
.btn-full {
    border-radius: 0;
    background-color: #1f2526;
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 45px;
    border: 1px solid #1f2526;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-discard {
    color: #CE3131;
    border-color: #CE3131;
    background-color: transparent;
}
.map_box {
    margin-bottom: 15px;
}
.map_box img {
    width: 100%;
    height: 100%;
    object-position: left;
    object-fit: cover;
}
.promo_code {
    border-radius: 10px;
    border: 1px solid #E3E3E3;
    padding: 15px;
}
.promo_code input.form-control {
    background-color: transparent;
    border: 1px solid #E3E3E3;
}
.promo_form .form_col:last-child {
    max-width: 75px;
}
.promo_form .input_img {
    right: 10px;
    left: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}
.data_table td {
    padding: 10px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}
.data_table td:last-child {
    text-align: right;
}
.data_table tr.subtotal_row {
    border-top: 1px solid #ddd;
}
.data_table td {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
.data_table .total_price td:first-child {
    font-size: 20px;
    font-weight: 700;
}
.data_table .total_price td {
    color: #3190CE;
    font-size: 14px;
}
.promo_code .alert {
    display: flex;
    align-items: flex-start;
    border-radius: 0;
    background-color: rgba(42, 131, 61, 0.1);
    padding: 10px 15px;
    margin-bottom: 15px;
    column-gap: 5px;
}
.promo_code .alert p {
    color: #2A833D;
    margin: 0;
    font-size: 12px;
    line-height: 16px;
}
.accessorials_table {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.accessorials_table tr {
    border: 1px solid #F5F5F5;
    text-align: left;
}
.accessorials_table tr:nth-child(odd) {
    background-color: #F5F5F5;
}
.accessorials_table th,
.accessorials_table td {
    font-size: 12px;
    line-height: 20px;
    padding:8px;
    vertical-align: top;
}
.accessorials_table th {
    background-color: #3190CE;
    color:#fff;
    font-weight: 600;
}
.accessorials_table td {
    color: #666;
}
.jconfirm .jconfirm-box-container .jconfirm-box {
    padding: 0;
}
/* .jconfirm-content .app_div {
    margin-top: 15px;
} */
.jconfirm .jconfirm-title-c {
    display: none !important;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon {
    display: none !important;
}