/* index.php only */

body {
  background: #010A1F;
  color: #ffffff;
}

a, a:visited {
  font-family:'Open Sans',sans-serif;
  color: #efab47;
}

a:hover {
  color: #A13A16;
}

p {
  text-align: justify;
  font-size: 14px;  
}

li {
  font-size: 14px;
}

h3 {
  font-family: Roboto,sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin: 10px 0 20px 0;
  text-shadow: 1px 1px 11px rgba(0,0,0,0.4);
}

h4 {
  /* text-align: justify; */
  line-height: 1.6;
  font-size: 1rem;
  color: #efab47;
  font-weight: 700;
}

#header {
  box-sizing: border-box;
  background: #292870;
  display: table;
  width: 100%;
  height: 74px;
  margin: 0 auto;
  position: fixed;	
  top: 0;
  z-index: 1000;
}


/* Sandwitch */
.sandwitch-container, .sandwitch-container2 {
  vertical-align: middle;
  display: none;
  cursor: pointer;
}
.sandwitch-container2 {
  margin-top:20px;
}
.sandwitch-bar1, .sandwitch-bar2, .sandwitch-bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}
.change .sandwitch-bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}
.change .sandwitch-bar2 {opacity: 0;}
.change .sandwitch-bar3 {
  transform: translate(0, -11px) rotate(45deg);
}
.imeflixtitleMain {
    font-size:1rem !important;
}
@media screen and (max-width:1000px){
  .imeflixtitleMain {
    font-size:0.9rem !important;
  }
}
@media screen and (max-width:830px){
  .sandwitch-container2 {
    display: block;
    float: right;
  }
  .imeflixtitle {
    font-size:1em !important;
  }
  .imeflixtitleMain {
    font-size:0.8rem !important;
  }
}
@media screen and (max-width:750px){
  .imeflixtitleMain {
    font-size:0.7rem !important;
  }
}
@media screen and (max-width:640px){
  .sandwitch-container {
    display: block;
    float: right;
  }
  .imeflixtitle {
    font-size:0.8em !important;
  }
  .imeflixtitleMain {
    font-size:0.55rem !important;
  }
}
/* Sandwitch */

.separator1 {
  background:#292870;
  height:30px;
}

