/* Importing Google Font - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

/* Color variables for light theme */
:root {
  --white-color: #fff;
  --black-color: #000;
  --light-white-color: #f0f0f0;
  --light-gray-color: #e5e5e5;
  --border-color: #ccc;
  --primary-color: #3b82f6;
  --secondary-color: #404040;
  --overlay-dark-color: rgba(0, 0, 0, 0.6);
  --light-box-color: #eee;
  --logo-color: #f68f80;
}

/* Color variables for dark theme */
.dark-mode {
  --white-color: #171717;
  --black-color: #d4d4d4;
  --light-white-color: #333;
  --light-gray-color: #404040;
  --border-color: #808080;
  --secondary-color: #d4d4d4;
  --light-box-color: #272525;
  --logo-color: #f4131e;
}

body {
  background: var(--white-color);
}

.container {
  display: flex;
  overflow: hidden;
  max-height: 100vh;
  flex-direction: column;
}

header,
.sidebar .nav-left,
.category-list {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white-color);
}

.navbar {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 8px 16px;
  justify-content: space-between;
}

:where(.navbar, .sidebar) .nav-section {
  gap: 16px;
}

:where(.navbar, .sidebar) :where(.nav-section, .nav-logo, .search-form) {
  display: flex;
  align-items: center;
}

:where(.navbar, .sidebar) :where(.logo-image, .user-image) {
  width: 32px;
  cursor: pointer;
  border-radius: 50%;
}

:where(.navbar, .sidebar) .nav-section .nav-button {
  border: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  background: none;
  border-radius: 50%;
}

:where(.navbar, .sidebar) .nav-section .nav-button:hover {
  background: var(--light-gray-color) !important;
}

:where(.navbar, .sidebar) .nav-button i {
  font-size: 1.5rem;
  display: flex;
  color: var(--black-color);
  align-items: center;
  justify-content: center;
}

:where(.navbar, .sidebar) .nav-logo {
  display: flex;
  gap: 8px;
  text-decoration: none;
}

