/* Template Name: Doctris - Doctor Appointment Booking System
   Author: Shreethemes
   Website:  /
   Mail: support@shreethemes.in
   File Description: Main Css file of the template
*/
@import url("../../../css2.css");


 @font-face {
  font-family: DanaVF;
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts/danavf/DANAVF.TTF") format("truetype");
}

* {
  font-family: DanaVF;
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  overflow-y: scroll;
  margin: auto;
  max-width: 1440px;
}

.page-wrapper{
  padding: 0px 24px;
  box-sizing: border-box;
}

::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: red;
  background: yellow;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #6e6e6e; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #131934;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #030614; 
}