.search-container {
	display: flex; 
	width: 360px; 
	margin: auto; 
	border: 1px solid black; 
	border-radius: 10px; 
	box-sizing: border-box; 
	padding: 5px 15px;
	position: relative;
}

.search-container .tox-tinymce {
	width: 100%;
}

.top-bar .search-container {
	padding: 0px 10px;	
}
.top-bar .search-container:not(:focus-within) {
	box-shadow: none;
    border: 1px solid #f3f3f3;
    background: #f3f3f3;
}

.search-results .search-container {
	margin: auto 0; 
	background: white;
	box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.18);	
}

.search-container .search-input {
	width: calc(100% - 40px); 
	border: none; 
	outline: none; 
	padding: 8px; 
	font-size: 16px; 
	font-family: 'SFProText';
	background: transparent;
}

.search-container .search-icon {
	background: url(../assets/search-icon.svg); 
	width: 40px; 
	height: 40px; 
	background-size: 100% 100%;
}

.search-container .results {
	position: absolute;
    top: calc(100% - 7px);
    left: 0;
    width: 100%;
    background: white;
    z-index: -1;
    box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 18%);
    border-radius: 0px 0px 8px 8px;
}
.search-container .results.hide {
	display: none;
}

.search-container .results .line {
	padding: 10px;
    font-size: 15px;
    display: flex;
    cursor: pointer;
}
.search-container .results .line:hover {
	background: #f3f3f3;
}

.btn {
	padding: 10px 25px;
	background: #407fdb;
	border-radius: 10px;
	outline: none;
	font-weight: 600;
	font-size: 16px;
	font-family: 'Montserrat';
	color: white;
	display: table-cell;
	cursor: pointer;
}

.big-button {
	width: 100%; 
	height: 50px; 
	display: flex; 
	background: #f37442; 
	font-family: 'Montserrat'; 
	color: white; 
	font-weight: 600; 
	font-size: 18px; 
	border-radius: 16px; 
	cursor: pointer;
}
.big-button.square {
	border-radius: 8px;
}
.big-button.thin {
	border-radius: 4px;
	height: 36px;
}
.big-button.white-bg {
	color: #ea794c; 
	background: white; 
	border: 1px solid #ea794c;
}
.big-button.disabled {
	cursor: default;
	pointer-events: none;
	background: #757575; 
}
.big-button.disabled.thin {
	background: #f37442; 
	opacity: 0.5;
}
.big-button.white-bg.disabled {
	background: white;
	color: #757575;
	border-color: #757575;
}
.big-button.shadow {
	padding: 10px 0;
    box-shadow: 0px 4px 0px #f9a87f;
    font-size: 24px;
}
.big-button.inverted {
	background: white;
    border: 1px solid #ea794c;
    color: #ea794c;
    box-sizing: border-box;
}
.big-button.light {
	background: #fee8df; 
	color: #f37442;
}
.big-button.gray-bg {
	background: #f4f4f4; 
	color: black;
	padding: 0 16px;
    box-sizing: border-box;
}

.force-hide {
	display: none !important;
}

.loader {
	background: url('../assets/loader.png');
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	-webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

.feedback-msg {
	font-family: 'SFProText';
	font-size: 14px;
	font-weight: 400;
	color: #6bba1c;	
}
.feedback-msg.error{
	color: #df361f;
}

.custom-select {
	background: #f3f3f3; 
	border-radius: 8px; 
	padding: 16px; 
	box-sizing: border-box; 
	display: flex; 
	position: relative;
}
.custom-select.selecting {
	background: #e2e2e2; 
}
.select-box {
	position: absolute; 
	top: calc(100% + 5px); 
	left: 0; 
	width: 100%; 
	background: #f3f3f3; 
	border-radius: 8px; 
	padding: 8px 0;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.13);
}
.select-box .item {
	padding: 8px 16px;
    font-size: 18px;
    color: black;
    cursor: pointer;
}
.select-box .item:hover {
	background: #e2e2e2;
}

.open-login-btn {
	cursor: pointer; 
	margin-bottom: 16px;
	display: flex;
	color: black;
}
.open-login-btn.open {
	color: #f37442;
}
.open-login-btn .profile-icon-container {
	width: 32px; 
	height: 32px; 
	background: #f3f3f3; 
	border-radius: 100%; 
	display: flex;
}
.open-login-btn.open .profile-icon-container {
	background: rgb(243 116 66 / 30%);
}
.open-login-btn .profile-icon-container .profile-icon {
	width: 24px; 
	height: 24px; 
	margin: auto; 
	color: #757575;
}
.open-login-btn.open .profile-icon-container .profile-icon {
	color: #f37442;
}

.profile-menu-btn {
	cursor: pointer; 	
	border: 1px solid #dedede; 
	border-radius: 30px; 
	padding: 2px; 
	padding-right: 4px; 
	background: white;
	display: flex;
}
.profile-menu-btn.open {
	border: 1px solid #f37442; 
	background: #ffeee8;
}
.profile-menu-btn .profile-icon {
	color: #757575;
}
.profile-menu-btn.open .profile-icon {
	color: #f37442;
}

.led-signal {
	width: 8px; 
	height: 8px; 
	background: #dedede; 
	border-radius: 100%; 
	margin: auto; 
	margin-right: 0; 
	margin-left: 8px;
}
.metarent-interface .menu-btn.can-collect .led-signal {
	background: #6bba1c; 
}
.metarent-interface .menu-btn.full .led-signal {
	background: #df361f; 
}
.metarent-interface #blox-storage-list {
	display: none;
	position: absolute;
    right: 90px;
    top: 100%;
    background: white;
    box-shadow: 0 4px 16px rgb(0 0 0 / 13%);
    width: 375px;    
    cursor: default;
    max-height: 80vh;    
}
.metarent-interface.open #blox-storage-list {
	display: block;
}
.metarent-interface .blox-storage-wrapper {
	max-height: 55vh; 
	overflow: auto;
}
.metarent-interface .blox-storage {
	padding: 12px; 
	background: #f3f3f3; 
	border-radius: 8px; 
	margin: 12px 0;
}
.metarent-interface .blox-storage.full {
	background: #ffe3df; 
}
.metarent-interface .blox-storage .storage-full-label {
	display: none; 
	margin: auto; 
	margin-right: 0;
}
.metarent-interface .blox-storage.full .storage-full-label {
	display: flex; 
}

.leaderboard-interface{

}

.grouped-tier-icons > div:nth-child(2) {position: absolute; left: 8px;}
.grouped-tier-icons > div:nth-child(3) {position: absolute; left: 16px;}
.grouped-tier-icons > div:nth-child(4) {position: absolute; left: 24px;}
.grouped-tier-icons > div:nth-child(5) {position: absolute; left: 32px;}
.grouped-tier-icons > div:nth-child(6) {position: absolute; left: 40px;}

@media screen and (max-width: 812px) {
	.search-container {
		width: 100%;
		border-radius: 0;
    	height: 100%;
	}

	.metarent-interface #blox-storage-list {
		left: 0;
	    top: 0;
	    width: 100%;
	    position: fixed;
	    box-sizing: border-box;
	    max-height: 100%;
	    height: 100%;
	    z-index: 1;
	}
	.metarent-interface .blox-storage-wrapper {
		max-height: calc(100% - 205px);
	}
}