body{
	width: 100%;
    height: 100%;
    overflow-x: hidden;
    padding: 0;
    margin-bottom: 80px;
    margin-right: 0px;
    margin-left: 0px;
}
.black {  color:black;  }
.white {  color:white;  }
.navbar {
	width: auto;
    height: 50px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    font-size: 2rem;
    margin-bottom: 5px;
}

.navbar .search {
	width: 50%;
}

.navbar .sidebar {
	width: 50%;	
}
.deepbar {
    position: fixed;
    bottom: -2px;
    left: -1px;
    width: 102%;
    height: 73px;
    z-index: 1000000;
}
.bar{
	display: flex;
    flex-direction: row;
    font-size: 1.5rem;
    width: 100%;
    background: #ffb100;
    border-top: 8px ridge rgba(193, 133, 21, 1);

}
.lowtab {
	display: flex;
    width: 25%;
    background: #ffb100;
    height: 65px;
    align-items: center;
    font-size: 1rem;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.topline {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-align: center;
}
.category{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}
.subsection{
    width: 27%;
    height: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 9px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font: 1000 0.7rem Papyrus;
    border-radius: 10rem;
    text-decoration: none;
}
.subsection span {
    color: black;
    background-color: rgb(255 255 255 / 60%);
    padding: 3px 15px;
    font-size: .77rem;
    font-weight: bold;
    margin-bottom: 12px;

}
.nav-tgl {
    cursor: pointer;
    border: none;
    padding: 0px;
    width: 45px;
    height: 40px;
    border-radius: 5rem;
    line-height: 30px;
    text-align: center;
    float: right;
    position: relative;
    z-index: 1050;
    color: black;
}
.nav-tgl > span {
  display: inline-block;
  position: relative;
  height: 2px;
  width: 34px;
  border-radius: 1px;
  background: #293335;
  vertical-align: middle;
}
.nav-tgl > .white{
  display: inline-block;
  position: relative;
  height: 2px;
  width: 34px;
  border-radius: 1px;
  background: white;
  vertical-align: middle;
}
.nav-tgl > span:before, .nav-tgl > span:after {
  display: inline-block;
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 1px;
  background: #293335;
  transition: all 200ms;
}
.nav-tgl > .white:before, .nav-tgl > .white:after {
  display: inline-block;
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 1px;
  background: white;
  transition: all 200ms;
}
.nav-tgl > span:before {
  top: -11px;
  left: 3px;
  width: 28px;
}
.nav-tgl > span:after {
  top: 11px;
  left: 6px;
  width: 22px;
}
.nav-tgl:focus {
  outline: none;
}
.nav-tgl:hover > span:after, .nav-tgl:hover > span:before {
  width: 34px;
  left: 0;
}

.nav {
  display: block;
  position: fixed;
  z-index: 1048;
  top: 0;
  right: 0;
  content: "";
  width: 75%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  transition: all 500ms ease-in-out;
  clip-path: circle(40px at calc(100% - 40px) 40px);
  visibility: hidden;
  color: white;
}

.nav ul{
    font-size: 1.6rem;
    font-family: 'Gloria Hallelujah', cursive;
    text-decoration: none;
    list-style: none;
    list-style-position: inside;
    max-width: 100%;
    box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 15%);
    padding: 0;
    padding-left: 25px;
    padding-top: 45px;
}

.nav ul li {
    width: 100%;
    margin-bottom: 12.5px;
    border-bottom: 6px ridge rgba(193, 133, 21, 1);
    border-bottom-right-radius: 2rem;
    padding-bottom: 10px;
    display: list-item;
}

.menu.active .nav {
  visibility: visible;
  clip-path: circle(100%);
}
.menu.active .nav-tgl > span {
  height: 0;
}
.menu.active .nav-tgl > span:after, .menu.active .nav-tgl > span:before {
  top: 0px;
  left: 0;
  width: 34px;
}
.menu.active .nav-tgl > span:after {
  transform: rotate(-45deg);
}
.menu.active .nav-tgl > span:before {
  transform: rotate(45deg);
}