.wrapper, .wrapper100 {
  display: table;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.wrapper {
  max-width: 1280px;
}

.wrapperVideoOnly {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.inner-wrapper {
  padding: 20px;    
}  

.logo {
  text-align: center;
  width: 250px;
  color: #fff;
}

.logo, .menu, .menu2 {
  vertical-align: middle;
  display: table-cell;
  white-space: nowrap;
}

.menu, .menu2 {
  padding-right: 10px;
}

.menu ul.desktop-menu-items, .menu2 ul.desktop-menu-items {
  text-align: right;
}

.menu ul.desktop-menu-items li, .menu2 ul.desktop-menu-items li {
  display: inline-block;
  vertical-align: top;
  margin: 20px 0 0 15px;
}

.menu ul.desktop-menu-items li a, .menu2 ul.desktop-menu-items li a {
  color: #fff;
  font-weight: bold;
  text-underline-offset: 12px;
}

.menu ul.desktop-menu-items li a:hover, .menu2 ul.desktop-menu-items li a:hover  {
  color: #efab47;
}

.liMenuClass {
  margin-left:12px !important;
}

@media screen and (max-width:890px){
  .menu ul.desktop-menu-items li a, .menu2 ul.desktop-menu-items li a {
    font-size:0.7rem !important;
    text-underline-offset:9px;
  }
  .liMenuClass {
    margin-left:6px !important;
  }
}

@media screen and (max-width:850px){
  .menu ul.desktop-menu-items li a, .menu2 ul.desktop-menu-items li a {
    font-size:0.65rem !important;
    text-underline-offset:9px;
  }
  .liMenuClass {
    margin-left:3px !important;
  }
}

.mobile-menu-items {
  list-style-type: none;
  margin: 0;
  top: 60px;
  right: 10px;
  position: absolute;
  font-weight: 600;
  background: rgb(0,0,0,0.8);
  font-size: 20px;
  transition: transform 0.5s ease-in-out;
  padding: 20px;
}

.mobile-menu-items li {
  padding: 15px 0;
  text-align: center;
}

.mobile-menu-items a {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width:830px){
  .menu2 ul.desktop-menu-items {
    display: none;
  }
}

@media screen and (max-width:640px){
  .menu ul.desktop-menu-items {
    display: none;
  }
}

/* from now.php begin */
/* tooltips NOT NEEDED (probabaly) */

.tooltip, .tooltip2 {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext, .tooltip2 .tooltiptext2 {
  visibility: hidden;
  text-align: center;
  border-radius: 8px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip .tooltiptext {
  width: 220px;
  background-color: red;
  color: yellow;
  top: -3px;
  left:-230px;
}

.tooltip2 .tooltiptext2 {
  font-weight:400;
  width: 220px;
  background-color:#0e0;
  color:black;
  top:16px;
  left:-8px;
  border:1px solid black;
}

.tooltip2 {
  font-weight:700;
  font-style:italic;
  text-decoration:underline;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip2:hover .tooltiptext2 {
  visibility: visible;
}

/* from now.php for imeflix list */

div.flixImageList {
  width:100%; /* was height:240px; */
  overflow-x:auto;overflow-y:none;
  display:flex;flex-direction:row;flex-wrap:nowrap;
}
div.flixImageList::-webkit-scrollbar {
  width: 12px;
}
div.flixImageList::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color, #11E); /* thumb color */
}

div.flixImageList::-webkit-scrollbar-track {
  background-color: var(--scroll-track-color, #162034); /* track color */
}

#flixListName {
  text-align:left !important;
  line-height:20px;
}

#showCatInScollerSel {
    width:150px;
}
@media (max-width: 640px) {
  #flixListName {
    font-size:0.4em;
    line-height:15px;
    text-align:center !important;
    margin:8px 2px 6px 2px !important;
  }
}
@media (max-width: 900px) {
  #categorySelect {
    display: block !important;
    margin:0 2px 2px 0 !important;
    float:left;
  }
  #showCatInScollerSel {
    width:auto;
    -moz-white-space:nowrap;-o-white-space:nowrap;white-space:nowrap;
  }
  #flixListName {
    font-size:0.5em;
    line-height:18px;
    margin:5px 4px 6px 4px !important;
  }
  #FlixList {
    display: block !important;
    margin-left:0 !important;
    height:260px !important;
  }
}

.box select {
  background-color:#000;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-50%20-20%20356%20448%22%20enable-background%3D%22new%200%200%20256%20448%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E.arrow%7Bfill%3A%23efab47%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22arrow%22%20d%3D%22M128%2C331%20l-189%2C-240%20l378%2C0z%22%2F%3E%3C%2Fsvg%3E%0A);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: auto 50%;
  border-radius: 2px;
  border: none;
  color: #ffffff;
  padding: 10px 30px 10px 10px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  &::-ms-expand { display: none };
}

@-moz-document url-prefix() {
  .box select {
    color: rgba(0,0,0,0);
    text-shadow: 0 0 0 #ffffff;
  }
}

/* from now.php end */

#content_top {
  // margin:36px; // OLD: DONT CHANGE THIS ONLY HERE! LOOK @ index.php also!
  //                 Now its handled with JS when needed.
  // margin:71px 0 0 0;
  margin-top:72px;
  // padding:0 0 30px 0;
  background: #010A1F;
  padding:0;
}

#maintv_C10DhJZK485Z {
  position: relative;
  margin: 10px auto;
  text-align: center;
}

#diavlosParent {
  position: relative;
  margin: 0 auto 4px auto;
  text-align: center;
}

#content_middle {
  padding: 30px 0;
  background: #292870;
}

.playingnow_label {
  line-height: 1.6;
  text-align: left;
  font-size: 1.0rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  font-weight: 700;
  box-sizing: border-box;
  color: #fff;
  white-space: nowrap;
}

.playingnow_title {
  line-height: 1.6;
  text-align: left;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  box-sizing: border-box;
  color: #efab47;
  font-weight: 700;
  font-size: 1.0rem;
}

#playing_now_id, #playing_next_id {
  display: flex;
}

@media screen and (max-width:640px){
  #playing_now_id, #playing_next_id {
    display: block !important;
  }
}

