/* @import url("domati.min.css"); */
/* @import url("products.css"); */
@import url("panorama.css");

/* MMD */
:root {
  --tag-bg-color: #faa619;
}
/* DZK */
/* :root {
  --tag-bg-color: #ffc400;
} */

/* background-color: #ffc400; */
/* background-color: #faa619; */

html {
  font-size: 16px;
}

body {
  margin: 0%;
  font-family: "Open Sans", sans-serif, verdana, arial;
  /*font-family: 'Roboto', "Open Sans", sans-serif,verdana,arial;*/
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  /*color: #1a1a1a;*/
  color: #030303;
  /* max-width: 2000px; */
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #030303;
  text-decoration: none;
}

h2 {
  font-size: 14px;
  margin: 0px;
}
h3 {
  font-size: 14px;
  margin: 0px;
}
p {
  margin: 0px;
  /* margin-block-start: 0.1em; */
  /* margin-block-end: 0.11em; */
}

#grid {
  display: grid;
  grid-template-columns: 230px 3fr minmax(300px, 1.1fr);
  grid-template-rows: 60px minmax(75vh, auto) 0px;
  column-gap: 40px;
}

#header {
  grid-column: 1 / span 3;
  grid-row: 1;
}
#menu {
  grid-column: 1;
  grid-row: 2;
}
#content {
  grid-column: 2 / span 2;
  grid-row: 2;
  width: 100%;
  max-width: 2000px;
  height: calc(100% + 200px);
}
/* #footer {
  grid-column: 1 / span 3;
  grid-row: 3;
  background-color: #03009f;
} */
#grid.sidebar #content {
  grid-column: 2;
  grid-row: 2;
}
#grid.sidebar #sidebar {
  grid-column: 3;
  grid-row: 2;
  overflow:hidden;
}

#header {
  position: fixed;
  width: 100vw;
  z-index: 888;
  border-bottom: 1px solid #e4e4e4;
  background-color: #ffffff;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: left;
}

#header .logo-link {
  display: flex;
  align-items: center;
  justify-content: left;
}

#header .logo-link .logo {
  /*float:left;*/
  /*background: url('/images/sprite.png') no-repeat -57px -3px;*/
  width: 70px;
  height: 40px;
}

#header .logo-link .logo svg {
  width: 70px;
  height: 40px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}

#header .logo-link .site-name {
  font-size: 20px;
  font-weight: 700;
  color: #303030;
  margin-left: 10px;
}

#overlay {
  visibility: hidden;
  position: fixed;
  width:100%;
  top: 51px;
  left: 0;
  right: 0;
  height: 120vh;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

#overlay.withmenu {
  visibility: visible;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: grid;
  /* height: 24px; */
  width: 24px;
  cursor: pointer;
  border: 1px solid #a7a7a7;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-icon div {
  /* width: 35px; */
  height: 4px;
  background: #333333;
  display: block;
  transition: all 0.3s ease-in-out;
}

.menu-icon.active div:nth-child(1) {
  transform-origin: center center;
  transform: rotate(-45deg) translate(-7px, 6px);
}

.menu-icon.active div:nth-child(2) {
  transform: translateX(10px);
  opacity: 0;
}

.menu-icon.active div:nth-child(3) {
  transform-origin: center center;
  transform: rotate(45deg) translate(-7px, -6px);
}

#menu {
  position: fixed;
  width: 220px;
  top: 60px;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100vh;
  padding: 10px 0px 10px 0px;
}

#menu::-webkit-scrollbar {
  width: 1px;
}
.menu-grid {
  /*overflow-y: scroll;*/
  height: calc(100% + 200px);
  /*min-height: 900px;*/
}

.menu .menu-item {
  padding: 1px 10px 1px 10px;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 13px;
  font-weight: 400;
  /*height:50px;	*/
}

.menu .menu-item:hover {
  background-color: #d6d6d6;
}

