/* Alap beállítások és betűtípus */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f8f8; /* Világos háttér, mint a képen */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Felülre igazítva mobilnézetben */
    min-height: 100vh;
}

.no-scroll {
    overflow: hidden;
}

.container {
    margin-top: 60px;
    width: 100%;
    box-sizing: border-box;
}

.card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgb(224, 212, 212);
    border-top: 1px solid rgb(224, 212, 212);
}

.card h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  transform-origin: center;
  will-change: transform, box-shadow;
}

@keyframes logoComboRotate {
  0%   { transform: rotate(0deg) scale(1); }
  45%  { transform: rotate(160deg) scale(1.03); }
  60%  { transform: rotate(220deg) scale(0.99); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes logoGlow {
  0%   { box-shadow: 0 0 0px rgba(240,107,34,0); }
  50%  { box-shadow: 0 8px 28px rgba(240,107,34,0.14); }
  100% { box-shadow: 0 0 0px rgba(240,107,34,0); }
}
.combo {
  animation:
    logoComboRotate 8.5s cubic-bezier(.2,.8,.2,1) infinite,
    logoGlow 2.8s ease-in-out infinite;
  border-radius: 50%;
  will-change: transform, box-shadow;
}

/* Gap */

.gap-1 {
    gap: 5px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 15px;
}

.gap-5 {
    gap: 20px;
}

/* Fejléc */
.header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.header i {
    font-size: 3rem;
    color: #4CAF50; /* Zöld szín az ikonnak */
    margin-bottom: 10px;
}

.header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 5px 0;
}

.header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.notification {
    position: fixed;
    top: 0;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    background-color: rgb(240,107,34); 
    transition-duration: 300ms;
    color: white;
    height: 60px;
    font-weight: bold;
    z-index: 3147483649;
}

.notification.show {
    transform: scale(1);
    opacity: 1;
}


/* Admin */

.menu-btn {
    color: black;
    background-color: white;
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid grey;

    padding: 10px;

    transition-duration: 500ms;
}

@media (min-width: 1024px) {

    .menu-btn {
        width: fit-content;
        min-width: 210px;
        height: 120px;

        padding: 0 20px;

        gap: 20px;

        flex-shrink: 0;

        margin-right: 20px;

        display: flex;
        flex-direction: column;
        justify-content: center;

        border: 1px solid grey;

        padding: 10px;
    }

}

.menu-btn:hover {
    background-color: rgba(247, 129, 66, 1);
    text-decoration: none;
    color: white;
}

.menu-btn > i {
    font-size: 1.2rem;
}

/* Login */

.tab-buttons {
    display: flex;
    background: #e9e9e9;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 3px;
}

.tab-button {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #fff;
    color: #333;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.tab-button:focus {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.form {
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box; /* Fontos a belső kitöltés miatt */
    font-size: 1rem;
}

.form-group input:focus {
    border-color: #4CAF50;
    outline: none;
}

.btn-buddha {
    background-color: rgb(240,107,34); 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-buddha:hover {
    background-color: rgba(247, 129, 66, 1);
    color: white;
    text-decoration: none;
}

.btn-buddha i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-dark {
    height: 40px !important;
}

.divider {
    border-top: 1px solid #eee;
    margin: 25px 0;
}

.secondary-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    font-weight: 500;
}

.guest-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: #666;
}

.guest-btn:hover {
    background-color: #f0f0f0;
}

.guest-info {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    padding: 0 20px;
}

.error-message {
    color: red;
    font-size: 0.8rem;
    display: block;
    margin-top: 4px;
}

/* Menu */

.menu-container {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    height: 60px;
    background: #fff;
    position: sticky !important;
    top: 0;
    z-index: 10;
}

.back-icon {
    font-size: 1.2rem;
    color: #333;
}

.menu-header h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.table-number {
    font-size: 0.8rem;
    color: #999;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
}

.cart-icon-container {
    position: relative;
}

.cart-icon {
    font-size: 1.2rem;
    color: #333;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4CAF50;
    color: white;
    font-size: 0.7rem;
    border-radius: 50%;
    padding: 2px 5px;
    font-weight: 500;
}


