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

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

/* Init */
:root {
	/* Colors */
  --dark-grey: #1F242E;
	--grey: #747273;
	--red: #e00215;
	--view-border-color: #707070;
	--grey-view-title: #333131;
	--green: #33BE46;
	--dark-blue: #0032F2;
	--light-grey: #dedede;
	--light-grey2: #ACACAC;
	
	--grey-100: #E0E0E0;
	--grey-200: #CCCCCC;
	--grey-300: #B8B8B8;
	--byqwest-grey: #747F94;
	--grey-900: #3D3D3D;
	
	--white: #ffffff;
	--black: #000000;
	
	--deep-blue-50: #EFF2FF;
	--deep-blue-100: #D3DBFF;
	--deep-blue-200: #B7C4FF;
	--deep-blue-300: #9BADFF;
	--deep-blue-400: #7E95FF;
	--deep-blue-500: #5C77EF;
	--deep-blue-600: #3952C7;
	--deep-blue-700: #1D349E;
	--deep-blue-900: #0A1D75;
	
	--dark-blue-50: #EFF4FD;
	--dark-blue-100: #E0E8FA;
	--dark-blue-200: #C3CDE0;
	--dark-blue-400: #8D98AD;
	--dark-blue-500: #747F94;
	--dark-bleu-600: #5D677B;
	--dark-blue-700: #475061;
	--dark-blue-900: #1F242E;
	
	--red-50: #FFC6C8;
	--red-100: #FFC4C0;
	--red-200: #FF9B95;
	--byqwest-red: #CE171D;
	--red-500: #EB382D;
	--red-600: #C9251B;
	--red-700: #A81B20;
	--red-800: #891D21;
	--red-900: #630600;
	
	--green-50: #E9F4EC;
	--green-100: #C8E8D1;
	--green-200: #9FD7AF;
	--green-300: #74C88D;
	--green-600: #23A455;
	--green-700: #168F48;
	--green-800: #057F3D;
	--green-900: #00612C;
	
	--yellow-50: #FFF3EA;
	--yellow-500: #E5771F;
	
	--link-blue-100: #C4D8FC;
	--link-blue-700: #285DB8;
	--link-blue-900: #27467B;
	
	/* Sizes */
	--header-logo-width: 140px;
	--admin-topbar-height: 120px;
	--admin-menu-width: 275px;
	--admin-menu-width-closed: 120px;
	
	/* Font sizes */
	--side-menu-title: 30px;
	--option-side-menu: 18px;
	--view-title: 35px;
	
	/* Fonts */
	--font1 : 'Open Sans', sans-serif;
	--font2: 'Poppins', sans-serif;
	
	/* Other */
	
}

/* General */

ul {
	margin-bottom: 0;
}

* {
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-family: var(--font1);
	font-size: 14px;
}

html, body{
	height:100%;
	width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-group input[disabled]{
	background-color : var(--grey-100);
}

.apexcharts-toolbar {
	z-index: 8 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background: var(--deep-blue-500);
	color: var(--white) !important;
	border: none;
	border-radius: 4px;
}

.dataTables_wrapper .dataTables_paginate {
	text-align: center;
	float: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	background: transparent;
	border: none;
	color: var(--dark-blue-900) !important;
}

.dataTables_scroll { 
	overflow-x: visible; 
	overflow-y: visible; 
}

.dataTables_scrollBody {
	min-height: 180px !important;
}

body.connected {
	background-color: var(--dark-blue-50);
}

.bg-black {
	background-color : var(--black);
}

.bg-dark-grey {
	background-color: var(--dark-grey)
}

.bg-view-title{
	background-color: var(--grey-view-title);
}

.header-logo {
	height: 44px;
  margin: 20px 40px;
	cursor: pointer;
}

.title {
	font-size: 55px;
}

.card {
	padding: 24px;
}

.headline1 {
	font-size: 32px;
	line-height: 48px;
	font-weight: 700;
	color: var(--dark-blue-900);
	font-style: normal;
	font-family: var(--font2);
}

.headline4 {
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: -0.01em;
	color: var(--dark-blue-900);
}

.headline5 {
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: -0.01em;
	color: var(--dark-blue-900);
	margin-bottom: 0;
}

.headline6 {
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.01em;
	color: var(--dark-blue-900);
}

.overline2 {
	font-family: var(--font2);
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--dark-blue-400);
}

.subtitle {
	font-size: 35px;
	font-family: var(--font-light);
}

.subtitle1 {
	font-family: var(--font1);
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: var(--dark-blue-900);
}

.subtitle2 {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: -0.15px;
	color: var(--dark-blue-400);
}

.text-light {
	color: var(--byqwest-grey) !important;
	font-style: normal;
	font-weight: normal;
}

.caption2 {
	font-family: var(--font1);
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: -0.15px;
	color: var(--dark-blue-400);
}

.body1 {
	font-family: var(--font1);
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: -0.15px;
	color: var(--black);
}

.body2 {
	font-family: var(--font1);
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: -0.15px;
	color: var(--black);
}

.separator {
	height: 1px;
	width: 100%;
	background: var(--dark-blue-100);
	margin-bottom: 24px;
}

.separator-menu {
	height: 1px;
	width: 50px;
	background: rgba(255, 255, 255, 0.1);
	margin-left: 35px;
}

.btn-black {
	border-radius: 20px;
	color: var(--white);
	background-color: var(--black);
}

.close, .close:not(:disabled):not(.disabled):hover {
	opacity: 1;
}

.white {
	color: var(--white);
}

.btn-red {
	background-color: #5a0000;
	border-color: #5a0000;
	color: var(--white);
	font-size: 30px;
	font-family: var(--font-semilight);
}

.tab-order {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: -0.15px;
	color: var(--dark-blue-900);
}

.cursor {
	cursor: pointer;
}

.bold-p {
	font-family: var(--font-bold);
	font-size: 35px;
	color: var(--black);
}

.title-semibold {
	font-size: 35px;
	font-family: var(--font-semibold);
}

.bg-light-grey {
	background-color: var(--light-grey);
}

.tooltip-img {
	width: 20px;
}

.tooltip-inner {
	padding: 16px;
	background: var(--white);
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.16);
	border-radius: 8px;
	color: var(--grey-900);
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {
	color: var(--white);
}

.number2 {
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
	letter-spacing: -0.01em;
	color: var(--dark-blue-900);
}

.number4 {
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.01em;
	color: var(--dark-blue-900);
}

.p10 {
	padding: 0 10px;
}

.input-group {
	position: relative;
	border: 1px solid #C3CDE0;
	border-radius: 8px;
	margin-bottom: 24px;
}
.input-group input {
	padding: 10px;
	border: none;
	background-color: transparent;
	width: 100%;
	color: #000;
	font-size: 16px;
	line-height: 30px;
	outline: none;
}

.input-group:hover,
.input-group:focus-within {
	border-color: #C3CDE0;
}