:where(.navbar, .sidebar) .nav-logo .logo-text {
  color: var(--black-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.navbar .search-back-button {
  display: none;
}

.navbar .nav-center {
  gap: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.navbar .search-form {
  flex: 1;
  height: 40px;
  max-width: 550px;
}

.navbar .search-form .search-input {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 300;
  padding: 0 16px;
  outline: none;
  color: var(--black-color);
  background: var(--white-color);
  border-radius: 49px 0 0 49px;
  border: 1px solid var(--border-color);
}

.navbar .search-form .search-input:focus {
  border-color: var(--primary-color);
}

.navbar .search-form .search-button {
  height: 40px;
  width: auto;
  padding: 0 20px;
  border-radius: 0 49px 49px 0;
  border: 1px solid var(--border-color);
  border-left: 0;
}

.navbar .nav-center .mic-button {
  background: var(--light-white-color);
}

.navbar .nav-right .search-button {
  display: none;
}

.main-layout {
  display: flex;
  overflow-y: auto;
  scrollbar-color: #a6a6a6 transparent;
}

.main-layout .sidebar {
  width: 280px;
  overflow: hidden;
  padding: 0 11px 0;
  background: var(--white-color);
}

.main-layout .sidebar .nav-left {
  display: none;
  padding: 8px 5px;
}

body.sidebar-hidden .main-layout .sidebar {
  width: 0;
  padding: 0;
}

.sidebar .links-container {
  padding: 16px 0 32px;
  overflow-y: auto;
  height: calc(100vh - 60px);
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.sidebar .links-container:hover {
  scrollbar-color: #a6a6a6 transparent;
}

.sidebar .link-section {
  list-style: none;
}

.sidebar .link-section .link-item {
  display: flex;
  cursor: pointer;
  color: var(--black-color);
  white-space: nowrap;
  align-items: center;
  font-size: 0.938rem;
  padding: 5px 12px;
  margin-bottom: 4px;
  border-radius: 8px;
  text-decoration: none;
}

.sidebar .link-section .link-item:hover {
  background: var(--light-gray-color);
}

.sidebar .link-section .link-item i {
  font-size: 1.4rem;
  margin-right: 10px;
}

.sidebar .link-section .section-title {
  color: var(--black-color);
  font-weight: 600;
  font-size: 0.938rem;
  margin: 16px 0 8px 8px;
}

.sidebar .section-separator {
  height: 1px;
  margin: 10px 0;
  background: var(--light-gray-color);
}

.main-layout .content-wrapper {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

.content-wrapper .category-list {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 12px 0 11px;
  scrollbar-width: none;
}

.category-list .category-button {
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.94rem;
  border-radius: 8px;
  white-space: nowrap;
  color: var(--black-color);
  padding: 6px 12px;
  background: var(--light-gray-color);
}

.category-list .category-button.active {
  color: var(--white-color);
  background: var(--black-color);
  pointer-events: none;
}

.dark-mode .category-list .category-button.active {
  filter: brightness(120%);
}

.dark-mode iframe {
    filter: invert(100%) brightness(300%);
  }

.category-list .category-button:not(.active):hover {
  background: var(--border-color);
}

/* Responsive media code for small devices */
@media (max-width: 768px) {

  .navbar {
    gap: 1rem;
  }

  .navbar .nav-center,
  body.show-mobile-search .navbar .nav-left,
  body.show-mobile-search .navbar .nav-right {
    display: none;
  }

  .navbar .nav-right .search-button,
  body.show-mobile-search .navbar .search-back-button,
  body.show-mobile-search .navbar .nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-layout .screen-overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 15;
    width: 100%;
    height: 100vh;
    background: var(--overlay-dark-color);
    transition: 0.2s ease;
  }

  body.sidebar-hidden .main-layout .screen-overlay {
    opacity: 0;
    pointer-events: none;
  }

  .main-layout .sidebar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    height: 100vh;
    transition: 0.2s ease;
  }

  body.sidebar-hidden .main-layout .sidebar {
    left: -280px;
  }

  .main-layout .sidebar .nav-left {
    display: flex;
  }
}

.content-wrapper .separator {
  height: 40px;
  margin: 0;
  background: transparent;
}

p {
    color: var(--black-color);  
    text-align: justify;    
}

h1 {
  color: var(--black-color);
}

h2 {
  color: var(--black-color);
}

h3 {
  color: var(--black-color);
}

h4 {
  color: var(--black-color);
}


/*--- popup ---*/

.popup {
  display: none;
  position: fixed;
  padding: 20px;
  width: 300px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
}

#popup:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popup:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popup button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.popup button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popup p {
	margin: 1em 0;
  font-size: 16px;
}

.popupl {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  padding: 20px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
  
}

#popupl:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popupl:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popupl button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}

.popupl button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popupl p {
  margin: 1em 0;
  font-size: 16px;
  text-align: center;
  background: transparent;
  color: white;
}

.popupm {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  padding: 20px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
  
}

#popupm:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popupm:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popupm button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}

.popupm button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popupm p {
  margin: 1em 0;
  font-size: 16px;
  text-align: center;
  background: transparent;
  color: white;
}


.popupn {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  padding: 20px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
  
}

#popupn:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popupn:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popupn button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}

.popupn button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popupn p {
  margin: 1em 0;
  font-size: 16px;
  text-align: center;
  background: transparent;
  color: white;
}


.popupp {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  padding: 20px;
  left: 50%;
  margin-left: -200px;
  height: 600px;
  top: 50%;
  margin-top: -250px;
  background: transparent;
  border: none;
  z-index: 20;
  text-align: center;
  
}

#popupp:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -2;
}

#popupp:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
  z-index: -1;
}

/* Styling buttons & webpage */

.popupp button {
  background: black;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}

.popupp button:hover {
    background-color: #F04A49;
    color: #FFF;
    border: 3px solid #F04A49;
    transition: all 0.3s ease 0s;
}

.popupp p {
  margin: 1em 0;
  font-size: 16px;
  text-align: center;
  background: transparent;
  color: white;
}


/*--- calculator ---*/

input{
  font-size: 18px;
  font-weight: 900;
  outline: none;
}