.menu .menu-item .icon {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu .menu-item .icon svg {
  fill: #333333;
  height: 25px;
  width: 25px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}

.menu .menu-item .icon.logo {
  margin-right: 5px;
}

.menu .menu-item.website-selected {
  background-color: #e0e0e0;
  /* font-weight: bold; */
  text-decoration: underline;
}

.menu .menu-item .icon.logo svg {
  height: 35px;
  width: 35px;
}

.menu .menu-item .title {
  margin-left: 3px;
}

.menu .menu-item.selected {
  border-left: 6px solid #333333;
  padding-left: 4px;
}
.menu .menu-item.selected .icon svg,
.menu .menu-item:hover .icon svg,
.menu .menu-item.selected .arrow svg {
  fill: #000000;
}

.menu .menu-item.selected .arrow svg {
  transform: rotate(90deg);
}

.menu .menu-item.selected .title {
  /* font-weight: bold; */
  text-decoration: underline;
}

.menu .menu-item .arrow {
  /* align-self: stretch; */
  flex-grow: 4;
  text-align: right;
}

.menu .menu-item .arrow svg {
  width: 7px;
  height: 7px;
  fill: #5d5d5d;
}

.menu .submenu {
  display: none;
}

.menu .submenu.selected {
  display: block;
}

/* SUBMENUS */

.menu .submenu .menu-subitem {
  padding: 1px 10px 1px 30px;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 13px;
  font-weight: 400;
  /*height:50px;	*/
}

.menu .submenu .menu-subitem:hover {
  background-color: #d6d6d6;
}

.menu .submenu .menu-subitem .icon {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu .submenu .menu-subitem .icon svg {
  fill: #333333;
  height: 4px;
  width: 4px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}

.menu .submenu .menu-subitem.selected {
  color: #000;
  text-decoration: underline;
}

.menu .separator {
  height: 15px;
  border-bottom: 1px dotted #a7a7a7;
  margin-bottom: 15px;
}

.menu .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.menu .social a > svg {
  width: 40px;
  height: 40px;
  fill: #333333;
}

.menu .social a:hover > svg {
  fill: #000;
}

.menu .menu-bottom {
  padding: 10px;
  font-size: 13px;
  font-weight: 400;
}

.menu .menu-bottom a {
  font-size: 13px;
  font-weight: 400;
}
.menu .menu-bottom .menu-item-bottom {
  font-size: 13px;
  font-weight: 400;
  /*float:left;*/
  margin-right: 5px;
}

.menu .menu-bottom a:hover {
  text-decoration: underline;
}


/*########################## OBJECTS GRID #########################################*/

.objects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  padding-right: 40px;
}

.object {
  pointer-events: none;
}

.object.object-hidden {
  display: none;
}

.object .thumb {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
  pointer-events: auto;
}

.object .thumb img,
.object .thumb picture {
  width: 100%;
  display: block;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.object:hover .thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/*.object .thumb img:hover  {
	-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}*/

.object .duration,
.object .tvshow-num,
.object .views {
  display: inline-block;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin: 0 2px;
  background: rgba(17, 17, 17, 0.6);
  z-index: 100;
}

.object .duration {
  position: absolute;
  bottom: 10px;
  right: 8px;
}
.object .views {
  position: absolute;
  bottom: 10px;
  left: 8px;
}

.object .tvshow-num {
  position: absolute;
  top: 8px;
  left: 8px;
}

.object:hover .duration,
.object:hover .views {
  color: #ffc200;
}

.object .duration svg {
  width: 8px;
  height: 8px;
  fill: #ffffff;
}
.object .views svg {
  width: 15px;
  height: 8px;
  fill: #ffffff;
}

.object:hover .duration svg,
.object:hover .views svg {
  fill: #ffc200;
}

.object .info .title-container {
  display: flex;
  min-height: 60px;
  padding-left: 5px;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.object .info .title-container .icon {
  width: 42px;
  height: 40px;
  /*display: inline-block;*/
  /*background-size: cover;*/
  background-image: url(/images/circle.svg);
  background-repeat: no-repeat;
  background-size: 37px 40px;
  fill: #a7a7a7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.object .info .title-container .icon svg {
  /*padding:10px;*/
  height: 25px;
  width: 25px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
  fill: #ffffff;
}

.object .info .title-container .title {
  width: 100%;
  padding-left: 10px;
}

.object .info .title h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #333;
}

.object:hover .info .title-container .icon svg {
  fill: #ffc400;
}

/*.object .info .title-container:hover .icon svg{
	fill:#FFC400;
}*/

.object:hover .info .title-container h2 {
  color: #000;
}

.object .tags {
  /*padding-top:5px;*/
  padding-left: 5px;
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
}

.object .info .descr {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  /*letter-spacing: 0.8px;*/
  color: #5d5d5d;
  margin-bottom: 15px;
}

/* KRASTAVICI BEGIN */

.object.krastavic:hover .thumb img {
  /* pointer-events: none; */
  /* cursor:pointer; */
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
}

.object.krastavic{
  pointer-events: all;
  
}

.object.krastavic:hover {
  cursor:pointer;
}

.object.krastavic .thumb .kr-overlay {
  display:none;
  position:absolute;
  top:0;
  left:0;
  background: rgba(17, 17, 17, 0.6);
  height:100%;
  width: 100%;
  color:#ffffff;
  font-weight: 500;
}

.object.krastavic .thumb .kr-overlay svg  {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.object.krastavic:hover .thumb .kr-overlay {  
  display:flex;
  /* color:red; */
  z-index:200;
  justify-content: center;
  flex-direction: column;
}
/* .object.krastavic:hover .thumb .kr-overlay div{  
  
} */


.object.krastavic:hover .thumb .kr-overlay .more {  
  display:flex;
  justify-content: center;
  column-gap: 10px;  
}


.object.krastavic .info .title-container .title {
  padding-left: 2px;
}

.object.krastavic .descr {
  padding: 0px 8px;
  margin-bottom:0px;
}

.object.krastavic .rekl-info {
  display: flex;
  column-gap: 10px;
  padding: 0px 8px;
}

.object.krastavic .rekl-info .rekl svg {
  /*padding:10px;*/
  height: 22px;
  width: 60px;
  /* filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1)); */
  /* fill: #ffffff; */
}

.object.krastavic .rekl-info .rekl-url {
  font-size:15px;
  color:#606060;
}


/* .object.krastavic .thumb img, 
.object.krastavic .thumb picture {
  pointer-events: none;
} */

.object.krastavic .open {
  position: absolute;
  bottom: 10px;
  right: 8px;
  display: inline-block;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin: 0 2px;
  background: rgba(17, 17, 17, 0.6);
  z-index: 100;
  
}
.object.krastavic .open svg{
  width: 18px;
  height: 18px;
  fill: #ffffff;
  position:relative;
  top:3px;
}

/* KRASTAVICI END */

#sidebar {
  /*display:grid;*/
  /*grid-template-columns: repeat(1, 1fr);*/
  /*gap: 15px;*/
  padding-right: 40px;
}

#sidebar .object {
  align-self: start;
}

/*########################################## OBJECT_PAGE ##############################################*/

#id-player-container {
  width: 100%;
  height: auto;
  position: relative;
}

