:root{
    --app-background : #f3f3f3;
    --app-accent: #bd8346;
}
@font-face {
    font-family: Cormorant;
    src: url("https://res.cloudinary.com/rr6/raw/upload/v1659344357/fonts/Cormorant-Regular_zww8gm.otf") format("opentype");
}
@font-face {
    font-family: Heebo;
    src: url("https://res.cloudinary.com/rr6/raw/upload/v1659344974/fonts/Heebo-Regular_r3hoje.ttf");
}
@font-face {
    font-family: Karma;
    src: url("https://res.cloudinary.com/rr6/raw/upload/v1659947254/fonts/Karma-Medium_tlycrl.ttf");
}
:root {
    --font-main: 'Heebo';
}
body {
    font-family: Heebo, serif;
}
.app-container {
    min-height: 100vh;
    background-color: var(--app-background);
}
.current-category {
    color: #777;
}
.side-item-title {
    font-weight: 700;
}
a.menu-list-link:hover {
    background: #e9e5e5;
    border-radius: 10px;
}
a.menu-list-link {
    display: block;
    color: #444 !important;
    margin-bottom: 10px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px;
}
span.trend.small {
    font-size: 1em;
    top: 20px;
}
.menu-list {
    margin-left: 10px;
}
.cursor-pointer{
    cursor: pointer;
}
.product-col {
    background: #fff;
    -webkit-box-shadow: 0 0 7px 0 rgb(0 0 0 / 4%);
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 4%);
    border: 2px solid #fff;;
}
.product-col:hover {
    transition: all .3s ease;
    border-color: var(--app-accent);
}
.product-footer .brand-name {
    margin-bottom: 10px;
    color: var(--app-accent);
    font-weight: 500;
}
.product-footer .product-name{
    font-weight: 500;
}
span.view-product {
    position: absolute;
    width: 30px;
    height: 30px;
    align-items: center;
    top: -23px;
    left: -23px;
    opacity: 0;
    border-color: transparent transparent var(--app-accent) transparent;
    border-style: solid;
    border-width: 22px 22px 23px 22px;
    transform: rotate(-45deg);
}
.product-col:hover .view-product{
    opacity: 1;
    transition: all .3s ease;
}
span.view-product i {
    position: absolute;
    top: 5px;
    left: -6px;
}
.add-to-cart {
    height: 86px;
    width: 86px;
    background-color: #bd8346;
    border-radius: 60px;
    border: 8px solid #bd834657;
    background-clip: padding-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 31px 36px rgb(255 255 255 / 31%);
    visibility: hidden;
}
.product-col:hover .add-to-cart{
    visibility: visible;
    transition: all .3s ease;
}