.category-nav {
    height: 60px;
    overflow-x: auto; 
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.55);


-webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(10px) saturate(120%);
    padding: 10px 0;
    position: sticky;
    top: 60px; 
    z-index: 5;
}

.category-nav.sub {
    top: 120px; 
}

.category-tabs {
    padding: 0 15px;
}

.category-tab, .category-sub-tab {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 4px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #555;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.category-tab.active, .category-sub-tab.active {
    background-color: rgb(240,107,34); 
    color: #fff;
    border: none;
    outline: none;
    border: 1px solid rgb(240,107,34); 
}

.category-tab:focus,
.category-sub-tab:focus {
    outline: none !important;
    box-shadow: none !important;
}

.menu-list {
    padding: 60px 0 100px 0; 
}

.menu-item {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 30px 15px 15px 15px;
    margin-top: 10px;
    border-bottom: 1px solid rgb(224, 212, 212);
    border-top: 1px solid rgb(224, 212, 212);
}

.item-details {
    flex-basis: 100%;
    text-align: left;
    margin-bottom: 10px;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.item-description {
    font-size: 0.85rem;
    color: #888;
    margin: 5px 0;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 5px 0 0 0;
}

.item_short_desc {
    color: grey;
    padding: 0;
    margin: 0;
    word-break: break-all;
    word-wrap: break-word;
}

.item-icons {
    color: #999;
    font-size: 0.9rem;
    margin: 5px 0;
}

.item-icons i, .item-icons span {
    margin-right: 8px;
}

.item-actions {
    display: flex;
    gap: 10px;
    flex-basis: 100%; 
    justify-content: flex-end; 
    margin-top: 10px;
}

.btn-info, .btn-add {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-grow: 1; 
}

.btn-info {
    background-color: #fff;
    color: black;
    border: 1px solid #ddd;
}

.btn-info:hover {
    background-color: rgb(240,107,34); 
    color: white;
    border: 1px solid #ddd;
}

.btn-add {
    background-color: rgb(240,107,34); 
    color: #fff;
    border: 1px solid rgb(240,107,34);
}

.view-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    z-index: 20;
}

