/*!
 * Custom CSS
 */
 
/*!
 * Custom CSS
 */
 
.product-detail .product-name {
	min-height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-detail .product-price {
	min-height: 38px;
}

#address {
    height: 325px;
    overflow: overlay;
}

#print-section .d-flex.flex-column.text-center div {
	display: none;
}

#print-section .d-flex.flex-column.text-center pre {
	text-align: center !important;
}

#print-section .d-flex.flex-column {
    border-bottom: #5d5d5d 1px dashed;
}

#print-section .d-flex.flex-column:last-child {
    border-bottom: 0;
}

.toast-top-right {
    bottom: 116px !important;
    top: auto;
}

.modal__close {
	border-radius: 3px;
	transition: .3s;
}

.modal__close:hover {
    background: #e4530f !important;
    border-color: #e4530f !important;
    transition: .3s;
}

#pos-header #header-right .header-right-item .offline,
#network-change-info-container #network-status-icon .offline {
 color: #ff2d00 !important;
}

#pos-header #header-right .header-right-item .offline:after {
 content: 'Çevrimdışı';
 font-size: 12px;
 top: 38px;
 right: 30px;
 position: absolute;
}

#pos-header #header-right .header-right-item .online:after {
 content: 'Çevrimiçi';
 font-size: 12px;
 top: 38px;
 right: 33px;
 position: absolute;
}

#cart-product-box .accordion-body .d-flex.flex-wrap {
	font-size: 16px;
}

/*
@keyframes offline {
 0% {
  -webkit-transform:scale(0);
  transform:scale(0);
  opacity:0;
 }
 25% {
  -webkit-transform:scale(.1);
  transform:scale(.1);
  opacity:.1;
 }
 50% {
  -webkit-transform:scale(.5);
  transform:scale(.7);
  opacity:.7;
 }
 75% {
  -webkit-transform:scale(1);
  transform:scale(1);
  opacity:1;
 }
 to {
  -webkit-transform:scale(1);
  transform:scale(1);
  opacity:0;
 }
}
.offline {
 -webkit-animation:offline 1s ease-out;
 animation:offline 1s ease-out;
 -webkit-animation-iteration-count:infinite;
 animation-iteration-count:infinite;
}
*/