@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F5F7F8;
}

img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

iframe { border: 0; }

a {
	color: black;
	text-decoration: none;
	outline: none;
}

input,
textarea,
button {
	box-sizing: border-box;
}

a:focus, 
button:focus,
textarea:focus,
input:focus {
	outline: 0;
	box-shadow: none;
}

p {
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-header {
	display: flex;
	width: 100%;
	background: white;
	padding: 10px 5vw;
	box-sizing: border-box;
	margin-bottom: 40px;
}

.logo > img {
	width: 70px;
}

.header-buttons {
	display: flex;
	margin-left: auto;
}

.header-buttons > a {
	margin-left: 15px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 10px;
	cursor: pointer;
	transition: .3s;
}

.header-buttons > a:hover {
	background: #f6f6f7;
}

.header-buttons > a > span {
	margin-right: 15px;
	font-weight: 600;
	font-size: 16px;
}

.main-section {
	padding: 0px 5vw;
	display: flex;
	flex-direction: column;
}

.statistics {
	display: flex;
	flex-direction: column;
	padding: 25px;
	background: white;
	margin-bottom: 40px;
	align-self: flex-start;
	border: 1px solid rgb(112, 112, 112, 0.22);
}

.statistics > span {
	color: #444443;
	margin-bottom: 15px;
	font-weight: 600;
}

.statistics > div {
	display: flex;
}

.stat {
	display: flex;
	margin-right: 50px;
}

.stat:last-of-type {
	margin-right: 0;
}

.stat > img {
	margin-right: 10px;
}

.stat > div {
	display: flex;
	flex-direction: column;
}

.stat > div > span {
	font-size: 14px;
	color: #444443;
	font-weight: 600;
}

.stat > div > .num {
	font-size: 27px;
	color: #FF4040;
}

.title {
	color: #444443;
	font-size: 27px;
	font-weight: 600;
	margin-bottom: 20px;
}

.actions {
	display: flex;
}

.search {
	margin-right: auto;
	border: 1px solid #70707038;
	display: flex;
	background: #FFFFFF;
	width: 300px;
}

.search > button,
.search > input {
	border: none;
	background: transparent;
	padding: 10px 15px;
}

.search > input {
	flex: 1;
	padding-right: 0px;
}

.search > button {
	cursor: pointer;
}

.main-button {
	background: #1F2A3B;
	text-transform: uppercase;
	font-size: 14px;
	color: white;
	box-shadow: 0px 3px 11px #00000040;
	padding: 14px 20px;
	border: none;
	cursor: pointer;
}

.popup-container {
	position: fixed;
	top: 0;
	left: 0;
	background: rgb(0, 0, 0, 0.30);
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup {
	padding: 40px ;
	background: white;
	box-sizing: border-box;
	width: 100%;
	max-width: 790px;
	border: 1px solid #70707038;
	position: relative;
	max-height: 95vh;
	overflow: hidden;
}

.popup  .main-button {
	padding:14px 40px !important;
}

.popup-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

.popup-close {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

.popup-body {
	display: flex;
	flex-direction: column;
}

.popup-body > span {
	margin-bottom: 30px;
	color: #363636;
	font-weight: 600;
	font-size: 17px;
	position: relative;
}

.popup-body > span:after {
	content: '';
	height: 4px;
	width: 10%;
	position: absolute;
	bottom: -10px;
	left: 0;
	background: #FF4040;
}

.details {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
}


.details > .input-group,
.login-form > .input-group {
	width: 50%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	margin-bottom: 30px;
}


.details > .input-group > div {
	display: flex;
	align-items: center;
}

.details > .input-group > div > span {
	font-size: 13px;
}

.details > .input-group > div > input {
	margin-left: 10px;
	height: 100%;
	background: white;
	border: 1px solid #70707075;
	cursor: pointer;
}

.details > .input-group:nth-of-type(2n) {
	padding-left: 20px;
}

.details > .input-group:nth-of-type(odd) {
	padding-right: 20px;
}


.details > .input-group > span,
.login-form > .input-group > span {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

.details > .input-group > select,
.details > .input-group > div > select,
.details > .input-group > input,
.login-form > .input-group > input {
	padding: 10px 10px;
	border: 1px solid #70707075;
	width: 100%;
	height: 40px;
}



.details > .input-group > button {
	padding: 14px;
	background: #0BB5D9;
	border-radius: 4px;
	border: none;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	height: 45px;
	width:60%;
}

.details > .input-group > a {
	color: #3369FF;
	font-size: 14px;
	cursor: pointer;
}

.details > .input-group > a:hover {
	text-decoration: underline;
}

.details > .input-group > .prev {
	height: 150px;
	width: 100%;
	border: 1px solid #70707030;
	margin-bottom: 5px;
	background-position: center;
    background-size: cover;
}

.details > .input-group > .img-selected {
	margin-top: 5px;
	color: #444443;
	font-size: 12px;
	font-weight: 600;
}

.hide-inp {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.popup-buttons {
	display: flex;
}

.white-button {
	margin-left: auto;
	background: white;
	border: 1px solid #70707066;
	color: #363636C2;
	margin-right: 20px;
	box-shadow: none;
}

.envs {
	flex-direction: row;
	flex-wrap: wrap;
}

.env-option {
	width: calc(94% / 4);
	margin-right: 2%;
	margin-bottom: 10px;
	height: 100px;
	cursor: pointer;
	border: 1px solid #70707030;
	box-sizing: border-box;
	padding: 5px;
	border-radius: 4px;
	background-position: center;
    background-size: contain;
}

.env-option:nth-of-type(4n) {
	margin-right: 0px;
}

.env-selected {
	border: 2px solid #707070;
}

.hide {
	display: none;
}

.text-prev {
	font-size: 28px;
}

.tabel-container {
	margin-top: 30px;
	border: 1px solid #e2dede !important;
	height: 450px;
}

.tab-column {
    height: 45px !important;
    line-height: 45px;
}

.tabulator-tableHolder {
    background: white;
    height: 100%;
}

.tabulator-header {
    border-bottom: 1px solid rgba(112, 112, 112, 0.1) !important;
}

.tabulator-header .tabulator-col {
    border-right: 1px solid rgba(112, 112, 112, 0.1) !important;
}

.tabulator-header .tabulator-col .tabulator-col-content {
    padding: 0 !important;
    background: #fafafc;
}

.tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow {
    margin-top: 10px;
}

.tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
    color: #757575 !important;
    margin-left: 15px;
    font-size: 0.7875rem !important;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 85% !important;
    position: relative;
}

.tabulator-header
    .tabulator-col
    .tabulator-col-content:hover
    .tabulator-col-title {
    color: #FF4040 !important;
}

.tabulator-row {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    background: white !important;
}

.tabulator-row:hover {
    background: #f5fbff !important;
}

.tabulator-row .tabulator-cell {
    padding: 0 !important;
    border-right: none !important;
}

.tabulator-row .tabulator-cell img {
    margin-top: 8px;
}

.tabulator-row .tabulator-cell.tab-column {
    font-family: "Roboto", sans-serif;
    padding-left: 15px !important;
    color: #071b37;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
    font-weight: 500;
}

.tabulator-loader-msg {
    display: none !important;
}

.tabulator-loader {
    background: rgba(0, 0, 0, 0.19) !important;
}

.tabulator-loader:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 5px solid #f3f3f3;
    /* Light grey */
    border-top: 5px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.tabulator-page {
    border: 1px solid #dadada !important;
    padding: 3px 7px !important;
    font-size: 12px !important;
    background: white !important;
}

.tabulator-page:hover {
    color: #1b7beb !important;
}

.tabulator-pages > .active {
    color: #f4f8f9 !important;
    background: #ff4040 !important;
    border: 1px solid #ff4040 !important;
}

.tabulator-placeholder {
    height: 100%;
}

.tabulator-footer {
	border-top: 1px solid #dad8d8 !important;
    background-color: #fafafc !important;
}

.is-loading {
	position: relative;
}

.is-loading:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #1F2A3B;
	z-index: 2;
}

.is-loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0bb5d9;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    z-index: 3;
    bottom: 0;
    right: 0;
    margin: auto;
}

.tabel-action {
	display: flex;
}

.tabel-action > div {
	cursor: pointer;
	margin-right: 15px;
	color: #3881D6;
}

.tabel-action > div:hover {
	color: #98a0a5 !important;
}

.tabel-action > div:last-of-type {
	margin-left: 0;
	color: #FF5D5D;
}

.tabel-url {
	color: #1c8bda;
}

.tabel-url:hover {
	text-decoration: underline;
}

.status-tabel {
	display: flex;
	align-items: center;
}

.status-tabel > i {
	margin-right: 5px;
	font-size: 18px;
	margin-bottom: 2px;
}

.no-scroll {
	overflow: hidden;
}

.ps__thumb-y {
	background-color: #1F2A3B !important; 
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


.login-wrapper {
    min-height:100vh;
    width:100%;
    background:transparent;
    display: flex;
}

.login-form {
    max-width:370px;
    width:100%;
    padding:30px 40px 60px 40px;
    background:white;
    margin:auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form > .input-group {
    width:100%;
    margin-bottom:10px;
}  

.login-form >.input-group{
    margin-top:15px !important;
}

.login-form > .input-group input {
    height:45px;
    font-family: 'Open sans', sans-serif;
    text-indent: 10px;
}

.login-form > .errors {
    color:white;
    width:100%;
    box-sizing: border-box;
    padding:15px;
    font-size:0.875rem;
    background:#fa5252;
}

.login-form > img {
    height:48px;
    width:48px;
    margin-bottom:10px;
}
.login-form > h3 {
    color:#444443;
    font-size:1.8rem;
    margin-bottom:15px;
}
.login-form > .main-button {
    width:100%;
    margin-top:30px;
}

.r-message {
	font-size: 14px;
    color: #191818;
}

.error-container {
	position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    box-sizing: border-box;
    width: 300px;
    background: #f56969;
    padding: 20px;
    color: white;
    font-size: 13px;
    border-radius: 2px;
    top: -100px;
    transition: .3s;
}

.show-error {
	transform: translateY(110px);
}