body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.4px;
}
.header {
  width: calc(100% - 20px);
  display: flex;
  background-color: #253575;
  padding: 10px 10px;
}
.header .header-phone-icon {
  padding: 5px 10px;
  margin-left: 20px;
  background-color: #2AAAD2;
  color: #ffffff;
  margin-right: 10px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
}
.header .header-wp-icon {
  padding: 5px 10px;
  text-decoration: none;
  background-color: #2AD23B;
  border-radius: 30px;
  cursor: pointer;
  color: #ffffff;
}
html {
  max-width: 100%;
}
.navbar {
  width: 100%;
  height: 140px;
  padding: 0;
  margin: 0;
  top: 0px;
  position: sticky;
  box-shadow: 0 1px 3px #dedede;
  display: flex;
  z-index: 10;
  background-color: #ffff;
}
.navbar .logo {
  margin-left: 20px;
  width: 6%;
  min-width: 120px;
  padding: 10px;
}
.navbar .logo .img {
  margin: auto;
}
.navbar .links {
  width: calc(100% - 130px);
  padding: 5px;
  margin-right: 25px;
  justify-content: flex-end;
  display: inline-flex;
  margin-top: 50px;
}
.navbar .links .nav-link {
  display: block;
  color: #253575;
  height: 30px;
  width: auto;
  margin-left: 30px;
  text-decoration: none;
  font-size: x-large;
  font-weight: 400;
}
.navbar .links .nav-link :hover {
  color: #000000;
  cursor: pointer;
}
.navbar .links .nav-link i {
  display: none;
}
.navbar .links .tooltip {
  position: relative;
  display: block;
}
.navbar .links .submenu-link {
  color: #253575;
  height: 30px;
  width: auto;
  text-decoration: none;
  display: none;
}
.navbar .links .submenu-link :hover {
  color: #000000;
  text-decoration: underline;
}
.navbar .links .tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #ffffff;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
  box-shadow: 0 2px 6px #000000;
  overflow: hidden;
}
.navbar .links .tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #253575 transparent;
}
.navbar .links .tooltip .tooltiptext::after .submenu-link {
  display: block;
}
.navbar .links .tooltiptext:hover .submenu-link {
  display: block;
}
.navbar .links .tooltip:hover .tooltiptext {
  visibility: visible;
}
.navbar .links .nav-link.sidebar-toggle {
  display: none;
}
.navbar .sidebar {
  font-family: 'Roboto', 'serif';
  box-shadow: 0px 0px 3px 1px rgba(90, 90, 90, 0.7);
  height: 100%;
  width: 230px;
  position: fixed;
  z-index: -99;
  top: 0;
  right: -230px;
  background-color: #ffff;
  transition: 0.5s ease-in-out;
  padding-top: 60px;
  opacity: 0;
}
.navbar .sidebar .sidebar-link {
  transition: 0.4s;
  font-size: 20px;
  cursor: pointer;
  display: block;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  width: calc(100% - 1em);
  color: #253575;
  border-bottom: 1px solid #CCCCCC;
  padding: 0.5em;
  margin-top: 0;
  margin-bottom: 0;
}
.navbar .sidebar .sidebar-link:hover {
  color: #ffffff;
  background-color: #253575;
}
.navbar .sidebar .submenu {
  transition: all 0.4s ease-in-out;
  height: 0;
  overflow: hidden;
}
.navbar .sidebar .submenu .submenu-link {
  display: none;
  transition: all 0.4s ease-in-out;
}
.navbar .sidebar .submenu.active {
  height: auto;
  width: 100%;
  display: block;
  transition: all 0.4s ease-in-out;
}
.navbar .sidebar .submenu.active .submenu-link {
  transition: all 0.4s ease-in-out;
  font-size: 20px;
  cursor: pointer;
  display: block;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  width: calc(100% - 1em);
  color: #253575;
  border-bottom: 1px solid #CCCCCC;
  padding: 0.5em;
  padding-left: 20px;
  border-left: 5px solid #253575;
  margin-top: 0;
  margin-bottom: 0;
}
.navbar .sidebar .submenu.active .submenu-link:hover {
  color: #ffffff;
  background-color: #253575;
}
.navbar .sidebar .closebtn {
  margin: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 15px;
  color: #414D5F;
  display: block;
  transition: 0.3s;
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.navbar .sidebar .sidebar-header {
  width: 250px;
  padding: 0.5em;
  justify-content: start;
  border-bottom: 1px solid #CCCCCC;
  cursor: default;
  display: block;
  text-decoration: none;
}
.navbar .sidebar .sidebar-header .image {
  width: 100%;
}
.navbar .sidebar .sidebar-header .image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar .sidebar .sidebar-header .name {
  font-size: 22px;
  font-weight: 400;
  color: #253575;
  text-decoration: none;
}
.navbar .sidebar .sidebar-header .text {
  font-size: 18px;
  width: 100%;
  display: block;
  color: #585858;
  font-weight: 300;
  text-decoration: none;
}
.navbar .sidebar.active {
  right: 0px;
  opacity: 1;
  z-index: 111;
  display: none;
}
@media only screen and (max-width: 1050px) {
  .sidebar-link {
    transition: 0.4s;
    cursor: pointer;
    display: block;
    font-size: 20px;
    text-align: left;
    text-decoration: none;
    width: fit-content;
    color: #253575;
    border-bottom: 1px solid #CCCCCC;
    padding: 0.5em;
    padding-left: 1em;
    margin-top: 0;
    margin-bottom: 0;
  }
  .sidebar-link:hover {
    color: #ffffff;
    background-color: #253575;
  }
  .navbar {
    width: 100%;
    height: 140px;
    padding: 0;
    margin: 0;
    top: 0px;
    position: sticky;
    box-shadow: 0 1px 3px darkgray;
    display: flex;
    z-index: 1000;
    background-color: #ffff;
  }
  .navbar .logo {
    margin-left: 20px;
    width: 6%;
    min-width: 120px;
    padding: 10px;
  }
  .navbar .logo .img {
    margin: auto;
  }
  .navbar .links {
    width: 94%;
    padding: 5px;
    margin-right: 25px;
    justify-content: flex-end;
    display: flex;
    margin-top: 50px;
  }
  .navbar .links .nav-link {
    display: none;
    color: #253575;
    height: 30px;
    width: auto;
    margin-left: 20px;
    text-decoration: none;
    font-size: x-large;
  }
  .navbar .links .nav-link :hover {
    color: #000000;
    text-decoration: underline;
  }
  .navbar .links .nav-link i {
    display: none;
  }
  .navbar .links .nav-link.sidebar-toggle {
    display: block;
  }
  .navbar .links .nav-link.sidebar-toggle:hover {
    cursor: pointer;
  }
  .navbar .sidebar {
    overflow-y: scroll;
    font-family: 'Roboto', 'serif';
    box-shadow: 0px 0px 3px 1px rgba(90, 90, 90, 0.7);
    height: 100%;
    width: 230px;
    overflow: auto;
    position: fixed;
    z-index: -99;
    top: 0;
    left: -230px;
    background-color: #ffff;
    transition: 0.5s ease-in-out;
    padding-top: 60px;
    opacity: 0;
  }
  .navbar .sidebar .sidebar-link {
    transition: 0.4s;
    cursor: pointer;
    display: block;
    font-size: 20px;
    text-align: left;
    text-decoration: none;
    width: calc(100% - 1.5em);
    color: #253575;
    border-bottom: 1px solid #CCCCCC;
    padding: 0.5em;
    padding-left: 1em;
    margin-top: 0;
    margin-bottom: 0;
  }
  .navbar .sidebar .sidebar-link:hover {
    color: #ffffff;
    background-color: #253575;
  }
  .navbar .sidebar .closebtn {
    margin: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 15px;
    color: #414D5F;
    display: block;
    transition: 0.3s;
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  .navbar .sidebar .closebtn:hover {
    color: black;
  }
  .navbar .sidebar .sidebar-header {
    width: calc(100% - 2em);
    padding: 1em;
    justify-content: start;
    border-bottom: 1px solid #CCCCCC;
    cursor: default;
    display: block;
    text-decoration: none;
  }
  .navbar .sidebar .sidebar-header .image {
    width: 100%;
  }
  .navbar .sidebar .sidebar-header .image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  .navbar .sidebar .sidebar-header .name {
    font-size: 22px;
    color: #253575;
    text-decoration: none;
  }
  .navbar .sidebar .sidebar-header .text {
    font-size: 18px;
    width: calc(100% - 1em);
    display: block;
    padding: 5px 0px;
    color: #000000;
    text-decoration: none;
  }
  .navbar .sidebar.active {
    left: 0px;
    opacity: 1;
    z-index: 11111;
    display: block;
  }
}
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  padding: 0;
  margin: 0;
  max-width: 100%;
  z-index: 1111;
  top: 0;
  left: 0;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}
.overlay-content {
  position: relative;
  top: 16%;
  width: 700px;
  max-width: 90%;
  left: 5%;
  text-align: center;
  justify-content: center;
  display: block;
  margin: auto;
  margin-top: 30px;
}
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}
.overlay .closebtn:hover {
  color: #ccc;
}
.overlay input[type=text] {
  padding: 20px;
  font-size: 18px;
  border: none;
  float: left;
  width: calc(85% - 80px);
  background: white;
  outline: none;
}
.overlay input[type=text]:hover ~ .overlay-content {
  border: 1px solid #253575;
  box-shadow: 0 2px 5px #253575;
}
.overlay button {
  float: left;
  width: 15%;
  padding: 20px;
  background: #ffffff;
  font-size: 18px;
  border: none;
  cursor: pointer;
}
.tooltip-wrapper {
  position: relative;
}
.tooltip-wrapper .tooltip {
  top: 60px;
  display: block;
  width: calc(100% - 40px);
  max-height: 350px;
  overflow-y: auto;
  z-index: 22;
  position: absolute;
  background-color: #fff;
}
.tooltip-wrapper .tooltip .result {
  background-color: #ffffff;
  text-align: left;
  padding: 5px 10px;
  text-decoration: none;
  color: #393939;
  z-index: 22222;
  font-size: 20px;
  display: flex;
  border-bottom: 1px solid darkgray;
  padding-top: 25px;
  line-height: 20px;
}
.tooltip-wrapper .tooltip .result:hover {
  text-decoration: underline;
  color: #000000;
}
.tooltip-wrapper .tooltip .result img {
  width: 40px ;
  height: 40px;
  margin-right: 10px;
  display: block;
  object-fit: cover;
}
#ex3::-webkit-scrollbar {
  width: 16px;
  background-color: #cccccc;
}
/* Customize Thumb */
#ex3::-webkit-scrollbar-thumb {
  background-color: #b03c3f;
  border-radius: 10px;
}
#ex3::-webkit-scrollbar-thumb:hover {
  background-color: #bf4649;
  border: 1px solid #333333;
}
#ex3::-webkit-scrollbar-thumb:active {
  background-color: #a6393d;
  border: 1px solid #333333;
}
/* Customize Track */
#ex3::-webkit-scrollbar-track {
  border: 1px solid gray;
  border-radius: 10px;
  box-shadow: 0 0 6px gray inset;
}