.add-cart-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: xx-large;
    width: 100%;
    text-align: center;
    z-index: 3;
}
.sort-by button {
    box-shadow: none !important;
    padding: 0px;
    font-weight: 600;
}
.sort-by button::before {
    opacity: 0;
}
.sort-by .dropdown-menu {
    padding: 0px;
    border: none;
    border-top: 3px solid var(--app-accent);
    border-radius: 0px;
}
.sort-by .dropdown-menu a{
    font-weight: 500;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--app-accent);
}
.product-image img {
    max-height: 150px;
    object-fit: contain;
}
.checkout-btn {
    background-color: var(--app-accent);
    color: #fff;
    padding: 10px;
}
.topbar {
    position: fixed;
    right: 0;
    max-width: 340px;
    z-index: 1;
    width: 100%;
}
.cart-btn.mr-auto {
    font-size: xx-large;
}
.btn.checkout-button {
    font-size: 1.2em;
    color: #fff;
    border: 4px solid #ffffff21;
    border-radius: 43px;
    line-height: 1em;
    padding: 11px 20px;
}
span.cart-count {
    position: absolute;
    background: #000;
    color: #fff;
    font-size: small;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    top: -6px;
    left: 0px;
}
span.cart-total {
    font-size: smaller;
    font-weight: 500;
}
.previous-orders {
    background-color: #0b1a3a;
    color: #fff;
}
.cart-toggle {
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: xx-large;
    border-radius: 50%;
    position: absolute;
    top: 82px;
    right: 12px;
    box-shadow: 0 0 20px 7px rgb(0 0 0 / 17%);
    
}
.cart-toggle i{
    transition: all .3s ease;
    transform: rotate(0deg);
}
.cart-toggle.active i {
    transform: rotate(180deg);
    transition: all .3s ease;
}
.active .bar-inside {
    height: 100vh;
}
.cart-items {
    width: 100%;
    height: 100%;
    background: var(--app-background);
    box-shadow: 0 0 20px 0px rgb(0 0 0 / 17%);
}
a.add-cart-error {
    padding: 8px 20px;
    background: #0b1a3a;
    color: #fff !important;
    border-radius: 26px;
    margin-top: 2em !important;
    display: block;
    width: fit-content;
    margin: auto;
    text-decoration: none;
    border: 2px solid #0b1a3a;
}
.cart-active .cart-error {
    display: none;
}
.row.product-row {
    transition: all .3s ease;
}
.row.product-row.side-bar {
    margin-right: 340px;
    transition: all .3s ease;
}
@media (min-width: 576px){
    .app-footer{
        position: relative;
        z-index: 99;
        background: #fff;
    }
}
@media (max-width: 575px){
    .topbar{
        max-width: 100%;
    }
    .col-md-12.main-stic {
        padding-top: 8em;
    }
    .row.product-row.side-bar {
        margin-right: -6px !important;
    }
    .cart-summery-container {
        padding-bottom: 140px !important;
    }
    .cart-small{
        display: none;
    }
    tr.tr-item .update-quantity {
        display: block !important;
    }
    tr.tr-item .change-quanity {
        opacity: 1;
    }
    tr.tr-item .quantity-count {
        margin: auto !important;
        background: none !important;
    }
    .price-mob{
        display: block;
    }
    
}
.price-mob{
    display: none;
}
@media (max-width: 444px){
    .topbar {
        max-width: 100%;
    }
    .cart-desktop {
        display: none;
    }
    .price-mob{
        display: block;
    }
    .side-panel{
        max-width: 100%;
    }
    .col-md-12.main-stic {
        padding-top: 8em;
    }
    
}
.product-col-container{
    transition: all .3s ease;
}
.side-item-title i {
    transition: all .3s ease;
}
.side-item-title.collapesed i {
    transform: rotate(180deg);
}
.slim-col {
    padding: 0px 6px !important;
}
.slim-row {
    margin-left: -6px;
    margin-right: -6px;
}
span.side-toggler {
    font-size: x-large;
}
.cart-image img {
    max-height: 80px;
    object-fit: cover;
    max-width: 64px;
}
.product-cart-item {
    background: #fff;
    padding: 10px;
    border: 2px solid #fff;
}
.cart-image {
    min-width: 64px;
    text-align: center;
}
.product-cart-item:hover{
    border-color: var(--app-accent);
}
.cart-item-container {
    overflow-y: scroll;
    max-height: -webkit-fill-available;
}
.c-scroll::-webkit-scrollbar {
    width: 6px;
}
.c-scroll::-webkit-scrollbar-track {
    background: transparent; 
}
.c-scroll::-webkit-scrollbar-thumb {
    background: #afaaaa;
    cursor: pointer;
    border-radius: 28px;
}
.c-scroll {
    margin-right: -6px;
    padding-right: 6px;
}
.remove-product {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    cursor: pointer;
    color: #777;
    opacity: 0;
}
.product-cart-item:hover .remove-product{
    opacity: 1;
}
.product-cart-item:hover .change-quanity{
    opacity: 1;
}
.product-cart-item:hover .quantity-count{
    background: none;
}
.quantity-count {
    background: var(--app-background);
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.change-quanity {
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 7px 0px rgb(0 0 0 / 17%);
    font-size: small;
    margin: auto;
    opacity: 0;
    cursor: pointer;
}
.cart-items {
    position: relative;
}
.cart-item-container {
    max-height: calc(100% - 180px);
}
a.checkout {
    position: absolute;
    width: calc(100% - 40px) !important;
    left: 50%;
    bottom: 120px;
    z-index: 3;
    margin: 0 !important;
    transform: translate(-50%, -50%);
    display: none;
    color: #fff !important;
}
.cart-active a.checkout{
    display: block;
}
.product-pop {
    top: 0;
    left: 0;
    background: #0707076b;
    z-index: 980;
}
.pop-inner {
    background: #fff;
    width: 100%;
    height: auto;
    margin: auto;
    max-height: 90vh;
    max-width: 1060px;
    border: 2px solid var(--app-accent);
    padding: 20px;
}
i.close-pop {
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: x-large;
    color: #626161;
    cursor: pointer;
    z-index: 8;
}
.big {
    font-size: 140%;
}
.pop-image img {
    object-fit: contain;
    width: 100%;
    max-height: 400px;
    max-width: 400px;
}
.pop-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
a.add-to-cart-pop {
    background: var(--app-accent);
    color: #fff !important;
    text-decoration: none;
    padding: 6px 20px;
    border-radius: 37px;
}
.add-cart-control.active a.add-to-cart-pop{
    display: none;
}
.update-quantity.pop{
    display: none;
}
.add-cart-control.active .update-quantity.pop{
    display: block;
}
.pop .change-quanity {
    opacity: 1 !important;
}
.pop-inner {
    overflow-y: scroll;
}
@media (max-width: 991px){
    .cart-large{
        display: none;
    }
}
@media (max-width: 767px){
    .md-flex-row-reverse{
        flex-direction: column-reverse;
    }
    .pop-inner{
        max-width: 100%;
        max-height: 100%;
        border: none;
    }
    .pop-image-col{
        height: auto !important;
    }
    .cart-medium{
        display: none;
    }
}
.add-to-cart.active .add-cart {
    opacity: 0;
}
.cart-add-counter{
    opacity: 0;
}
.cart-add-counter span {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: x-large;
    color: #fff;
    font-weight: 600;
    transform: translate(-50%, -50%);
    
}
.add-to-cart.active .cart-add-counter{
    opacity: 1;
}
.cart-add-counter .change-quanity {
    opacity: 1;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.cart-add-counter .minus-quantity{
    right: 0;
    transform: translate(60%, -50%);
}
.cart-add-counter .plus-quantity{
    left: 0;
    transform: translate(-60%, -50%);
}
/*cart table styling*/
.cart-table-container tr.tr-item {
    background: #fff;
}
.cart-table-container th {
    font-size: large;
    color: #666;
}
.cart-table-container .table {
    border-spacing: 0 0.85rem !important;
    border-collapse: separate !important;
}
.co-product img {
    max-width: 54px;
    max-height: 54px;
    object-fit: contain;
}
.ml-0.mr-1.co-img-container {
    min-width: 60px;
    text-align: center;
}
.cart-table-container th, .cart-table-container td {
    border: none !important;
}
.cart-table-container td {
    padding: 1.5em;
}
tr.tr-item:hover {
    -webkit-box-shadow: 0px 0px 0px 2px var(--app-accent);
    -moz-box-shadow: 0px 0px 0px 2px var(--app-accent);
    box-shadow: 0px 0px 0px 2px var(--app-accent);
}
tr.tr-item td {
    vertical-align: middle;
}
.delete-co-item {
    position: absolute;
    right: -24px;
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    background: #fff;
    top: 50%;
    transform: translate(50%, -50%);
    border: 2px solid var(--app-accent);
    border-radius: 50%;
    cursor: pointer;
    color: #777 !important;
    opacity: 0;
}
tr.tr-item:hover .delete-co-item{
    opacity: 1;
}
.cart-empty tbody.cart-empty {
    display: table-row-group;
}
.checkout-footer {
    background: var(--app-accent);
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 2;
}
.checkout-footer .add-cart-error {
    border: 2px solid #0b1a3a;
}
.checkout-footer .add-cart-error {
    margin-top: 0px !important;
}
a.add-cart-error.invert {
    background: transparent;
    border: 2px solid #0b1a3a;
    color: #0b1a3a !important;
}
.cart-summery-container {
    padding-bottom: 100px !important;
}
tr.tr-item:hover .change-quanity{
    opacity: 1;
}
tr.tr-item .quantity-count {
    width: 40px;
    height: 40px;
    font-weight: 500;
}
tr.tr-item .change-quanity {
    width: 34px;
    height: 34px;
}
tr.tr-item:hover .quantity-count{
    background: none;
}
span.checkout-total {
    padding: 2px 8px;
    background: #4e4e4e;
    border-radius: 33px;
    font-size: small;
}
.btn{
    box-shadow: none !important;
}
.font-weight-600{
    font-weight: 600 !important;
}
.cart-actions i {
    font-size: x-large;
    color: #888;
}
.switch-field{
    background: #fff;
    border-radius: 20px;
}
.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-field label {
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 8px 26px;
	transition: all 0.1s ease-in-out;
}
.switch-field label:hover {
	cursor: pointer;
}
.switch-field input:checked + label {
	background-color: var(--app-accent);
}
.switch-field label {
    border-radius: 20px;
}
.change-quanity.popq {
    opacity: 1;
}
.active .popqControl {
    display: none !important;
}
a.addCoupon {
    padding: 8px 26px;
    background: #0b1a3a !important;
    color: #fff !important;
    border-radius: 20px;
    line-height: 1;
    font-size: 14px;
    text-decoration: none;
    margin-left: 10px;
}
input.coupon-holder {
    background: none !important;
    background-color: transparent !important;
    border: none;
    border-bottom: 2px solid #444 !important;
    border-radius: 0px;
    padding: 0px;
    box-shadow: none !important;
}
.pop-inner::before {
    content: "";
    width: 1910px;
    height: 1000px;
    background: #fff;
}
.pop-inner.position-relative {
    /*-webkit-box-shadow: -45px 0 0 -20px rgb(255 255 255 / 70%), -46px 0 0 -19px rgb(189 131 70 / 25%), -85px 0 0 -40px rgb(255 255 255 / 50%), -86px 0 0 -39px rgb(189 131 70 / 15%), 45px 0 0 -20px rgb(255 255 255 / 70%), 46px 0 0 -19px rgb(189 131 70 / 25%), 85px 0 0 -40px rgb(255 255 255 / 50%), 86px 0 0 -39px rgb(189 131 70 / 15%);*/
}
span.price-total.price-mob {
    width: fit-content;
    background: var(--app-accent);
    border-radius: 10px;
    padding: 0px 20px;
    margin-top: 20px;
    color: #fff;
}
.text-overflow {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.mw99{
    max-width: 99%;
}
.side-panel {
    overflow-y: auto;
    overflow-y: auto;
    z-index: 9;
    left: 0;
    background: var(--app-background);
    padding: 16px;
    height: calc(100vh);
    max-width: 320px;
    width: 100%;
}
.col-md-12.main-stic{
    transition: all .3s ease;
}
@media only screen and (min-width: 992px){
    .col-md-12.main-stic {
        padding-left: 320px;
    }
}
@media only screen and (max-width: 991px){
    .side-panel {
        height: 100vh !important;
    }
}
.mob-menu-items{
    z-index: 99 !important;
}
.side-top-close {
    position: absolute;
    top: -16px;
    right: -2px;
    color: #888;
}
a.active.menu-list-link {
    background: #d9d9d9;
    border-radius: 10px;
}
ul.pagination li * {
    border: none !important;
    color: #333 !important;
    box-shadow: none !important;
    border-radius: 56px !important;
    padding: 10px 20px;
    font-weight: 600;
}
li.page-item.active * {
    background: var(--app-accent) !important;
    color: #fff !important;
}
.pagination-container {
    background: #fff;
    border-radius: 30px;
    width: fit-content;
}
.app-header a {
    text-decoration: none;
}
.app-footer a {
    text-decoration: none;
}
.menucenter.m-auto.col-xs-2 {
    text-align: center;
}
a.btn.sign-in-btn {
    background: var(--app-accent);
    box-shadow: none !important;
    color: #fff;
}
.product-loading i {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    z-index: 99999999;
    font-size: xxx-large;
    transform: translate(-50%, -50%);
    animation: rotation 1s infinite linear;
}
.product-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #33333314;
    top: 0;
    left: 0;
}
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
input:-webkit-autofill { 
    -webkit-background-clip: text;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Karma', serif;
    font-weight: 400;
    -webkit-text-stroke: 0px rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    color: #5a4f45;
}
.payment a.delete-co-item {
    display: none;
}
.payment .change-quanity {
    display: none;
}
.payment .quantity-count {
    background: var(--app-background) !important;
}

.payment-holder .form-card input, .payment-holder .form-card textarea, .payment-holder .form-card select {
	padding: 10px 15px 5px 15px;
	border: none;
	border: 1px solid lightgrey;
	border-radius: 6px;
	margin-bottom: 15px;
	margin-top: 2px;
	width: 100%;
	box-sizing: border-box;
	font-family: arial;
	color: #2C3E50;
	font-size: 14px;
	letter-spacing: 1px;
}

.payment-holder .form-card input:focus, .payment-holder .form-card textarea:focus {
	font-weight: bold;
	outline-width: 0;
}

.payment-holder .input-group {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.payment-holder .input-group input, .payment-holder .input-group select, .payment-holder .input-group textarea {
	position: relative;
	height: 80px;
	margin-left: 1px;
	margin-right: 1px;
	border-radius: 6px;
	padding-top: 30px;
	padding-left: 15px;
}

.payment-holder .input-group label {
	position: absolute;
	height: 24px;
	background: none;
	border-radius: 6px;
	line-height: 48px;
	font-size: 15px;
	color: gray;
	width: 100%;
	font-weight: 100;
	padding-left: 15px;
}

.payment-holder input:focus + label, .payment-holder select:focus + label, .payment-holder textarea:focus + label {
    color: var(--app-accent);
}

.payment-holder .btn-pay {
	background-color: var(--app-accent);
	height: 60px;
	color: #ffffff !important;
	font-weight: bold;
}
textarea#message {
    min-height: 160px;
    padding-top: 40px;
    max-height: 260px;
}
.payment-holder .btn-pay:hover {
	background-color: var(--app-accent);
    opacity: .9;
}
.app-container .payment-holder .form-card * {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--app-accent);
}
.nav-pills a{
    color: var(--app-accent);
}
p.payment-recived {
    background: #fff;
    font-size: larger;
    padding: 10px;
    border-radius: 6px;
    color: var(--app-accent);
}
.placeorder {
    background: var(--app-accent);
    padding: 12px 40px !important;
}
.address input, .address textarea, .address select {
    border: none;
    box-shadow: none !important;
    padding: 20px 20px;
    height: calc(1.5em + 0.75rem + 12px);
}

.address textarea {
    min-height: 140px !important;
}
.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: var(--app-accent) !important;
    border-color: var(--app-accent) !important;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--app-accent) !important;
    background-color: var(--app-accent) !important;
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgb(189 131 70 / 32%) !important;
}
input#billing_address {
    height: auto;
}
input#submit-form {
    display: none;
}
.bg-danger {
    background-color: #ff00007a!important;
}
.side-menu-innt {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
}
.side-menu-innt {
    background: #fff;
    border-radius: 6px;
    padding: 40px 20px;
}
.orders a {
    color: var(--app-accent) !important;
}
p.payment-recived.shade {
    background: rgb(167 167 167 / 25%);
}
span.order-status {
    display: block;
    background: var(--app-accent);
    color: #fff;
    text-align: center;
    padding: 2px 3px;
    font-size: small;
    border-radius: 6px;
    text-transform: capitalize;
}
.cart-table-container.payment.orders tr {
    box-shadow: none !important;
}
.order-products-container {
    margin-top: -26px;
}
.order-products-container .table {
    border-spacing: 0px !important;
    border-spacing: 0 0 !important;
    border-collapse: separate !important;
}
.cart-table-container.payment.order-products-container {
    background: #fff;
}
.cart-table-container.payment.orders {
    margin-top: -2em;
}
input.btn.btn-pay.placeicon {
    padding: 1em 3em !important;
}
.login-box {
    max-width: 600px;
    margin: auto;
}
a:hover {
    color: #bd83469c;
}