.input-group input:focus,
.input-group:hover input {
	color: #000;
}

.input-group label {
	position: absolute;
	background-color: transparent;
	padding: 10px;
	line-height: 30px;
	top: 0;
	left: 0;
	bottom: 0;
	color: #1F242E;
	cursor: text;
}
.input-group:focus-within label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:not(:placeholder-shown) ~ label{
	padding: 0px 8px;
	background-color: #fff;
	top: -15px;
	left: 16px;
	bottom: auto;
	transition: 0.3s;
}

.modal {
	z-index: 9999;
}

.header-onboard {
	border-bottom: 1px solid #C3CDE0;
}

.alert-success span {
	font-family: var(--font2);
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.01em;
	margin-left: 10px;
}

.input-error {
	border: 1px solid var(--byqwest-red) !important;
}

.input-error label {
	color : var(--byqwest-red) !important;
}

.input-success {
	border: 1px solid var(--green-700) !important;
}

.input-success label {
	color : var(--green-700) !important;
}

.btn-primary-green {
	padding: 10px 16px;
	background: var(--green-700);
	border-radius: 8px;
	border: 1px solid var(--green-700);
	color: #fff;
}

.btn-primary-green:hover {
	background-color: var(--green-800);
	border-color: var(--green-800);
}

.btn-primary-green:focus {
	border: 2px solid var(--green-100);
}

.btn-primary-green:active {
	background-color: var(--green-900);
	border-color: var(--green-900);
}

.btn-white-secondary {
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	color: var(--white);
	background: transparent;
	float: right;
	padding: 10px 16px;
}

.btn-white-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
}

.btn-white-secondary:focus {
	background: rgba(255, 255, 255, 0.4);
	border: 1px solid var(--white);
}

.btn-white-secondary:active {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-red-tertiary {
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--red-600);
	border-radius: 8px;
	padding: 8px 16px;
	cursor: pointer;
}

.btn-red-tertiary:hover {
	background: var(--red-50);
}

.btn-red-tertiary:focus {
	background: var(--red-100);
}

.btn-red-tertiary:active {
	background: var(--red-200);
}

.btn-deepblue-primary {
	background: var(--deep-blue-600);
	border-radius: 8px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--white);
	padding: 8px 16px;
	border: 1px solid var(--deep-blue-600);
}

.btn-deepblue-primary:hover {
	background: var(--deep-blue-700);
	color: var(--white);
}

.btn-deepblue-primary:focus {
	background: var(--deep-blue-600);
	border: 2px solid var(--deep-blue-100);
	color: var(--white);
}

.btn-deepblue-primary:active {
	background: var(--deep-blue-900);
	color: var(--white);
}

.btn-deepblue-secondary {
	background: var(--white);
	border: 1px solid var(--deep-blue-200);
	border-radius: 8px;
	color: var(--deep-blue-600);
	padding: 8px 16px;
	font-size: 12px;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	letter-spacing: -0.005em;
	font-family: var(--font2);
}

.btn-deepblue-secondary:hover {
	background: var(--deep-blue-50);
	border: 1px solid var(--deep-blue-200);
	border-radius: 8px;
}

.btn-deepblue-secondary:focus {
	background: var(--deep-blue-100);
	border: 1px solid var(--deep-blue-200);
}

.btn-deepblue-secondary:active {
	background: var(--deep-blue-200);
	border: 1px solid var(--deep-blue-200);
}

.btn-deepblue-tertiary {
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--deep-blue-600);
	border-radius: 8px;
	padding: 8px 16px;
	cursor: pointer;
}

.back-button {
	width: 100px;
}

.back-button img {
	margin-right: 6px;
}

.btn-deepblue-tertiary:hover {
	background: var(--deep-blue-50);
}

.btn-deepblue-tertiary:focus {
	background: var(--deep-blue-100);
}

.btn-deepblue-tertiary:active {
	background: var(--deep-blue-200);
}

.btn-success-primary {
	background: var(--green-700);
	border: 1px solid var(--green-700);
	border-radius: 8px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--white);
	padding: 8px 16px;
}

.btn-success-primary:hover {
	background: var(--green-800);
}

.btn-success-primary:active {
	background: var(--green-700);
	border: 2px solid var(--green-100);
}

.btn-success-primary:focus {
	background: var(--green-900);
}

.btn-success-secondary {
	background: var(--white);
	border: 1px solid var(--green-200);
	border-radius: 8px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 24px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--green-700);
	padding: 8px 16px;
}

.btn-success-secondary:hover {
	background: var(--green-100);
	border: 1px solid var(--green-200);
}

.btn-success-secondary:focus {
	background: var(--green-200);
	border: 1px solid var(--green-200);
}

.btn-success-secondary:active {
	background: var(--green-300);
	border: 1px solid var(--green-200);
}

.btn-grey {
	background: var(--white);
	border: 1px solid var(--grey-100);
	border-radius: 8px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--grey-300);
	padding: 8px 16px;
}

.btn-darkblue-secondary {
	background: var(--white);
	border: 1px solid var(--dark-blue-200);
	box-sizing: border-box;
	border-radius: 8px;
	color: var(--dark-blue-700);
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	border-radius: 8px;
	padding: 8px 16px;
}

.btn-darkblue-secondary:hover {
	background: var(--dark-blue-50);
	border: 1px solid var(--dark-blue-100);
}

.btn-darkblue-secondary:focus {
	background: var(--dark-blue-100);
	border: 1px solid var(--dark-blue-100);
}

.btn-darkblue-secondary:hover:active {
	background: var(--dark-blue-200);
	border: 1px solid var(--dark-blue-100);
}

.btn-darkblue-tertiary {
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--dark-blue-700);
	padding: 8px 16px;
	border-radius: 8px;
	cursor: pointer;
}

.btn-darkblue-tertiary:hover {
		background: var(--dark-blue-50);
}

.btn-darkblue-tertiary:active {
	background: var(--dark-blue-200);
}

.btn-darkblue-tertiary:focus {
	background: var(--dark-blue-100);
}

.modal-content {
	background: var(--white);
	border-radius: 16px;
}

.modal-header {
	border-bottom: 1px solid var(--dark-blue-200) !important;
	padding: 24px;
}

.modal-footer {
	border-top: 1px solid var(--dark-blue-200) !important;
	padding: 16px;
}

.modal-body {
	padding: 24px;
}

/* Onboarding */
.onboard-btn-group1 {
	width: 39%;
}

.onboard-btn-group2 {
	width: 59.5%;
	margin-left: 2px;
}

.success-onboarding {
	position: absolute;
	bottom: 0;
	width: 70%;
	left: 15%;
}

#rules span, #rules-welcome span{
	position: absolute;
	top: 43px;
	left: 24px
}

#rules p:first-child, 
#rules-welcome p:first-child {
	margin-bottom: 2.5rem;
}

