/*
Theme Name: My Theme
Author: Praveen
Description: Something
Version: 1.1.5
Tags: UI
*/

:root {
	--content-bg-color: #e0e0e0;
	--content-fg-color: #383838;
    --text-shadow: rgba(0, 0, 0, 0.1);
	--color-text: #1d1e22;
	--shadow-uno: #bebebe;
    --shadow-dos: #ffffff;
	
	--blue-1: #0098af;
	--blue-2: #006fc6;
	
	--blue-1-fg: #fff;
	--blue-2-fg: #fff;
    
    --text-primary: #383838;
	--text-secondary: rgba(0, 0, 0, 0.68);
	--text-tertiary: #757575;
	
    --divider-color: #efefef;
    
    --code-bg: #f5f2f0;

    --content-bg-color-2: #fbfbfb;
}

.dark {
    --content-bg-color: #242424;
    --content-fg-color: #eee;
    --text-shadow: rgba(0, 0, 0, 0.1);
    --color-text: #e0e0e0;
    --shadow-uno: #111212;
    --shadow-dos: #36373e;
    --blue-1: #002b31;
    --blue-2: #006fc6;
    --blue-1-fg: #fff;
    --blue-2-fg: #fff;
    --text-primary: #eee;
    --text-secondary: rgba(240, 240, 240, 0.68);
    --text-tertiary: #b1b1b1;
    --divider-color: #333333;
    --code-bg: #20201f;
    --content-bg-color-2: #0a0a0a;
}

body {
background: var(--content-bg-color);
color: var(--content-fg-color);
}

/* Header */
.mt-header {
  height: 60px;
  width: 100%;
background: var(--content-bg-color);
  display: flex;
  justify-content: center;
box-shadow:  5px 5px 6px var(--shadow-uno), -5px -5px 6px var(--shadow-dos);
border: 1px solid var(--content-bg-color);
position: relative;
z-index: 100;
}

.mt-header-content {
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  flex: 1;
  padding: 0px 20px;
  box-sizing: border-box;
}

/* End of Header */

#separacuerpo {
padding-top: 7px;
padding-right: 0px;
padding-bottom: 9px;
padding-left: 0px;

}
#separacuerpo1{
/*padding-top: 90px;*/
padding-right: 0px;
padding-bottom: 9px;
padding-left: 0px;

}

/* Dark Mode Switch */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
color: var(--color-text);
}
.theme-switch {
  display: inline-block;
  height: 23px;
  position: relative;
  width: 40px;
	margin-right: 10px;
}

.theme-switch input {
  display:none;
}

.slider {
width: 25px;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
content: url(https://shivanarrthine.com/public/images/icons/sun.svg);
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 16px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 16px;
}

input:checked + .slider {

  content: url(https://shivanarrthine.com/public/images/icons/moon.svg);
}

input:checked + .slider:before {
  transform: translateX(16px);
}

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

.slider.round:before {
  border-radius: 50%;
}
/* End of Dark mode Switch */

#bloqnotifchatprof{
	position: absolute;
}

.numredBadgeprof {
color: #fff;
    font-size: 15px;
    box-shadow: 3px 3px 4px var(--shadow-uno), -3px -3px 4px var(--shadow-dos);
    border: none;
    background: #0056b3;
    border-radius: 50%;
    text-align: center;
    padding-right: 7px;
    padding-left: 7px;
    padding-top: 2px;
    padding-bottom: 2px;
	position: relative;
    top: -10px;
}