a {
    color: #bd8346;
}
.login-box {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
}
.login-box input, .login-box select, .login-box textarea {
    background: var(--app-background);
}
.login-box.register {
    max-width: 1200px;
}
i.thanks {
    color: var(--app-accent);
}
.como{
    font-family: Cormorant,serif;
}
.bigger {
    font-size: 4em;
}
.choco{
    color:#946037;
}
span.trend {
    font-family: 'Quentin Regular';
    color: #f2e4cd;
    font-size: 1.5em;
    position: absolute;
    top: 5px;
    right: 20%;
    z-index: -1;
}
.z-1 {
    z-index: 1;
}
.about-section1 {
    max-width: 686px;
    margin: auto;
}
.about-section2 {
    max-width: 886px;
    margin: auto;
}
.content-container {
    background: #fff;
}
.elementor-widget-container {
    font-size: .9em;
}
span.trend.abb {
    text-transform: capitalize;
    font-size: 1em;
    top: 30px;
    right: -20%;
    color: #dfbb8180;
}
h1.abbt {
    width: fit-content;
    letter-spacing: 6px;
    font-size: 78px;
}
.ch2{
    color: #ead6c7;
}
.about-bg {
    background-position: center center;
}
.about-bg2 {
    background: #fcf8ed;
}
.qodef-social-icons-group a {
    font-size: xx-large;
    text-decoration: none  !important;
}