#rules-validator p:not(.password-strenght), 
#rules-validator-welcome p:not(.password-strenght) {
	width: 90%;
	margin-left: 34px;
	display: inline-block;
	color: var(--dark-blue-600);
}

#div-align-commented, 
#div-align-commented-welcome {
	margin-top: 1.5rem;
}

/* Login page */
#login-form input, 
#forgot-password-form input,
#password-reset-form input{
	padding : 10px;
}

#login-page-title {
	margin-top: 100px;
}

.btn-byqwest-red{
	background-color : var(--byqwest-red);
	color: var(--white);
	border: 1px solid var(--byqwest-red);
	margin-top: 5px;
	font-size: 16px;
	padding: 10px 16px;
	border-radius: 8px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	letter-spacing: -0.005em;
}
.btn-byqwest-red:hover{
	background-color : var(--red-700);
	border: 1px solid var(--red-700);
}

.btn-byqwest-red:active{
	background-color : var(--byqwest-red);
	border: 2px solid var(--red-50);
}

.btn-byqwest-red:focus{
	background-color : var(--red-800);
	border: 1px solid var(--red-800);
	outline: none;
}

.btn-byqwest-red.disabled, .btn-byqwest-red:disabled{
	background-color : var(--grey-200);
	border: 1px solid var(--grey-200);
}

.btn-byqwest-red-secondary {
	background-color : var(--white);
	color: var(--byqwest-red);
	border: 1px solid var(--byqwest-red);
	margin-top: 5px;
	font-size: 16px;
	padding: 10px 16px;
	border-radius: 8px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	letter-spacing: -0.005em;
}

.btn-byqwest-red-secondary:hover {
	background: var(--red-50);
	border: 1px solid var(--red-200);
}

.btn-byqwest-red-secondary:focus {
	background: var(--red-100);
	border: 1px solid var(--red-200);
}

.btn-byqwest-red-secondary:active {
	background: var(--red-200);
	border: 1px solid var(--red-200);
}

#login-submit-section span {
	float: right;
}

#login-submit-section span img {
	width: 30px;
  margin-top: 3px;
}

#login-footer {
	bottom: 0;
}

#lost-password {
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	line-height: 21px;
	letter-spacing: -0.005em;
	font-family: var(--font2);
	color: var(--byqwest-red);
}

#lost-password:hover {
	text-decoration: none;
}

#login-remember {
	font-family: var(--font1);
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: -0.15px;
	color: var(--dark-blue-900);
	margin-left: 5px;
}

.checkbox-alignment {
	position: relative;
	top: 1.5px;
}

/* Forgot password */

#forgot-page-title {
	padding-top: 80px;
}

#forgot-page-title .title{
	padding-bottom: 20px;
}

/* Reset password */

#reset-page-title {
	padding-top: 50px;	
}

#password-changed h1 {
	padding: 50px 0;
}

.check-reset-password {
	width: 22px;
	display: inline-block;
	position: absolute;
}

/* 2fa */
.auth-code-title {
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	color: var(--dark-blue-900);
}

.auth-description {
	font-family: var(--font1);
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: var(--dark-blue-900);
}

.qr-code-text1 {
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
}

.qr-code-text2 {
	font-family: var(--font1);
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
}

.auth-totp {
	padding: 15px 15px 0 15px;
}

.auth-totp input {
	width: 14%;
	border: 2px solid #C3CDE0;
	height: 88px;
	border-radius: 16px;
	font-size: 28px;
	text-align: center;
}

.auth-totp input:focus-visible, 
.auth-totp input:focus,
.auth-totp input.not-empty{
	border-color: var(--deep-blue-600);
	color: var(--deep-blue-600);
}

.auth-totp.success input {
	border: 2px solid var(--green-600);
	color: var(--green-600);
}

.auth-totp.error input {
	border: 2px solid var(--red-600);
	color: var(--red-600);
}

#totp-2 {
	margin: 0 9px;
}

#totp-3 {
	margin: 0 14px 0 0;
}

#totp-4 {
	margin: 0 0 0 9px;
}

#totp-5 {
	margin: 0 10px;
}

/* Terms of service */

#tos .card-header {
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 32px;
	line-height: 48px;
	letter-spacing: -0.01em;
	color: var(--dark-blue-900);
	padding: 40px;
}

#tos .card-title {
	margin-bottom: 4px;
}

.btn-tos-white {
	padding: 10px 16px;
	background: #FFFFFF;
	border: 1px solid #C3CDE0;
	border-radius: 8px;
	width: 38%;
}

#tos .card-footer {
	background: #fff;
	padding: 24px 40px;
}

/* Admin Menu */
.admin-menu {
	position: fixed;
	padding: 20px 0 32px calc(var(--admin-menu-width) + 45px);
	border-bottom: 1px solid #C3CDE0;
	background-color: var(--dark-blue-50);
	transition: 0.3s ease;
	z-index: 9;
}

.admin-menu-bloc-user {
	position: absolute;
	right: 0;
	top: 0;
}

.menu-filter {
	width: 24px;
	margin-left: 20px;
	cursor: pointer;
	position: fixed;
	top: 35px;
}

.admin-logo {
	width: 140px;
	margin: 24px 0 16px 70px;
	cursor: pointer;
}

.admin-search {
	border: 1px solid;
	border-color: var(--grey);
	background-color: var(--grey);
	border-radius: 8px;
	padding: 4px 7px 4px 40px;
	width: 400px;
	outline: none;
	position: relative;
	top: 2px;
}

.search-icon {
	width: 25px;
	position: absolute;
	top: 17px;
	left: calc(var(--admin-menu-width) + 10px);
	z-index: 999;
}

.admin-menu-bloc-user .btn-group {
	height: var(--admin-topbar-height);
}

.admin-menu-bloc-user .btn-group .dropdown-menu{
	background-color: var(--black);
}

.admin-menu-bloc-user .btn-group .dropdown-toggle {
	background: transparent;
	border: none;
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.01em;
	color: var(--dark-blue-500);
	margin: 25px 40px;
	box-shadow: none;
	outline: none;
}

.admin-menu-bloc-user .btn-group .dropdown-toggle img {
	margin-left: 5px;
	width: 48px;
}

.admin-menu-bloc-user .btn-group .dropdown-menu {
	margin-top: 0;
	background: #FFFFFF;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.24);
	border-radius: 8px;
	padding: 0;
	left: -5px !important;
}

.btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
	background: transparent;
	border: none;
	color: var(--dark-blue-500);
}

.dropdown-toggle::after {
	display: none;
}

.admin-menu-bloc-user .btn-group .dropdown-toggle:focus {
	box-shadow: none;
}

.admin-menu-bloc-user .dropdown-item {
	color: var(--dark_blue-900);
	padding: 15px 10px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px
}

.admin-menu-bloc-user .dropdown-item:last-child {
	color: var(--red-700);
}

