
.more {display: none;}

.non-clickable{
    border: none;
    text-align: end;
    background-color: unset;
	pointer-events: none;
}

.product-price {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
		
.amount {
	margin-right: 5px;
}

.table-responsive {
            max-width: 100%;
            overflow-x: auto;
        }

table {
	width: 100%;
	max-width: 100%;
	/* border-collapse: collapse; */
}

th, td {
	padding: 8px;
	/* border: 1px solid #ddd; */
	white-space: nowrap; /* Megakadályozza a sorok törését a cellákban */
}

td .non-clickable {
	width: 100px; /* Állíts be fix szélességet, ha szükséges */
}

td .input-text {
	width: 60px; /* Állíts be fix szélességet, ha szükséges */
}

.quantity input[type="button"] {
	width: 30px; /* Fix szélesség a gomboknak */
}

.product-thumbnail img {
	max-width: 160%;
    height: auto;
    display: block;
}

.shop .quantity .plus_ {
    background: transparent;
    border: 1px solid #F0F0F0;
    border-radius: 2px;
    box-shadow: none;
    color: #5E5E5E;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: bold;
    height: 40px;
    line-height: 13px;
    margin: 0;
    overflow: visible;
    outline: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    vertical-align: text-top;
    width: 40px;
    border-radius: 0 0.25rem 0.25rem 0;
    right: 0;
    top: 0;
}

.shop .quantity .minus_ {
    background: transparent;
    border: 1px solid #F0F0F0;
    border-radius: 2px;
    box-shadow: none;
    color: #5E5E5E;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: bold;
    height: 40px;
    line-height: 13px;
    margin: 0;
    overflow: visible;
    outline: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    vertical-align: text-top;
    width: 40px;
    border-radius: 0.25rem 0 0 0.25rem;
}
/*készlethiány*/

.out-of-stock-label {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 14px;
    z-index: 1000;
}

.disabled-overlay {
     position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 26px;
    font-weight: 800;
    pointer-events: auto; /* Ez lehetővé teszi, hogy az overlay fogadja az egérműveleteket */
    cursor: not-allowed; 
}

.custom-checkbox-1.has-danger input[type="checkbox"] {
    outline: 2px solid #dc3545; /* Piros keret */
    outline-offset: 2px; /* A keret távolsága az elem szélétől */
}

.plan {
    position: relative;
}
/* Overlay style */
.plan.out-of-stock::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(211, 211, 211, 0.7); /* Barátságosabb szürke */
    z-index: 1;
}

/* "Készlethiány!" szalag stílusa */
.plan.out-of-stock .ribbon span {
    background-color: #32CD32; /* Zöld */
    color: white;
    font-weight: bold;
}

/* Szöveg halványabb szürkével */
.plan.out-of-stock * {
    color: rgba(0, 0, 0, 0.5); /* Halványabb fekete szöveg */
}

.plan.out-of-stock .plan-footer a {
    display: none; /* A gombokat eltüntetjük */
}

.btn {
	
	text-transform: uppercase !important;
}

.pricing-table .plan .plan-header h3 {
    font-size: 1.6rem !important;
}

/* Spinner stílus */
.spinner-border {
    display: none;
    width: 2rem;
    height: 2rem;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Átlátszó fekete háttér */
    z-index: 9999; /* Biztosítja, hogy minden fölött legyen */
    display: none; /* Alapértelmezésben rejtett */
    justify-content: center;
    align-items: center;
}

.overlay.active {
    display: flex; /* Ha aktív, látható és középre igazított */
}

.spinner {
    text-align: center;
    color: #fff;
}