.calculator {
  width: 300px;
  padding: 20px;
  background-color: #262626;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(0,0,0,.3);
  position: relative;
}
#screen {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}
#screen > input {
  width: 100%;
  height: 100%;
  background-color: #50755a;
  border: none;
  border-radius: 5px;
  text-align: right;
  font-size: 18px;
  padding: 0 10px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.8);
  color: #111;
}
#buttons-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 13px 0;
}
#buttons-inner > input {
  flex-basis: 23%;
  height: 40px;
  border: none;
  border-radius: 6px;
  background-color: #e8e8e8;
  color: #333;
  box-shadow: 0 2px 4px rgba(0,0,0,.3);

}
#equal {
  background-color: orangered !important;
  color: #fff !important;
}

#button-l {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#button-l input {
  height: 40px;
  border-radius: 6px;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,.3);

}
#button-l #clear {
  width:37%;
  color: #333;
}
#button-l #theme {
  width: 57%;
  background-color: #777;
  color: #fff;
}
.display .theme, .display .overlay {
  opacity: 1;
  visibility: visible;
}
.dark-theme {
  background-color: #363636;
}
.light-theme {
  background-color: #e8e8e8;
}
.light-theme #buttons-inner > input {
  background-color: #555;
  color: #e8e8e8
}

.light-theme #button-l #theme {
  background-color: #262626;
}

/* dictionary */
.dictwrap {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9f2ff;
}
.container33{
    width: 90%;
    max-width: 600px;
    padding: 2.5rem 2rem 3rem;
    background-color: #0F2C59;
    color: #fff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px #5691e9;
    margin: 2rem 0;
}
.container33 h5{
    text-align: center;
    font-size: 25px;
	color: white;
}
.container33 input{
    padding: 1rem;
    outline: none;
    border: none;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 16px;
    width: 70%;
}
.container33 .meaning-conteiner{
    margin-top: 1rem;
    display: none;
    width: 100%;
}
.container33 audio{
    margin-top: 1rem;
    width: 100%;
}
.container33 .meaning-conteiner > p{
    color: #4e83ff;
    font-size: 18px;
}
.container33 span{
    color: #f1f1f1;
    font-size: 17px;
    margin-left: 5px;
}

/* Blog Article */

.container666{
    position: relative;
    box-sizing: border-box;
    padding: 0 20px;
}
.container666 .content666{
    position: relative;
    margin-top: 10px;
    background:var(--white-color);
    
}
.container666 .content666 .col666{
    background:var(--white-color);
    min-height: 100px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 80px;
}
.container666 .content666 .col666:nth-of-type(1){
    width: 69%;
    margin-right: 15px;
}
.container666 .content666 .col666:nth-of-type(2){
    width: 29%;
    background:var(--white-color);
    box-sizing: border-box;
    padding: 30px 20px;
}
.container666 .content666 .col666 .row666{
    background:var(--white-color);
    box-sizing: border-box;
    padding: 30px 20px;
    margin-bottom: 30px;
}
.container666 .content666 .col666 h1{
    margin-bottom: 40px;
}
.container666 .content666 .col666 h2{
    margin-bottom: 30px;
	font-size: 26px;
}
.container666 .content666 .col666 h3{
	font-size: 24px;
    margin-bottom: 30px;
	margin-top: 30px;
}
.container666 .content666 .col666 img{
    position: relative;
    width: 600px;  height: 400px;
    left: 50%;   transform: translateX(-50%);
    margin-bottom: 20px;
}
.container666 .content666 .col666 p{
    font-size: 18px;
	line-height: 40px;
	margin-bottom: 20px;
}

.container666 .content666 .col666 ul{
    position: relative;
    margin-bottom: 20px;
}
.container666 .content666 .col666 ul li{
    list-style: none;
    width: 100%;
    font-size: 20px;
    margin-bottom: 10px;
    box-sizing: border-box;   
}
.container666 .content666 .col666 ul li a{
    display: inline-block;
    width: 100%;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid var(--black-color);
    color: var(--black-color);
}
.container666 .content666 .col666 ul li:hover a{
    color: #ff9800;    border-color: #ff9800;
}
.container666 .content666 .col666 #img-sidebar{
   position: relative;
   width: 100%;  height: 250px;
}