.admin-left-menu {
	width: var(--admin-menu-width);
	background-color: var(--dark-grey);
	height: 100vh;
	transition: 0.3s ease;
	position: fixed;
	z-index: 10;
	overflow-y: auto;
}

.admin-left-menu-title {
	font-family: var(--font2);
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 24px;
	margin-bottom: 0;
}

.admin-left-menu-icon {
	width: 20px;
}

.admin-left-menu-option {
	color: var(--white);
	font-size: var(--option-side-menu);
	margin: 0 16px;
	cursor: pointer;
	list-style-type: none;
}

.admin-left-menu-option.active {
	background: rgba(255, 15, 25, 0.2);
	border-radius: 8px;
}

.admin-left-menu-option:hover {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.admin-left-menu-option img {
	margin: 8px;
}

.admin-left-menu-group {
	padding-bottom: 5px;
}

.view, .admin-left-menu {
	display: inline-block;
}

.view-header {
	height: 60px;
}

.view-header h1 {
	color: var(--white);
}

#small-logo-menu {
	width: 50px;
	margin: 19px 0 16px 54px;
}

.admin-left-menu.close .admin-left-menu-option {
	margin: 8px 0;
}

.admin-left-menu.close .admin-left-menu-icon {
	width: 40px;
}

.admin-left-menu.close .menu-filter {
	margin-left: 20px;
}

.admin-left-menu.close ul {
	padding: 0 31px;
}

.admin-left-menu.close .admin-left-menu-group.first-option {
	padding: 25px 0 10px 0;
}

.admin-left-menu.close .admin-left-menu-group {
	padding: 10px 0;
}

#search::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: var(--white);
	opacity: 1; /* Firefox */
}

#search:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--white);
}

#search::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--white);
}

#modal-language .modal-body {
	padding: 0 100px 20px 100px;
	font-size: 25px;
}

#modal-language .modal-body p span {
	cursor: pointer;
}

img.admin-left-menu-bottom-icon {
    width: 20px;
    margin-right: 2px;
}

.admin-left-menu-bottom-bloc span {
	color: var(--white);
	margin-right: 5px;
}

.admin-left-menu-bottom-bloc {
	position: fixed;
	bottom: 5px;
}

.admin-left-menu-bottom-bloc div {
	cursor: pointer;
}

.feedback-face {
    padding: 40px 20px 0 20px;
}

.feedback-face p {
	font-size: 29px;
}

.feedback-face-container {
	padding: 0 80px;
}

.feedback-face-icon {
	width: 80%;
  margin-left: 10%;
	cursor: pointer;
}

#feedback-textarea {
	height: 150px;
	padding: 10px;
	font-size: 29px;
	color: #848484;
}

#modal-feedback .modal-footer {
	border-top: 0;
	padding: 20px 80px;
}

#modal-feedback .modal-title {
	font-size: 35px;
	padding-left: 25px;
}

.feedback-face.active {
	background-color: var(--black);
}

#modal-feedback .btn-user {
	font-size: 30px;
}

.admin-left-menu.close .admin-left-menu-bottom-bloc span {
	display: none;
}

/* Dropdown Search Menu */
.admin-left-menu .dropbtn, .admin-left-menu-mobile .dropbtn{
  background: rgba(255, 255, 255, 0.1);
	border-radius: 16px;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
	border: 1px solid var(--view-border-color);
}

.admin-left-menu .dropbtn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.admin-left-menu.close .dropbtn {
	padding: 17px 11px;
}

#input-search, #input-search-mobile {
  box-sizing: border-box;
  background-image: url('../images/search_black.svg');
  background-position: 10px 10px;
  background-size: 30px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
	color: var(--grey-900);
	background-color: rgba(152, 152, 152, 0.5);
  border-radius: 16px;
	margin-bottom: 5px;
}

#input-search:focus, #input-search-mobile:focus {
	outline: none;
}

.admin-left-menu .dropdown {
  position: relative;
  display: inline-block;
	padding: 0 16px;
}

.admin-left-menu .dropdown-content {
	background: #FFFFFF;
	border-radius: 16px;
  display: none;
  min-width: 230px;
  border: 1px solid #ddd;
  z-index: 1;
	position: absolute;
	padding: 14px 16px;
	width: 243px;
	max-height: 500px;
  overflow-y: scroll;
}

.admin-left-menu .dropdown-content a {
  color: var(--dark-blue-900);
  padding: 10px 8px;
  text-decoration: none;
  display: block;
	font-family: var(--font2);
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	border-radius: 8px;
}

.admin-left-menu .dropdown-content img {
	margin-right: 8px;
}

.admin-left-menu .dropdown-content a:hover {
  background: #EFF4FD;
}

.admin-left-menu .dropdown-content a.active{
  background: #D3DBFF;
}

#search-arrow {
	width: 24px;
}

.customer-icon {
	width: 32px;
	height: 32px;
	margin-right: 10px;
	border: 2px solid var(--dark-blue-200);
	border-radius: 50%;
	object-fit: contain;
	background-color: var(--white);
}

.admin-left-menu.close .dropbtn span span {
	display: none;
}

.admin-left-menu.close .dropbtn .customer-icon {
	margin-right: 0px;
}

/* View */
.view {
	width: calc(100% - var(--admin-menu-width));
	transition: 0.3s;
	margin-left: var(--admin-menu-width);
	margin-top: var(--admin-topbar-height);
	background-color: var(--dark-blue-50);
}

.view-title {
	font-size: var(--view-title);
	margin: 5px 0 0 0;
}

.view-box-title {
	font-size: var(--view-title);
	margin: 0;
	color: var(--black);
}

.view-box-p {
	font-family: var(--font-semilight);
	font-size: 25px;
	color: var(--black);
}

.view-box-p2 {
	font-family: var(--font-semilight);
	font-size: 19px;
	color: var(--black);
}

.view-box-p2-white {
	font-family: var(--font-semilight);
	font-size: 19px;
	color: var(--white);
}

.view-title2 {
	font-family: var(--font-light);
	margin-bottom: 20px;
}

.view-title-box {
	-webkit-box-shadow: 0px 4px 9px 2px rgba(70,70,70,0.72); 
	box-shadow: 0px 4px 9px 2px rgba(70,70,70,0.72);
}

.view-content {
	padding: 10px 40px;
}

.view-header-bloc {
	display: inline-block;
	margin-bottom: 7px;
}

.view-label {
	background-color: var(--grey-view-title);
	color: var(--white);
	padding: 4px 20px 6px;
	border-radius: 15px;
	margin: 12px 10px 0 0;
}

.card {
	margin-bottom: 20px;
	border: 1px solid #E0E8FA;
	border-radius: 8px;
}

.card-dark-blue {
	background: var(--dark-blue-700);
	border: 1px solid #C3CDE0;
	border-radius: 16px;
}

.card-header {
	padding: 22.5px 24px;
	background-color: var(--white);
	border-top-left-radius: 16px !important;
	border-top-right-radius: 16px !important;
}