* {
  box-sizing: border-box;
}
.button-{
    margin: 10px;
  background-color: #13aa52;
  border: 1px solid #13aa52;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  outline: 0;
  padding: 10px 25px;
  text-align: center;
  transform: translateY(0);
  transition: transform 150ms, box-shadow 150ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-dark{
    margin: 10px;
  background-color: #5f5f5f;
  border: 1px solid #13aa52;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  outline: 0;
  padding: 10px 25px;
  text-align: center;
  transform: translateY(0);
  transition: transform 150ms, box-shadow 150ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-:hover {
  box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .button- {
    padding: 10px 30px;
  }
}
.inp {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 280px;
  border-radius: 3px;
  overflow: hidden;
}
.inp .label {
    position: absolute;
    top: 0px;
    left: 12px;
    font-size: 16px;
    color: rgb(112 102 224);
    font-weight: 500;
    transform-origin: 0 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
    pointer-events: none;
}
.inp .focus-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.inp input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 16px 12px 0 12px;
    height: 45px;
    font-size: 16px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.02);
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 30%);
    color: #000;
    transition: all 0.15s ease;
}
.inp input:hover {
  background: rgba(0, 0, 0, 0.04);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}
.inp input:not(:-moz-placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.inp input:not(:-ms-input-placeholder) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.inp input:not(:placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.inp input:focus {
  background: rgba(0, 0, 0, 0.05);
  outline: none;
  box-shadow: inset 0 -2px 0 #0077FF;
}
.inp input:focus + .label {
  color: #0077FF;
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.inp input:focus + .label + .focus-bg {
  transform: scaleX(1);
  transition: all 0.1s ease;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 20000000000000; /* Add a z-index if needed */
  left: 45%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 1s 2.5s;
  animation: fadein 0.5s, fadeout 1s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.kitaplar{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.kitaplar .resim{

}
.kitaplar .baslik{
  position: sticky;
    width: 123%;
    font-size: 0.5rem;
    background: rgba(95, 95, 95, 0.6);
    color: white;
    margin-top: -28px;
    text-align: center;
    margin-left: -12%;
}


.kitap {
  display: block;
  position: fixed;
  z-index: 1048;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  transition: all 500ms ease-in-out;
  clip-path: circle(40px at calc(100% - 40px) 40px);
  visibility: hidden;
  color: white;
}

.kitap ul{
    font-size: 1.6rem;
    font-family: 'Gloria Hallelujah', cursive;
    text-decoration: none;
    list-style: none;
    list-style-position: inside;
    max-width: 100%;
    box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 15%);
    padding: 0;
    padding-left: 25px;
    padding-top: 45px;
}

.kitap ul li {
    width: 100%;
    margin-bottom: 12.5px;
    border-bottom: 6px ridge rgba(193, 133, 21, 1);
    border-bottom-right-radius: 2rem;
    padding-bottom: 10px;
    display: list-item;
}

.kitaplik.active .kitap {
  visibility: visible;
  clip-path: circle(100%);
}

.prebook {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 10;
    display: none;
    overflow-x: hidden;
}


.u-float-right {
  float: right;
}

.u-flex-center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.u-clearfix:before,
.u-clearfix:after {
    content: " ";
    display: table;
}

.u-clearfix:after {
    clear: both;
}

.u-clearfix {
    *zoom: 1;
}

.container {
  box-shadow: 0 0 50px rgba(0,0,0,.3);
  overflow-y: auto;
  width: 101%;
  height: 100%;
    overflow-x: hidden;

}

.header-container {
  position: relative;
}

.header-image {
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
  height: auto;
  width: 102%;
  -webkit-animation: zoomEffect 10s infinite;
          animation: zoomEffect 10s infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@-webkit-keyframes zoomEffect {
  0% {
    -webkit-transform: scale(1) translateX(0);
            transform: scale(1) translateX(0);
  }
  100% {
    -webkit-transform: scale(1.3) translateX(-15px) translateY(-10px);
            transform: scale(1.3) translateX(-15px) translateY(-10px);
  }
}

@keyframes zoomEffect {
  0% {
    -webkit-transform: scale(1) translateX(0) translateY(0);
            transform: scale(1) translateX(0) translateY(0);
  }
  100% {
    -webkit-transform: scale(1.3) translateX(-15px) translateY(-10px);
            transform: scale(1.3) translateX(-15px) translateY(-10px);
  }
}

.header {
  color: #fff;
  padding: 15px;
  height: 300px;
}

.header > svg {
  cursor: pointer;
}

.main-heading {
    color: black;
    background-color: rgb(230 160 0 / 70%);
    border-radius: 20px;
    margin-right: 8px;
    padding: 4px 10px;
    font-size: 1.31rem;
    font-weight: bold;
    margin-bottom: 12px;
    width: fit-content;
}

.tag {
    background-color: #ffb100;
    border-radius: 20px;
    font-size: 11px;
    margin-right: 8px;
    padding: 4px 10px;
    text-transform: uppercase;
    color: black;
}

.stats {
  margin-top: 35px;
}

.stat-module {
  display: inline-block;
  font-size: 12px;
  margin-right: 20px;
  text-transform: uppercase;
}

.stat-number {
  display: inline-block;
  font-weight: 600;
  margin-left: 4px;
}

.overlay-header {
  background-color: #eee;
  height: 100px;
  margin: -50px 0 0 -25%;
  transform: rotate(-10deg);
  width: 150%;
  z-index: 0;
}

.body {
  background-color: #eee;
  color: #555;
  margin-top: -50px;
  padding: 0 15px 15px;
  position: relative;
  height: 100%;
}

.body-image {
  border-radius: 100%;
  box-shadow: 5px 10px 75px rgba(0, 0, 0, .4);
  float: left;
  margin: -90px 0 20px;
  position: relative;
  z-index: 2;
}

.body-action-button {
  background-color: #383838;
  border-radius: 50%;
  box-shadow: 1px 2px 12px rgba(0,0,0,.4);
  cursor: pointer;
    height: 55px;
    position: absolute;
    right: 10px;
    top: -105px;
    width: 55px;
    padding: 5px;
}

.body-stats {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  float: left;
  margin: -14px 0  0 30px;
  position: relative;
  text-transform: uppercase;
  width: 20%;
}

.body-stats > span {
  display: inline-block;
  font-weight: 900;
  margin-top: 8px;
  font-size: 2rem;
}

.body-info {
  clear: left;
  position: relative;
  max-height: 100px;
  overflow: hidden;
  transition: all 600ms ease-out;
}

.body-more {
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(238,238,238,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(238,238,238,1) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(238,238,238,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#eeeeee',GradientType=0 );
  cursor: pointer;
  margin: -57px auto 0px;
  padding: 20px 0 20px;
  position: relative;
  text-align: center;
}

.body-more span {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 1px 5px rgba(0,0,0,.3);
  display: inline-block;
  height: 6px;
  margin-right: 2px;
  width: 6px;
}

.card {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .15);
  margin-top: 15px;
  padding: 10px;
}

.card-heading {
  font-size: 12px;
  text-transform: uppercase;
}

.card-more {
  cursor: pointer;
  float: right;
}

.card-list {
  list-style-type: none;
  margin: 10px 0 0;
  overflow-x: scroll;
  padding: 0;
  white-space: nowrap;
}

.card-list::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    border-radius: 2px;
    background-color: #F5F5F5;
}

.card-list::-webkit-scrollbar
{
    height: 3px;
    background-color: #F5F5F5;
}

.card-list::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
    background-color: #ddd;
}

.card-list li {
  display: inline;
  margin-left: 10px;
}

.card-list li:first-child {
  margin-left: 0;
}

.comment-form-container {
    background: #F0F0F0;
    border: #e0dfdf 1px solid;
    padding: 20px;
    border-radius: 4px;
}

.input-row {
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    border: #e0dfdf 1px solid;
}

.btn-submit {
    padding: 10px 20px;
    background: #333;
    border: #1d1d1d 1px solid;
    color: #f0f0f0;
    font-size: 0.9em;
    width: 100px;
    border-radius: 4px;
    cursor: pointer;
}

ul {
    list-style-type: none;
}

.comment-row {
    border-bottom: #e0dfdf 1px solid;
    margin-bottom: 15px;
    padding: 5px;
}

.outer-comment {
    background: #F0F0F0;
    padding: 20px;
    border: #dedddd 1px solid;
    border-radius: 4px;
}

span.comment-row-label {
    color: #484848;
}

span.posted-by {
    font-weight: bold;
    font-size: 1.395em;
}

.comment-info {
    font-size: 0.7em;
    padding: 0 0 10px 0;
}

.comment-text {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 10px 0px 30px 0;
}

.btn-reply {
    color: #2f20d1;
    cursor: pointer;
    text-decoration: none;
}

.btn-reply:hover {
    text-decoration: underline;
}

#comment-message {
    margin-left: 20px;
    color: #005e00;
    display: none;
}

.label {
    padding: 0 0 4px 0;
}

:root {
  --hue: 223;
  --bg: hsl(var(--hue),90%,90%);
  --fg: hsl(var(--hue),90%,10%);
  --trans-dur: 0.3s;
}
.preloader{
    width: 100%;
    height: 103%;
    background: white;
    position: fixed;
    z-index: 999999999;
    margin-top: -3%;
}
.pencil {
    display: flex;
    width: 50%;
    height: 33%;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 25%;
    top: 33%;
}
.pencil__body1,
.pencil__body2,
.pencil__body3,
.pencil__eraser,
.pencil__eraser-skew,
.pencil__point,
.pencil__rotate,
.pencil__stroke {
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.pencil__body1,
.pencil__body2,
.pencil__body3 {
  transform: rotate(-90deg);
}
.pencil__body1 {
  animation-name: pencilBody1;
}
.pencil__body2 {
  animation-name: pencilBody2;
}
.pencil__body3 {
  animation-name: pencilBody3;
}
.pencil__eraser {
  animation-name: pencilEraser;
  transform: rotate(-90deg) translate(49px,0);
}
.pencil__eraser-skew {
  animation-name: pencilEraserSkew;
  animation-timing-function: ease-in-out;
}
.pencil__point {
  animation-name: pencilPoint;
  transform: rotate(-90deg) translate(49px,-30px);
}
.pencil__rotate {
  animation-name: pencilRotate;
}
.pencil__stroke {
  animation-name: pencilStroke;
  transform: translate(100px,100px) rotate(-113deg);
}

/* Animations */
@keyframes pencilBody1 {
  from,
  to {
    stroke-dashoffset: 351.86;
    transform: rotate(-90deg);
  }
  50% {
    stroke-dashoffset: 150.8; /* 3/8 of diameter */
    transform: rotate(-225deg);
  }
}
@keyframes pencilBody2 {
  from,
  to {
    stroke-dashoffset: 406.84;
    transform: rotate(-90deg);
  }
  50% {
    stroke-dashoffset: 174.36;
    transform: rotate(-225deg);
  }
}
@keyframes pencilBody3 {
  from,
  to {
    stroke-dashoffset: 296.88;
    transform: rotate(-90deg);
  }
  50% {
    stroke-dashoffset: 127.23;
    transform: rotate(-225deg);
  }
}
@keyframes pencilEraser {
  from,
  to {
    transform: rotate(-45deg) translate(49px,0);
  }
  50% {
    transform: rotate(0deg) translate(49px,0);
  }
}
@keyframes pencilEraserSkew {
  from,
  32.5%,
  67.5%,
  to {
    transform: skewX(0);
  }
  35%,
  65% {
    transform: skewX(-4deg);
  }
  37.5%, 
  62.5% {
    transform: skewX(8deg);
  }
  40%,
  45%,
  50%,
  55%,
  60% {
    transform: skewX(-15deg);
  }
  42.5%,
  47.5%,
  52.5%,
  57.5% {
    transform: skewX(15deg);
  }
}
@keyframes pencilPoint {
  from,
  to {
    transform: rotate(-90deg) translate(49px,-30px);
  }
  50% {
    transform: rotate(-225deg) translate(49px,-30px);
  }
}
@keyframes pencilRotate {
  from {
    transform: translate(100px,100px) rotate(0);
  }
  to {
    transform: translate(100px,100px) rotate(720deg);
  }
}
@keyframes pencilStroke {
  from {
    stroke-dashoffset: 439.82;
    transform: translate(100px,100px) rotate(-113deg);
  }
  50% {
    stroke-dashoffset: 164.93;
    transform: translate(100px,100px) rotate(-113deg);
  }
  75%,
  to {
    stroke-dashoffset: 439.82;
    transform: translate(100px,100px) rotate(112deg);
  }
}
.search-container{
    position: absolute;
    top: 5px;
    left: 5px;
    width: 0%;
    height: 55px;
    line-height: 55px;
    border-radius: 50px;
    z-index: 9999;

}
.search-input {
    float: right;
    height: 85%;
    padding-top: 25px;
    width: 0%;
    background: transparent;
    border:0px;
    border-bottom:3px white dotted;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 12px;
    display: none;
}
.search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

.search-input:focus { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    border:0px;
    outline: none;
    border-bottom:2px white dotted;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 12px;
}

.container-active{
    animation-name: container-active;
    animation-duration: 0.6s;
    display: block;
    width: 97%;
    background: red;
  }

.input-active{
    animation-name: input-active;
    animation-duration: 0.6s;
    display: block;
    width: 75%;
  }
@keyframes container-active {
  from {
    width: 0;
    display: block;
  }
  to {    
    background: red; 
    width: 97%;
    display: block;
  }
}
@keyframes input-active {

    from {width: 0;}
  
    to    {width: 75%;}
}


.app {
  width: 100%;
  max-height: auto;
  position: absolute;
  z-index: 12;

}

.app__link-back, 
.app__link-settings {
  text-decoration: none;
  color: #D5E6E8;
  position: absolute;
  top: 15px;
}

.app__link-back {
  left: 20px;
}

.app__link-settings {
  right: 20px;
}

.app__body {
    background: #3E4D68;
    border-radius: 0 0 20px 20px;
    color: white;
    width: 92%;
    margin-left: 4.2%;
    margin-top: -32px;
    padding-top: 28px;
    display: none;   
    transition:height 1s ease-in-out;
}

/* --- LOG --- */

.log {
  font-size: 14px;
  padding: 10px;
  border-top: 1px solid #2B3547;
  display: flex;
}

.log--critical {
  box-shadow: 6px 0 0 #E77A7A inset;
}

.log--urgent {
  box-shadow: 6px 0 0 #F6B07D inset;
}

.log__header {
  position: relative;
  font-size: 12px;
  font-weight: bold;
}
.search-img{
  width: 55px;
  height: 65px;
  margin-right: 10px;
}
.log__ticket {
  text-decoration: none;
  color: #4BCBD8;
  
}

.log__badge {
  background: #57657E;
  padding: 3px 5px;
  border-radius: 5px;
  min-width: 15px;
  text-align: center;
  display: inline-block;
}

.log__body {
  padding-top: 10px;
  line-height: 1.25;
}

.log__icon {
  color: #E77A7A;
  font-size: 12px;
  position: absolute;
  top: 5px;
  right: 0;
}
.highlighted{
  color:skyblue;
}
#pointer {
    position: absolute;
    display: none;
    color: #f00;
    font-weight: bold;
    font-size: 20px;
}