@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  ul, ol {
    list-style: revert;
  }
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #f1f1f1;
}

* { box-sizing: border-box; }
body {
  font: 16px Arial;
    min-height: 100vh;
    display: flex;
}

main {
    flex-grow: 1;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}
input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;
  background: white;
}

.header h1 {
  font-size: 50px;
}

/* Left column */
.leftcolumn {
  float: left;
  width: 50%;
  display: flex;
  flex-direction: column;
}

/* Right column */
.rightcolumn {
  float: right;
  width: 50%;
  background-color: #f1f1f1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}


/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  display: flex;
    flex-wrap: nowrap;
  flex-direction: column;

}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 0;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

header, footer {
    flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}

.inbox-icon-container {
  margin-right: 15px;
}

[x-cloak] {display: none;}

.duration-300 {
			transition-duration: 300ms;}

.ease-in {
			transition-timing-function: cubic-bezier(0.4, 0, 1, 1);}

.ease-out {
			transition-timing-function: cubic-bezier(0, 0, 0.2, 1);}

.scale-90 {
			transform: scale(.9);}

.scale-100 {
			transform: scale(1);}

.inbox-icon {
  color: #333;
  transition: 0.5s;
}
.inbox-icon:hover {
  transition: 0.5s;
}
.sent-message {
  background-color: #f3f3f3;
  border-radius: 30px;
  padding: 10px 25px;
  width: 25%
}
@media screen and (max-width: 600px) {
  .sent-message {
  background-color: #f3f3f3;
  border-radius: 35px;
  padding: 10px 10px;
  width: 50%;

}
}

.received-message {
  background-color: rgb(1, 196, 255);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  width: 25%;
  float: right;
}
.empty-text {
  color: #777;
  font-size: 1.5rem;
  text-align: center;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}

.dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    position: absolute;
    background-color: #f1f1f1;
    min-width: 300px;
    box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: 0.9rem;
      right: 0
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {background-color: #ddd;}
  .dropdown-item-parent {
    position: relative;
    display: block;
  }

  .dropdown-item-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.8rem;
    padding-right: 5px;
    transition: 0.3s;
  }
  .dropdown-item-close:hover {
    color: rgb(180, 25, 25);
    transition: 0.3s;
    cursor: pointer;
  }

.notification-badge {
    transition: 0.3s;
}
.notification-badge:hover {
    cursor: pointer;
    opacity: 0.75;
    transition: 0.3s;
}

.toothcross-small .upper-jaw .gap {
    margin-top: 0px;
    margin-bottom: -5px;
}
.toothcross .upper-jaw .gap {
    margin-top: 32px;
    margin-bottom: 0px;
}
.toothcross-small .gap {
    width: 6px;
    height: 28px;
}
.toothcross .gap {
    display: inline-block;
    width: 10px;
    height: 47px;
}
*, *::before, *::after {
    box-sizing: border-box;
}

div {
    display: block;
}
.toothcross {
    padding: 10px 0 10px 0;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}
.text-left {
    text-align: left !important;
}
body {
    color: #53585b;
}
body {
    margin: 0;
    font-family: "Gotham SSm A", "Gotham SSm B", "Arial", arial;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
:root {
    --blue: #0077c8;
    --indigo: #6610f2;
    --purple: #772583;
    --pink: #e83e8c;
    --red: #e4002b;
    --orange: #f8a700;
    --yellow: #ffc107;
    --green: #009f4d;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #53585b;
    --gray-dark: #343a40;
    --primary: #0077c8;
    --secondary: #53585b;
    --success: #009f4d;
    --info: #17a2b8;
    --warning: #c9a432;
    --danger: #e4002b;
    --light: #ededed;
    --dark: #53585b;
    --brand-primary: #f8a700;
    --brand-secondary: #ededed;
    --brand-light: #ededed;
    --brand-dark: #53585b;
    --medium: #bfbfbf;
    --canvas: transparent;
    --factory-light: #b4dcb4;
    --factory-dark: #94bc94;
    --clinic-light: #b4b4dc;
    --clinic-dark: #9494bc;
    --patient-light: #f5f5dc;
    --patient-dark: #d5d5bc;
    --orange-light: #fcd380;
    --orange-dark: #926200;
    --green-light: #80cfa6;
    --green-dark: #00391c;
    --gray-light: #ededed;
    --gray-dark: #53585b;
    --bracket: #428181;
    --attachment: #428181;
    --blue: #0077c8;
    --green: #009f4d;
    --red: #e4002b;
    --yellow: #c9a432;
    --inverse: #4f4f4f;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Gotham SSm A", "Gotham SSm B", "Arial", arial;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
*, *::before, *::after {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: border-box;
}

.carousel-item{
    width: 100% !important; /*width you want*/
    height: 500px !important; /*height you want*/
    overflow: hidden !important;
}
.carousel-item img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