.info-box {
	padding: 20px 20%;
}

.view-box {
	border: 1px solid var(--grey);
	padding: 20px;
}

/* Overview */
#overview-box1 span:first-child {
	font-family: var(--font-bold);
	font-size: 20px;
}

#overview-box1 span:last-child {
	font-size: 20px;
}

.see-more-overview {
	position: absolute;
	top: 30px;
	right: 24px;
}

/* Purge */
#purge-button {
	width: 190px;
	margin-left: calc(50% - 95px);
}

#purge table.dataTable thead th {
	border-bottom: none;
}

#purge .table thead th {
	border-top: none;
}

#purge-button-close {
	width: 180px;
	display: inline-block;
	float: right;
	padding: 8px 16px 8px 10px;
	position: absolute;
	right: 24px;
}

.purge-delete {
	border: 1px solid var(--red-200);
	color: var(--red-600);
}

.purge-delete img {
	filter: grayscale(0) !important;
	opacity: 1 !important;
}

#purge-button-close img {
	margin-right: 5px;
	filter: grayscale(1);
	opacity: 0.4;
}

#purge .table tbody tr td {
	border-bottom: none;
	font-family: var(--font1);
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: -0.15px;
	color: var(--dark-blue-900);
	vertical-align: middle;
	border-right: 0;
  border-left: 0;
}

#modalPurge .caption2 {
	margin-right: 50px;
	display: inline-block;
	width: 150px;
	margin-bottom: 30px;
}

#purge .table tbody tr td:first-child {
	border-bottom: none;
}

#purge .table tbody tr td:last-child {
	border: 1px solid #dee2e6;
	border-left: none;
	border-bottom: none;
}

#purge .table thead th {
	border: 0;
	padding: 10px;
}

.purge-delete-url{
	width: 30px;
	float: right;
	margin-top: 3px;
	display: inline-block;
}

.purge-link {
	overflow: hidden;
	width: 60%;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0;
}

.purge-link-other {
	position: relative;
  top: -3px;
}

.purge-in-progress {
	background: var(--yellow-50);
	color: var(--yellow-500);
}

.purge-error {
	background: var(--red-50);
	color: var(--red-500);
}

.purge-success {
	background: var(--green-50);
	color: var(--green-600);
}

.purge-label {
	border-radius: 100px;
	padding: 9.5px 16px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	margin: 0;
}

.purge-add-url {
	width: 34.5px;
	float: right;
	cursor: pointer;
	display: inline-block;
}

.purge-action {
	width: 75px;
	cursor: pointer;
}

.purge-url {
	width: calc(100% - 80px);
	padding: 5px 10px;
	float: left;
}

.url-bloc {
	margin-bottom: 20px;
}

#url-box {
	padding: 16px;
  height: 180px;
	border: 1px solid var(--dark-blue-200);
	border-radius: 4px;
}

#url-box:focus, #url-box:focus-visible {
	border-color: var(--deep-blue-500);
}

#purge .input-group {
	border: none;
}

/* Users */
#friend-invite {
	padding: 5px 10px;
	margin-bottom: 40px;
}

#modalUser .modal-body {
	padding: 24px 48px;
}

.label-user-tab {
	font-family: var(--font2);
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	padding: 6px 16px;
	border-radius: 100px;
}

.user-not-active {
	background: var(--red-100);
	color: var(--red-900);
}

.user-active {
	background: var(--green-100);
	color: var(--green-900);
}

.user-operator {
	background: var(--dark-blue-100);
}

.user-administrator {
	background: var(--link-blue-100);
}

#user-create {
	margin-left: 16px;
}

#user-create img {
	margin-right: 4px;
}

#btn-invite {
	width: 150px;
}

#friend-box-invite {
	margin-bottom: 30px;
}

.user-settings-icon {
	width: 35px;
	display: inline-block;
	cursor: pointer;
}

.user-action {
	width: 100px;
	margin-left: 15px;
}

#user-table {
	border-bottom: 1px solid #dee2e6;
}

#users table.dataTable thead th {
	border-bottom: none;
}

#users .table thead th {
	border: none;
}

#users .table tbody tr td {
	border-bottom: none;
	vertical-align: middle;
	border-right: none;
  border-left: none;
}

#users .table tbody tr td:first-child {
	border-bottom: none;
}

#users .table tbody tr td:last-child {
	border: 1px solid #dee2e6;
	border-left: none;
	border-bottom: none;
}

#users .table thead th:first-child {
	border-bottom: none;
}

#users .table thead th:last-child {
	border-bottom: none;
}

.btn-user {
	background-color: var(--black);
	width: 200px;
	color: var(--white);
	margin-left: calc(50% - 100px);
	font-size: 30px;
}

.div-recap-user {
	width: 250px;
	display: inline-block;
}

#create-user-step2 li {
	list-style-type: none;
}

#create-user-step2 ul li label {
	margin-left: 12px;
}

.label-user {
	font-family: var(--font2);
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: -0.005em;
	color: var(--link-blue-900);
	width: 180px;
	background: var(--white);
	border: 1px solid var(--link-blue-700);
	border-radius: 100px;
	padding: 6px 16px;
	margin-top: 16px;
	margin-bottom: 24px;
}

.label-user.active {
	background: var(--link-blue-100);
}

.label-user img {
	position: relative;
}

.label-user:first-child {
	margin-right: 24px;
}

.step_no {
	color: var(--dark-blue-900);
	background: var(--dark-blue-200);
	border-radius: 25px;
	border: none;
	padding: 10px 15px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 17px;
	line-height: 25px;
	letter-spacing: -0.01em;
	width: 45px;
	text-align: center;
	margin-left: calc(50% - 22.5px);
	animation: 0.3s ease;
}

.step_descr {
	font-family: var(--font1);
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	letter-spacing: -0.15px;
	color: var(--dark-blue-500);
	margin: 0;
	animation: 0.3s ease;
}

.wizard_steps li a {
	text-decoration: none;
}

.wizard_steps li a.active .step_no {
	color: var(--white);
	background: linear-gradient(36.72deg, #1D349E 15.16%, #5C77EF 85.36%);
}

.wizard_steps li a.active .step_descr {
	color: var(--dark-blue-900);
}

#wizard-user {
	background: var(--dark-blue-50);
	padding: 20px 0;
}

#wizard-user li {
	list-style-type: none;
	width: 150px;
}

.wizard-separator {
	width: 100%;
	height: 3px;
	position: relative;
	background: var(--dark-blue-100);
	top: 25px;
	animation: 0.3s ease;
}

.wizard-separator.done {
	background: var(--deep-blue-300);
}

.user-step.done .step_no {
	background: var(--deep-blue-400);
}

.user-step.done .step_descr {
	color: var(--dark-blue-900);
}

#user-step-modal {
	margin: 5px 0 0 10px;
}

