/*
	Author: Javed Ur Rehman 
	Website: https://www.allphptricks.com/
*/
body {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: 'Open Sans', sans-serif;
  /* font-family: 'Roboto', sans-serif; */
}
p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #484848;
}
a {
  text-decoration: none;
}
/* Accordion */
.accordion,
.accordion * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  background: #fff;
}

.accordion {
  overflow: hidden;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  background: #f6f6f6;
  width: 65%;
  margin-left: 55px;
}

/* Section Title */
.section-title {
  background: #1e91cf;
  display: inline-block;
  border-bottom: 1px solid #f4f4f4;
  width: 100%;
  padding: 9px;
  transition: all linear 0.15s;
  color: #fff;
  font-size: 16px;
  text-shadow: 0px 1px 0px #f3f4f4;
}

.section-title.active,
.section-title:hover {
  background: #888a8a;
}

.section:last-child .section-title {
  border-bottom: none;
}

.section-title:after {
  /* Unicode character for "plus" sign (+) */
  content: "\02795";
  font-size: 13px;
  color: #fff;
  float: right;
  margin-left: 5px;
}

.section-title.active:after {
  /* Unicode character for "minus" sign (-) */
  content: "\2796";
}

/* Section Content */
.section-content {
  display: none;
  padding: 20px;
}
/* custom style by k */
.thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid black;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
  display: initial;
  margin-bottom: 0px;
  margin-left: 5px;
}
.custom-mail-icon,
.custom-mail-icon:hover {
  background-image: linear-gradient(to bottom, #024cff, #31caff);
  color: #fff;
  border: 0;
  font-size: 14px;
}

/* curved and small scrollbar */
:root {
  --code-color: darkred;
  --code-bg-color: #f6f6f6;
  --code-font-size: 12px;
  --code-line-height: 1.4;
  --scroll-bar-color: #c5c5c5;
  --scroll-bar-bg-color: #f6f6f6;
}

pre {
  color: var(--code-color);
  font-size: var(--code-font-size);
  line-height: var(--code-line-height);
  background-color: var(--code-bg-color);
}

.code-block {
  max-height: 100px;
  overflow: auto;
  padding: 8px 7px 5px 15px;
  margin: 0px 0px 0px 0px;
  border-radius: 7px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 9px;
}

*::-webkit-scrollbar-track {
  background: var(--scroll-bar-bg-color);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--scroll-bar-color);
  border-radius: 15px;
  border: 3px solid var(--scroll-bar-bg-color);
}
/* curved and small scrollbar */
/* custom style by k */