.page-item.active .page-link{
    z-index: 0;
}
a.checkout-edit {
    margin-top: 0px !important;
}
a.checkout-edit {
    margin-left: auto !important;
    margin-right: 1em;
    margin-bottom: 0;
}
.custom-checkbox .custom-control-label::before {
    border-radius: 0px;
    transform: scale(1.25);
}
.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #bd83468c;
}
a.pay-selected {
    margin-left: 0px !important;
    margin-top: 0px !important;
}
a.pay-selected {
    margin-left: 0px !important;
    margin-top: 0px !important;
    background: var(--app-accent);
    border: 2px solid var(--app-accent);
    color: #fff !important;
}
.grecaptcha-badge {
    z-index: 999999999;
}
.ticket-message {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.address-container {
    background: #fff;
    border-radius: 4px;
}
.filter-orders {
    right: 15px;
    background: var(--app-accent);
    color: #fff;
    box-shadow: none;
}
input#dateFilter {
    box-shadow: none !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background: #ffffff !important;
    font-weight: normal;
    color: #454545;
    border: none !important;
    box-shadow: 0 0 7px 1px #00000017;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: #bd8346 !important;
    font-weight: normal;
    color: #ffffff;
    border: none !important;
    box-shadow: 0 0 7px 1px #00000017;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    background: #bd83467d !important;
    color: #f8f9fa;
    border: none !important;
    box-shadow: 0 0 7px 1px #00000017;
}
div#MonthPicker_dateFilter {
    border: none !important;
    box-shadow: 0 0 18px 4px #0000000a;
}

a.btn.btn-payment {
    background: #fff;
}
td.month-picker-previous a, td.month-picker-next a {
    padding: 4px;
}
td.month-picker-title a {
    padding: 4px !important;
}