#middle-1-separator-user {
	width: 105px;
	left: -53px;
	top: 22px;
}

#middle-2-separator-user {
	width: 105px;
	left: 98px;
	top: 19px;
}

.wizard_horizontal ul.wizard_steps li a.selected span.step_descr {
	color: #fff !important;
	display: inline-block;
	text-align: left;
	margin-left: 10px;
	margin-top: 4px;
	font-weight: 400;
}

.wizard_horizontal ul.wizard_steps li {
	text-align: center;
	float: left;
}

.wizard_horizontal ul.wizard_steps li a {
	display: block;
	position: relative;
	-moz-opacity: 1;
	filter: alpha(opacity= 100);
	opacity: 1;
	color: #6B6B6B;
	font-weight: bold;
}

.btn-user:hover {
	color: var(--white);
}

#users .form-check-input {
	margin-top: 6px;
}

#modalUser .btn-deepblue-primary {
	width: 180px;
}

.modal-header, #users .modal-footer {
	border : 0;
}

#users .form-check {
	margin-right: 20px;
}

#modalUser .input-group:hover,
#modalUser .input-group:focus-within,
#modalUser .input-group.not-empty{
	border-color: var(--deep-blue-600);
}

#modalUser .input-group:hover label,
#modalUser .input-group:focus-within label,
#modalUser .input-group.not-empty label{
	color: var(--deep-blue-600);
}


.btn-user-delete {
	width: 100px;
	background: #454444;
	color: var(--white);
	font-size: 30px;
}

#user-delete-confirmation {
	margin-bottom: 20px;
	font-size: 35px;
}

#users .modal-footer {
	display: block;
}

#user-invite-img {
	width: 150px;
	padding: 20px 20px 20px 0;
}

#user-invite-img img {
	margin-top: -50px;	
}

#user-invite-input {
	width: calc(100% - 160px);
}

#users .modal.show {
	visibility: visible; 
	backdrop-filter: blur(8px);
	transition: visibility 1s ease;
}

#user-table tbody tr td:last-child , #user-table thead tr th:last-child {
	width: 150px !important;
}

/* Hostname */

#hostname-add {
	width: 30px;
	margin-left: 20px;
}

#bloc-hostname-add {
	cursor: pointer;
}

.hostname-add-input {
	padding: 5px 10px;
	background-color: #454545;
	border: 0;
	outline: 0;
}

#modal-hostname-add .modal-body {
	padding: 20px 80px;
}

#modal-hostname-add p {
	font-size: 23px;
}

#modal-hostname-add .modal-footer {
	border-top: 0;
	display: block;
}

/* Profile */
#btn-password {
	padding: 10px 20px;
}

#user-change-language label {
	margin-left: 10px;
	position: relative;
	top: -1px;
}

#img-2FA {
	width: 64px;
	display: inline-block;
	margin-right: 24px;
	margin-top: -10px;
}

.bloc-2FA {
	display: inline-block;
	border-right: 1px solid var(--view-border-color);
	padding: 20px;
}

.bloc1-2FA {
	width: 150px;
}

.bloc2-2FA {
	width: calc(100% - 300px);
}

.bloc3-2FA {
	width: 150px;
	border-right: none;
}

.user-profile-username {
	font-family: var(--font2);
	font-style: normal;
	font-weight: normal;
	font-size: 28px;
	line-height: 42px;
	color: var(--white);
}

.user-profile-username span.bold {
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 28px;
	line-height: 42px;
	color: var(--white);
}

#profile {
	margin-top: 0px;
}

#profile .card {
	padding: 24px;
}

.user-role-label {
	background: var(--dark-blue-100);
	border-radius: 100px;
	padding: 6px 16px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
}

.twofa-label {
	background: var(--green-100);
	border-radius: 100px;
	padding: 6px 16px;
	color: var(--green-900);
}

.user-2fa-text {
	margin-bottom: 4px;
}

.user-role-box {
	margin-top: 8px;
}

.user-profile-button {
	float: right;
}

.user-info-text {
	margin-bottom: 24px;
}

.user-info-text label, .user-info-text p {
	margin-bottom: 0;
}

#profile #btn-language,
#profile #btn-language-save{
	  position: absolute;
    top: 28px;
    right: 24px;
}
#profile #btn-api-key {
	position: absolute;
	top: 185px;
	right: 24px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 34px;
	margin-top: 25px;
	margin-left: 5px;
	float: right;
}

/* Hide default HTML checkbox for 2FA slider */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* 2FA slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--deep-blue-100);
  -webkit-transition: .4s;
  transition: .4s;
	width: 34px;
	height: 14px;
}

.slider:before {
  position: absolute;
  content: "";
	height: 20px;
	width: 20px;
	left: 0px;
	bottom: -3px;
  background-color: var(--deep-blue-500);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--deep-blue-100);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--deep-blue-100);
}

input:checked + .slider:before {
  -webkit-transform: translateX(14px);
  -ms-transform: translateX(14px);
  transform: translateX(14px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#user-change-phone {
	color: var(--dark-blue) !important;
	cursor: pointer;
}

#modal-phone-title {
	font-size: var(--view-title);
}

#modal-phone-subtitle {
	font-size: 19px;
}

#modal-profile-phone input {
	padding: 10px 20px;
	font-size: 25px;
	font-family: var(--font-semilight);
}

#modal-profile-phone .modal-body {
	padding: 20px 120px;
}

#modal-profile-phone .modal-footer {
	padding: 0px 120px 80px 120px;
	border-top: 0;
	margin: 0;
	display: block;
}

#modal-profile-phone .btn-user {
	margin: 0;
	font-size: 30px;
}

/* Real-time stats */
#real-time-filter-img {
	width: 45px;
  margin-right: 13px;
}

#real-time-add-filter-img {
	width: 20px;
	margin-top: -3px;
}

#real-time-add-filter {
	cursor: pointer;
}

#real-time-stats-filter {
	-webkit-box-shadow: 0px 4px 9px 2px rgba(70,70,70,0.72); 
	box-shadow: 0px 4px 9px 2px rgba(70,70,70,0.72);
}

#real-time-stats-update {
	margin: 10px 0 0 10px;
	color: var(--light-grey);
}

.download-round {
	width:40px;
	height: 40px;
	border-radius: 20px;
	background-color: var(--light-grey);
	position: absolute;
	top: -46px;
	right: 0;
}

.download-round.open{
	width: auto;
	height: auto;
	padding: 10px 70px 10px 10px;
}

.download-round.open img{
	position: absolute;
	top: 0;
	right: 0;
}

.download-round  img {
	width: 25px;
	margin: 7.5px;
	cursor: pointer;
}

#real-time-stats-dl-option p {
	margin-bottom: 3px;
	cursor: pointer;
}

.scroll {
	max-height: 580px;
	overflow-y: auto;
}

.message {
	position: absolute;
	bottom: 0;
	width: 70%;
	left: 15%;
}

