/*
	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; */
}

.input-sm {
  font-size: 13px !important;
}

p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #484848;
}
a {
  text-decoration: none;
}

/* form styles  */

/* .grp-btns {
  display: flex;
  gap: 10px;
  justify-content: end;
  margin: 30px 0px;
} */

.grp-btns {
  display: flex;
  gap: 10px; /* Adds spacing between buttons */
  justify-content: end; /* Centers buttons horizontally */
  margin-top: 20px;
}

.grp-btns button {
  border: none;
  color: #1183c6;
  background-color: #eaedef;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition: background-color 0.3s ease, transform 0.2s ease; */
}

#share-modal {
  display: none;
  position: fixed;
  width: 30%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 1000;
}

.share-header {
  border-bottom: 1px solid #898181;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 5px 20px;
}

#close-share {
  border: none;
  background-color: transparent;
  font-size: 17px;
  color: #9d9d9d;
}

div#wp-cont, #mail a {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  align-items: center;
  text-decoration: none;
}

div#wp-cont div, #mail div {
  display: flex;
  gap: 10px;
}

.share-modal-cont {
  padding: 15px 5px 5px 10px;
}

.whatsapp-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #b1abab;
  padding: 20px 20px 10px 20px;
}

.whatsapp-body {
  /* margin: 20px 0px; */
  padding: 20px;
}

.whatsapp-footer {
  display: flex;
  justify-content: end;
  padding: 0px 20px 20px 20px;
}

#whatsapp_form_message{
  margin-bottom: 20px;
  border: 1px solid #b3abab;
  padding: 10px;
  border-radius: 5px;
}

div#whatsapp-modal {
  display: none;
  position: fixed;
  width: 40%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  /* padding: 20px; */
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 1000;
}

.whatsapp-header button {
  border: none;
  height: 25px;
  width: 25px;
  font-size: 18px;
  background-color: transparent;
}

.whatsapp-footer button {
  border: none;
  padding: 8px 15px;
  font-size: 15px;
  color: #fff;
  background-color: #4cae4c;
  border-radius: 5px;
}

.whatsapp-body-msg {
  display: flex;
  flex-direction: column;
}


/* form styles  */

/* 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;
  color: #000;
  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 */