/* ----------- */	
/* Scrollbar შეცვლა */
/* ----------- */	
	::-webkit-scrollbar { /* width */
	  width: 6px;
	}
	::-webkit-scrollbar-track { /* Track */
	  box-shadow: inset 0 0 5px grey; 
	  border-radius: 5px;
	  margin: 5px;
	}
	::-webkit-scrollbar-thumb { /* Handle */
		background: #969696;
		border-radius: 5px;
	}
	::-webkit-scrollbar-thumb:hover { /* Handle on hover */
	  background: #616060; 
	}

/* ----------- */	
/* hr-txt - ჰორიზონტალური ზოლი ტექსტით */	
/* ----------- */
	.hr-txt {
		display: flex;
		align-items: center;
		text-align: center;
		padding: 5px 0;
	}
	.hr-txt::before, .hr-txt::after {
		content: '';
		flex: 1;
		border-bottom: 1px solid #d4d4d4;
	}
	.hr-txt::before {
		margin-right: .25em;
	}
	.hr-txt::after {
		margin-left: .25em;
	}	


.img-mask {
	display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;	
}
	.img-mask img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		margin: 0 auto;
	}


.mb-columns-container {
    min-height: calc(100% - 60px);
    max-height: calc(100% - 60px);
    display: flex;
    position: absolute;
    width: 100%;	
}
.mb-columns-column {
	overflow: overlay;
	padding: 20px;	
}