#id-video {
  width: 100%;
  height: auto;
}

.video-info .big-title {
  padding: 0px 10px;
}

.video-info h1 {
  font-size: 24px;
  font-weight: 400;
}

.video-info h3 {
  font-size: 16px;
  font-weight: 400;
  white-space: pre-wrap;
  line-height: 1.75;
}

.video-info .big-tags {
  padding: 0px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
}

.object-text {
  font-size: 16px;
  font-weight: 400;
  /* white-space: wrap; */

  line-height: 1.75;
}

.object-text img {
  padding: 10px;
  clear: left;
}

.object-text h3 {
  border-bottom: 1px solid #a7a7a7;
  font-size: 16px;
  clear: left;
  font-weight: 700;
}

.object-text blockquote {
  padding: 10px;
  background-color: #f9ecbe;
  font-style: italic;
}

.video-info .show-more {
  display: none;
  text-align: center;
  color: #5d5d5d;
  padding: 5px 10px;
  font-weight: 500;
  cursor: pointer;
  /* border-bottom: 1px solid #a7a7a7; */
  /* margin-bottom: 20px; */
}

.video-info .show-more svg {
  width: 8px;
  height: 8px;
  fill: #5d5d5d;
  transform: rotate(90deg);
}

#sidebar .see-also {
  display: none;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #a7a7a7;
  height: auto;
  margin-bottom: 20px;
}


/* ################### TAGS BEGIN  ###################*/

.tag {
  position: relative;
  /* display: flex; */
  /* flex-basis: fit-content; */
  /* align-items: center; */
  /* justify-content: center; */
  padding: 3px 9px;
  margin: 4px 8px 4px 0;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  color: #444;
  /*color: #39739d;*/
  /* background-color: #ffc400; */
  /* background-color: #faa619; */
  background-color: var(--tag-bg-color);
  /* color: rgb(231, 231, 231); */

  border-color: transparent;
  cursor: pointer;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.4);
  /*text-shadow: 0px 0px 1px #333;*/
  transition: all 250ms;

  border-radius: 16px;
}

