@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
	/************** typography ***************/
	--theme-html-font-size: 14px !important;
 --theme-body-font-size: 100% !important;
 /* --font-family: "Poppins", sans-serif; */
 --font-family: "gilroymedium", sans-serif;
 --page-bg:#2E2E2E;
 --side-panel-bg:#1E1E1E;
 --base-font-color:#ffffff;
 --font8: 0.571rem;
 --font9: 0.643rem;
 --font10: 0.714rem;
 --font11: 0.786rem;
 --font12: 0.857rem;
 --font13: 0.929rem;
 --font14: 1rem;
 --font15: 1.071rem;
 --font16: 1.143rem;
 --font18: 1.286rem;
 --font20: 1.429rem;
 --font22: 1.571rem;
 --font24: 1.714rem;
 --font26: 1.857rem;
 --font28: 2rem;
 --font30:2.143rem;
 --font32: 2.286rem;
 --font34: 2.429rem;
 --font36: 2.571rem;
 --font40: 2.857rem;
 --font48: 3.429rem;
}
/* common CSS*/

body {
	font-family: var(--font-family) !important;
	font-size: var(--theme-body-font-size);
	margin: 0;
}
html {
	font-family: var(--font-family) !important;
	font-size: var(--theme-html-font-size);
}



::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.8);
 background-color: #000000;
 border-radius: 3px;
}

::-webkit-scrollbar {
 width: 6px;
 background-color: #000000;
 border-radius: 3px;
}

::-webkit-scrollbar-thumb {
 background-color: #404040;
 border: 1px solid #333333;
 border-radius: 3px;
}
a, div {
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.btn {
	/*min-width: 120px;*/
	line-height: 44px;
	padding: 0 16px;
	border-radius:4px;
	transition: all .3s ease-in-out;
	font-size: var(--font16);
	color: #fff !important;
	border: 1px solid #0067ff;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}
.btn-primary {
	background: #0067ff;
	border-color: #0067ff;
}
.btn-primary:hover {
	background: #fff;
	color: #0067ff !important;
}
.btn-secondary {
	background: #666666;
	border-color: #666666;
}
.btn-secondary:hover {
	background: #fff;
	color: #666666 !important;
}
.btn-md {
	line-height: 30px;
	font-size: var(--font14);
	font-weight: 400;
}
.connect-btn{
	position:fixed;
	top:15px;
	right:20px;
}
.connect-btn .btn{
	height:35px;
	line-height:35px;
}
.leftpanel-menu{
	position:fixed;
	top:5px;
	left:5px;
	z-index:22;
	display:none;
}
.leftpanel-menu a{
	display:flex;
	width:24px;
	height:24px;
	background:#000000;
	border-radius:4px;
	align-items:center;
	justify-content:center;
}


.leftpanel-menu svg:not(.nocls) path{
	stroke:#ffffff;
	fill:#ffffff;
}



/* modal CSS */
.modal {
	width: 100%;
	height: 100vh;
	position: fixed;
	/*top: 50%;
	margin-top: -50px;
	left: 50%;
	margin-left: -100px;*/
	line-height: 25px;
	z-index: 99;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal .modal-container {
	width: 600px;
	height: 400px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
	border-radius: 15px;
	background: #2e2e2e;
	font-size: 16px;
	color: var(--base-font-color);
}
.modal .modal-container .modal-content a {
	color: #cccccc;
}
.modal .modal-container .modal-content .btn.btn-secondary.close{
	line-height:47px;
}
.modal-header {
	height: 60px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	justify-content: space-between;
	border-bottom: 1px solid #1e1e1e;
}
.modal-header h3 {
	font-weight: 500;
	font-size: var(--font20);
}
.modal-header a.close {
	display: inline-flex;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	background: #606060;
	padding: 2px;
	border-radius: 2px;
}
.modal-container .upload-cnt {
	height: 180px;
	display: flex;
	margin: auto;
	border: 2px dashed #505050;
	border-radius: 10px;
	margin: 20px 0;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #404040;
}
.modal-container .form-group .form-control{
	background: #404040;
    box-shadow: none;
    border: 0;
    height: 40px;
    width: calc(100% - 50px);
    margin-bottom: 20px;
    outline: 0px;
    padding: 0 25px;
    color: #fff;
	font-size: 16px;
}
.modal-container .upload-help-text{
	font-size:14px;	
	text-align:right;
}
.modal-container .upload-cnt:hover {
	background: #606060;
}
.modal-container .upload-cnt input {
	width: 180px;
	height: 110px;
	cursor: pointer;
	opacity: 0;
	position: absolute;
	z-index: 2;
}
.upload-icon {
	opacity: 0.5;
	position: relative;
	z-index: 1;
}
.modal-footer {
	margin: 20px 0;
	text-align: right;
}
.modal-footer button{
	cursor:pointer;
}
.modal-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 80px);
	padding:0 20px;
}
.modal-bg {
	background: rgba(0,0,0,0.75);
	zoom: 1;
	opacity: 1;
	filter: alpha(opacity=80);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9;
	display: flex;
	align-items: center;
	justify-content: center;
}
/**/
/* header */
.rockeye-header {
	display: flex;
	height: 70px;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
	border-bottom: 1px solid #f2f2f2;
}
.rockeye-footer {
	background: #f0f0f0;
	height: 30px;
	text-align: center;
	font-size: var(--font11);
	line-height: 30px;
	color: #808080;
	border-top: 1px solid #e0e0e0;
}
 @media screen and (min-width:1200px) and (max-width:1599px) {
	:root {
	 --theme-html-font-size: 12px !important;
	 --theme-body-font-size: 100% !important;
	}
}
@media screen and (min-width:300px) and (max-width:800px){
	:root {
	 --theme-html-font-size: 12px !important;
	 --theme-body-font-size: 100% !important;
	}
}