.desktop_title {
  display: block;
  visibility: visible;
}
.desktop_inline {
  display: inline-block;
  visibility: visible;
}
.mobile_title {
  display: none;
  visibility: hidden;  
}

@media screen and (max-width:640px){
  .desktop_title, .desktop_inline {
    display: none;
    visibility: hidden;
  }
  .mobile_title {
    display: block;
    visibility: visible;
  }
}

#tv_program {
  margin: 20px 0 0px 0;
}

#tv_program table th {
  color: #fff;   
  font-weight: normal;
} 

#tv_program table td, #tv_program table a {
  text-decoration: none;
  color: #efab47;
  font-weight: 600;
}

#tv_program table a:hover {
    color: #A13A16;
}

.postersm {
  padding:9px 15px 10px 0;
  width:150px;
}

@media screen and (max-width:640px){
  .postersm {
    padding:9px 10px 2px 0;
    width:100px;
  }

  p {
    font-size:12px;
  }
  li {
    font-size:12px;
  }
  .contInfo {
    font-size:12px;
    font-size:smaller;
  }
}

/*
#tv_program, #tv_info, #tv_info2, #tv_infoIF {
  margin-bottom: 100px; 
}

#tv_info {
  padding:20px;
}
#tv_program {
}
*/

#info_title {
  font-size: 18px;
  font-weight: bold;
}
.a1:hover {
  color:#FFcc00;
}

.nowPlayingDAY_TR {
  border:2px red solid;
}

.nowOtherDAY_TR {
  border:2px rgba(35,42,111,0.1) solid;
}

.nowPlaying_TR {
  border:1px red solid;
}

.nowPlaying_TD_time {
  color:#f00 !important;
  font-weight:bold!important;
  padding-top:4px !important;
  padding-bottom:4px !important;
}

.nowPlaying_TD_title {
  color:#f00 !important;
  font-weight:bold!important;
  padding-top:4px 20px 4px 2px !important;
}

.nextPlaying_TR {
  border:1px #F5C54C dashed;
  border-top:1px yellow solid;
}

.nextPlaying_TD_time {
  color:#F5C54C !important;
  font-weight:bold!important;
  padding-top:4px !important;
  padding-bottom:4px !important;
}

.nextPlaying_TD_title {
  color:#F5C54C !important;
  font-weight:bold!important;
  padding-top:4px 20px 4px 2px !important;
}

.future_Times {
  color:#ff6 !important;
  font-style:italic !important;
}

.future_Times_i_Only {
  font-style:italic !important;
}

.logo {
  width:228px;
}
@media screen and (max-width:640px){
  .logo {
    width:180px;
  }
}

.headerMid {
  float:left;
  font-weight:bold;
  font-size:1.3em;
  padding:15px 1px 0 25px;
}
@media screen and (max-width:830px){
  .headerMid {
    padding:15px 1px 2px 10px;
    float:left;
    font-weight:bold;
    font-size:1.0em;
  }
}

.b2imetv { font-size:1.2em; }
@media screen and (max-width:830px){
  .b2imetv { font-size:0.8em; }
}

.anametadosi {
  font-size:0.7em;
}
@media screen and (max-width:640px){
  .anametadosi {
    font-size:0.3em;
  }
}

.smallLink:hover {
  color: #EEdd33;
}

svg {
  display: block;
  margin: 0px;
}

#analog_clock_pie
{ fill: #0088cc }

/* Scroll Bar */

/* Works on Firefox */
#week_days_id {
  scrollbar-width: thin;
  scrollbar-color: #68689A #3C3B80;
}

/* Works on Chrome, Edge, and Safari */
#week_days_id::-webkit-scrollbar {
  width: 12px;
}

#week_days_id::-webkit-scrollbar-track {
  background: #3C3B80;
}

#week_days_id::-webkit-scrollbar-thumb {
  background-color: #68689A;
  border-radius: 20px;
  border: 3px solid #3C3B80;
}

.Sbutton {
  margin:0 10px;
  padding:2px 10px;
  background-color:#f0efd9;
  border-radius:6px;
  border: 1px solid #000;
  box-shadow: 4px 4px 4px 1px #888;
}