
:root{
    
    --MAIN-TEXT-color:#323232; /* Color of text by default */
    --MAIN-TITLES-TEXT-color: #5e5e5e; /* Color of titles h2-h3-h4-h5 */
    --MAIN-LINK-color:#000000; /* Color of links */
    --MAIN-LINK-HOVER-color:#606060; /* Color of hovered links */
    --MAIN-ANCHOR-color: #909090; /* color of anchors on titles */
    
    --CLAP-GREEN-COLOR:#AEC3A9;
    --CLAP-YELLOW-COLOR:#FECE6D;
  	--CLAP-DARK-GREEN-COLOR:#3c4d39;

    --MENU-HEADER-BG-color:#AEC3A9; /* Background color of menu header */
    --MENU-HEADER-BORDER-color:#404040; /*Color of menu header border */ 

    --MENU-SEARCH-BG-color:#404040; /* Search field background color (by default borders + icons) */
    --MENU-SEARCH-BOX-color: #202020; /* Override search field border color */
    --MENU-SEARCH-BOX-ICONS-color: #A0A0A0; /* Override search field icons color */

    --MENU-SECTIONS-ACTIVE-BG-color:#202020; /* Background color of the active section and its childs */
    --MENU-SECTIONS-BG-color:#303030; /* Background color of other sections */
    --MENU-SECTIONS-LINK-color: #ccc; /* Color of links in menu */
    --MENU-SECTIONS-LINK-HOVER-color: #e6e6e6;  /* Color of links in menu, when hovered */
    --MENU-SECTION-ACTIVE-CATEGORY-color: #222; /* Color of active category text */
    --MENU-SECTION-ACTIVE-CATEGORY-BG-color: #dfe5df; /* Color of background for the active category (only) */

    --MENU-VISITED-color: #33a1ff; /* Color of 'page visited' icons in menu */
    --MENU-SECTION-HR-color: #20272b; /* Color of <hr> separator in menu */
    
    
}

body {
	background-image: linear-gradient(to right, #fff,#e0e3e0,#e0e3e0);
}

textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus {
    border-color: none;
    box-shadow: none;
}

h2, h3, h4, h5 {
    color: var(--MAIN-TITLES-TEXT-color) !important;
}

a {
    color: var(--MAIN-LINK-color);
}

.anchor {
    color: var(--MAIN-ANCHOR-color);
}

a:hover {
    color: var(--MAIN-LINK-HOVER-color);
}

#sidebar ul li.visited > a .read-icon {
	color: var(--MENU-VISITED-color);
}

#homelinks {
	color: var(--MENU-SECTIONS-BG-color);
	background: var(--MENU-HEADER-BORDER-color);
	border-bottom: 4px solid var(--MENU-HEADER-BORDER-color);
}
#body a.highlight:after {
    display: block;
    content: "";
    height: 1px;
    width: 0%;
    -webkit-transition: width 0.5s ease;
    -moz-transition: width 0.5s ease;
    -ms-transition: width 0.5s ease;
    transition: width 0.5s ease;
    background-color: var(--MAIN-LINK-HOVER-color);
}
#sidebar {
	background-color: var(--MENU-SECTIONS-BG-color);
}
#sidebar #header-wrapper {
    background: var(--CLAP-GREEN-COLOR);
    color: var(--MENU-SEARCH-BOX-color);
    border-color: var(--MENU-HEADER-BORDER-color);
}
#sidebar .searchbox {
	border-color: var(--MENU-SEARCH-BOX-color);
    background: var(--MENU-SEARCH-BG-color);
}
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
    background: var(--MENU-SECTIONS-ACTIVE-BG-color);
}
#sidebar .searchbox * {
    color: var(--MENU-SEARCH-BOX-ICONS-color);
}

#sidebar a {
    color: var(--MENU-SECTIONS-LINK-color);
}

#sidebar a:hover {
    color: var(--MENU-SECTIONS-LINK-HOVER-color);
}

#sidebar ul li.active > a {
    background: var(--MENU-SECTION-ACTIVE-CATEGORY-BG-color);
    color: var(--MENU-SECTION-ACTIVE-CATEGORY-color) !important;
}

#sidebar hr {
    border-color: var(--MENU-SECTION-HR-color);
}


/* Quote style */

blockquote {
margin: 1.7rem 0;
padding-left: 1.5rem;
border-left: 4px solid var(--CLAP-GREEN-COLOR);;
}

blockquote p {
font-size: 1.1rem;
color: var(--MAIN-TEXT-color);
}


/* Refined header style */

h2, h4, h5, h6 {
font-weight: 300;
line-height: 1.1;
}

h3 {
font-weight: 400;
line-height: 1.1;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
font-weight: inherit;
}

h2 {
font-size: 2.1rem;
line-height: 100% !important;
margin: 3rem 0 1.5rem 0;
}

h3 {
font-size: 1.4rem;
line-height: 200% !important;
margin: 2.2rem 0 0.5rem 0;
}

h4 {
font-size: 1.5rem;
line-height: 110% !important;
margin: 1.5rem 0 0.75rem 0;
}

h5 {
font-size: 1rem;
line-height: 110% !important;
margin: 1rem 0 0.2rem 0;
}

h6 {
font-size: 0.5rem;
line-height: 110% !important;
margin: 0.5rem 0 0.2rem 0;
}

p {
margin: 1.2rem 0;
}

body {
font-size: 17px !important;
color: var(--MAIN-TEXT-color);
}

div.notices.info p {
border-top: 30px solid var(--CLAP-GREEN-COLOR);
background: #FFF;
}


/* Refined LINK style */

#body a.highlight {
    line-height: 1.5;
    font-weight: 400;
    color: var(--CLAP-DARK-GREEN-COLOR);
}
#body a.highlight:after {
	width: 40%;
	background-color: var(--CLAP-DARK-GREEN-COLOR);
	transition: width 0.15s ease;
}


/* Refined table style */

table {
	background: #fff;
}

#adc-24-going-deeper-with-clapnewsadc_24 {
    text-align: center;
}