.message .error {
	color: #630600;
	background-color: #FFC4C0;
	border-color: #FFC4C0;
}
.message .exclamation {
	width: 26px;
	height: 26px;
}

.message .close-icon {
	width: 20px;
	height: 20px;
}

.field-error {
	margin-top: -24px;
	color: var(--byqwest-red);
	margin-bottom: 3px;
}

.field-message {
	margin-top: -24px;
	margin-bottom: 3px;
}
.field-success {
	color: var(--green-700);
}

.login-password-group {
	flex-wrap: nowrap;
}

.profile-name {
	font-family: var(--font2);
	font-weight: 600;
	font-size: 16px;
}

.slider.round.disabled {
	background-color: var(--grey-100);
	box-shadow: 0px 1px 1px rgb(0 0 0 / 14%), 0px 2px 1px rgb(0 0 0 / 12%), 0px 1px 3px rgb(0 0 0 / 20%);
	opacity: 0.8;
}

.slider.round.disabled:before {
	background-color: var(--deep-blue-100);
}

#purge-urls-popup {
	display: inline-flex;
}

.purge-last-update {
	margin-left: 10px;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: -0.15px;
	color: var(--dark-blue-400);
}

.btn-graph {
	padding: 8px 16px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--dark-blue-900);
	background: var(--white);
	border: 1px solid var(--dark-blue-200);
	border-radius: 8px;
}

#one_day, #one_day_realtime {
	border-top-right-radius : 0;
	border-bottom-right-radius : 0;
	position: relative;
	right: -4px;
}

#one_day_datatransferred {
	border-top-right-radius : 0;
	border-bottom-right-radius : 0;
	position: relative;
	right: -2px;
}

#three_day, #three_day_realtime{
	border-top-left-radius : 0;
	border-bottom-left-radius : 0;
}

#custom_datatransferred, #custom_bandwidth, #custom_realtime {
	border-top-left-radius : 0;
	border-bottom-left-radius : 0;
	position: relative;
  left: -2px;
}

.btn-date-between {
	border-radius: 0;
	position: relative;
	margin-left: -3px;
	margin-right: -2px;
}

.toolbar {
	padding: 19px 120px 19px 36px;
	height: 50px;
	position: absolute;
	top: 0;
	right: 0;
}

#bandwidth .card-header {
	border-bottom: none;
}

.btn-graph.active {
	background: var(--deep-blue-100);
	color: var(--deepl-bleu-600);
}

.play-realtime {
	display: inline-block;
	margin-left: 21px;
	padding: 9px 14px 13px 16px;
	border-radius: 50%;
	cursor: pointer;
}

.play-realtime:hover {
	background: var(--deep-blue-50);
}

.timer {
	width: 40px;
	height: 40px;
	padding: 9px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	margin-left: 21px;
	cursor: pointer;
}

.timer:hover {
	background: var(--deep-blue-50);
}

.btn-delete {
	font-size: 14px;
	line-height: 21px;
	padding: 8px 16px;
	margin-top: 2px;
}

.table td, .table th {
	border: 1px solid var(--dark-blue-50);
}

#bandwidth-table td,
#datatransferred-table td,
#realtime-table td {
	border-left: 0;
	border-right: 0;
	padding: 12px 28px;
	vertical-align: middle;
}

#bandwidth-table th, 
#realtime-table th, 
#datatransferred-table th {
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
	padding: 12px 28px;
}

.table tr.active {
	background: var(--deep-blue-100);
}

.table tbody tr:hover {
   background: var(--deep-blue-50);
}

#bandwidth-table tbody tr:hover,
#datatransferred-table tbody tr:hover,
#realtime-table tbody tr:hover {
	cursor: pointer;
}

.apexcharts-toolbar {
	top: -61px !important;
  right: 16px !important;
}

.apexcharts-reset-icon {
	margin-right: 5px;
  margin-top: 2px;
}

.apexcharts-zoomin-icon {
	margin-right: 2px;
  margin-top: 1.9px;
}

.apexcharts-zoom-icon, 
.apexcharts-element-hidden {
	display: none;
}

.date-selector {
	display: inline-block;
	position: relative;
	top: 7px;
	right: 30px;
	font-family: var(--font2);
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	letter-spacing: -0.005em;
	color: var(--dark-blue-900);
}

.arrow-peak {
	width: 14px;
	height: 14px;
	margin-left: 5px;
}

.field-mandatory {
	color: var(--red-500);
	margin-left: 2px;
}

#margin-header-2fa {
	margin-top: 100px;
}

/* for host charts, hide y tooltip */
#bandwidth-table .apexcharts-tooltip-series-group,
#realtime-table .apexcharts-tooltip-series-group,
#datatransferred-table .apexcharts-tooltip-series-group {
	display: none !important;
}

/* only horizontal scrolling */
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
	overflow-y: hidden !important;
	overflow-x: auto !important;
}

/* remove border */
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
	border-bottom: 0 !important;
}
table.dataTable thead th {
	border-bottom: 0 !important;
}
			