@media screen and (max-width: 630px) {
    .container666 {
        padding: 0;
    }
    .container666 .content666 .col666{
        width: 100% !important;
        margin-right: 0 !important;
    }
    .container666 .content666 .col666 img{
        width: 100%;  height: 80px;
    }
}

/* table */

.rwd-table {
  margin: auto;
  min-width: 300px;
  max-width: 100%;
  border-collapse: collapse;
}

.rwd-table tr:first-child {
  border-top: none;
  background: #428bca;
  color: #fff;
}

.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f9fc;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #ebf3f9;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: .5em;
}

.rwd-table td:last-child {
  margin-bottom: .5em;
}

.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table {
  color: #333;
  border-radius: .4em;
  overflow: hidden;
}

.rwd-table tr {
  border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
  padding: .5em 1em;
}
@media screen and (max-width: 601px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 600px) {
  .rwd-table tr:hover:not(:first-child) {
    background-color: #d8e7f3;
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}


/* THE END OF THE IMPORTANT STUFF */


@-webkit-keyframes leftRight {
  0%    { -webkit-transform: translateX(0)}
  25%   { -webkit-transform: translateX(-10px)}
  75%   { -webkit-transform: translateX(10px)}
  100%  { -webkit-transform: translateX(0)}
}
@keyframes leftRight {
  0%    { transform: translateX(0)}
  25%   { transform: translateX(-10px)}
  75%   { transform: translateX(10px)}
  100%  { transform: translateX(0)}
}

/* Bullet */

ul, 
ol {
  position: relative;
  list-style: none;
  padding: 0;
}

/* Add indentation of nested lists and remove bottom margin */
ul ul,
ol ol {
  margin: 0;
}

/* Add general display for bullets and numbers */
ul li,
ol li {
  padding-left: 1em;
  margin: .25em 0;
}

ul li:before,
ol li:before {
  position: absolute;
  left: 0;
}

/* Style for bullet lists */
ul li:before {
	content: '\2022';
	color: #333;
}

/* Reset counter for each list */
ol {
	counter-reset: listitem;
}

ol li {
  padding-left: 1.3em;
}

/* Style for numbered lists. Increment counter for each list item */
ol li:before {
  counter-increment: listitem;
  content: counters(listitem, '.') '.';
}

ol ol li {
  padding-left: 2.3em;
}

/* TODO list */
ul.no-bullets li {
  padding: 0; 
  margin: 0; 
}

ul.no-bullets li:before {
  list-style-type: none; 
}

ul.todo li {
  padding-left: 1.3em;
}

ul.todo li:before {
  content: '\2610';
  color: #333;
}

ul.todo li.good:before {
  content: '\2611';
  color: #156915;
}

ul.todo li.bad:before {
  content: '\2612';
  color: #971E1E;
}

/* Kalender */

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

:root {
    --calendar-bg-color: #262829;
    --calendar-font-color: #FFF;
    --weekdays-border-bottom-color: #404040;
    --calendar-date-hover-color: #505050;
    --calendar-current-date-color: #1b1f21;
    --calendar-today-color: linear-gradient(to bottom, #03a9f4, #2196f3);
    --calendar-today-innerborder-color: transparent;
    --calendar-nextprev-bg-color: transparent;
    --next-prev-arrow-color : #FFF;
    --calendar-border-radius: 16px;
    --calendar-prevnext-date-color: #484848
}

* {
    padding: 0;
    margin: 0;
}

.calendar {
    font-family: 'IBM Plex Sans', sans-serif;
    position: relative;
    max-width: 400px; /*change as per your design need */
    min-width: 320px;
    color: var(--white-color);
    background: var(--black-color);
    margin: 20px auto;
    box-sizing: border-box;
    overflow: hidden;
    font-weight: normal;
    border-radius: var(--calendar-border-radius);
}

.calendar-inner {
    padding: 10px 10px;
}

.calendar .calendar-inner .calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar .calendar-inner .calendar-body div {
    padding: 4px;
    min-height: 30px;
    line-height: 30px;
    border: 1px solid transparent;
    margin: 10px 2px 0px;
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7) {
    border: 1px solid transparent;
    border-bottom: 1px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7):hover {
    border: 1px solid transparent;
    border-bottom: 1px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div>a {
    color: var(--white-color);
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.calendar .calendar-inner .calendar-body div:hover {
    border: 1px solid var(--calendar-date-hover-color);
    border-radius: 4px;
}

.calendar .calendar-inner .calendar-body div.empty-dates:hover {
    border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.calendar .calendar-inner .calendar-today-date {
    display: grid;
    text-align: center;
    cursor: pointer;
    margin: 3px 0px;
    background: var(--black-color);
    padding: 8px 0px;
    border-radius: 10px;
    width: 80%;
    margin: auto;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month {
    display: flex;
    min-width: 100px;
    justify-content: space-evenly;
    align-items: center;
}

.calendar .calendar-inner .calendar-controls .calendar-next {
    text-align: right;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-year-label,
.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-month-label {
    font-weight: 500;
    font-size: 20px;
}

.calendar .calendar-inner .calendar-body .calendar-today {
    background: var(--calendar-today-color);
    border-radius: 4px;
}

.calendar .calendar-inner .calendar-body .calendar-today:hover {
    border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-body .calendar-today a {
    outline: 2px solid var(--calendar-today-innerborder-color);
}

.calendar .calendar-inner .calendar-controls .calendar-next a,
.calendar .calendar-inner .calendar-controls .calendar-prev a {
    color: var(--white-color);
    font-family: arial, consolas, sans-serif;
    font-size: 26px;
    text-decoration: none;
    padding: 4px 12px;
    display: inline-block;
    background: var(--black-color);
    margin: 10px 0 10px 0;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg {
    height: 20px;
    width: 20px;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg path,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg path{
    fill: var(--white-color);
}

.calendar .calendar-inner .calendar-body .prev-dates,
.calendar .calendar-inner .calendar-body .next-dates {
    color: var(--white-color);
}

.calendar .calendar-inner .calendar-body .prev-dates:hover,
.calendar .calendar-inner .calendar-body .next-dates:hover {
  border: 1px solid transparent;
  pointer-events: none;
}

/* weather */

.container5555 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.card5555 {
	display: flex;
	flex-direction: column;
	background: #26c2e1;

	overflow: hidden;

	height: 400px;
	width: 350px;
	box-shadow: 1rem 0 5rem #000;
	border-radius: 5%;

	transition: 0.2s;
}

.card5555:first-child {
	z-index: 1;
}

.card5555:nth-child(2) {
	height: 350px;
	width: 250px;
	margin-left: -150px;

	background: #595959;
}

.card5555:nth-child(2):hover {
	margin-left: -20px;
}

.card5555-body {
	padding: 2rem;
}

.card5555-back {
	display: flex;
	flex-direction: column;
	margin-left: 2rem;
	margin-right: 1rem;
}

.data-item {
	height: 30px;
	margin-top: 2rem;
	border-bottom: 2px solid white;
}
.data-item > h3 {
	margin: 0;
	float: left;
	color: #ffffff;
}
.data-item > span {
	float: right;
	color: #ffffff;
}

.card5555-text {
	padding-top: 1rem;
}

.card5555-title {
	color: #595959;
	font-size: 26px;
}

.bg-svg {
	margin-top: -2rem;
	stroke: #cfdbd5;
	fill: #cfdbd5;
}

/* artikel bahasa jepang */

.container787{
	 max-width: calc(680px + 10%);
	 margin: 50px auto;
	 padding: 0 5%;
}
 .rl {
	 writing-mode: vertical-rl;
	 column-fill: auto;
	 column-gap: 50px;
	 width: 100%;
	 height: 300px;
	 line-height: 2;
	 text-align: justify;
}
 .rl p {
	 margin-block-end: 0;
}
 .cover-img {
	 float: left;
	 margin: 0;
	 padding: 0;
	 max-width: 100%;
	 width: 100%;
	 height: 300px;
	 page-break-inside: avoid;
}
 .cover-img-bg {
	 width: 100%;
	 height: 100%;
	 background-repeat: no-repeat;
	 background-position: center center;
	 background-size: cover;
}

/* Matrix */

#matrix-js {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
#canvas {
  margin: 0;
  padding: 0;
}
#matrix-js {
  background-color: var(--white-color);
}