.tag svg {
  width: 12px;
  height: 10px;
}

.tag svg.bigger {
  width: 18px;
  height: 18px;
  position: relative;
  top: 5px;
}

.tag:hover {
  color: #333;
  /*background-color: #cee0ed;*/
  background-color: #ffcc1e;
  border-color: rgba(0, 0, 0, 0);
  /*box-shadow: 1px 1px 6px #333;*/
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.6);
  transition: all 250ms;
}

.tag:active {
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0px 0px 2px 1px rgba(0, 0, 0, 0.6);
}

.top-tags-container {
  display: flex;
  gap: 20px;
}

.parent-tag-container {
  margin-bottom: 10px;
  margin-right: 10px;
  color: #444;

  /* background-color: #ffc400; */
  /* box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.4); */

  display: flex;
  width: fit-content;
  align-items: center;
}

.parent-tag-container .parent-tag {
  font-size: 16px;
  display: flex;
  align-items: center;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-right: 1px solid #a7a7a7;
  /* background-color: #ffc400; */
  background-color: var(--tag-bg-color);
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  height: 20px;
}

.parent-tag-container .parent-tag:hover {
  background-color: #ffcc1e;
  /* background-color: var(--tag-bg-color); */
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.6);
  border-right: 1px solid #a7a7a7;
  transition: all 250ms;
}

.parent-tag-container .parent-tag svg {
  width: 22px;
  height: 22px;
  margin-right: 6px;
  /* fill: #ffffff; */
}

.parent-tag-container .back-btn {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border-right: 1px solid #a7a7a7;
  /* background-color: #ffc400; */
  background-color: var(--tag-bg-color);
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  height: 20px;
}

.parent-tag-container .back-btn:hover {
  background-color: #ffcc1e;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.6);
  border-right: 1px solid #a7a7a7;
  transition: all 250ms;
}

.parent-tag-container .back-btn svg {
  width: 14px;
  height: 14px;
}

.top-tags {
  padding: 10px 0px 15px 0px;
  height: 20px;
  width: 100vw;
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: auto;
  height: 30px;
  /*overflow-x: scroll;*/
  white-space: nowrap;
}

.top-tags .tag {
  background-color: #e3dcc0;
  margin-right: 20px;
  padding: 5px 12px;
}

.top-tags .tag.selected {
  /* background-color: #ffc400; */
  /* background-color: #faa619; */
  background-color: var(--tag-bg-color);
}

/* ################### TAGS END  ###################*/

/*########################################## MDEIA QUERIES ##########################################*/

@media screen and (max-width: 1600px) {
  #sidebar {
    padding-right: 10px;
  }
}

@media screen and (max-width: 1280px) {
  #grid {
    column-gap: 20px;
  }
  #content {
    grid-column: 2 / span 2;
    grid-row: 2;
  }
  .objects-grid {
    padding-right: 20px;
  }

  #grid.sidebar #menu {
    z-index: 9999;
    width: 280px;
    background-color: #ffffff;
    position: fixed;
    top: 51px;
    left: 0;
    height: 100%;
    overflow-y: scroll;
    box-shadow: 8px 7px 5px -3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 8px 7px 5px -3px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 8px 7px 5px -3px rgba(0, 0, 0, 0.5);
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    -moz-transition: -moz-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    -webkit-transform: translateX(-120%);
    -moz-transform: translateX(-120%);
    transform: translateX(-120%);
  }

  #grid.sidebar #menu.withmenu {
    display: grid;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
  }

  #grid.sidebar .menu-btn {
    display: block;
    margin-right: 10px;
  }

  #grid.sidebar #content {
    padding-left: 10px;
    grid-column: 1 / span 2;
    grid-row: 2;
  }

 
}

@media screen and (max-width: 1024px) {
  .object .info .title h2 {
    font-size: 18px;
    /*line-height: 14rem;*/
  }
}