/* Responsive */
@media (max-width: 767.98px) {
	.headline1 {
		font-size: 24px;
		line-height: 36px;
	}
	
	#login-remember {
    margin-top: 8px;
	}
	
	#login-button, 
	#auth_verify_sign_in_button,
	#auth_verify_button,
	#forgot-password-submit{
		position: fixed;
    bottom: 40px;
    left: 0;
    width: 90% !important;
    margin-left: 5%;
	}
	
	#password-reset-submit, #password-reset-welcome-submit {
		position: unset;
    width: 100% !important;
	}
	
	.onboard-btn-group1 {
		width: 90% !important;
    margin-left: 5%;
		position: fixed;
    bottom: 100px;
		left: 0px;
	}
	
	#password-reset-cancel, #password-reset-welcome-cancel {
		width: 100% !important;
		position: unset;
		margin : 0 0 18px 0;
	}
	
	.header-logo {
		margin: 30px 0;
		margin-left: calc(50% - 70px);
	}
	
	#login-page-title {
    margin-top: 0px;
	}
	
	.header-onboard {
    border-bottom: none;
	}
	
	#margin-header-2fa {
		margin-top: 0;
	}
	
	.card {
		padding: 16px;
	}
	
	#activation_2fa .card-body {
		padding: 0;
	}
	
	#totp-3 {
		margin: 0;
	}
	
	.qr-code img.w-100 {
		width: 50% !important;
		margin-bottom: 16px;
		margin-left: 25%;
	}
	
	#forgot-page-title {
    padding-top: 0px;
	}
	
	#reset-page-title {
    padding-top: 0px;
	}
	
	#tos .card-footer {
    padding: 24px 16px;
	}
	
	.view {
		margin-left : 0;
		width: 100%;
	}
	
	.admin-menu-bloc-user .btn-group .dropdown-toggle {
		margin: 0 20px;
		padding: 0;
		position: relative;
    top: -15px;
	}
	
	.admin-menu {
    padding: 75px 0 3px 20px;
	}
	
	.menu-filter-mobile {
		width: 32px;
		margin-left: 0;
		cursor: pointer;
		position: fixed;
		top: 25px;
	}
	
	.admin-left-menu-mobile {
		width: 100%;
		background-color: var(--dark-grey);
		height: 100vh;
		transition: 0.3s ease;
		position: fixed;
		z-index: 10;
		transition: 0.3s ease;
		overflow: hidden;
	}
	
	.menu-close-mobile {
		margin: 0 14px;
    position: relative;
    top: -35px;
	}
	
	.admin-left-menu-option {
    margin: 0 24px;
	}
	
	.admin-logo {
		margin: 79px 0 16px 20px;
	}
	
	.admin-left-menu-mobile.user-role .admin-logo {
    margin: 45px 0 16px 20px;
	}
	
	.admin-left-menu-mobile.user-role .menu-close-mobile {
    top: 24px;
	}
	
	.admin-left-menu-mobile .dropbtn {
		margin: 0 16px;
		width: calc(100% - 32px);
	}
	
	.admin-menu-bloc-user .dropdown-menu {
		top: -34px !important;
	} 
	
	.view-content {
    padding: 24px 16px;
	}
	
	.p-sm-overview,
	.p-sm-other {
    padding: 0 12px;
	}
	
	.card-header {
    padding: 16px;
	}
	
	.p-sm-overview .card-header {
		padding: 4px 0;
	}
	
	.admin-left-menu-mobile .dropdown-content {
    background: #FFFFFF;
    border-radius: 16px;
    display: none;
    min-width: calc(100% - 32px);
    border: 1px solid #ddd;
    z-index: 1;
    position: absolute;
    padding: 14px 16px;
		left: 16px;
		max-height: 400px;
    overflow-y: scroll;
	}
	
	.admin-left-menu-mobile .dropdown-content a.active {
    background: #D3DBFF;
	}
	
	.admin-left-menu-mobile .dropdown-content a {
    color: var(--dark-blue-900);
    padding: 10px 8px;
    text-decoration: none;
    display: block;
    font-family: var(--font2);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    border-radius: 8px;
	}
	
	.see-more-overview {
    position: absolute;
    top: 18px;
    right: 16px;
	}
	
	.p-sm-overview .subtitle2 {
		max-width: 50%;
	}
	
	.admin-left-menu-mobile.admin-role #large-logo-menu-mobile {
		display: none;
	}
	
	.admin-left-menu-mobile.admin-role #small-logo-menu-mobile {
		display: block;
	}
	
	.admin-left-menu-mobile.user-role #large-logo-menu-mobile {
		display: block;
	}
	
	.admin-left-menu-mobile.user-role #small-logo-menu-mobile {
		display: none;
	}
	
	.admin-left-menu-mobile.admin-role .menu-close-mobile {
		margin: 22px;
		top: 0;
	}
	
	.admin-left-menu-mobile.admin-role .dropdown {
		display: block;
	}
	
	.admin-left-menu-mobile.user-role .dropdown {
		display: none;
	}
	
	#small-logo-menu-mobile {
		float: right;
		margin: 16px;
		width: 45px;
	}
	
	.apexcharts-toolbar {
    top: -87px !important;
    right: 16px !important;
	}
	
	#datatransferred .apexcharts-toolbar {
		top: -112px !important;
	}
	
	#datatransferred .toolbar .float-md-right {
		width: 92%;
    margin-left: 4%;
		margin-top: 10px;
	}
	
	#chart-bandwidth,
	#chart-realtime {
		margin-top: 35px;
	}
	
	#chart-datatransferred {
		margin-top: 60px;
	}
	
	#realtime .toolbar,
	#bandwidth .toolbar {
    top: 65px;
    width: 100%;
    padding: 0;
	}
	
	.btn-graph {
    padding: 8px 13px;
	}
	
	#datatransferred .toolbar {
    top: 65px;
    width: 100%;
    padding: 0;
	}
	
	#realtime .card-header,
	#datatransferred .card-header{
		border-bottom: 0;
	}
	
	.btn-bandwidth, .btn-realtime {
		width: 47%;
	}
	
	#play-realtime,
	#play-bandwidth {
		display: none;
	}
	
	#three_day,
	#three_day_realtime{
		position: relative;
		left: -5px;
	}
	
	#one_day,
	#one_day_realtime{
		margin-left: 9px;
	}
	
	.p10 {
		padding: 0 14px;
	}
	
	#purge-button-close {
		float: left;
		position: unset;
	}
	
	.date-selector {
		position: unset;
    display: block;
	}
	
	#profile #btn-language, #profile #btn-language-save,
	#profile #btn-api-key {
    width: 100%;
    margin-top: 10px;
		position: unset;
	}
	
	#img-2FA, #logout-btn-profile {
		display: none;
	}
	
	#user-create {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
	}
	
	#modalUser .modal-body {
		padding: 24px 16px;
	}
	
	#wizard-user li {
    width: 130px;
	}
	
	#middle-2-separator-user {
    width: 85px;
    left: 88px;
	}
	
	#middle-1-separator-user {
    width: 85px;
    left: -42px;
	}
	
	.label-user:first-child {
    margin: 0 10px;
	}
	
	.label-user {
    width: 100%;
    margin: 10px;
	}
	
	.margin-role-user-sm {
		margin-bottom: 10px;
	}
	
	#modalUser .btn-deepblue-primary,
	#user-annulation-modal,
	#user-prev-modal,
	#user-create-modal {
    width: 47%;
	}
	
	#user-annulation-modal,
	#user-prev-modal {
		float: left;
	}
	
	#modalUser .btn-deepblue-primary,
	#user-create-modal {
		float: right;
	}
	
	.btn-success-primary {
    font-size: 12px;
	}
	
	.btn-darkblue-secondary {
    font-size: 12px;
	}

	.tooltip-img {
		top: 22px !important;
	}
	
	#overview .tooltip-img {
		top: -3px !important;
	}
	
	.purge-link {
    overflow: hidden;
    width: 80px;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
	}
	
	.purge-export {
		right: 16px !important;
	}
	
	#purge-tooltip1 {
		left: 185px !important;
	}
	
	#purge-tooltip2 {
		left: 224px !important;
    top: 24px !important;
	}
	
	#bandwidth-table td, #datatransferred-table td, #realtime-table td {
    padding: 12px 15px;
	}
	
	table.dataTable thead th {
    padding: 10px 15px;
	}
	table.dataTable tbody th,
	table.dataTable tbody td {
			white-space: nowrap;
	}
	
	#modalPurge .caption2 {
    margin-right: 0px;
	}

}

.parameters-container {
	display: none;
}

.topbar {
	display: none;
}

.information-container {
	display: none;
}

.scheme-container {
	display: none;
}