.view-cart-btn {
    width: 100%;
    background-color: rgb(240,107,34); 
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-cart-btn:hover {
    color: white;
}

.view-cart-btn i {
    margin-right: 10px;
}

.cart-total {
    font-weight: 700;
    background: #4CAF50;
    padding: 5px 10px;
    border-radius: 6px;
}

.add-to-cart-section {
    position: sticky;
    bottom: -20px; 
    padding: 20px 0 0 0;
    background: #fefefe;
    border-top: 1px solid #eee;
    z-index: 10;
}

.btn-add-to-cart {
    width: 100%;
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.2s;
}

.btn-add-to-cart:hover:not(:disabled) {
    background: #388e3c;
}

.btn-add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cart-price-display {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Navbar */

.navbar {
    height: 60px;

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: white;
}

.navbar-divider {
    height: 100%;
    width: 2px;
    align-self: stretch;
}

.nav-btn, .nav-btn:hover {
    text-decoration: none;
    color: black;
}

/* Product Modal */

.product_modal {
    width: 100% !important;
    max-width: 100% !important;
    height: 100%  !important;
    margin: 0 !important;
    z-index: 2147483648;
}

.product_modal .modal-content {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.product_modal .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
}

[id^="product_modal_"].modal.fade .modal-dialog {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
    transition: all 0.05s ease;
}

[id^="product_modal_"].modal.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.product_description {
    color: grey;
    word-break: keep-all;       
    overflow-wrap: normal;       
    white-space: normal;        
}

.allergen-container {
    gap: 7px;
    flex-wrap: wrap;
}

.allergen-box {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border-radius: 3px;
    background-color: rgb(236, 223, 223);
}

.modifier-options, .remove-options {
    gap: 7px;
}

.modifier-option, .remove-option {
    height: 50px;
    border-radius: 5px;
    border: 1px solid rgb(219, 212, 212);
    transition-duration: 300ms;
}

.modifier-option.active {
    background-color: rgba(240,107,34);
    color: white;
}

.remove-option.active {
    background-color: rgb(150, 146, 143);
    color: white;
}

.modal-backdrop.show {
    opacity: 0 !important;
}

.modal-backdrop {
    background-color: transparent !important;
}

.place-select-modal-body {
    gap: 10px;
    height: 400px;
    overflow-y: scroll;
    width: 100%;
}

.place-modal-box  {
    width: 100%;
    height: 150px;
    flex-shrink: 0;
    border-radius: 10px;
    transition-duration: 300ms;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

.place-text-box {
    color: white;
    padding: 10px;
    background-color: rgba(240,107,34, 0.9); 
    border-radius: 5px;
    z-index: 500;
    font-size: 1rem;
    transition-duration: 300ms;
}

.place-box-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    border-radius: 10px;
}

.place-modal-box.active {
    opacity: 1 !important;
}

.loader-container {
    position: fixed;          
    top: 0;
    left: 0;
    width: 100vw;             
    height: 100vh;            
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: white;  
}

.loader-container.hide {
    transition-duration: 300ms;
    opacity: 0;
    transform: scale(0);
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: flex;
  color: orange;
  background:
    linear-gradient(currentColor 0 0) right  /51% 100%,
    linear-gradient(currentColor 0 0) bottom /100% 51%;
  background-repeat: no-repeat;
  animation: l16-0 2s infinite linear .25s;
}
.loader::before{
  content: "";
  width: 50%;
  height: 50%;
  background: currentColor;
  animation: l16-1 .5s infinite linear;
}
@keyframes l16-0 {
  0%   ,12.49% {transform: rotate(0deg)}
  12.5%,37.49% {transform: rotate(90deg)}
  37.5%,62.49% {transform: rotate(180deg)}
  62.5%,87.49% {transform: rotate(270deg)}
  87.5%,100%   {transform: rotate(360deg)}
}
@keyframes l16-1 {
  0%      {transform: perspective(80px) rotate3d(-1,-1,0,0)}
  80%,100%{transform: perspective(80px) rotate3d(-1,-1,0,-180deg)}
}

.qr-icon {
    color: grey;
}

.product_image_modal {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product_image {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

.order-data-holder {
    background-color: rgb(240,107,34); 
    border-radius: 5px;
}

.item-trash, .item-trash:hover {
    color: black;
}

.cart-container {
    width: 100%;
    max-width: 600px;
    background: #fff;
    flex-grow: 1;
    padding-bottom: 100px; 
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #fff;
    border-top: 1px solid rgb(224, 212, 212);
    border-bottom: 1px solid rgb(224, 212, 212);
}

.item-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.item-icon {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.item-details h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.item-details p {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

.item-right {
    text-align: right;
}

.item-price-total {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    background: #eee;
    border: 1px solid #ddd;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none; 
    line-height: 1;
    display: inline-block;
}

.qty-btn.remove {
    color: #ff0000;
    border-color: #ff0000;
    background: #fff;
    padding: 5px 8px;
}

.quantity {
    font-size: 1rem;
    font-weight: 500;
}

.remove-icon {
    color: #999;
    font-size: 1rem;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
}

.summary-card {
    margin: 20px 10px;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid rgb(224, 212, 212);
    border-top: 1px solid rgb(224, 212, 212);
}

.summary-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
     margin-bottom: 10px;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    margin-top: 15px;
}

.summary-row span:last-child {
    font-weight: 500;
}

.payment-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    z-index: 20;
}

.tax-rate {
    color: grey;
    font-size: 14px;
}

.payment-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

/* PAYMENT */

.payment-container {
    width: 100%;
    max-width: 600px;
    background: #fff;
    flex-grow: 1;
    padding-bottom: 100px; /* Hely az alsó gombnak */
}

.order-summary h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
}

.order-summary .item-count {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
}

.order-summary .total-amount {
     font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.order-summary .tax-info {
    font-size: 0.9rem;
    color: #666;
}

.payment-method-selection h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
}

.payment-method-selection .subtitle {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.payment-option:hover {
    border-color: #ccc;
}

.payment-option input[type="radio"]:checked + .option-content {
    border-color: #1a1a1a; 
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.option-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.option-content .icon {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-right: 10px;
}

.option-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.option-details p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.secure-payment-info {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-top: 20px;
}

.secure-payment-info .icon {
    font-size: 1.5rem;
    color: #666;
    margin-right: 15px;
}

.secure-payment-info p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.payment-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    z-index: 20;
}

.pay-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pay-btn:hover {
    color: white !important;
    text-decoration: none !important;
}

.user-menu {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: white;

    transform: translateY(-100%);
    transform-origin: top;
    transition-duration: 400ms;
    opacity: 0;
}

.user-menu.show {
    transform: translateY(0);
    opacity: 1;
}

#user-menu-close {
    position: absolute;
    top: 15px;
    right: 16px;
    color: black;
}

.user-menu-nav {
    text-decoration: none;
    color: black;
    margin-bottom: 10px;
}

.user-menu-nav:hover {
    text-decoration: none;
    color: black;
    margin-bottom: 10px;
}

/* Pager */


.page-link {
    margin-right: 1rem;
    border-radius: 3px;
    color: black;
}

.page-item.active {
    border: none;
}

/* Order (user) */

.order_a, .order_a:hover {
    text-decoration: none;
    color: black;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat');



.check_label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  display: block;
  margin: 1em;
  > input {
    display: none;
  }
  
  .check_span {
    color: #6A759B;
  }
  
  .check_i {
    display: inline-block;
    width: 64px;
    height: 40px;
    border-radius: 20px;
    vertical-align: middle;
    transition: .25s .09s;
    position: relative;
    background: #deeff7;
    &:after {
      content: " ";
      display: block;
      width: 30px;
      height: 30px;
      top: 5px;
      left: 5px;
      border-radius: 50%;
      background: #fff;
      position: absolute;
      box-shadow: 1px 2px 4px 0 rgba(#000, .4);
      transition: .15s;
    }
  }

  > input:checked + i {
    background: #1094fb;
  }
  
  > input:checked + i + span {
  color: #29316b;
  }
  
  > input:checked + i:after {
    transform: translateX(25px);
  }
}

/* Custom select */

.select-wrapper {
  position: fixed;
  inset: 0;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  z-index: 2147483647 !important;
  transform: translateY(-100%) scaleY(0);
  transition-duration: 400ms;
  transform-origin: top;
}

.select-wrapper.show {
  transform: translateY(0%);
}

/* HEADER */
.select-header {
  position: sticky;
  top: 0;
  height: 100px;
  background: #fff;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.select-header-title {
  font-size: 16px;
}

/* CLOSE BUTTON */
.select-close-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  color: #333;
}

/* CONTENT */
.select-content {
  padding: 10px;
  overflow-y: auto;
}

/* 2 per row */
.select-item {
  width: 50%;
  padding: 8px;
  transition-duration: 300ms;
  position: relative;
}

/* IMAGE */
.select-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
}

.select-title {
  width: 100%;
  padding: 8px;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(to top, rgba(240,107,34), transparent);
  border-radius: 0 0 12px 12px;
  text-align: center;
}

.select-item.active {
    transform: scale(0.9);
}

.select-tick {
    color: green;
    opacity: 0;
    transition-duration: 300ms;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
}

.select-tick.active {
    opacity: 1;
}

/* Payment loader */

.payment-loader {
  width: 82px;
  height: 18px;
  position: relative;
}
.payment-loader::before , .payment-loader::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50% , 10%);
  top: 0;
  background: rgba(240,107,34);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  animation: jump 0.5s ease-in infinite alternate;
}

.payment-loader::after {
  background: #0000;
  color: black;
  top: 100%;
  box-shadow: 32px -20px , -32px -20px;
  animation: split 0.5s ease-out infinite alternate;
}

@keyframes split {
  0% { box-shadow: 8px -20px, -8px -20px}
  100% { box-shadow: 32px -20px , -32px -20px}
}
@keyframes jump {
 0% { transform: translate(-50% , -150%)}
 100% { transform: translate(-50% , 10%)}
}
    

.payment-process-container {
    height: 100vh;
}
    