@media screen and (max-width: 900px) {
  #grid {
    grid-template-columns: 230px 3fr minmax(250px, 1.1fr);
    /* column-gap: 10px; */
  }

  .products-grid {
    gap: 10px;
  }

  #content {
    grid-column: 2 / span 3;
    grid-row: 2;
  }

  .top-tags-container {
    display: block;
  }

  #DomatiContainer .domati-addons .propusni {
    position:absolute;
    right:0px;
    bottom:30px;
    z-index:8888;
    padding:4px 10px;
    background-color:rgba(0, 0, 0, 0.3);
    border:1px solid #a7a7a7;
    font-size:12px;
  }

  #DomatiContainer .domati-addons .propusni-sled {
    position:absolute;
    right:0px;
    bottom:30px;
    z-index:8888;
    /* padding:4px 10px; */
    background-color:rgba(0, 0, 0, 0.3);
    border:1px solid #a7a7a7;
    font-size:12px;
    height:30px;
  }

  #DomatiContainer .domati-addons .propusni-sled .thumb img {
    height:30px;
  }

  #DomatiContainer .domati-addons .propusni-sled .counter {
    width:30px;
  }

  #DomatiContainer .domati-addons .propusni-sled .counter-secs {
    font-size:12px;
  }

  #DomatiContainer .domati-addons .poveche {
      position:absolute;
      right:0px;
      top:30px;
      z-index:8888;
      padding:6px 12px;
      background-color:rgba(0, 0, 0, 0.6);
      border:1px solid #a7a7a7;
      /*display:none;*/
      font-size:14px;    
  }

  .video-products-tashev .tashev-logo {
    top: -10px;
  }

  .video-products-tashev .tashev-logo svg {
    width: 180px;
    height: 40px;
  }

  .video-products-list {
    grid-template-columns: 1fr;
    padding: 0px;
    padding-bottom: 10px;
  }

  .product {
    display: flex;
    justify-content: flex-start;
    flex-basis: 100%;
  }

  .product .thumb {
    width: 35%;
  }

  .product .name {
    padding-left: 10px;
    flex-basis: 100%;
  }

  .object-text {
    border-bottom: 1px solid #333;
    font-size: 16px;
    font-weight: 400;
    white-space: pre-wrap;
    line-height: 1.75;
  }

  .object-text img {
    width: 80% !important;
    height: auto !important;
    padding: 10px;
    float: none !important;
    margin: 0 auto !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .product-page {
    flex-wrap: wrap;
  }
  .product-page .image {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 720px) {
  #grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 60px auto auto 50px;
    column-gap: 0px;
    /* row-gap: 20px; */
  }

  #content {
    grid-column: 1;
    grid-row: 2;
  }

  .objects-grid {
    padding-right: 0px;
  }

  #header .menu-btn {
    display: block;
    margin-right: 10px;
  }
  #menu {
    z-index: 9999;
    width: 280px;
    background-color: #ffffff;
    position: fixed;
    top: 51px;
    left: 0;
    height: 100vh;
    overflow-y: scroll;
    box-shadow: 8px 7px 5px -3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 8px 7px 5px -3px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 8px 7px 5px -3px rgba(0, 0, 0, 0.5);
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    -moz-transition: -moz-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    -webkit-transform: translateX(-120%);
    -moz-transform: translateX(-120%);
    transform: translateX(-120%);
  }

  #menu.withmenu {
    display: grid;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
  }

  #grid.sidebar #content {
    grid-column: 1;
    grid-row: 2;
    padding: 0px;
  }

  #grid.sidebar #sidebar {
    grid-column: 1;
    grid-row: 3;
    padding: 0px 12px;    
  }
  /* DALI DA OSTANE */
  #id-player-container {
    position: sticky;
    top: 51px;
    z-index: 100;
    width:100%;
  }

  #grid.sidebar #sidebar .object {
    margin-bottom: 20px;
  }

  #grid.sidebar #sidebar .tags,
  #grid.sidebar #sidebar .descr {
    display: none;
  }

  /* .top-tags-container {
    padding-left: 5px;
  } */

  .object .info .descr {
    padding: 0px 5px;
    line-height: 1.6;
  }

  .object.krastavic .rekl-info {
    padding: 0px 5px;
  }

  .video-info .description {
    height: 70px;
    overflow: hidden;
    padding-bottom: 20px;
    position: relative;
  }

  .video-info .description.faded:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 1) 80%
    );
    width: 100%;
    height: 70px;
  }
  .video-info .description h3 {
    line-height: 1.5;
  }
  .video-info .description .object-text {
    display: none;
    line-height: 1.5;
  }

  .video-info .show-more {
    display: block;
  }

  #sidebar .see-also {
    display: block;
  }
}
