@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
    font-family: "Visa Dialect";
    src: url('../fonts/visadialect-regular.woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Visa Dialect";
    src: url('../fonts/visadialect-semibold.woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Visa Dialect";
    src: url('../fonts/visadialect-bold.woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {
	--font-family: 'Roboto', sans-serif;
	--principal: #1434CB;
	--secondaire: #FCC015;
	--tertiaire: #2c2c2c;
	--radius: 40px;
}

body[data-banque="cic"] {
	--font-family: 'Manrope', sans-serif;
	--principal: #038189;         /* Bleu CIC */
	--secondaire: #0f228b;
	--tertiaire: #fe330f;
	--radius: 0;
}

body[data-banque="credit_mutuel"] {
	--font-family: 'Inter', sans-serif;
	--principal: #003192;         /* Rouge Crédit Mutuel */
	--secondaire: #d4221d;
	--tertiaire: #e5eef9;
	--radius: 40px;
}

* {
	font-family: var(--font-family);
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body {
    font-family: var(--font-family);
    background: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}
body.home {
    background: url('../images/bg_generic.jpg') center bottom fixed no-repeat;
    background-size: cover;
}

header {
    background-color: var(--principal);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

h1, h2, h3 {
    color: var(--principal);
    margin: 10px 0;
}

a {
    color: var(--principal);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: var(--secondaire);
}

button {
    background: var(--secondaire);
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: var(--radius);
    transition: 0.3s;
    cursor: pointer;
    color: #FFF;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

button:hover {
    background: var(--principal);
    color: #fff;
    transform: translateY(-2px);
}

.home .module-infos button {
    background: #262B42;
    font-family: "Visa Dialect", sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 15px 50px;
    border-radius: 10px;
    box-shadow: none;
}

.toggle-bank-detail, .toggle-detail {
	width: 30px!important;
	height: 30px!important;
	line-height: 30px!important;
	padding: 0!important;
	text-align: center!important;
}
.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ddd;
    border-radius: var(--radius);
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	margin: 0 12px;
}

.btn-secondary:hover {
    background: var(--principal);
    color: #fff;
    transform: translateY(-2px);
}

.small-link {
	display: block;
	margin: 12px 0;
    font-size: 0.9em;
	font-weight: 400;
    text-decoration: underline;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 16px;
}
select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 16px;
    background: #fff;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23003B70'%20d='M2%200L0%202h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 10px;
}

select:focus {
    border-color: var(--principal);
    outline: none;
    box-shadow: 0 0 8px rgba(0,59,112,0.3);
}
form {
	box-sizing: border-box;
	background: #fff;
    padding: 30px;
    max-width: 1440px;
    margin: 30px auto;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
form.date {
    padding: 10px!important;
}
.icon-btn {
    background: var(--secondaire);
    border: none;
    display: inline-block !important;
    padding: 0 !important;
    width: 50px !important;
    height: 50px !important;
	min-width: auto!important;
    line-height: 50px !important;
    font-size: 16px;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
    color: var(--tertiaire);
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 4px;
}

.icon-btn:hover {
    background: var(--principal);
    color: #fff;
    transform: translateY(-2px);
}

.icon {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle;
}

.inline-form {
    display: inline;
	background: none!important;
    padding: 0!important;
    margin: 0!important;
    border-radius: none!important;
    box-shadow: none!important;
}
input[type="date"] {
	border:#DDD 1px solid;
	padding: 8px 16px;
	margin: 8px;
}
label {
	margin: 8px 0;
    display: block;
}
.table-container {
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
    background: #fff;
    padding: 30px;
    margin: 30px auto;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.table-title {
    margin: 0;
    font-size: 20px;
    color: var(--principal);
}

.search-input {
    padding: 10px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-width: 300px !important;
    transition: 0.3s;
}

.search-input:focus {
    border-color: var(--principal);
    outline: none;
    box-shadow: 0 0 8px rgba(0,59,112,0.3);
}
table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

table th {
    background: var(--principal);
    color: #fff;
    font-weight: 500;
}
.sub-table th {
    background: #F1F1F1;
    color: var(--principal);
    padding: 6px;
}
table tr:hover {
    background-color: #f1f9ff;
}
.modules {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}
.module-card {
    /* border: 1px solid #ddd;
    padding: 20px; */
    margin: 20px 30px;
    display: inline-block;
    width: 360px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.module-card img {
    display: block;
}
.module-card p {
    color: #262B42;
    font-family: "Visa Dialect", sans-serif;
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 20px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    justify-content: center;
}

.module-card h3 {
	margin-bottom: 4px !important;
    margin-top: 0;
    font-size: 22px;
    height: 70px;
    font-family: "Visa Dialect", sans-serif;
    color: #494DFF;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.lightbox .close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondaire);
    color: var(--principal);
    font-weight: bold;
    border: none;
    font-size: 30px;
    border-radius: 50%;
    width: 50px;
	min-width: auto!important;
    height: 50px;
    text-align: center;
    line-height: 50px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.lightbox .close-btn:hover {
    background: var(--principal);
    color: #fff;
}

.main-header {
    background-color: #FFF; /* couleur personnalisable */
    color: white;
    padding: 20px 20px;
    position: relative;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
}
.a-left {
	text-align: left!important;
}
.a-right {
	text-align: right!important;
}
.a-center {
	text-align: center!important;
}
.header-left,
.header-right {
	width: 20%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    gap: 20px;
}
.header-left {
    justify-content: flex-start;
}
.header-right {
    justify-content: flex-end;
}

.header-title {
    font-size: 32px;
    font-weight: 500;
    max-width: 1440px;
    margin: 44px auto;
    text-align: center;
    width: 100%;
}
.header-right a {
    display: flex;
    flex-direction: row;
}
.home .header-title {
    color: #ffffff;
    font-family: "Visa Dialect", sans-serif;
    font-weight: 700;
}
.home .header-title.a-left {
    font-family: var(--font-family);
}
.points-link {
	background-color: var(--principal);
	color: #FFF;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius);
	display: flex; 
	align-items: center; 
	gap: 6px;
    white-space: nowrap;
}
.points-link img {
    height: 20px;
}
.logo {
    height: 30px;
}

.cm {
	height:40px!important;
}
.header-right img {
    cursor: pointer;
	/*width: 28px;*/
}

.header-logout {
    position: absolute;
    top: 20px;
    right: 20px;
}

.header-logout a {
    font-size: 26px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.header-logout a:hover {
    color: var(--secondaire);
    transform: scale(1.2);
}
.disable-btn {
	opacity:0.5;
	cursor:not-allowed;
}
.lock-svg {
	vertical-align:middle; 
	margin-right:4px;
}
.popin {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popin-content {
    background: #fff;
    padding: 30px 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.kpi-container {
    display: flex;
	width: 100%;
	max-width: 1440px;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px auto;
}

.kpi-block {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 20px 40px;
    margin: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 150px;
}

.kpi-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--principal);
}

.kpi-label {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}
footer {
    background: var(--principal);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
}
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background: #e0e0e0;
    z-index: 1000;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: var(--principal);
    transition: width 0.3s ease;
}
.message {
    max-width: 600px;
    margin: 20px auto;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.message-success {
    background-color: #e6f9ec;
    color: #227d3c;
    border: 1px solid #a8e5b4;
}

.message-error {
    background-color: #fdecea;
    color: #b00020;
    border: 1px solid #f5c2c7;
}
.module-thumb {
    position: relative;
}
.module-infos {
    padding: 12px 20px 20px;
}

.duration-label {
    position: absolute;
    top: 0;
    left: 50%; transform: translateX(-50%);
    background: #494DFF;
    color: #fff;
    font-family: "Visa Dialect", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.duration-label img {
    height: 22px;
    display: block;
}

.result-wrapper {
	box-sizing: border-box;
	flex: 1;
	padding: 0 20px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.section {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section h2 {
	margin-top: 0;
	font-size: 22px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.global-stats p {
	font-size: 16px;
	margin: 5px 0;
}

.charts {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.chart-card {
	flex: 1 1 200px;
	background: #fafafa;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
}

.chart-card h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.badge {
	box-sizing: border-box;
	background: #F9F9F9;
	text-align: center;
	border: #EEE 1px solid;
	color: #000;
	text-transform: uppercase;
	display: inline-block;
	padding: 20px 40px;
	border-radius: 20px;
	font-size: 13px;
	margin-top: 20px;
}
.badge img {
	max-height: 120px;
    max-width: 100%;
    margin-top: 6px;
}
.module-result-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.module-result-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
}
.badge.inactive {
    color: #aaa;
}
canvas {
  max-width: 100%;
}

.chart-card canvas {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: block;
}

#globalChart {
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
.chart-label {
	font-size: 20px;
	font-weight: bold;
	margin-top: 10px;
}
#password-rules {
    list-style: none;
    padding: 0;
    font-size: 0.9em;
    margin: 20px 0;
}

#password-rules li {
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

#password-rules li.valid {
    color: #000;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #bbb;
    background-color: #f5f5f5;
    margin-right: 10px;
    flex-shrink: 0;
}
.icon-logout {
    fill: #000000; /* couleur par défaut (bleu) */
    cursor: pointer;
    transition: color 0.3s ease;
}

.icon-logout:hover {
    fill: var(--secondaire); /* rouge au survol */
}

li.valid .check-icon {
    background-color: #4caf50;
    border-color: #388e3c;
}

li.valid .check-icon::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12 3.41 13.41 9 19l12-12-1.41-1.41z'/%3E%3C/svg%3E");
    mask-size: contain;
    background-color: white;
}
.menu {
	text-align: center;
	box-sizing: border-box;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--principal);
    color: #FFF;
    width: 100%;
}
.menu a {
    color: #FFF!important;
}
.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    font-weight: bold;
}

.switch-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px; width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch-toggle input:checked + .slider {
    background-color: #2196F3;
}

.switch-toggle input:checked + .slider:before {
    transform: translateX(24px);
}
.progress-wrapper {
    max-width: 100%;
    display: flex;
    margin: 30px auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.progress-wrapper p {
	width: 200px;
}
.progress-bar-bg {
    width: 100%;
    height: 20px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: var(--principal);
    width: 0%;
    transition: width 0.4s;
}
.score-wrapper {
    margin: 10px 0;
}

.score-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.score-bar-container {
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    height: 14px;
    width: 100%;
}

.score-bar {
	border-radius: 20px;
    height: 100%;
    background-color: var(--secondaire, #1976d2);
    transition: width 0.4s ease;
}
.module-result-item {
    position: relative;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #ffffff;
}

.module-status-stats {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    font-size: 0.9em;
    border-radius: 4px;
    font-weight: 400;
    color: #000;
}

.module-status-stats::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.module-status-stats:contains("Terminé") {
    background: #4caf50;
}

.module-status-stats:contains("En cours") {
    background: #ff9800;
}

.module-status-stats:contains("Non commencé") {
    background: #f44336;
}

.module-status {
	display: block;
    background: #BBBBBB;
    color: #ffffff;
    font-family: "Visa Dialect", sans-serif!important;
    font-weight: 700;
    font-size: 0.8em;
    padding: 4px 12px;
	min-height: 20px;
	text-align: center;
	line-height: 20px;
}
.home .module-status .status-indicator {
    font-family: "Visa Dialect", sans-serif!important;
    padding: 5px 12px;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.home .module-status .status-indicator img {
    height: 25px;
    display: block;
}

.module-status.completed {
	display: block!important;
    background-color: #76BD49;
    color: white;
}
.module-status.not_started {
	display: block!important;
    background-color: #BBBBBB;
    color: white;
}
.module-status.started {
	display: block!important;
    background-color: #4242BD;
    color: white;
}
.container-button {
	margin-top: 20px;
}

.error-page {
	text-align: center;
	padding: 80px 20px;
	color: #333;
}
.error-page h1 {
	font-size: 60px;
	margin-bottom: 10px;
}
.error-page p {
	font-size: 18px;
	margin-bottom: 30px;
}
.error-page a {
	display: inline-block;
	background-color: var(--bleu, #1434CB);
	color: white;
	padding: 12px 25px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
}
.error-page img.logo {
	max-height: 50px;
	margin-bottom: 30px;
}

@media screen and (min-width: 961px) and (max-height: 850px) {
    .lightbox-content {
        width: 90dvw;
        height: 97dvh;
    }
    .lightbox .close-btn {
		position: absolute;
		top: 0!important;
		right: 0!important;
    	width: 40px;
	    height: 35px;
		font-size: 45px;
		line-height: 30px;
        background: #ffffff;
        box-shadow: none;
        color: #262B42;
        margin: 0;
        border-radius: 0 16px 0 5px;
	}
    .lightbox .close-btn:hover {transform: none;}
}

@media (max-width: 600px) {
	.modules {
        flex-direction: column;
        align-items: center; /* centre les éléments en colonne */
        padding: 0 30px;
    }
	.progress-wrapper {
    	display: block;
	}
	.progress-wrapper p {
    	width: 100%;
	}
	
	.module-result-item h3 {
		padding-top: 30px;
	}
	.badge {
		width: 100%;
	}
	button, .btn-secondary, .small-link {
		display: block;
   		margin: 10px auto;
		width: fit-content;
		min-width: 220px;
        box-sizing: border-box;
        text-align: center;
	}
	.header-title {
		text-align: center!important;
        padding: 0 20px;
        box-sizing: border-box;
	}

    .module-card {
        width: 100%;
    }
    .home .module-status .status-indicator {
        font-size: 12px;
        gap: 5px;
    }
    .home .module-status .status-indicator img {height: 20px;}
    .duration-label {
        font-size: 12px;;
    }
    .duration-label img {height: 18px;}
    .home .module-infos button {
        padding: 10px 25px;
        font-size: 16px;
    }

	form {
		width: 90%;
	}
	.table-container {
		overflow: scroll;
		width: 90%;
	}
    .lightbox {
        height: 100dvh!important;
    }
	.lightbox-content {
		position: relative;
		width: 100vw;
		height: 100dvh!important;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.lightbox iframe {
        height: 100dvh!important;
		border-radius: 0!important;
		box-shadow: none;
	}
	.lightbox .close-btn {
		position: absolute;
		top: 0!important;
		right: 0!important;
    	width: 40px;
	    height: 35px;
		font-size: 45px;
		line-height: 30px;
        background: #ffffff;
        box-shadow: none;
        color: #262B42;
        margin: 0;
        border-radius: 0 0 0 5px;
	}
    .lightbox .close-btn:hover {
        background: #ffffff;
        color: #262B42;
        transform: none;
    }
	.header-title {
		font-size: 20px;
		margin: 20px auto;
	}

	.logo {
		height: 20px;
	}
	.header-right img {
		cursor: pointer;
		/*width: 22px;*/
	}
	.hide-mobile {
		display: none;
		width: 0;
		height: 0;
		overflow: hidden;
	}
	.module-card h3, .module-card p {
		height: auto!important;
	}
    .module-card h3 {font-size: 18px;}
    .module-card p {font-size: 14px;}
}