@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
	font-family:'Inter', sans-serif;
}

:root {
	--purple1:rgba(67, 0, 161, 1);
	--purple2:rgba(36, 1, 82, 1);
	--border:rgba(207, 218, 230, 1);
	--black:rgba(30, 34, 37, 1);
	--pale:rgba(243, 243, 243, 1);
	--blue:rgba(0, 167, 248, 1);
	--red:rgba(255, 56, 56, 1);
	--green:rgba(86, 240, 0, 1);
	--muted:rgba(120, 136, 160, 1);
	--muted2:rgba(120, 136, 160, 0.5);
}
body {
	padding:0 !important;
	margin:0;
	background: rgb(67,0,161);
	min-height:100vh;
	font-size:16px;
	color:var(--black);
	overflow-x:hidden;
	max-width: 100%;
}
::placeholder {
	color:var(--border) !important;
}
a {
	text-decoration: none;
	color:inherit;
}
.gradient1 {
	background: linear-gradient(180deg, rgba(67,0,161,1) 0%, rgba(30,32,89,1) 100%);
}
.gradient2 {
	background: linear-gradient(180deg, rgba(30,32,89,1) 0%, rgba(67,0,161,1) 100%);
}

.page-wrapper {
	padding: 9em 3em 4.5em 3em;
}
.page-wrapper2 {
	padding: 0;
}
.font-weight-normal {
	font-weight: 400;
}
.font-weight-medium {
	font-weight: 500;
}
.font-weight-bold {
	font-weight: 600;
}
.page-header {
	padding:3rem 1.5rem 1.5rem 1.5rem;
}
.page-content {
	position:relative;
	padding:3.6rem 2rem ;
	background:#fff;
	border-top-right-radius: 31px;
	border-top-left-radius: 31px;
}
.page-content.equal {
	padding:2rem 2rem ;
}
.alert-location {
	padding:2rem ;
	background:#fff;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
}
.bg-blue {
	background:var(--blue);
}
.bg-pale {
	background:var(--pale);
}
.bg-purple1 {
	background:var(--purple1);
}
.bg-purple2 {
	background:var(--purple2);
}
h1 {
	font-size:30px;
}
h1.jumbotron {
	font-size:55px;
	font-weight: 500;
}
.page-content h1 {
	font-size: 36px;
}
.page-content h4 {
	font-weight: 400;
}
.purple1 {
	color:var(--purple1);
}
.modules .card {

	border:0;
}
.modules .card-body {
	border-radius:10px;
	border:0;
	padding:1.6rem;
}
.text-sm {
	font-size:13px;
}
.text-muted {
	color :var(--muted) !important
}
.modules a:hover .card-body {
	background:var(--purple2);
	color:#fff;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 1.5s linear infinite;
  -moz-animation: rotating 1.5s linear infinite;
  -ms-animation: rotating 1.5s linear infinite;
  -o-animation: rotating 1.5s linear infinite;
  animation: rotating 1.5s linear infinite;
}
.bg-opac {
	background:rgba(255,255,255,0.05);
}
.btn {
	padding:12px 15px;
	font-size:14px;
}
.btn-login:hover {
	background:var(--purple2);
}
.btn-purple {
	background: var(--purple1);
	color:#fff;
	border:2px solid var(--purple1);
	font-weight: 500;
}
.btn-outline {
	background: #fff;
	color:var(--purple1);
	border:2px solid var(--purple1);
	font-weight: 500;
}
input.form-control, select.form-control, textarea.form-control {
	border-radius:3px;
	border:1px solid var(--border);
	background:#fff;
	height:auto;
	padding:9px 15px;
	font-weight:400;
	font-size:14px;
}
.form-group {
	margin-bottom:25px;
}
label {
	font-weight:400;
	font-size:15px;
	margin-bottom: 5px;
}
/*.modal.show {
	display: flex !important;
	align-items: center;
}*/
.modal-dialog {
	padding:0 30px;
	margin:1rem;

}
.modal-content {
	border:0;
	border-radius: 18px;
	margin: 20px;

}
.modal-body {
	padding:2rem;
}
.radio-check .btn {
	border:1px solid var(--border);
	font-size:14px;
	font-weight: 600;
}
.radio-check input[type="radio"]:checked + label.btn {
	background:var(--purple2);
	color:#fff;
}
.black-overlay {
    background: rgba(0,0,0,0.4);
    height: 100vh;
    width: 100vw;
    position: absolute;
}
.alert-location {
    padding: 1.3rem;
    background: #fff;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
input.search {
	background:url('img/search.svg') left 17px center no-repeat;
	padding:13px 15px 13px 50px;

}
table.table-scroll {
	border-collapse:separate;
}
table.table-scroll td,table.table-scroll th {
    white-space:nowrap;
    height:auto;
    padding:17px 20px;
    border:1px solid var(--border);
    background:#fff;
}
table.table-scroll th {
	color:var(--muted);
}
table.table-scroll th:nth-child(2),
table.table-scroll td:nth-child(2) {
	padding-left:90px;
}
table.table-scroll th:not(:nth-child(1)),
table.table-scroll td:not(:nth-child(1)){
	border-left:0;
	border-right:0;
}
table.table-scroll th:last-child,
table.table-scroll td:last-child{
	text-align:center;
	border-right:1px solid var(--border);
}

table.table-scroll .headcol {
    position:absolute;
    width:65px;
    height:60px;
    top:auto;

}
table.table-scroll tr.exported td {
	background:#f7fafc;
	color:var(--border);
}
table.table-scroll tr.exported input[type="checkbox"] {
	cursor: not-allowed;
}
table.table-scroll tr.exported td .export-btn {
	cursor:not-allowed;
	opacity: 0.5;
}
td a.export-btn {
	width:17px;
	height:21px;
	margin:0 auto;
	background-size:cover !important;
	background:url('img/export.svg') center center no-repeat;
	display: block;
}
.form-group input[type="checkbox"] {
    position: absolute;
    z-index: 1;
    margin: 4px;
    opacity: 0;
    width:23px;
    height:23px;
}

.form-group input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    margin: 0;
    line-height: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.form-group input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background: url('img/checkbox.svg') center center no-repeat;
    position: absolute;
    left: 0;
    top: 0;

}


.form-group input[type="checkbox"]:checked+label:before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background: url('img/checkbox2.svg') center center no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}
.log-item [class*=col]:last-child {
	font-weight: 600;
}
#main-menu {
    width: 100vw;
    height:100%;
    position: absolute;
    z-index: 1;
    right:-100%;
    top:0;
}
#main-menu.expanded {
	right:0;
}
.menu-item a {
	font-size:25px;
	font-weight: 500;
	line-height:40px;
}

@media  (max-width: 768px) {
    .location-permission-description {
        width: 100%;
    }
}

@media  (min-width: 900px) {
    .location-permission-description {
        width: 50% !important;
    }
}

.claim-radio {
    border: 1px solid #ced4da;
    border-radius: .3em;
    padding: .8em;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer !important;
}
.trigger-button {
	background:#fff;
	color:#584972;
	padding:1.2rem !important;
	border-radius:12px;
	border:5px solid #7c6b9a !important;
} 
.trigger-button:hover {
	border-color:var(--purple2) !important;
 }
 .fake-loader {
 	 
 	background: var(--purple1);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index:1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    visibility: visible;
    color: #fff;
     
 } 
  .fake-loader.hide {
  	display: none;
  }

 .btn.btn-purple:hover,.btn.btn-outline:hover {
 	background:var(--purple2) !important;
 	color:#fff !important;
 }