:root {
	--bs-body-font-size: 1.0rem;
}

body {
	font-family: 'Work Sans', sans-serif;
	font-weight: 300;
	background-color: #e2e2fb; /* #dccef6 - #0b0940; */
}

h1, h2, h3, h4, h5, h6 {
 font-family: 'Montserrat', sans-serif;
 font-weight: 900;
}

.debug-box {
	width: 400px;
	height: 350px;
	position: fixed;
	top: 200px;
	right: -365px;
	padding: 50px 15px 15px 35px;
	border-radius: 8px 0 0 8px;
	overflow: auto;
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	font-size: 12.6px;
	word-break: break-all;
	z-index: 999;
	transition: right 0.4s ease-in-out;
}

.debug-openbtn, .debug-closebtn {
    color: #fff;
    font-weight: bold;
    font-size: 35px;
	line-height: 0;
    cursor: pointer;
	width: 20px;
	height: 20px;
	padding: 5px 0 0 0;
	text-align: center;
	position: absolute;
    top: 8px;
	left: 4px;
    transition: 0.3s;
}

.debug-closebtn {
	left: 45px;
}	

.debug-openbtn:hover, .debug-closebtn:hover {
    color: var(--main-distinctive-color);
}

.debug-box::-webkit-scrollbar {
   width: 8px;
   background-color: var(--list-container-scroll-bg);
}

.debug-box::-webkit-scrollbar-thumb {
  background-color: var(--list-container-scrollthumb-bg);
  transition: background-color 0.25s;
}

.debug-box::-webkit-scrollbar-thumb:hover {
  background-color: var(--list-container-scrollthumb-bg_hover);
}

.debug-box-scroll::-webkit-scrollbar {
   display: initial;
}

.std-block {
	position: relative;
}

.fix-overflow {
	overflow: hidden;
}

.master-block {
	padding-bottom: 1rem;
}

.icon-medium {
	font-size: 2rem;
}

.mobile-hidden {
	display: none;
}

.pos-relative {
	position: relative;
}

.hidden {
	display: none !important;
}

/*
* {
	border: red 1px solid;
}
*/

@media (min-width: 644px) {
	.mobile-hidden {
		display: initial !important;
	}
	
	.desktop-hidden {
		display: none;
	}
}