/*
Theme Name: Edumodo
Theme URI: http://demo.themexpert.com/wordpress/edumodo/
Author: Themexpert
Author URI: https://www.themexpert.com/
Description: Edumodo is Education WordPress Theme, Edumodo Designed for University, School, Kindergarten, Training Center, College, Academy and  Edumodo is a LMS base WordPress Theme .
Version: 4.4.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: edumodo
Tags: translation-ready, custom-background, theme-options, custom-menu, post-formats, threaded-comments

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Edumodo is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
	--color-primary: #3a609e;
	--color-primary-hover: #2d4d7f;
	--color-accent: #ecb101;
	--color-accent-soft: rgba(236, 177, 1, 0.12);
	--color-text: #1a1a2e;
	--color-text-muted: #6b7280;
	--color-border: #e5e7eb;
	--color-surface: #ffffff;
	--color-surface-alt: #f8f9fb;
	--color-footer: #1e2328;
	--font-sans: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 14px;
	--radius-full: 9999px;
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
	--shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
	--shadow-lg: 0 8px 24px rgba(16, 24, 40, 0.1);
	--transition: 0.2s ease;
	--content-max: 72rem;
	--line-height: 1.65;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: var(--font-sans);
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:active,
a:hover {
	outline: 0;
	color: var(--color-primary-hover);
}

a:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
	border-radius: 2px;
}

abbr[title] {
	border-bottom: 1px dotted var(--color-border);
}

b,
strong {
	font-weight: 600;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 0.75em;
	color: var(--color-text);
}

h2 {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin: 0 0 0.75em;
	color: var(--color-text);
}

h3 {
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 0.75em;
	color: var(--color-text);
}

h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 0.75em;
	color: var(--color-text);
}

mark {
	background: var(--color-accent-soft);
	color: var(--color-text);
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 0.9375rem;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: inherit;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: var(--line-height);
	background: var(--color-surface);
	-webkit-font-smoothing: antialiased;
}

p {
	margin-bottom: 1.25em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 0 1.5em;
	padding: 1rem 1.25rem;
	border-left: 3px solid var(--color-accent);
	background: var(--color-surface-alt);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: var(--color-text-muted);
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: var(--color-surface-alt);
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.25em;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 0.875rem;
	background: var(--color-surface-alt);
	padding: 0.15em 0.4em;
	border-radius: 4px;
}

abbr,
acronym {
	border-bottom: 1px dotted var(--color-text-muted);
	cursor: help;
}

mark,
ins {
	background: var(--color-accent-soft);
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: var(--color-border);
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 1.25em;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.25em;
}

dt {
	font-weight: 600;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	max-width: 100%;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

th,
td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
}

thead th {
	background: var(--color-surface-alt);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

tbody tr:nth-child(even) {
	background: var(--color-surface-alt);
}

tbody tr:last-child td {
	border-bottom: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
	width: 100%;
	padding: 0.625rem 0.875rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-surface);
	color: var(--color-text);
	transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(58, 96, 158, 0.15);
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.btn {
	display: inline-block;
	padding: 0.625rem 1.25rem;
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.4;
	color: #fff;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover,
.btn:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
}

textarea {
	width: 100%;
	min-height: 8rem;
	resize: vertical;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 0.5rem 1rem;
	text-decoration: none;
	color: var(--color-text);
	font-weight: 500;
	font-size: 0.9375rem;
	transition: color var(--transition), background var(--transition);
	border-radius: var(--radius-sm);
}

.main-navigation ul ul {
	box-shadow: var(--shadow-md);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
	padding: 0.5rem 0;
	min-width: 12rem;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: auto;
	padding: 0.5rem 1rem;
	white-space: nowrap;
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
	color: var(--color-primary);
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
	background: var(--color-surface-alt);
	color: var(--color-primary);
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
	background: var(--color-surface-alt);
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
	color: var(--color-primary);
	font-weight: 600;
}

.menu-toggle {
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-surface);
	color: var(--color-text);
	font-weight: 500;
	cursor: pointer;
}

.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
	padding: 1rem 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

.comment-navigation a,
.posts-navigation a,
.post-navigation a {
	font-weight: 500;
	color: var(--color-primary);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--color-surface);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	clip: auto !important;
	color: var(--color-primary);
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	padding: 1.25rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.widget-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--color-text);
}

.widget select {
	max-width: 100%;
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget li {
	padding: 0.375rem 0;
	border-bottom: 1px solid var(--color-border);
}

.widget li:last-child {
	border-bottom: none;
}

.widget a {
	color: var(--color-text);
}

.widget a:hover {
	color: var(--color-primary);
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 2em;
}

.page .hentry {
	margin-bottom: 0;
}

.entry-title {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.5em;
}

.entry-title a {
	color: var(--color-text);
}

.entry-title a:hover {
	color: var(--color-primary);
}

.entry-meta {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.entry-content,
.entry-summary {
	color: var(--color-text);
}

.entry-content a,
.entry-summary a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.entry-content a:hover,
.entry-summary a:hover {
	color: var(--color-primary-hover);
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.page-links a,
.page-links > span {
	display: inline-block;
	min-width: 2rem;
	padding: 0.25rem 0.5rem;
	margin-right: 0.25rem;
	text-align: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
}

.page-links a:hover {
	background: var(--color-surface-alt);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-body {
	padding: 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface-alt);
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

embed,
iframe,
object {
	max-width: 100%;
}

.entry-content iframe,
.page-content iframe {
	border-radius: var(--radius-md);
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
	border-radius: var(--radius-sm);
}

.wp-caption .wp-caption-text {
	margin: 0.75em 0;
}

.wp-caption-text {
	text-align: center;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

/*--------------------------------------------------------------
# Site layout
--------------------------------------------------------------*/
.site-content {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.site-header {
	border-bottom: 1px solid var(--color-border);
	background: var(--color-surface);
}

.site-footer {
	background: var(--color-footer);
	color: rgba(255, 255, 255, 0.85);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
	color: #fff;
}
