figure{
  margin:0px !Important;
}
:root {
  --body-font-raleway:  'Raleway', Arial, sans-serif;
   --body-font: "Manrope", sans-serif;
  --body-font-ave:"Droid Sans", "Helvetica Neue", Helvetica, sans-serif;
  --body-font-avenir:"Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body-font-hurme: "Hurme";
  --body-color: #b3b3b3;
  --body-bg-color: #f2f2f2;
  --theme-bg-color: #fafafa;
  --border-color: #efefef;
  --mdc-theme-text-primary-on-light:rgba(0, 0, 0, 0.87);
  --mdc-theme-secondary:#018786;
  --main-color: #808080;
  --header-bg-color: #fff;
  --logo-color: #25a9ea; 
  --main-hmiq-black: #404041;
  --main-hmiq-yellow: #D7DF21;
  --main-hmiq-gray: #D1D2D4;
  --main-color-hmiq-litegreen: #1ebba3;
  --main-color-hmiq-blue1: #172B4D;
  --main-color-hmiq-divider: #ccc;
  --main-hmiq-border-color: #f1f1f1;
  --main-color-grid-highlight: #e8f0fe;
  --main-color-twot-orange: #e6820e;
  --main-color-blue-369:#369;
  --common-box-shadow-white: 1px 1px 6px rgb(0 0 0 / 26%);

/*https://www.joshwcomeau.com/animation/css-transitions/*/
    --font-weight-bold: 500;
    --font-weight-medium: 400;
    --font-weight-light: 300;
    --font-family: "Wotfard",Futura,-apple-system,sans-serif;
    --font-family-mono: "League Mono","Fira Mono",monospace;


    --color-text: hsl(222deg, 22%, 5%);
    --color-background: hsl(0deg, 0%, 100%);
    --color-blurred-background: hsla(0deg, 0%, 100%, 0.85);
    --color-primary: hsl(245deg, 100%, 60%);
    --color-secondary: hsl(333deg, 100%, 45%);
    --color-tertiary: hsl(255deg, 85%, 30%);
    --color-decorative: hsl(200deg, 75%, 65%);
    --color-muted: hsl(210deg, 55%, 92%);
    --color-muted-background: hsla(210deg, 55%, 92%, 0.85);
    --color-info: hsl(245deg, 100%, 60%);
    --color-success: hsl(160deg, 100%, 40%);
    --color-success-background: hsla(160deg, 100%, 40%, 0.1);
    --color-error: hsl(340deg, 95%, 50%);
    --color-error-background: hsla(340deg, 95%, 43%, 0.1);
    --color-alert: hsl(37deg, 100%, 50%);
    --color-alert-background: hsla(52deg, 100%, 50%, 0.25);
    --color-venn-0: hsl(190deg, 100%, 65%);
    --color-venn-1: hsl(340deg, 100%, 65%);
    --color-gray-100: hsl(225deg, 25%, 95%);
    --color-gray-200: hsl(225deg, 16%, 90%);
    --color-gray-300: hsl(225deg, 8%, 80%);
    --color-gray-400: hsl(225deg, 8%, 70%);
    --color-gray-500: hsl(225deg, 7%, 60%);
    --color-gray-600: hsl(225deg, 15%, 50%);
    --color-gray-700: hsl(225deg, 12%, 40%);
    --color-gray-900: hsl(225deg, 25%, 20%);
    --color-gray-1000: hsl(225deg, 15%, 15%);
    --color-subtle-background: hsl(225deg, 25%, 95%);
    --color-subtle-floating: hsl(0deg, 0%, 100%);
    --color-homepage-light: hsl(204deg, 67%, 85%);
    --color-homepage-dark: hsl(202deg, 71%, 90%);
    --color-homepage-bg: hsl(204deg, 67%, 85%);
    --syntax-bg: hsl(225deg, 25%, 97%);
    --syntax-highlight: hsl(225deg, 25%, 93%);
    --syntax-txt: #2A2A2A;
    --syntax-comment: #467790;
    --syntax-prop: #da0079;
    --syntax-bool: #bf00b8;
    --syntax-val: #78909C;
    --syntax-str: #651fff;
    --syntax-name: #AA00FF;
    --syntax-del: rgb(255, 85, 85);
    --syntax-regex: #3600d6;
    --syntax-fn: #3D5AFE;
    --prefers-dark: false;
    --scrollbar-width: 12px;
}
.dark-mode {
  --body-bg-color: #1e222b;
  --theme-bg-color: #212835;
  --border-color: #393f50;
  --header-bg-color: #323a4b;
  --main-color: #fefffd;
  --body-color: #dddee0;
}

.preloader_loading_subtext{
     color: var(--logo-color);
     font-size:1.5rem; 
      position: absolute;
      top: 60%;
      left: 25%;  
}
.centerlogo{
  left: 25%;
  top:25%;
  position: absolute;
}
.imagelogo{
  /*background-image: url(../images/logo_green.png);*/
}
.pageleftlogo{
    left: 7%;
    top:10%;
    position: absolute;
}

.homescreen_logo {
    left: 0%;
    top: 7px;
    /*position: absolute;*/
    height: 81px;
}

.LightWaves {
  animation: lightwaves 2s infinite;
  position: relative;
}

@keyframes lightwaves {
    0%,100% { transform: translate(0,0); }
    25%     { transform: translate(5px,5px); transform: scale(1.05); }
    50%     { transform: translate(25px, 5px); }
    75%     { transform: translate(12px,10px); transform: scale(1.05); }
}

.DarkWaves {
  animation: darkwaves 3.8s infinite;
}

@keyframes darkwaves {
    0%,100% { transform: translate(0,0); }
    25%     { transform: translate(25px, 5px); transform: scale(1.05); }
    50%     { transform: translate(12px,10px); }
    75%     { transform: translate(5px,5px); }
}

.WhiteWaves {
  animation: whitewaves 4s alternate ease infinite;
}

@keyframes whitewaves {
    0% { transform: translate(0,25px); }
    100%     { transform: translate(25px,35px); }
}
.preloader {
  position: absolute;
  margin-left: -55px;
  margin-top: -100px;
  height: 110px;
  width: 110px;
  left:45%;
  top: 45%;
}

.preloader svg {
  width: 210px;
  height: 210px;
}

.preloader path {
  stroke: var(--logo-color);
  stroke-width: 0.25;
  fill: #241E20;
}

#cloud {
  position: relative;
  z-index: 2;
}

#cloud path {
  fill: #efefef;
}

#sun {
  margin-left: -10px;
  margin-top: 6px;
  opacity: 0;
  width: 60px;
  height: 60px;
  position: absolute;
  left: 95px;
  top: 25px;
  z-index: 1;
  animation-name: rotate;
  animation-duration: 16000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#sun path {
  stroke-width: 0.18;
  fill: #9ea1a4;
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
/* Rain */
.rain {
  position: absolute;
  width: 70px;
  height: 70px;
 
    margin-top: -60px;
    margin-left: 65px;
}

.drop {
  opacity: 1;
  background: #9ea1a4;
  display: block;
  float: left;
  width: 3px;
  height: 10px;
  margin-left: 4px;
  border-radius: 0px 0px 6px 6px;
  animation-name: drop;
  animation-duration: 350ms;
  animation-iteration-count: infinite;
}

.drop:nth-child(1) {
  animation-delay: -130ms;
}

.drop:nth-child(2) {
  animation-delay: -240ms;
}

.drop:nth-child(3) {
  animation-delay: -390ms;
}

.drop:nth-child(4) {
  animation-delay: -525ms;
}

.drop:nth-child(5) {
  animation-delay: -640ms;
}

.drop:nth-child(6) {
  animation-delay: -790ms;
}

.drop:nth-child(7) {
  animation-delay: -900ms;
}

.drop:nth-child(8) {
  animation-delay: -1050ms;
}

.drop:nth-child(9) {
  animation-delay: -1130ms;
}

.drop:nth-child(10) {
  animation-delay: -1300ms;
}

@keyframes drop {
  50% {
    height: 45px;
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  100% {
    height: 1px;
    opacity: 0;
  }
}

.box {
  height: 180px;
  width: 180px; 
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #020438;
  border-radius: 100%;
  overflow: hidden;
}
.box .percent {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 64px;
}
.box .water {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  background: #4D6DE3;
  -webkit-transition: all .3s;
  transition: all .3s linear infinite;
}
.box .water_wave {
  width: 200%;
  position: absolute;
  bottom: 100%;
}
.box .water_wave_back {
  right: 0;
  fill: #C7EEFF;
  -webkit-animation: wave-back 1.4s infinite linear;
          animation: wave-back 1.4s infinite linear;
}
.box .water_wave_front {
  left: 0;
  fill: #4D6DE3;
  margin-bottom: -1px;
  -webkit-animation: wave-front .7s infinite linear;
          animation: wave-front .7s infinite linear;
}

@-webkit-keyframes wave-front {
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes wave-front {
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@-webkit-keyframes wave-back {
  100% {
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}
@keyframes wave-back {
  100% {
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}


.centerBike {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 26px;
  margin-left: -12px;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}


#loop {
  height: 100px;
  width: 100px;
  border: red solid 4px;
  border-radius: 200px;
}

#loop:before {
  background: -moz-linear-gradient(left, rgba(187, 95, 39, 0) 0%, rgba(187, 95, 39, 1) 30%, rgba(187, 95, 39, 1) 70%, rgba(187, 95, 39, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(187, 95, 39, 0)), color-stop(30%, rgba(187, 95, 39, 1)), color-stop(70%, rgba(187, 95, 39, 1)), color-stop(100%, rgba(187, 95, 39, 0)));
  background: -webkit-linear-gradient(left, rgba(187, 95, 39, 0) 0%, rgba(187, 95, 39, 1) 30%, rgba(187, 95, 39, 1) 70%, rgba(187, 95, 39, 0) 100%);
  background: -o-linear-gradient(left, rgba(187, 95, 39, 0) 0%, rgba(187, 95, 39, 1) 30%, rgba(187, 95, 39, 1) 70%, rgba(187, 95, 39, 0) 100%);
  background: -ms-linear-gradient(left, rgba(187, 95, 39, 0) 0%, rgba(187, 95, 39, 1) 30%, rgba(187, 95, 39, 1) 70%, rgba(187, 95, 39, 0) 100%);
  background: linear-gradient(to right, rgba(187, 95, 39, 0) 0%, rgba(187, 95, 39, 1) 30%, rgba(187, 95, 39, 1) 70%, rgba(187, 95, 39, 0) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00bb5f27', endColorstr='#00bb5f27', GradientType=1);
  content: "";
  display: block;
  height: 4px;
  left: -100px;
  position: relative;
  top: 100px;
  width: 300px;
}

#bike-wrapper {
  height: 108px;
  width: 108px;
  animation: drive 3s linear infinite;
}

#bike {
  height: 24px;
  width: 25px;
   background-image: url(../images/motorbike.png) !important;
}

@keyframes drive {
  0% {
    margin-left: -364px;
    opacity: 0;
  }
  33.33% {
    transform: rotate(0deg);
    margin-left: -50px;
    opacity: 1;
  }
  66.66% {
    transform: rotate(-360deg);
    margin-left: -50px;
    opacity: 1;
  }
  100% {
    margin-left: 264px;
    transform: rotate(-360deg);
    opacity: 0;
  }
}
.text {
  font-family: Helvetica, 'Helvetica Neue', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  margin-left: -43px;
  font-weight: bold;
  margin-top: 20px;
  font-size: 25px;
  color: #a0a0a0;
  width: 200px;
}
* {
  outline: none;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--body-color);
  background-color: var(--body-bg-color);
  margin: 0;
  font-weight: 600;
  min-height: -webkit-fill-available;
}

.video-app {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
 /* max-width: 1400px;
  height: 100vh;*/
  margin: 0 auto;
  overflow: hidden;
}

.btnlogin {
    color: black;
    border: none;
    font-weight: 600;
}
.header {
  height: 100px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  display: -webkit-box;
  display: flex;
  background-color: var(--header-bg-color);
  -webkit-box-align: center;
          align-items: center;
  padding: 0 25px;
  color: var(--body-color);
  font-size: 15px;
}

.header-left {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.header-left svg {
  width: 22px;
  margin-right: 25px;
  flex-shrink: 0;
}

.logo {
  width: 34px;
  height: 34px;
  border: 5px solid var(--logo-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.header-menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  cursor: pointer;
  margin-left: auto;
  height: 100;
  padding: 0 15px;
}

.menu-item:hover {
  color: var(--logo-color);
}
.menu-item:not(:last-child) {
  margin-right: 20px;
}

.user-settings {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}
.user-settings > * + * {
  margin-left: 18px;
}

.user-settings svg {
  width: 22px;
  flex-shrink: 0;
}

.button {
  display: -webkit-box;
  display: flex;
  background-color: transparent;
  -webkit-box-align: center;
          align-items: center;
  border: 2px solid var(--border-color);
  border-radius: 25px;
  color: var(--body-color);
  padding: 8px 16px;
  font-family: var(--body-font);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.button:hover {
    color: var(--logo-color);
}

.button svg {
  margin-right: 8px;
  width: 20px;
  fill: var(--body-color);
}

.button svg:hover { 
  fill: var(--logo-color);
}
.hightlightIconOnHover:hover{
  color: var(--logo-color);
}
.search-bar {
  height: 90px;
  position: relative;
}
.search-bar input {
  height: 100%;
  width: 100%;
  display: block;
  background-color: transparent;
  border: none;
  padding: 0 10px 0 54px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath d='M18.5 17h-.79l-.28-.27a6.5 6.5 0 10-.7.7l.27.28v.79l5 4.99L23.49 22l-4.99-5zm-6 0a4.5 4.5 0 11-.01-8.99A4.5 4.5 0 0112.5 17z' id='a'/%3e%3c/defs%3e%3cg transform='translate(-6 -6)' fill='none' fill-rule='evenodd'%3e%3cmask id='b' fill='%23fff'%3e%3cuse xlink:href='%23a'/%3e%3c/mask%3e%3cg mask='url(%23b)' fill='%23D8D8D8'%3e%3cpath d='M3 3h24v24H3z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 25px 50%;
  color: #7c7c7c;
}
.search-bar input::-webkit-input-placeholder {
  color: var(--body-color);
}
.search-bar input::-moz-placeholder {
  color: var(--body-color);
}
.search-bar input:-ms-input-placeholder {
  color: var(--body-color);
}
.search-bar input::-ms-input-placeholder {
  color: var(--body-color);
}
.search-bar input::placeholder {
  color: var(--body-color);
}

.search-bar input:hover{
      background: var(--logo-color);
       color: white;
    border-radius: 10px;
}

.user-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-profile + svg {
  width: 14px;
}

.notify {
  position: relative;
}
.notify:before {
  content: "";
  position: absolute;
  background-color: var(--logo-color);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  right: -6px;
  bottom: 15px;
}

.menu-item.active {
  color: var(--logo-color);
}

.wrapper {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex-grow: 1;
  overflow: auto;
  background-color: var(--theme-bg-color);
}

.side-wrapper:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.side-wrapper svg {
  width: 20px;
  fill: var(--body-color);
  margin-right: 25px;
  flex-shrink: 0;
}

.username {
  color: var(--main-color);
  font-size: 15px;
}

.side-menu a {
  text-decoration: none;
  font-weight: 500;
  color: var(--main-color);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 15px;
  white-space: nowrap;
}
.side-menu a:not(:last-child) {
  margin-bottom: 20px;
}

.side-menu {
  padding: 20px;
}

.side-title {
  padding: 0 0 20px;
  font-size: 15px;
}

.user {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.user + .user {
  margin-top: 15px;
}

.user-img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.show-more {
  margin-top: 20px;
  padding: 12px 16px;
}

.left-side {
  width: 270px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  border-right: 1px solid var(--border-color);
  overflow: auto;
  flex-shrink: 0;
}

.main-container {
  padding: 25px;
  -webkit-box-flex: 1;
          flex-grow: 1;
  overflow: auto;
}

.profile {
  height: 45vh;
  max-height: 350px;
  min-height: 270px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.profile-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px 4px 6px 6px;
}

.profile-menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  background-color: var(--header-bg-color);
  width: 100%;
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  padding: 0 25px;
  z-index: 2;
}

.profile-img {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}

.profile-avatar {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  flex-shrink: 0;
}

.profile-name {
  white-space: nowrap;
}

.menu-items {
  display: -webkit-box;
  display: flex;
  cursor: pointer;
}

.profile-menu-link {
  padding: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.profile-menu-link.active, .profile-menu-link:hover {
  border-bottom: 3px solid var(--logo-color);
  color: var(--logo-color);
}

.profile-info {
  -webkit-box-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  z-index: 2;
}

.profile-name {
  color: var(--main-color);
}

.profile-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
  padding: 26px 16px;
  white-space: nowrap;
}
.profile-item svg {
  width: 22px;
  margin-right: 10px;
}

.profile-contact-info {
  position: absolute;
  display: -webkit-box;
  display: flex;
  right: 10px;
  top: 20px;
  color: #fff;
}
.profile-contact-info svg {
  width: 18px;
}

.profile-contact {
  border: 1px solid rgba(239, 239, 239, 0.3);
  padding: 16px;
  margin-left: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.follow-buttons {
  display: -webkit-box;
  display: flex;
}

.follow {
  border: 2px solid var(--border-color);
  border-radius: 25px 0 0 25px;
  color: var(--body-color);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background-color: transparent;
}
.follow:hover {
  background-color: var(--header-bg-color);
}

.follow-option {
  border-radius: 0 25px 25px 0;
  margin-left: -2px;
}

.trends {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 40px 45px;
}
.trends a {
  text-decoration: none;
  color: var(--body-color);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 15px;
  white-space: nowrap;
}

.trends svg {
  width: 20px;
  margin-right: 16px;
}

.follow-option.active {
  background-color: var(--header-bg-color);
  margin-left: -3px;
}

.play-all {
  background-color: var(--logo-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.play-all svg {
  width: 12px;
  flex-shrink: 0;
  margin-right: 8px;
}

.videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.video video {
  -webkit-transition: .4s;
  transition: .4s;
  max-width: 100%;
  display: block;
  border-radius: 4px 4px 0 0;
}

.video {
  overflow: hidden;
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
  background-color: var(--header-bg-color);
  cursor: pointer;
}
.video:hover .video-time {
  opacity: 0;
}
.video:hover video {
  -webkit-transform: scale(2.2);
          transform: scale(2.2);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.video:hover .view {
  padding: 10px;
}

.video-time {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px;
  border-radius: 15px;
  font-size: 12px;
  color: #fff;
  bottom: 80px;
  right: 6px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

.video-content {
  width: 100%;
  color: var(--main-color);
  padding: 15px 10px 0;
  border-radius: 0 0 4px 4px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.view {
  padding: 10px;
  position: relative;
  background-color: var(--header-bg-color);
  z-index: 1;
  font-size: 13px;
}

.load-more {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}
.load-more svg {
  width: 16px;
  margin-right: 15px;
}
.load-more:hover svg {
  -webkit-animation: load 0.9s linear infinite;
          animation: load 0.9s linear infinite;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.language {
  margin-bottom: 8px;
}

.footer-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.footer-links a {
  text-decoration: none;
  color: var(--main-color);
}

.footer-links a:hover{ 
  color: var(--logo-color); 
  cursor:pointer;
  text-decoration:underline;
}
.footer-links a + a {
  margin-left: 8px;
}

.footer-links {
  display: -webkit-box;
  display: flex;
}

.link-footer a {
  color: var(--body-color);
  font-size: 14px;
}

.footer {
  padding: 30px 0;
}
.footer-last { 
  padding: 30px 0;
  display: -webkit-box;
  display: inline-grid;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: center;
}

.social-media {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.social-media svg {
  width: 200%;
  color: var(--logo-color);
}
.social-media svg:hover { 
  width: 300%;
  color:var(--color-secondary);
}
.social-media a {
  /* border: 1px solid var(--border-color);
  border-radius: 50%; */
  color: var(--body-color);
  padding: 8px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-right:48px;
}

.policy a {
  text-decoration: none;
  color: var(--body-color);
}

@media (max-width: 1030px) {
  .profile-name {
    display: none;
  }

  .profile-menu-link {
    padding: 20px 10px;
    font-size: 14px;
  }

  .trends {
    padding: 40px 10px;
  }
}
@media (max-width: 1120px) {
  .footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .footer-row + .footer-row {
    margin-top: 10px;
  }
  .footer-row .button {
    display: none;
  }
}
@media (max-width: 900px) {
  .play-all {
    color: transparent;
    white-space: nowrap;
    width: 30px;
    padding: 0;
    fill: #fff;
    height: 30px;
    position: relative;
  }

  .profile-item {
    padding: 20px 10px;
  }

  .play-all svg {
    position: absolute;
    left: 58%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    fill: #fff;
  }
}
@media (max-width: 840px) {
  .profile-contact {
    padding: 6px;
  }

  .profile-item, .profile-avatar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .profile-item svg {
    margin-right: 0;
  }

  .profile-item {
    text-align: center;
  }

  .profile-img {
    margin-right: 0;
    margin-top: 10px;
  }

  .profile-name {
    display: block;
    margin-bottom: 10px;
    margin-top: 6px;
  }

  .profile-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .menu-items {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}
@media (max-width: 980px) {
  .videos {
    grid-template-columns: 1fr 1fr;
  }

  .profile {
    min-height: 380px;
    max-height: 380px;
  }
}
@media (max-width: 800px) {
  .trends .follow-buttons {
    display: none;
  }
}
@media (max-width: 750px) {
  .left-side {
    display: none;
  }

  .header-menu {
    display: none;
  }

  .search-bar input  {
    max-width: 140px;
  }

  .user-settings button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    position: relative;
    color: transparent;
  }

  .user-settings button svg {
    margin-right: 0;
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (max-width: 440px) {
  .user-settings svg {
    display: none;
  }

  .videos {
    grid-template-columns: 1fr;
  }
}
/*https://www.w3schools.com/css/css3_mediaqueries_ex.asp*/
/*https://responsivedesign.is/develop/browser-feature-support/media-queries-for-common-device-breakpoints/*/
/* On screens that are 600px or less, set the background color to olive */

.dark-light {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--header-bg-color);
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 50%;
  z-index: 2;
}
.dark-light svg {
  width: 28px;
}

.dark-mode .dark-light svg {
  fill: #ffce45;
  stroke: #ffce45;
}

.dark-light svg {
  fill: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 475px) {
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .footer-links a + a {
    margin-left: 0;
  }

  .footer-row:last-child {
    -webkit-box-align: end;
            align-items: flex-end;
  }

  .footer-row {
    -webkit-box-align: start;
            align-items: flex-start;
  }

  .footer {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }

  .footer-links a { 
   padding: 6px;  
    text-align: left;
  }

  .policy {
    display: none;
  }

  .dark-light {
    bottom: 60px;
  }
}

.overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 999999999;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}
.overlaycontent{
  background: white;
    height: 100%;
    margin: 1%; 
    overflow: scroll;
    padding-bottom: 100px;
    padding: 10px;
}

table{
  width:100%;
  table-layout: fixed;
}
.tbl-header{
  background-color: rgba(255,255,255,0.3);
 }
.tbl-content{
  height:300px;
  overflow-x:auto;
  margin-top: 0px;
  border: 1px solid rgba(255,255,255,0.3);
}
th{
  padding: 20px 15px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}
td{
  padding: 15px;
  text-align: left;
  vertical-align:middle;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  border-bottom: solid 1px rgba(255,255,255,0.1);
}



/*==================================================================
[ Fix header ]*/

.table100 {
    position: relative;
    padding-top: 10px;
}

.table100-head {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.table100-body {
    max-height: 685px;
    overflow: auto;
}

.table100.ver2 .table100-head {
    /* 
box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
 */
}

.table100.ver2 th {
    font-family: var(--body-font-ave);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 600; 
    line-height: 1.4;
    background-color: transparent;
    padding: 15px;
    font-weight: bold;
}

.table100.ver2 td {
    font-family: var(--body-font-ave);
    font-size: 0.85rem;
    line-height: 1.75;
    font-weight: 400; 
    line-height: 1.4;
    overflow: hidden;
}

.table100.ver2 .table100-body tr {
    border-bottom: 1px solid #f2f2f2;
}

.table100.ver2 {
    /* border-radius: 10px; */
    overflow: hidden;
    /* 
 box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
 */
}

.table100.ver2 .ps__rail-y {
    right: 5px;
}

.table100.ver2 .ps__rail-y::before {
    background-color: #ebebeb;
}

.table100.ver2 .ps__rail-y .ps__thumb-y::before {
    background-color: #cccccc;
}


.adminTools_CateogryList{

}


.adminTools_CateogryList th{
    background: white !important;
    color: var(--logo-color);
}


.adminTools_CateogryList td{
   color: white !important;
   font-family: var(--body-font-ave) !important; 
   font-size: 1rem !important;
   font-weight: 500 !important;

}

.adminTools_CateogryList tr.highlighted td {
    background: var(--main-color-hmiq-litegreen);
}


.adminTools_CateogryList .date {
    width: 10%;
}
.adminTools_CateogryList .cid {
    width: 15%;
}

.adminTools_CateogryList .cname {
    width: 20%;
}

.adminTools_CateogryList .sub {
    width: 25%;
}


.adminTools_CateogryList .total {
    width: 20%;
}

 

.overlaycontent fieldset {
  border: 0px solid #999999;
  margin: 0px;
  padding: 0px;
 
}
.overlaycontent fieldset.group  { 
  margin: 0; 
  padding: 0; 
  max-width: 220px;
 /*  margin-bottom: 1.25em;  */
  padding: .125em; 
} 

.overlaycontent fieldset.group legend { 
  margin: 0; 
  padding: 0; 
  font-weight: bold; 
 /*  margin-left: 20px;  */
  font-size: 100%; 
  color: black; 
} 

 

.overlaycontent input[type=text] {
    height: 36px;
    width: 220px;
    padding-left: 10px;
    padding-right: 10px; 

}
.taginput_min_width{
  min-width: 800px; 
}

.overlaycontent ul.checkbox  { 
  margin: 0; 
  padding: 0; 
 /*  margin-left: 20px;  */
  list-style: none; 
} 

.overlaycontent ul.checkbox li input { 
  margin-right: .25em; 
} 

.overlaycontent ul.checkbox li { 
  border: 1px transparent solid; 
  display:inline-block;
 /*  width:12em; */
} 

.overlaycontent ul.checkbox li label { 
  margin-right:20px ; 
  font-family: var(--body-font-ave);
    font-size: 0.90rem;
    font-weight: 500;
    text-transform: uppercase;
} 
.overlaycontent ul.checkbox li:hover, 
.overlaycontent ul.checkbox li.focus  { 
  /*background-color: lightyellow; */
  border: 1px gray solid; 
 /*  width: 12em;  */
} 

.large_textarea {
    height: 36px;
    width: 500px;
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.input_txt_new_videoform_long_desc{
  width: 800px !important;
}


.search-box {
  display: flex;
  width: 200px;
  border: none;
  position: relative;
  height: 60px;
  background: #5E43FF;
  border-radius: 15px;
  box-shadow: 0 3px 5px #BEB4FF;
  color: white;
  font-weight: 600;
  cursor: text;
  font-family: var(--body-font-ave);
}
.search-box input {
  position: absolute;
  z-index: 0;
  width: 450px;
  height: 60px;
  border-radius: 15px;
  border: none;
  color: white;
  font-weight: 600;
  background: #5E43FF;
  padding-left: 60px;
}
.search-box input:focus {
  outline: none;
}
.search-box input:focus + .search {
  transform: perspective(400px) rotateY(89deg);
  padding: 3px 0;
  opacity: 0;
}
.search-box i.search {
  height: 20px;
  width: 20px;
  border: 5px solid #fff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transform: rotatez(-45deg);
  top: 13px;
  left: 5%;
  transition: .2s all;
  transform-style: preserve-3d;
  perspective: 400px;
}
.search-box i.search::after {
  content: '';
  display: block;
  width: 5px;
  height: 15px;
  background: #fff;
  position: absolute;
  left: calc(50% - 2px);
  border-radius: 10px;
  top: 101%;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}


.searchcontainer { 
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.searchcontainer input[type=text] {
  position: relative;
  padding: 15px 40px 15px 20px;
  width: 20px;
  color: #525252;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600; 
  border: none;
  border-radius: 5px;
  background: linear-gradient(to right, #FFFFFF 0%, #464747 #F9F9F9 100%);
  transition: width 0.4s ease;
  outline: none;
  font-family: var(--body-font-ave);
  height: 35px;
}
/*.searchcontainer input[type=text]:focus {
  width: 300px;
}*/
.searchcontainer input[type=text]:hover {
  width: 300px;
}

.searchcontainer i {
  position: relative;
  left: -37px;
  color: #8233C5;
}


.adminTools_videosList th{
    background: white !important;
    color: #8233C5;
}


.adminTools_videosList td{
   color: white !important;
   font-family: var(--body-font-ave) !important; 
   font-size: 0.89rem !important;
   font-weight: 500 !important;

}

.adminTools_videosList tr.highlighted td {
    background:white;
    color: #8233C5 !important;
}

body {
    background: white;
    /* fallback for old browsers */
    /*  background: -webkit-linear-gradient(right, #76b852, #8DC26F);
  background: -moz-linear-gradient(right, #76b852, #8DC26F);
  background: -o-linear-gradient(right, #76b852, #8DC26F);
  background: linear-gradient(to left, #76b852, #8DC26F);*/
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0px;
    padding: 0px;
}


/*white dispable color

*/

.disabledIndicator {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

body.fullscreen {
    padding: 10px;
}

div#all {
    width: 1080px;
    margin: auto;
}

div.worksheetbg {
    background-repeat: no-repeat;
    background-position: center top;
}

div.clear {
    clear: both;
}

.disabled {
    cursor: default !important;
    opacity: 0.7;
}

.swal2-container {
    z-index: 999999999 !important;
}

#div-firebase-init-message_box { 
    max-width: 360px;
    background: white;
    box-shadow:0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    margin: 200px auto 16px;
    padding: 32px 24px;
    border-radius: 3px;
}

#divLoginheaderMesssage {
    background: indianred;
    color: white;
    margin: 0px 0px 15px 0px;
    padding: 10px;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 600;
}

.fp-headline-line{
   width: 60% !important;
    margin-left: 20%;
}
.fp-headline{
    width: 100% !important;
    max-width: 500px;  
    line-height: 1.16667; 
    letter-spacing: -0.01em; 
    color: rgb(23, 43, 77) !important;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.3rem !important;
    font-weight: 600;
}
.fp-subline{
    width: 100% !important;
    max-width: 500px;  
    line-height: 25px; 
    letter-spacing: -0.01em; 
    color: #223547 !important;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 30px;
}

#div-firebase-init-message h2 {
    color: #ffa100;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 8px;
}

.companyhyperlink {
    text-decoration: none;
    color: white;
}
.companyhyperlink:hover {
    /*background: var(--main-color-hmiq-litegreen);*/
    color: var(--main-color-hmiq-litegreen) !important;
    /*font-weight: bold !important; */
    text-decoration: underline;
}
.login_support_email{
    float: left;
    text-decoration: none;
    font-family: var(--main-font-family);
    font-size: medium;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--main-hmiq-black);
}
.login_support_email:hover{

}
.login_contact_phone{ 
    background:  var(--main-color-hmiq-litegreen);
    border-radius: 10px;
    padding: 10px;
    font-family: var(--main-font-family);
    color: white;
    font-weight: 600;
    margin-left: 20px;
}
.login_contact_phone:hover{ 
     transform: translateY(1px);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.10), 0 1px 1px 0 rgba(0, 0, 0, 0.09); 
    transition: all 300ms ease;
    font-weight: bold;
}
.stay_bottom_banner{
    /* position: fixed;*/
    left: 0;
    bottom: 0;
    width: 90%; 
    color: white;
    text-align: center; 
    height: 30px; 
    margin: 30px;
}
.bottom-productof{
      float: left !important;
    padding-left: 2%;
    color: #5f6368;
    font-size: small;
    text-align: left;
    width: 300px;
}
#div-firebase-init-message h1 {
    /*  font-size: 22px;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  margin: 0 0 16px;*/
    font-size: 50px;
    font-style: bold;
    margin: 0 0 16px;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: "uppercase";
    letter-spacing: 5px;
}

#div-firebase-init-message p {
    line-height: 140%;
    margin: 16px 0 24px;
    font-size: 14px;
}

#div-firebase-init-message a {
    display: block;
    text-align: center;
    background: #039be5;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    padding: 16px;
    border-radius: 4px;
}

#div-firebase-init-message,
#div-firebase-init-message a {
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
}

#load {
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
    font-size: 13px;
}

.login-page,
#divScreen_LoginPage {
    width: 100%;
    height: 100%;
    padding: 4% 0 0;
    margin: auto;
}

.divLoginElementsForm{
    
    padding: 40px;
     width: 40%;
     height: 40%;
     margin: 10px 10px 10px 10%;
}
#login_lottie{
    width: 38%;
     height:20%;
    background: white;
}  
#lottie_machine_feed{
    width: 38%;
     height:20%;
    background: white;
}  
#lottie_layout_create{
    width: 38%;
     height:20%;
    background: white;
}  
.login_lottie_desc_sub{
    line-height: 2rem;
    text-align:left;
}

#login_contact_phone{
    width: 30;
     height:30;
    background: white;
}  
.login_lottie_desc{ 
    color: #202121; 
    font-size: 2rem;
    letter-spacing: 0; 
    margin: 0 0 16px;
    text-align: left;
}  
.loginform_headline{
    color: #202121; 
    font-size: 1.5rem;
    letter-spacing: 0; 
    margin: 0 0 16px;
    text-align: left;
}
#loginresponsemessage,
#createuser_responsemessage {
    padding: 10px;
    background: #f2f4f6;
    color: #191919;
    font-size: 14px;
    margin-top: 5px;
    vertical-align: middle;
    font-style: bold;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 600;
    text-transform: "uppercase";
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.loader {
    margin: 0px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(0, 128, 0, 0.2);
    border-right: 1.1em solid rgba(0, 128, 0, 0.2);
    border-bottom: 1.1em solid rgba(0, 128, 0, 0.2);
    border-left: 1.1em solid #008000;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF; 
    padding: 35px;
    text-align: center; 
}

.form input {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 600;
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

.form label {
    font-size: 13px; 
    font-weight: normal; 
    left: 10px; 
    top: 15px;
    margin-bottom: 6px; 
    pointer-events: none; 
    transition: 0.2s ease all; 
    -moz-transition: 0.2s ease all; 
        font-weight: 600;
    -webkit-transition: 0.2s ease all;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input:focus~label,
input:valid~label {
    top: -20px;
    /* where the label goes upon interaction */
    font-size: 14px;
    /* font-size change on interaction */
}

.form button {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 600;
    text-transform: uppercase;
    outline: 0;
    background: var(--main-hmiq-black);
    width: 100%;
    border: 0;
    padding: 15px;
    color: white;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}

.form button:hover,
.form button:active,
.form button:focus {
    background:var(--main-color-hmiq-litegreen);
    color: white;
}

.form .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 14px;
}

.form .message a {
    color: #4CAF50;
    text-decoration: none;
}

.form .register-form {
    display: none;
}

.subtitle_sitename {
    background: #29AB87;
    font-size: medium;
    padding: 5px;
    font-family: var(--main-font-family);
    color: whitesmoke;
    text-transform: uppercase;
    font-weight: 600;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
}

.container:before,
.container:after {
    content: "";
    display: block;
    clear: both;
}

.container .info {
    margin: 50px auto;
    text-align: center;
}

.container .info h1 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
}

.container .info span {
    color: #4d4d4d;
    font-size: 12px;
}

.container .info span a {
    color: #000000;
    text-decoration: none;
}

.container .info span .fa {
    color: #EF3B3A;
}

#ProductLineBy2t {
    float: right;
}

.bottomLine {
    margin-top: 100px;
    border-top: 1px solid var(--main-color-hmiq-divider);
    padding: 30px;
}

.bottomLine a {
    color: var(--main-hmiq-black);
    text-decoration: none;
}

.hmiqlogintitle {
    font-size: 50px;
    font-style: bold;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 600;
    /*"Roboto", sans-serif;
"Segoe UI","Helvetica Neue",Helvetica,Verdana,"san-serif";
  "Segoe UI","Helvetica Neue",Helvetica,Verdana,"san-serif"
*/
    /*'OpenSansCondensedBold','HelveticaNeue-CondensedBold',Helvetica,'Arial Narrow',Calibri,Arial,'Lucida Grande',sans-serif
  */
    text-transform: "uppercase";
    letter-spacing: 5px;
}

.mat-div {
    padding: 1px 0 0 0;
    position: relative;
}

.mat-div:after,
.mat-div:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #e2e2e2;
    bottom: 0;
    margin-bottom: 15px;
    left: 0;
    transition: all 0.5s;
}

.mat-div::after {
    background-color: #e67e22;
    transform: scaleX(0);
}

.mat-label {
    display: block;
    font-size: 14px;
    transform: translateY(0px);
    color: #404041;
    text-align: left;
    transition: all 0.5s;
}

.mat-input {
    position: relative;
    background: transparent;
    width: 100%;
    border: none;
    outline: none; 
    font-size: 16px;
}

.is-active::after {
    transform: scaleX(1);
}

.is-active .mat-label {
    color: #8E8DBE;
}

.is-completed .mat-label {
    font-size: 12px;
    transform: translateY(0);
}

.copyright_footer {
    margin: 0 0 0px;
    padding: 0;
    font-size: 13px;
    color: #fff;
    text-align: right;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 600;
}

.version_footer {
    margin: 0 0 0px;
    padding: 0;
    font-size: 13px;
    color: #fff;
    text-align: left;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 600;
}

.div-left {
    float: left;
    padding-left: 10px;
}

.div-right {
    float: right;
    padding-right: 10px;
}

.submit-btn {
    float: right;
    padding: 7px 35px;
    border-radius: 0px;
    display: inline-block;
    background-color: #4b8cfb;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06), 0 2px 10px 0 rgba(0, 0, 0, 0.07);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.submit-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.10), 0 1px 1px 0 rgba(0, 0, 0, 0.09);
}

.makeTopVisible {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #404041;
}


.sk-wave {
    margin: 40px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.sk-wave .sk-rect {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave-small-titlebar {
    margin: 0px auto;
    width: 50px;
    height: 20px;
    text-align: center;
    font-size: 10px;
}

.sk-wave-small-titlebar .sk-rect {
    background-color: #FFFFFF;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect1 {
    -webkit-animation-delay: -1.2s;
    animation-delay: -1.2s;
}

.sk-wave .sk-rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-wave .sk-rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-wave .sk-rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-wave .sk-rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes sk-waveStretchDelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

.center-on-page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#ulVideosByCategoryList li{
    
}
#ulVideosByCategoryList  {
    
    list-style: none;

}

.categorySection {
    display: grid;
    padding-bottom: 15px;
}


.categoryName {font-size: 1.5rem;font-weight: 500;
    text-transform: uppercase;}

.categoryDesc {
  color: rgba(0,0,0,.54);
    font-size: 1rem;
    line-height: 18px;
    overflow: hidden;
    padding: 5px 5px 0px 0px;
}

.categoryListItems {padding-top: 10px;}
.categoryListItems ul {
    padding: 10px 0px 0px 0px;
    list-style: none;
}
.categoryListItems ul li{display: inline-flex;margin:  0px 10px 20px 0px;    
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);}

.categoryListItems ul li div{display: inline-grid;}
.categoryListItems ul li:hover{
  box-shadow:0 0 0 1.5px var(--logo-color); 
    padding: 0px;
    transition: box-shadow 300ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
img.videothumbail {
   width: 260px;
   height: 150px; 
   border-radius:12px 12px 0px 0px;
   /* animation-duration: 1.8s;
   animation-fill-mode: forwards;
   animation-iteration-count: infinite;
   animation-name: placeHolderShimmer;
   animation-timing-function: linear; */
   background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%); 

}
.videoName {
   font-weight: 500;
   padding-top: 5px;
   max-width: 200px;
   min-height: 50px;
   font-size: 1em;
   line-height: 1.5rem;
   max-height: 3.6rem;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: normal;
   padding: 10px;
   margin-bottom: 10px;
   font-family: var(--body-font-avenir);
   text-transform: capitalize;
   color: var(--color-gray-700);
} 
.videoTags {
    min-height: 45px;  
    padding:0px;
}
.videoTagsWithContent{ 
    width: fit-content;
    background: crimson;
    border-radius: 8px;
    color: white;
    margin: 5px 5px 5px 10px;
    font-size: 0.89rem;
    font-weight: bold;
    padding: 5px;
}

.spanHomeSectionHeaderTitle {
    color: #172b4d;
     font-size: 1rem;
    font-weight:600;
    /*letter-spacing: 0.3px;
    line-height: 32px;*/
    margin: 0px;
     font-family: var(--body-font-avenir);
    text-transform: capitalize;
    vertical-align:5px; 
}

.body-content {
     padding:3px;
     font-family: var(--body-font-ave);
}

.spanHomeSectionHeaderSubTitle { 
   line-height: 24px;
    vertical-align: middle;
    display: table-cell;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--body-font-avenir);
    color: var(--color-gray-700);
    font-style: normal;
    display: none;
}

ul{
    list-style:none;
    padding-inline-start:0px;
      margin-top:10px;
    margin-bottom:10px;
}

.content-list-by-category {
  clear: both;
  padding-top: 5px;
}
.divContentSection{
     padding-left: 3%;
    padding-right: 3%;
    display: grid;
}
.border-top-bottom{
   border-top:1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
    margin-top: 24px;
}

.divUlVideosByFeaturedItems { 
}

.categoryActionIcon {
    vertical-align: middle;
    padding:5px;
    font-size: 28px;
    margin:10px;
    cursor: pointer;
    color: #555;
}
.categoryActionIcon:hover { 
    background: transparent;
    color: indianred;
}
.hvr-bubble-top:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    left: calc(50% - 10px);
    top: 0;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #e1e1e1 transparent;
}  

.hvr-bubble-top{
        display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.categoryActionViewAll{  
    text-decoration: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    text-transform: capitalize;
    margin-right: 0px;
}
.divVideosListBySections_SectionActionIcons .categoryActionViewAll span {
  vertical-align: top;
  font-size: 0.89em;
  margin-right: 0px;
  color: var(--logo-color);
  font-weight: 600;  
}
.divVideosListBySections_SectionActionIcons .categoryActionViewAll{
  /* background: var(--border-color); */
  border-radius: 10px;
  padding-left: 10px;
  padding-top: 5px;
}
.categoryActionFollow{  
    display: none;
}


.categoryActionViewAll:hover{
   outline: 0px;
   background: var(--color-subtle-background);
   opacity: 0.7;
}

.novideosbannermesasge {
    clear: both;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: #42526e;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    padding:10px;
    margin-top:20px;
    margin-bottom:20px;
}
.novideosbannermesasge_title{
  font-family: var(--body-font-ave);
  font-size: 16px !important;
  font-weight:500;
}

.divTableSearchView{ 
    background: white; 
    padding: 5px 10px 5px 10px !important; 
    float: left;
    display: flex; 
    width: 90%;
    height: 60px !important;
    margin: 20px;
}
 .divTableSearchView i{
    color: #999;
    margin-top: 13px;
    margin-right: 10px;
  }

.divTableSearchView input{ 
  border: none !important;  
}
.divTableSearchButtonView{
      margin-top: 6px;
    float: left;
    margin-left: 30px;
    cursor: pointer;
    padding: 5px;
}
.buttonSeachViewClose,
.buttonShowAdvancedSearch{
    color: #999999;
    margin-top: 5px;
} 
.content-data-set-view {
    clear: both;
    padding:10px;
    min-height: 700px;
    background:var(--theme-bg-color);
}
span.divRecentSearchItemsView {
    clear: both;
    display: flow-root; 
    padding: 15px 10px 0px 10px;
    color: #42526e;
    width: 64%;
    overflow: visible;
    height: 50px;
}


.top-bar {
    margin-left:0%;
    display:flex;
    border-bottom: 1px solid #f1f5f8;
}

span.recentSearchItem {
    text-decoration: none;
    color: #2196F3!important;
    margin-right: 10px; 
    padding: 5px; 
}
span.recentSearchItem:hover {
    color:white !important;
    background:var(--logo-color);
    cursor:pointer;
}


.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px; }
  .search-bar .icon {
    width: 45px;
    height: 20px; }
  .search-bar input {
    width: 555px;
    height: 45px;
    line-height: 45px;
    padding: 0 5px;
    border: none;
    background-color: transparent;
    font-size: 14px; }
  .search-bar.rounded-searchbar {
    border-radius: 45px; }
  .search-bar.dark {
    background: rgba(0, 0, 0, 0.5); }
    .search-bar.dark input {
      color: #fff; }



.ulVideos li{display: inline-flex;cursor: pointer;}

.ulVideos  li div{
  display: inline-grid;
  box-shadow:1px 1px 6px rgb(0 0 0 / 26%);
  border-radius:10px;
  margin: 5px 10px 5px 5px;
}
.ulVideos  li:hover{/*
  border-radius: 10px;
    cursor:pointer;  
    transform: scale(1.1);
z-index:1000;
margin:10px;
animation:scale 1s linear;
    background: #e8f0fe;  */
    filter: brightness(0.5);
}

/*Horizontal listview with arrow & cursor navigation - BEGIN */

.horizontallist .menu-wrapper {
  position: relative;
  max-width: 100%;
  height: 100%;
  margin:5px auto; 
  overflow-x: hidden;
  overflow-y: hidden;
  display:inline-grid;
}

 .horizontallist .menu {
  height: 100%; 
  box-sizing: border-box;
  white-space: nowrap;
  overflow-x: hidden; 
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.horizontallist .menu .item {
  display: inline-block;
  width: 100px;
  height: 100%;
  outline: 1px dotted gray;
  padding: 1em;
  box-sizing: border-box;
}

.horizontallist .paddles {
}


 .horizontallist .paddle {
  position: absolute;
  top: 0;
  width: 5em;
  height: 85%;
  margin: 5px 0px 10px 0px;
  border: none;
  opacity: 0.5;
  cursor: pointer;
}

 .horizontallist .paddle:hover {
  opacity: 1;
  cursor: pointer;
}

.horizontallist .left-paddle {
  left: 0;
}

.horizontallist .right-paddle {
  right: 0;
}

.hidden {
  display: none;
}

.horizontallist .screenpadding{
  padding: 3%;
}

/*Horizontal listview with arrow & cursor navigation - END*/
a.topmenu_home {
      margin-left: 20px;
   /* color:#25a9ea;*/
    cursor:pointer;
    font-weight: 500;
    text-transform: capitalize;
    padding-top: 20px;
    font-family: var(--body-font-ave);
    font-size: medium;
    color: #172b4d;
}

a.topmenu_home i { 
 display:none;
} 
.divTopMenuOptions .aTopMenuSearch i{
  display:inline-flex;
}
#aTopMenuMore  i{
  display:inline-flex;
}


a.topmenu_home:hover {
   border-bottom: 3px solid #25a9ea;
    padding-bottom: 5px;
   cursor:pointer;
  color:#25a9ea;
}
.divTopMenuOptions{
    /* margin-top:20px; */
    /*margin-bottom:10px;*/
}
.divTopMenuOptions .selected{
    border-bottom: 3px solid #25a9ea;
    padding-bottom: 5px;
}

.btnTopMenuLogin, .btnTopBarLogin {
    background: #25a9ea;
    width: 120px;
    padding: 5px;
    margin-top: 10px;
    color: white;
    font-weight: 600;
}
.divTopMenuLoginButton {
    right: 0;
    margin-right: 20px;
    position: absolute;
}
.divTopMenuLoginButton .g_id_signin {
    margin-top:15px; 
} 
.divVideoInfoAddtionalInfo {
   font-weight: 400;
   line-height: 35px;
   color: var(--color-gray-700);
   display: inline-grid;
   box-shadow: 1px 1px 6px rgb(0 0 0 / 16%);
   padding: 10px;
   border-radius: 8px;
   width: 99%;
   margin: 5px;
   background: white;
}

.spanVideoInfoLabel {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray-600);
  font-family: var(--body-font-avenir);
}


.spanVideoInfoValue {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--body-font-avenir);
}


.videoInfoValueScorecard {
    overflow: hidden;
}

.videoInfoLongDesc {
    margin: 10px;
}
.defaultTextFont{
    font-size: 1em;
    font-weight: 500;
    font-family: var(--body-font-avenir);
}
.defaultTextFont_small{
     font-size: 0.89em;
    font-weight: 500;
    font-family: var(--body-font-avenir);
}
.videoInfoEditorChoice {
    padding: 8px;
    border-radius: 7px;
    font-weight: 600 !important;
}

.videoInfoSpecialTag {
      padding: 8px;
    border-radius: 7px;
    margin-left: 10px;
    min-width: 150px;
    text-align: center;
    font-size: 1rem;
    color: white;
    background: var(--color-secondary);
    font-family: var(--body-font-avenir);
    font-weight: 500;
}

.columnDataAslink {
    cursor: pointer;
    padding: 0px 5px 0px 5px;
    border-bottom:1px dotted #aaaaaa;
}
.columnDataAslink:hover {
    background: var(--main-color-grid-highlight);
}

ul.ulVideoRelatedItemsList {
    width: 100%;
}

ul.ulVideoRelatedItemsList li {
   padding:10px;
}
/* ul.ulVideoRelatedItemsList img {
  width:100%;
} */
.divVideoRelatedItemsList {
    display: grid;
    width: 100%;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0 !important;
  background:white;
  z-index: 999999;
  width: 100%;
}
/* .sticky + .body-content {
  padding-top: 102px;
} */

/* THE DIV */
.simple-ss {
  width:800px;
  height:250px;
  background-color:red;
  margin:auto;
  background-position:0;
  background-repeat:no-repeat;
  background-size:cover;

/* ANIMATING STUFF */
  animation-name: slide;
  animation-duration: 13s;
  animation-direction: normal;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

/* NOTE CODEPEN AUTOGENERATING -PREFIXES */
@keyframes slide {
  0% {background-position:0 0;}
  16.66% {background-position:0 0;}
  33.32% {background-position:-800px 0;}
  49.98% {background-position:-800px 0;}
  66.64% {background-position:-1600px 0;}
  83.30% {background-position:-1600px 0;}
  100% {background-position:0 0;}
}

.divUlVideosByFeaturedItems .mySlides {display:none}
.divUlVideosByFeaturedItems .w3-left, .w3-right, .w3-badge {cursor:pointer}
.divUlVideosByFeaturedItems .w3-badge {height:13px;width:13px;padding:0}
.slidebottomtext{background:#000;opacity:0.5;padding:5px;color:white;}

.textunderimage {
    background: red;
    /* opacity: 0.5; */
    padding: 5px;
    color: white;
    font-weight: bold;
    font-size: small;
}
.slide-main-content {
    position: relative;
    max-width: 100%;
    height: 100%;
    margin: 1em auto;
    overflow-x: hidden;
    overflow-y: hidden;
    display:inline-grid;
}

.slide-handles {
  margin-top: -250px;
  z-index: 5000;
}

.divHomeScreenSectionFeaturedItems .slide-handles{
  margin-top: -250px;
  z-index: 5000;
  width: 100px;
  height: 100px;
   
}

.handle-left,.handle-right{
  margin-top: -200px;
  z-index: 5000;
  width: 80px;
  height: 100px;
  opacity: 0.5;
  background: black;
  color: white; 
  padding: 20px;
}   
 
.handle-left:hover,.handle-right:hover{
   background: var(--logo-color);
    opacity: 1;
    cursor:pointer;
    color: white;
    padding: 20px;
   
} 
  

 .slide-main-content .slide-handles {
  position: absolute;
  top: 40%;
  width: 100%;
  border: none;
  opacity: 0.5;
  cursor: pointer;
  margin-left: 30px;
  padding-right: 50px;
}

 .slide-main-content .slide-handles:hover {
  opacity: 1;
  cursor: pointer;
}

.slide-main-content .handle-left {
  left: 0;
  font-size: 100px !important;
}
.slide-handles i{
    background: #000;
    opacity: 0.5;
    color: white;
    padding: 20px;
}

 .slide-handles i:hover{
    background: var(--logo-color);
    opacity: 1;
    cursor:pointer;
    color: white;
    padding: 20px;
}
.slide-main-content .handle-right {
  right: 0 !important;
}


.feedback-box button { 

   background-color: #F58F23;
  color: #fff;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  font-weight: 300;
  font-size: 16px;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

button#feedback {
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-block;
  -moz-border-radius: 4px 0 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 0 0 0;


   background-color: #F58F23;
  color: #fff;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  font-weight: 300;
  font-size: 16px;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

 
.feedback-box button:hover { background-color: #f3830b; }

.feedback-box {
  z-index: 10;
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 500px;
  -moz-perspective: 1000;
  -webkit-perspective: 1000;
  perspective: 1000;
  pointer-events: none;
}

.feedback-box .content {
  min-height: 335px;
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  background: white;
  border: 1px solid #ddd;
  border-right: none;
  border-bottom: none;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -moz-transition: all 0.4s cubic-bezier(0.685, -0.245, 0.19, 1.315);
  -o-transition: all 0.4s cubic-bezier(0.685, -0.245, 0.19, 1.315);
  -webkit-transition: all 0.4s cubic-bezier(0.685, -0.245, 0.19, 1.315);
  transition: all 0.4s cubic-bezier(0.685, -0.245, 0.19, 1.315);
}

.feedback-box .confirm {
  z-index: 2;
  color: #fff;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #41C289;
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -moz-transition: all 0.4s cubic-bezier(0.685, -0.245, 0.19, 1.315);
  -o-transition: all 0.4s cubic-bezier(0.685, -0.245, 0.19, 1.315);
  -webkit-transition: all 0.4s cubic-bezier(0.685, -0.245, 0.19, 1.315);
  transition: all 0.4s cubic-bezier(0.685, -0.245, 0.19, 1.315);
}

.feedback-box .confirm h1 {
  text-align: center;
  font-weight: 600;
  Text-transform: uppercase;
  font-size: 70px;
  margin-top: 115px;
  letter-spacing: -.08em;
  line-height: 1.2;
}

.feedback-box .confirm h1 i { vertical-align: 3px; }

.feedback-box .confirm h1 span {
  display: block;
  font-size: 40%;
  font-weight: 300;
  text-transform: none;
  letter-spacing: .02em;
}

.feedback-box.show { pointer-events: auto; }

.feedback-box.show .content {
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
 filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.feedback-box.show-confirm .confirm {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
 filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.feedback-box.error textarea { border-color: red; }

.feedback-box header {
  z-index: 10;
  background-color: #F7F7F7;
  color: #F58F23;
  font-weight: 400;
  font-size: 18px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.feedback-box section {
  padding: 30px;
  overflow: hidden;
  -moz-transition: all ease;
  -o-transition: all ease;
  -webkit-transition: all ease;
  transition: all ease;
  font-family: var(--body-font-avenir);
  font-weight:400;
}

.feedback-box section textarea {
  z-index: 0;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  color: #333;
  border: 1px solid #ddd;
  height: 100px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--body-font-avenir);
}

.feedback-box section textarea:focus {
  outline: none;
  border: 1px solid #999;
}

.feedback-box section button {
  display: block;
  padding: 15px;
  text-align: center;
  width: 100%;
}


.feedback-box a.close {
  z-index: 10;
  color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0px;
  right: 0px;
  font-weight: 600;
  /* padding: 20px; */
  display: inline-block;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
} 
.feedback-box a.close i{
   vertical-align: middle;
   padding:5px;
   font-size: 28px;
   margin:10px;
   cursor: pointer;
   color: #F58F23;
   margin-right: 30px;
   font-weight: 400;
}

.feedback-box section button:hover {
  background:var(--logo-color);
}  

.spanSubmitFeedbackProgress {
  background-color: var(--color-success);
  color: #fff;
  border: none;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  display: flex;
  font-weight: 500;
}

.feedback-box a.close i:hover{
   background: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.feedback-box a.close:hover { color: rgba(0, 0, 0, 0.7); }
.rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 150px;
  position: relative;
}

.rating-0 {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.rating > input {
  display: none;
}

.rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: .3s;
}

.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.emoji-wrapper:before,
.emoji-wrapper:after {
  content: "";
  height: 15px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}

.emoji-wrapper:before {
  top: 0;
  background: linear-gradient(to bottom, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
}

.emoji-wrapper:after {
  bottom: 0;
  background: linear-gradient(to top, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
}

.emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .3s;
}

.emoji > svg {
  margin: 15px 0;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

#rating-1:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

#rating-2:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
}

#rating-3:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-300px);
          transform: translateY(-300px);
}

#rating-4:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-400px);
          transform: translateY(-400px);
}

#rating-5:checked ~ .emoji-wrapper > .emoji {
  -webkit-transform: translateY(-500px);
          transform: translateY(-500px);
}




#return-to-top { 
  position: fixed;
  bottom: 120px;
  right: 20px; 
  background: #fafafa;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
  padding: 10px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; 
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: background-color .3s cubic-bezier(.4,0,1,1),box-shadow .3s cubic-bezier(.4,0,1,1),transform .4s cubic-bezier(.25,.8,.25,1),-webkit-transform .4s cubic-bezier(.25,.8,.25,1);
  transition: background-color .3s cubic-bezier(.4,0,1,1),box-shadow .3s cubic-bezier(.4,0,1,1),transform .4s cubic-bezier(.25,.8,.25,1),-webkit-transform .4s cubic-bezier(.25,.8,.25,1);
}
#return-to-top i {
  color: #5f6368;
  /* margin: 0; */
  /* position: relative; */
  /* left: 26px; */
  text-align: center;
  font-size: 36px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
    background: var(var(--logo-color));
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.notloggedInInfoHeader {
   color: white !important;
   margin: 0px 0px 10px 0px;  
   background: var(--logo-color);
   border-radius: 10px;
   padding: 7px;
   text-align: center;
}
.divContentFoundViewInfoHeader {
  color: white !important;
  margin: 8px;  
  background: var(--color-alert);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}
.btnloginLater {
    background: transparent !important;
    border: none;
    font-size: 1rem;
    color: white;
    margin-left: 25px;
    cursor:pointer;
}

.btnloginLater:hover {
   text-decoration:underline;
   font-size: 1.2rem;
   font-weight: bold;
}


.welcomepopup_content {
    font-size: 2rem;
    text-align: left;
    line-height: 4rem;
    display: grid;
    padding: 10px;
}

.welcomepopup_name {
    padding-left: 10px;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

#input_txt_global_top_search{
  text-transform:none;
  width: 95%;
  height: 45px;
  font-size: 1.1rem;
}
#input_txt_global_top_search::placeholder {
  color: var(--body-color); 
  text-transform:none;
  width: 95%;
  height: 45px;
  font-size: 1.1rem;
}


/*https://codepen.io/digitalinfamy/pen/oEOaON?editors=0010*/
.materialtabs_container{ 
  padding:0;
  margin:10px;
  border-radius:5px;  
  
}

.materialtabs_container header {
    position: relative;
}

.hide {
    display: none;
}

.materialtabs_container .tab-content {
        padding: 25px 10px 25px 10px;
}

.material-tabs {
    position: relative;
    display: block;
    padding:0;
    border-bottom: 1px solid #e0e0e0;
}

.material-tabs>a { 
  position: relative;
  display:inline-block;
  text-decoration: none;
  padding: 0px 22px 5px 22px; 
  cursor:pointer;
  font-weight: 500;
  text-transform: capitalize; 
  font-family: var(--body-font-ave);
  font-size: 14px;
  color: #172b4d; 
  text-align: center;
}

.material-tabs>a.active {
    font-weight: 700;
    outline:none;
    color:#1C94C4 !important;
}

.material-tabs .active:after {
    /*  content: "\2212";*/
    content: "";
}


.material-tabs>a:not(.active):hover {
    background-color: inherit;
    color: #7c848a !important;
}
 
.tab_indicator_bottom_bar {
    position: relative;
    z-index: 10;
    bottom: 0;
    height: 3px;
    background: #1C94C4;
    display: block;
    left: 0;
    transition: left .2s ease;
    -webkit-transition: left .2s ease;
}


.tab1-tab.active ~ span.tab_indicator_bottom_bar {
    left: 20px;
    width: 60px;
}

.tab2-tab.active ~ span.tab_indicator_bottom_bar {
    left: 110px;
    width: 60px;
}

.tab3-tab.active ~ span.tab_indicator_bottom_bar {
    left: 200px;
    width: 100px;
}

.tab4-tab.active ~ span.tab_indicator_bottom_bar {
    left: 330px;
    width: 90px;
}
.tab5-tab.active ~ span.tab_indicator_bottom_bar {
    left: 450px;
    width: 70px;
}

.playerIndexInnerUl {
   display: flex;
  flex-wrap: wrap;
}
.teamIndexInnerUl {
  justify-content: space-evenly;
}
.teamIndexInnerUl .teamName{
  text-transform: capitalize;
}
.playerWithImageLabel{
}

.player-thumbnail img{
  width:150px;;
  height:150px;
  
  /*animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  box-shadow: var(--common-box-shadow-white);
  cursor:pointer;
  background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);   */
}
.player-thumbnail{
  /* width:150px;;
  min-height:150px; */
}

.player-thumbnail .playerName{
 font-family: var(--body-font-ave);
 font-size: 1rem !important;
 font-weight: 500;
 text-transform: capitalize;
 color: var(--color-gray-700);
}

.onlyPlayerName{
  cursor:pointer;
  text-transform:uppercase;
  font-family: var(--body-font-avenir);
  font-weight: 500;
  background: transparent;
  color: var(--color-gray-700);
  box-shadow:0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
  border-radius: 8px;
  padding: 20px;
}


.playerIndexQuickLink {
  cursor:pointer;
  text-transform:capitalize;
  font-family:var(--body-font-avenir);
  font-weight:500;
  padding:10px;
  border-radius:6px;
  border: 1px solid var(--logo-color);
  margin-right:10px;
  background: white;
  margin-top: 5px;
  height:40px;
  font-size: 0.89rem;
 
}
.playerIndexQuickLink:hover {
  background: var(--logo-color);
  color: white;
  font-weight:600;
}

.divVideosNavigationLinks .selectedView {
  background: var(--logo-color);
  color: white;
  font-weight:600;
}
.divPlayersNavigationLinks {
     display: flex;
  flex-wrap: wrap;
}

.playeritem:hover {
    filter: brightness(0.5); 
      box-shadow: 1px 1px 6px rgb(0 0 0 / 26%) !important;
      border-radius:10px; 
}

.tourVersionName {
    background: transparent;
    cursor: pointer; 
    box-shadow:0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    border-radius: 8px; 
}
.tourVersionName:hover {
    background: var(--color-venn-0);
    color:#404041; 
}
.touritem {
    max-width: 45%;
    display: flex;
}
.underlineOnHover{
  text-decoration: none;
  cursor: pointer;
}

.underlineOnHover:hover{
  text-decoration: underline;
  cursor: pointer;
  color:#25a9ea;
}
  
.divVideosListBySections_SectionTitleSubTitle{
  clear:both;
  float: left; 
  border-left: 5px solid var(--logo-color);
  padding-left: 7px;
} 
.sectionLeftVerticalLine{
  border-left: 5px solid var(--logo-color);
  padding-left: 7px;
}
.divVideosListBySections_SectionActionIcons{
  float: right;
  margin-right: 0px;
}   
/*
#ytplayer {
        display: inline-block;
        position: relative;
    }
    #ytplayer.shown::after {
        content:"";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        cursor: pointer;
        background-color: black;
        background-repeat: no-repeat;
        background-position: center; 
        background-size: 64px 64px;
        background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCI+PHBhdGggZD0iTTI1NSAxMDJWMEwxMjcuNSAxMjcuNSAyNTUgMjU1VjE1M2M4NC4xNSAwIDE1MyA2OC44NSAxNTMgMTUzcy02OC44NSAxNTMtMTUzIDE1My0xNTMtNjguODUtMTUzLTE1M0g1MWMwIDExMi4yIDkxLjggMjA0IDIwNCAyMDRzMjA0LTkxLjggMjA0LTIwNC05MS44LTIwNC0yMDQtMjA0eiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==);
    }*/
#divBrowseRootLayout{
  margin:0px 2.5% 2.5% 2.5%;
}
#divUserHistoryRootLayout{
    margin:0px 2.5% 2.5% 2.5%
}
 .material-tabs-browse-catalogue{
    padding-left: 25%;
}

.skeleton-loader{

}
.skeleton-loader:empty {
  width: 100%;
  height: 15px;
  display: block;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 80%
    ),
    #d1d1d1;
  background-repeat: repeat-y;
  background-size: 50px 500px;
  background-position: 0 0;
  animation: shine 1s infinite;
}

@keyframes shine {
  to {
    background-position: 100% 0;
  }
}
.notloggedInInfoHeaderContent{
  display: inline-flex;
}
.notloggedInInfoHeaderText{
  margin-top: 8px;
  font-size: 18px;
}
.notloggedInInfoHeaderButtons{
  margin-left: 50px;
  display:flex;
}

#divPlaylistAllItemsRootLayout{
  margin:35px;
}

.divPlaylistHeaderView{
    background: white;
    padding: 10px 20px 10px 10px;
    display: flex;
    width: 100%;
}
.ulPlaylistVideosList li{
  margin: 5px !important;
}
.divVideoPlayerHeaderView{
  display: flex;
  background: #fff;
  padding: 10px 5px 10px 10px;
  border-bottom: 1px solid #f1f5f8;
}
.divVideoPlayerHeaderView .spanHomeSectionHeaderTitle{
  margin-top:20px;
}
.spanVideoSource{
  color: white;
  margin-bottom: 5px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  padding: 3px;
}
.divBrowseFilterControls{
    display: flex;
    margin-left: 11%;
}
 .m-p_l_10{

}
.divBrowseFilterControls .SearchInputBox{
    border:1px solid #999999;
    width: 40%;
}
/*.installContainer{
  display: none !important;
}*/

#ulHomeScreenPlayersList li:hover { 
    filter: brightness(0.5); 
}
#ulHomeScreenPlayersList li .playerThumbnail {
    height: 120px;
    width: 120px;
    /* border: 1px solid #ccc; */
    border-radius:50%;
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);
}    
#ulHomeScreenUserFavPlayersList li .playerThumbnail {
  height: 150px;
  width: 150px;
  border: 1px solid #ccc;
  border-radius: 24px;
}
 .divUlVideosByPlayers .ulVideos li div{
    border:none;
    box-shadow: none;
}
.divUlVideosByUserFavPlayers .ulVideos li div{
  border:none;
  box-shadow: none;
}
 .divHomeScreenSectionFeaturedItems .ulVideos li div{
    border:none;
}
.divReadAboutThisViewLink_unused { 
  cursor: pointer;
  color: #172b4d;
  padding: 5px;
  width: auto;
  text-align: left;
  font-weight: 500;
  margin-right:10px;
  text-decoration: underline;
}
.btnReadAboutThisViewLink :hover { 
  cursor: pointer;
  color: var(--logo-color); 

  text-decoration: underline;
}

.divMomentsOfVideo {
    margin: 5px;
    padding: 10px;
    color: var(--color-gray-600);
    display: inline-grid;
    border-radius:8px;
    box-shadow: 1px 1px 6px rgb(0 0 0 / 16%);
    width: 97%;
    background: white;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--body-font-avenir);
}

.divMomentsOfVideo ul{
  margin:0px;
}
.divMomentsOfVideo ul li{
  display:inline-flex !important;
  margin-left:10px;
}
.divMomentsOfVideo .timing{ 
    margin-right:10px;
    cursor:pointer;
    color: var(--color-gray-700);
    font-weight:600;
    font-size: 0.89rem;
}
.divMomentsOfVideo .timing:hover{
   border:none;
   background:white;
   color:var(--logo-color);
   font-weight:bold;
}
.divMomentsOfVideo .spanMomentLabel {
    margin: 2px 20px 0px 10px;
    width: 95%;
}

/*https://www.jqueryscript.net/demo/Infinite-Automatic-Scroller-smoothDivScroll/css/smoothDivScroll.css*/

.makeMeScrollable{
  width:100%;
  position: relative;
}

    /* Replace the last selector for the type of element you have in
       your scroller. If you have div's use #makeMeScrollable div.scrollableArea div,
       if you have links use #makeMeScrollable div.scrollableArea a and so on. */
.makeMeScrollable div.scrollableArea img{
      position: relative;
      float: left;
      margin: 0;
      padding: 0;
      /* If you don't want the images in the scroller to be selectable, try the following
         block of code. It's just a nice feature that prevent the images from
         accidentally becoming selected/inverted when the user interacts with the scroller. */
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -o-user-select: none;
      user-select: none;
}

/* You can alter this CSS in order to give Smooth Div Scroll your own look'n'feel */

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
  /* The hotspots have a minimum width of 100 pixels and if there is room the will grow
    and occupy 15% of the scrollable area (30% combined). Adjust it to your own taste. */
  min-width: 75px;
  width: 10%;
  height: 100%;
  /* There is a big background image and it's used to solve some problems I experienced
    in Internet Explorer 6. */
  background-image: url(../images/big_transparent.gif);
  background-repeat: repeat;
  background-position: center center;
  position: absolute;
  z-index: 200;
  left: 0;
  /*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
  cursor: url(../images/cursors/cursor_arrow_left.png),
   url(../images/cursors/cursor_arrow_left.cur),w-resize;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
  background-image: url(../images/arrow_left.gif);        
  background-color: #fff;
  background-repeat: no-repeat;
  opacity: 0.35; /* Standard CSS3 opacity setting */
  -moz-opacity: 0.35; /* Opacity for really old versions of Mozilla Firefox (0.9 or older) */
  filter: alpha(opacity = 35); /* Opacity for Internet Explorer. */
  zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
  min-width: 75px;
  width: 10%;
  height: 100%;
  background-image: url(../images/big_transparent.gif);
  background-repeat: repeat;
  background-position: center center;
  position: absolute;
  z-index: 200;
  right: 0;
  cursor: url(../images/cursors/cursor_arrow_right.png), url(../images/cursors/cursor_arrow_right.cur),e-resize;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
  background-image: url(../images/arrow_right.gif);
  background-color: #fff;
  background-repeat: no-repeat;
  opacity: 0.35;
  filter: alpha(opacity = 35);
  -moz-opacity: 0.35;
  zoom: 1;
}

/* The scroll wrapper is always the same width and height as the containing element (div).
   Overflow is hidden because you don't want to show all of the scrollable area.
*/
div.scrollWrapper
{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

div.scrollableArea
{
  position: relative;
  width: auto;
  height: 100%;
}
.divHomeScreenSectionFeaturedItems .divSectionHeaderView{
  display:none;
}
.imgFeaturedThumbnailContainer{
  min-height: 200px; 
  border:none !important;
}
.imgFeaturedThumbnail{
  width: 380px;
  height: 200px; 
  cursor:pointer;
  min-height: 200px; 
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%); 
}
.spanGroundName{
  color: white;
  text-transform: capitalize;
  cursor: pointer;
  width: 100%;
  background: rgba(0,0,0,0.5);
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 15px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  margin-top: 10px !important;
  overflow: hidden;
  white-space: pre-line;
}
.groundImageThumbnail{
      width: 100% !important;
      height: 200px;
      aspect-ratio: auto 200 / 200;
      border-radius: 10px;
      animation-duration: 1.8s;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
      animation-name: placeHolderShimmer;
      animation-timing-function: linear;
      background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);
}
.groundItem{
    margin: 5px 16px 16px 0px; 
    box-shadow: 1px 1px 6px rgb(0 0 0 / 26%);
    cursor: pointer;
    border-radius: 10px;
    text-transform: capitalize;
    width: 30%;
}
.groundItem:hover{
      background: var(--color-success);

} 

.divGlobalSearchView{
  display: inline-table;
}
.divGlobalSearchControlsView{
  display: flex; 
  border: 2px solid var(--logo-color);
  border-radius: 10px;
  padding: 5px 10px 5px 10px !important;
}
.divGlobalSearchResultsRootDiv{
  /* max-height: 400px;
  overflow-y: scroll; */
}

.searchResultSectionName {
    line-height: 24px;
    vertical-align: middle;
    display: table-cell;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--body-font-avenir);
    color: var(--logo-color);
    font-style: normal;
    font-size:1em;
    padding: 12px 0px;
}


.searchresultlabel {
  line-height: 24px;
  vertical-align: middle;
  display: table-cell;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--body-font-avenir);
  color: #555;
  font-style: normal;
  font-size: 1em;
  background:white;
  border-radius: 10px;
  border: 1.5px solid var(--logo-color);
  padding: 10px;
  margin: 2px 2px 2px 2px;
  cursor:pointer;
}
.searchresultlabel:hover {
     background:var(--logo-color);
     color:white;
     border:none;
     font-weight:500;
}
.divSearchResultSectionValues {display: inline-flex;flex-direction: row;flex-wrap: wrap;}
.divSearchResultSectionValues article{margin:0px 10px;cursor:pointer;}
.divSearchResultSectionValues article:hover{ border:1px solid var(--logo-color);border-radius:10px;};
.divGlobalSearchResultsBottomOptions {
    border-top: 1px solid #d1d1d1;
    margin-top: 5px;
    padding-top: 5px;
}

.btnGlobalSearchResultsSwitchToAdvancedSearch {
    float: right;
    background: var(--logo-color);
    color: white;
    font-weight: 500;
    margin-right: 20px;
    text-align: center;
    padding: 5px 20px 5px 20px;
}

.btnGlobalSearchGetMatchingVideos {
    /* font-size: small;
    border-radius: 8px; */
    float: right;
    background: var(--logo-color);
    color: white;
    font-weight: 500;
    margin-right: 20px;
    text-align: center; 
    padding:10px;
}


.btnGlobalSearchGetMatchingVideos:hover {
  background: #172b4d;
  font-weight: 600;
}
.spanGlobalSearchZeroResultsBanner {
    font-size: small;
    padding: 5px;
}
.copyrightDisclaimerNote {font-size: small;font-weight: 400;line-height: 20px;margin:5px;border-radius: 10px;}
.videoShareOptions {
    font-weight: 400;
    line-height: 35px;
    color: var(--mdc-theme-text-primary-on-light);
    display: flex;
    box-shadow: 1px 1px 6px rgb(0 0 0 / 16%);
    padding-bottom: 20px;
    border-radius: 8px;
    width: 96%;
    margin: 5px;
}

.btnFacebook {
    background: #1878f2;
    width: 60px;
    color: white;
    border: none;
    border-radius: 8px;
}


.btnTwitter {
    background: #1DA1F2;
    width: 60px;
    color: white;
    border: none;
    border-radius: 8px;
}


.btnInstagram {
    background: #E1306C;
    width: 60px;
    color: white;
    border: none;
    border-radius: 8px;
}


.btnWhatsapp{
    background: #25D366;
    width: 60px;
    color: white;
    border: none;
    border-radius: 8px;
}

.videoShareOptions button:hover{
    opacity:0.6;
}
.videoInfoRow{
  display: flex;
  width: 96%;
}
.videoInfoRow .spanVideoInfoLabel{
    width: 150px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-600);
    font-family: var(--body-font-avenir);
}


.divHomeScreen_videos_Section{
  /* box-shadow: 1px 1px 6px rgb(0 0 0 / 16%);
    padding: 8px;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;*/
}




.divTopMenuOptions .dropbtn {
    cursor: pointer;
}

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

.divTopMenuOptions .dropdown-content {
     display: none; 
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.divTopMenuOptions .dropdown-content span {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family:var(--body-font-avenir);
}
 .dropdown-content span:hover {
    background-color: #f1f1f1;
    color:var(--logo-color) !important;
    font-weight:600 !important;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: var(--logo-color);
}

.dropbtn {
    cursor: pointer;
}

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

.dropdown-content {
     display: none; 
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.dropdown-content span {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family:var(--body-font-avenir);
    border: none;
}



.topmenu_heading {
    background: azure;
    font-size: 1.1rem;
}

.topmenu_menu_option {
    color: white !important;
    font-size: 1rem;
}

.topmenu_menu_dropdown_layout {
    background: var(--logo-color); 
    color: white;
    min-width: 400px;
    display: inline-flex;
    /* width: 500px; */
    height: fit-content;
    margin-top: 10px;
}
#divAllPlaylistRootLayout, #divAllVideosRootLayout{
  padding: 20px;
}

.videoActions, .playlistActions {
  padding: 5px;
  display: flex;
  width:96%;
  justify-content: space-between;
  /* border-top: 0.5px solid #ccc; */
}
.videoScreenActionItems{
  width:auto !Important;
}
.videoActions, .playlistActions {
   padding: 5px;
   display: flex;
   width:96%;
   justify-content: space-between;
   /* border-top: 0.5px solid #ccc; */
}
.videoActions span, .playlistActions span{
    padding: 5px;
    font-size:0.80em;
    font-weight: 500;
    color: var(--color-gray-700);
    font-family: var(--body-font-avenir);
    cursor: pointer;
}
.videoActions span:hover , .playlistActions span:hover{
   color: var(--logo-color);
   font-weight:600;
}
.videoActions span i, .playlistActions span i{
   vertical-align: text-top;
   padding-right: 2px;
}

 .divVideosListBySections_SectionActionIcons i{
     margin-right: 5px; 
    color: var(--logo-color); 
  }
  .divVideosListBySections_SectionActionIcons i:hover{
     color:var(--logo-color);
     font-weight: 600;
  }


#divAllVideosRootLayout  .ulVideos  li div{
  display: inline-grid;
  box-shadow:1px 1px 6px rgb(0 0 0 / 16%);
  border-radius:10px;
  margin: 0px 10px 20px 0px;

}

#divUserHistoryRootLayout  .ulVideos  li div{
  display: inline-grid;
  box-shadow:1px 1px 6px rgb(0 0 0 / 16%);
  border-radius:10px;
  margin: 0px 10px 20px 0px;

}

.divHomeScreenSectionFeaturedItems .ulVideos  li div{
  display: inline-grid;
   box-shadow:none;
  border-radius:10px;
  margin:  0px 5px 5px 0px;
}


.btnLoadMoreVideos{
    background: var(--color-venn-0);
    padding:20px;
    width: 300px;
    font-size:medium;
    font-weight:500;
    color: var(--color-gray-900);
    font-family: var(--body-font-avenir);
}

.btnViewAllCollections{
  background-image: linear-gradient(to right, #4CA1AF 0%, #C4E0E5  51%, #4CA1AF  100%);
  padding:20px;
  width: 300px;
  font-size:medium;
  font-weight:500;
  color: var(--color-gray-900);
  font-family: var(--body-font-avenir);
}


.spanLoadMoreVideosIndicator{
      background: var(--logo-color);
      padding:20px;
      font-size:medium;
      font-weight:500;
      color: white;
      font-family: var(--body-font-avenir);
      display: flow-root;
}
.spanLoadMoreVideosIndicator .sk-wave {
    margin: 0px;
    width: 72px;
    height: 40px;
    text-align: center;
    font-size: 12px;
}

#divVideoViewRootLayout .videoActions{
  padding-top:10px;
}

#divVideoViewRootLayout .videoActions span{
  margin-right:20px; 
}
.divUserKYC_Screen1, .divUserKYC_Screen2  {
  height: fit-content;
  background: white;
  margin: 1% 10% 10% 10%;
  padding: 25px 40px 50px 40px;
  opacity: 1;
  cursor: default;
  display: grid;
}

.kyc_headline {
    font-size: 2rem;
}

.kyc_line2 {
    font-size: 1.5rem;
}
.google-btn {
  width: 400px;
  height: 70px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 4px 3px rgb(0 0 0 / 25%);
  cursor:pointer;
}
.google-btn .google-icon-wrapper {
  position: absolute;
  margin: 15px;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background-color: transparent;
  cursor:pointer;
}
.google-btn .google-icon {
  position: absolute;
  margin-top: 11px;
  margin-left: 11px;
  width: 18px;
  height: 18px;
}
.google-btn .btn-text {
  float: left;
  text-align: center;
  color: var(--logo-color);
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--body-font-ave);
  margin: 21px 0px 0px 60px;
}
.google-btn:hover {
  box-shadow: 0 0 6px #4285f4;
}
.google-btn:active {
  background: #1669F2;
}

.divActionButtons {
    margin: 20px 10px;
    clear: both;
    float: left;
}
.userKYC_skip {
  margin:30px;
  font-size: 1.2rem;
  background:none;
  border:none !important;
  text-decoration: none;
}

.userKYC_skip:hover{
  text-decoration:underline;
  color:var(--logo-color);
  cursor:pointer;
}

.divUserKYC_Screen2_content {
    padding: 0px 20px 20px 20px;
}


.kyc2_headline {
    font-size: 1.3rem;
}

.kyc_skill_option, .kyc_age_option {
    background: var(--color-gray-600);
    text-align: center;
    margin-right: 20px;
    padding: 10px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}
.kyc_skill_option:hover, .kyc_age_option:hover{
    background: var(--logo-color);
    color: white;
}

.kyc_skill_option_selected,  .kyc_age_option_selected{
    background: var(--color-alert);
    color:white;
}


.divUserKYC_Screen2 .divActionButtons { 
    margin: 0px; 
    width: 100%;
}
.divUserKYC_Screen2_content .row {
   display: flex;
   margin-top:25px;
}

.userKYC_save{
  font-size: 1.2rem;
  background: var(--logo-color) !important;
  border-radius: 5px;
  text-decoration: none;
  margin: 0px;
  border: 1px solid #fff;
  color: white;
  padding: 14px; 
  width: 300px;
  cursor: pointer;
}

.userKYC_save:hover{
  background: var(--color-success) !important;
}
.galleryHeaderTitle {
  text-transform: uppercase;
  color: #172b4d;
  font-size: 1.52rem;
  margin: 30px 0 0px 0px;
  max-height: 5em;
  font-weight: 500;
  font-family: var(--body-font-ave);
}
.divVideosNavigationLinks {
  clear:both;
  float:left;
  margin:10px 0px 20px 0px;
  display:flex; 
}
.videoFilter_currentsearch{
    min-width:200px;
    text-align:center;
    margin-left:20px;
}
.videoFilter_currentsearch i{
   vertical-align: middle;
   margin-right:10px;
}
.divTellUsByUser .overlaycontent {
  margin:5% 5%;
  height:85%;
}
.divTellUsByUser .overlaycontent input {
  height: 36px;
  width: 500px;
  padding-left: 10px;
  padding-right: 10px;
  font-family:var(--body-font-ave);
  font-weight:500;
}

.divTellUsByUser .overlaycontent textarea {
  height: 100px;
  width: 500px;
  padding: 10px;
  font-family:var(--body-font-ave);
  font-weight:500;
}
.btnSubscribeToLetter,
.btnSendUserSubmitContent {
  background: var(--logo-color);
  color: white;
  font-weight: 600;
  padding: 10px;
}

.divTellUsFormContent {
  display: grid;
  margin: 20px 20px 0px 15%;
}

.textarea{
  z-index: 0;
  width: 80%;
  min-width:550px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  color: #333;
  border: 1px solid #ddd;
  height: 100px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--body-font-ave);
}

.btnCancelUserSubmitContent {
  padding: 20px;
}
.divTellUsFormContent .requestInProgressTxt {
  text-align: center;
  width: 100%;
  padding: 10px;
  margin: 10px;
}

.divAppInstallViewOnUpdateAnnounce{
  display: grid;
    background: antiquewhite;
    padding: 20px;
    border-radius: 10px;
    margin-right: 10px;
}
.btnCloseAnnouncementView{
  display: none;
}
.btnCloseOverlay{
    margin:30px 90px 0px 0px;
}

.divAppTermsAndPolicyContent{
  font-family: helvetica neue,Helvetica,Arial,sans-serif;
 font-size: 1.125rem;
 color: #49396a;
 margin: 0;
 padding:10px;
}

.divAppTermsAndPolicyContent section {
 max-width: 980px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.7;
 overflow-wrap: break-word;
 word-wrap: break-word;
 padding: 10px 20px 100px;
} 

.divAppTermsAndPolicyContent section h1, .divAppTermsAndPolicyContent section h2,.divAppTermsAndPolicyContent section h3, .appTermsOfUse section h4,.appTermsOfUse section h5,.appTermsOfUse section h6 {
 font-weight: 700;
 margin-bottom: 0;
 padding-bottom: 0
}

.divAppTermsAndPolicyContent section h1,section h2,section h3 {
 color: #221341;
}

.divAppTermsAndPolicyContent section h4,section h5,section h6 {
 color: #6a6f82
}

.divAppTermsAndPolicyContent section h1 {
 font-size: 1.25rem;
 margin-top: 25px;
 margin-bottom: 15px;
 line-height: 1.4
}

.divAppTermsAndPolicyContent section h2 {
 font-size: 1.175rem !important;
 margin-top: 20px;
 margin-bottom: 10px
}

.divAppTermsAndPolicyContent section h3 {
 font-size: 1.25rem;
 margin-top: 20px;
 margin-bottom: 10px
}

.divAppTermsAndPolicyContent section h4 {
 font-size: 1.125rem;
 margin-top: 20px;
 margin-bottom: 10px
}

.divAppTermsAndPolicyContent section h5 {
 font-size: 1.125rem;
 margin-top: 20px;
 margin-bottom: 10px
}

.divAppTermsAndPolicyContent section h6 {
 font-size: 1.125rem;
 margin-top: 20px;
 margin-bottom: 10px
}

.divAppTermsAndPolicyContent section p {
 font-weight:400;
 margin-bottom: 10px;

}

.divAppTermsAndPolicyContent section ul {
 font-size: 1rem;
 list-style-type: disc;
 line-height: 2;
 margin-left: 30px;
 margin-top: 15px;
 margin-bottom: 15px
}

.divAppTermsAndPolicyContent section a {
 color: #49396a;
 text-decoration: none;
 -webkit-transition: color .3s;
 transition: color .3s
}

.divAppTermsAndPolicyContent section a:hover {
 color: #221341
}

.divWhysignupInfo {
  width: 80%;
   text-align:left;
   margin:10px;
   padding-right:10px;
  border-right:1px solid #d1d1d1;
}

.divSignupViews {
  width: 100%;
   text-align:left;
        margin:10px;
   padding-left:10px;
}
.divJoinInfoLayout{
  display:flex;
}

.divJoinHeadlineLayout .joinHeadline{
  font-size: 2rem;
  line-height:1.5;
}
.divJoinHeadlineLayout .joinHeadline strong{
 color:var(--logo-color);
 font-weight:700;
 font-size: 2.5rem;
 margin: 0px 10px;
}


.divWhysignupInfo .joinIntroLines h2{
  font-size:1.6rem;
  line-height:1.5;
  font-weight:500;
  clear:both;
  margin: 8px 0px;
} 

.divWhysignupInfo .joinIntroLines span{
  font-size:1.2rem;
  line-height: 2;
  font-weight:400;
  clear:both;
  float:left;
  padding: 5px 0px 5px 0px;
  display: inline-flex;
} 

.divJoinInfoLayout .weListenNotes{
   font-size:1rem;
  line-height:1.5;
  font-weight:400;
  clear:both;
  float:left;
  padding: 10px 0px 10px 0px;
} 
.joinSubtitle{
  font-size:1.2rem;
  line-height:1.5;
  font-weight:500;
  clear:both;
  float:left;
  padding: 0px;
}


.divJoinHeadlineLayout {
  text-align: center;
  margin-bottom: 15px;
}

.btnCloseSignUpOverlayForm i{
  font-size:32px;
  margin-top:5px;
}
.btnCloseSignUpOverlayForm i:hover{
color:var(--logo-color);
}

.joinBenifitsList {
  clear: both;
  float: left;
}
.joinBenifitsList li {
  clear: both;
  float: left;
  padding: 0px 0px 10px 0px;
  font-weight: 400;
  font-size: 1.2rem;
}

.connectSocial i {
  font-size: 46px;
  margin: 10px;
  color: var(--logo-color);
  cursor: pointer;
}
.connectSocial i:hover { 
  color: black;
}
.joinAboutVision {
  clear: both;
  float: left;
  padding:10px 0px;
  font-size:1.2rem;
  line-height:2;
  font-size:400;
}

.joinPromise {
   clear: both;
  float: left;
  padding:10px 0px;
  font-size:1.2rem;
  line-height:2;
  font-weight:600;
}


.divSignupViews h2{
  font-size:1.6rem;
  line-height:1.5;
  font-weight:500;
  clear:both;
  margin:8px 0px;
} 

.divTermsInfo {
  margin:40px 0 0 0 !important;
  
}
.divKycSubTitle{
  margin: 0px 0px;
  font-size: 1.2rem;
}

input.input_txt_userkyc_name {
  height: 36px;
  width: 650px;
  padding-left: 10px;
  padding-right: 10px;
  font-family:var(--body-font-ave);
  font-weight:500;
  border: 1px solid var(--logo-color);
}

.txtSubHintInfo {
  font-size: 0.85rem;
  padding: 8px;
  color: var(--color-gray-700);
}
.divExtraSpaceForMobileViews{
  display:none !important;
}
/* 
img {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
} */
.ulHomeScreenPlayersListWith3Rows {
  display: grid;
  grid-template-columns: repeat(auto-fit,150px); /* the width is define here */
  grid-template-rows: auto auto auto; /* 3 rows */
  grid-auto-rows:0px; /* next rows equal to 0 */
  overflow:hidden; /* hide the overflow */
}

.divUlVideosByPlayers .paddles{
  display:none;
}
  
/* The loading Class */
.loading {
  position: relative;
  background-color: #e2e2e2;
}

/* The moving element */
.loading::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: -webkit-gradient(linear, left top,
              right top, from(transparent), 
              color-stop(rgba(255, 255, 255, 0.2)),
              to(transparent));
                
  background: linear-gradient(90deg, transparent,
          rgba(255, 255, 255, 0.2), transparent);

  /* Adding animation */
  animation: loading 0.8s infinite;
}

/* Loading Animation */
@keyframes loading {
  100% {
      transform: translateX(100%);
  }
}

.card img.loading{
   
}


.my-class {
  --lines: 2; /* lines count */
  --l-h: 10px; /* line height */
  --l-gap: 8px; /* line gap */
    --bg: #f1f1f1;
    --rect-h: 150px; 
}



.card1 {
  width: 328px;
  height: 208px;
  margin: 16px auto;
  background-color: #ffffff;
  border-radius: 2px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
}


.element1 {
    top: 16px;
    left: 50px;
    height: 24px;
    width: 220px;
}
.element2 {
    top: 36px;
    left: 80px;
    height: 68px;
    width: 160px;
}

.element3 {
    top: 58px;
    left: 16px;
    height: 14px;
    width: 296px;
}

.element4 {
    top: 68px;
    left: 16px;
    height: 14px;
    width: 296px;
}


.skeleton_playlists_card {
  width: 88%;
  height: 100%;
  margin-bottom:20px;
  background-color: #ffffff;
  border-radius: 2px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.08);
}
.skeleton_playlists_divVideosRow {
  display: inline-flex;
  margin-top: 10px;
}
.skeleton-videoplayer{
  width: 100% !important;
  max-width: 100% !important;
  --rect-h:250px !important;
  --lines:8 !important;
}
.skeleton_playlists_divPlaylistVideoItem {
  margin-right: 10px;
  display: grid;
}
.skeleton_playlists_elementHeadline {
  top: 10px;
  left: 16px;
  height: 24px;
  width: 100%;
}
.skeleton_playlists_elementThumb {
  top: 10px;
  left: 16px;
  height: 150px;
  width: 260px;
}
.skeleton_playlists_elementName {
  top: 16px;
  left: 16px;
  height: 36px;
  width: 260px;
}
.skeleton_player_elementThumb {
  top: 10px;
  left: 16px;
  height: 150px;
  width: 150px;
}
.skeleton_player_elementName {
  top: 16px;
  left: 16px;
  height: 36px;
  width: 150px;
}
/* https://dgknca.github.io/css-skeletons/ */
.skeleton-featuredimage{
  --lines: 0 !important;   
  --rect-h: 260px !important;
  --c-w: 380px !important; 
} 
.skeleton-home-section{
  --lines: 1;   
  --rect-h:160px   !important;
  --c-w:260px; 
}
.skeleton-home-series{
  --lines: 0;   
  --rect-h:160px;
  --c-w:160px; 
}

.skeleton-home-playerimage{
  --lines: 0;   
  --rect-h: 150px;
  --c-w: 150px; 
}
.skeleton-home-playerimage-circle{
  --c-s: 120px;
}
.skeleton-home-categoryitem{ 
  --lines: 1 !important;
  --rect-h: 36px !important;
  --bg: transparent !important;
}

.skeleton-home-team{
  --lines: 1 !important; ;   
  --rect-h:60px   !important;
  --c-w: 60px; 
}

.skeleton-home-ground{
  --rect-w:260px;
  --rect-h: 150px !important;
  --lines: 1 !important;
}

.gradient {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #e2e1eb 54%);
    background-size: 1000px 640px;
    
    position: relative;
    
}

@keyframes placeHolderShimmer{
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}
.playlistInfoEditorChoice{
  padding: 0px 10px !important;
  margin-right:20px;
}
.divPlaylistHeaderViewTitle{
  display: inline-flex;
  width: 100%;
}
.divPlaylistHeaderViewTitleInfo{
  display: inline-grid;
}
.playlistInfoEditorChoice:empty{
  display:none;
} 
.playlist_fav_share {height: 40px;padding: 10px !important;}
.playlist_fav_share:hover{background:aliceblue;}

.aTopMenuSearch{
  
}
.btnWhylogin{
  margin-left:10px;
  background: transparent;
  border: 1px solid white;
  border-radius: 8px;
}
.divTopHeaderForMobile{
  display: none;
}
.divHomeScreenSectionFeaturedItems{
  margin-top:-30px;
  min-height: 250px;
}
.divTopImagewithloginbutton{
  margin-left:40px;
}
.btnListNoRecordsNextCta {
  color: #404141;
  border-color: #404041;
  font-weight: 500;
  width: 100%;
}
.divVideoInfoActions{ 
  display: inline-flex;
  margin: 10px;
}

span.divVIdeoInfoSectionHeaderLabel {
  width: 95%;
}

.videoInfoAddtionalInfo {
  margin-top: 10px;
} 
.divListenFeedback {
  color: white !important;
  margin-bottom: 20px;
  background: var(--color-gray-600);
  border-radius: 10px;
  padding: 7px;
  text-align: center;
  border-bottom:1px solid #f1f5f8;
  display:none;
}
.btnSendFeedback {
  background: var(--border-color);
  padding:20px;
  font-size:1rem;
  font-weight:500;
  color: var(--color-gray-900);
  font-family: var(--body-font-avenir);
  border:none !important;
}

.seriesThumbnail {
  height: 200px;
  width: 160px;  
  border-radius:8%;
}

.tabContentToursList .seriesThumbnail {
  border-radius:3%;
}

.tabContentToursList .seriesItem {
  border-radius:3% !important;
}

.seriesItem{
  height: 200px;
  width: 160px; 
  border-radius:8% !important;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);
}
 

.imgFeaturedThumbnail::after {  
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border:1px solid #d1d1d1;
  border-radius:8px;
}

hr{
  width:98%;
}

.offlineScreen {
  position: absolute;
  top: 40%;
  width: 100%;
}
.offlineScreen .screenTitle{
  font-size: x-large;
  font-weight: 600;
  color: hsl(340deg, 95%, 50%);
  font-family: sans-serif;

}
.offlineScreen .screenInfo{ 
  text-align: center;
  font-size: medium;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 40px;
  padding: 10px;
}
.offlineScreen .aTryAgain{ 
  font-size: large;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  margin: 10px;
  padding: 20px;
  background-color: #25a9ea;
  color: white;
  border-radius: 24px;
  text-decoration: none;
  min-width: 500px;
}
.offlineScreen .aTryAgain:hover{
  background-color:gray;
  color: white;
}
.offlineScreen .divCtaButton{
  width: 100%;
}
.offlineScreen .divInfoContent{
  margin-top: 10%;
  text-align: center;
}


#non_ytplayerView{
  width: 98%;
  background: #e8e8e8;
  padding: 10px;
  height: 400px;
  margin: 10px;
  position: relative;
}

#non_ytplayerView .skeletonVideoPlayerView{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
 box-shadow:var(--common-box-shadow-white);
  padding:20px;
  cursor:pointer;
  background:white;
  border-radius:20px;
}
#non_ytplayerView .skeletonVideoPlayerView:hover {
 border:5px solid var(--logo-color);
}
.skeletonVideoPlayerContentView{
  display:grid;
}
#non_ytplayerView .skeletonVideoPlayerView i{
  font-size: 150px;
  margin-bottom: 10px;
  background: transparent;
  color: var(--logo-color);
}
#non_ytplayerView .skeletonVideoPlayerContentTxtView{
  font-size:2em;
}
.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ulVideos li .w3-display-container{
  box-shadow: none;
  border-radius: 0px;
  margin: 0px !important;
}
.tabContentToursList .divUlFeaturedSeries{
  height:fit-content !important;
}

div#ytplayer{
  position: relative;
  padding-bottom:56.25%;
  height: 0;
}

iframe#iframeYoutubePlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.ulPlayersListInVideo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
   animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);
}


.ulPlayersListInVideo .onlyPlayerName {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.ulPlayersListInVideo .playerItem{
  box-shadow:none !important;
  background:transparent;
}

.divVideoInfoShort .divVideoInfoActions{
  width:auto;
}

.video_scorecard {
  /* margin-top: 19px; */ 
  border-right: 1px solid var(--color-error-background);
  padding:7px;  
  height: 100px; 
  text-align: center;  
  cursor: pointer;
}

.divVideoInfoShort {
    max-height: 130px;
}
 

.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#iframeYoutubePlayer .ytp-show-cards-title{
  display:none;
} 


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 .owl-carousel,.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0,0,0)
}

.owl-carousel .owl-item,.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0)
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%
}

.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled {
  display: none
}

.no-js .owl-carousel,.owl-carousel.owl-loaded {
  display: block
}

.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block
}

.owl-carousel.owl-hidden {
  opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab
}

.owl-carousel.owl-rtl {
  direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
  float: right
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
  z-index: 0
}

.owl-carousel .owl-animated-out {
  z-index: 1
}

.owl-carousel .fadeOut {
  animation-name: fadeOut
}

@keyframes fadeOut {
  0% {
      opacity: 1
  }

  100% {
      opacity: 0
  }
}

.owl-height {
  transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3,1.3);
  transform: scale(1.3,1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn {
  display: none
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 .owl-theme .owl-dots,.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
  margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 5px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom:1
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--logo-color);
} 
.owl-theme .owl-dots .owl-dot:last-child {
  display: none;
}

.owl-theme .owl-item:last-child{
  display: none;
}

.material-icons{
    /* opacity:0; */
    transition:opacity 0.5s;
}

.adContainerBottom{
  border:2px solid transparent;
  margin: 20px 20px 50px 20px;
  min-height:150px; 
}

.adContainerHomeFeed{ 
  border:2px solid transparent;
  margin: 15px;
  width:93%;
  min-height:100px; 
}


::-webkit-input-placeholder {
color: #111127;
}

:-ms-input-placeholder {
color: #111127;
}

::-ms-input-placeholder {
color: #111127;
}

::placeholder {
color: #111127;
} 

.divSubscribeEmail { 
  background: var(--main-hmiq-yellow);
  border-radius: 0px; 
  bottom: 0;
  right: 0;
  display: inline-block;
  z-index: 99999;
  height:120px;
}
.divSubscribeViewInputBtn{
  display: flex;
}

input.inputSubscribeEmail {
  padding:10px;
  line-height: 2.5;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 0.5em;
  margin: 5px;
}

.btnSubscribeToNotfications {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: var(--logo-color);
  padding: 0.9em 0;
  display: inline-block;
  border: none;
  border-radius: 0.5em;
  width: 100%;
  opacity:1;
  margin: 0px !important;
  }

  .btnSubscribeToNotfications:hover {
  opacity:0.5;
  }



  .textSubScribeNote {
  font-size: 0.89em;
  text-align: center;
  color: #3d3d4e;
  font-weight: 400;
  line-height: 1.4;
  font-family: var(--body-font-ave);
  }


  .divSubscribeEmail .notloggedInInfoHeaderText {
    color: #404041;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    font-weight: 700;
  }
  .divSubscibeUpdatesView {
    padding: 5px 0px 0px 0px;
    text-align: left;
}
.divSubscibeUpdatesView .notloggedInInfoHeaderContent {
   display:grid;
   margin-left:3%;
   max-width:100%; 
}
  .divSubscribeProgress{
    background:white;
    border-radius: 12px;
    padding: 10px;
    color:#555;
  }

  .divSocialMediaChannels {margin: 26px 0px 0px 0px;}
 
.divSocialMediaChannels i{font-size: 36px;margin-right:30px;cursor:pointer}
.divSocialMediaChannels i:hover{color:var(--logo-color);}
  
.divSubscibeUpdatesView .divSubscribeSocialMediaChannels {
    display: inline-table;
    margin-left: 2%; 
  min-width: 300px;
    /* padding: 10px 20px 20px 7%; */
    /* border-left: 3px solid; */
}
.divSubscibeUpdatesView .divSubscribeSectionConents {
  display:flex;
}

.btnInstallAppOnSubscribeView {
  color: #404041;
  font-size: 1em;
  font-weight: 600;
  background-color: var(--main-hmiq-yellow);
  padding: 0.9em 0;
  display: inline-block;
  border: none;
  border-radius: 0.5em;
  width: 100%;
  opacity:1;
  cursor:pointer;
  font-family: var(--body-font-avenir);
  margin-bottom: 10px !important;
}

.btnInstallAndroidAppOnSubscribeView { 
  background-color: transparent;
  padding: 0.9em 0;
  display: inline-block;
  border: none; 
  width: 100%; 
  cursor:pointer; 
  margin: 10px 0px !important;
}

.btnInstallAndroidAppOnSubscribeView:hover{
  background: var(--logo-color);
  color: white;
}

.btnRemaindMeLater { 
  background: var(--color-venn-1);
  color: white;
  font-weight: 600;
  padding: 10px;
  border-radius:10px;
  width: 100% !important;
  border: none;
  height: 70px;
} 
.divAppAnnouncementFormContent{ 
  display: grid;
  margin: 20px 20px 0px 20px;
}
#divAppAnnouncementView{
  background:rgba(0, 0, 0, 0.5);
}

.divAppInstallViewOnUpdateAnnounce{
  display: grid;
    background: antiquewhite;
    padding: 20px;
    border-radius: 10px;
    margin-right: 10px;
}
.divSubscibeUpdatesViewOnAnnouncement{
  background: var(--main-hmiq-yellow);
  padding: 10px !important; 
  border-radius: 10px;
}
span.btnPlaystoreView {
  /* margin-top: 100px; */
  /* padding-top: 100px; */
  display: flex;
}
 
.divMultiSectionView{
  display:flex;
}

.btnInstallAppOnSubscribeView:hover{
  background: var(--logo-color);
  color: white;
}
.divShowAppInstallQr {
}
img.imgInstallRc {
  height: 100px;
  width: 100px;
  margin-right: 50px;
}
.divAppInstallBannerView{  
    border-radius: 10px; 
    border:2px solid var(--main-hmiq-yellow)
}
.divSubscribeSocialMediaChannels .divSocialMediaChannels {
  min-height: 78px;
  padding-top: 20px;
}

.slidemeup{
  background:red;
  position:absolute;
  bottom:-50px;;
  height:50px;
  width:100%;
  left:0;
  animation-name:slideup;
  animation-delay:0.5s;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
  animation-timing-function:ease-out;

  
}
@keyframes slideup {
  0%{bottom:-50px}
  100%{bottom:0;}
}
.swiper-pagination-bullet {
  width: 10px;
  cursor: pointer;
  height: 10px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  margin-right:10px;
}

.swiper-pagination-bullet:hover {
  width: 20px; 
  height: 20px; 
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}
.swiper-pagination{
  height:24px;
  display:flex;
  justify-content: center;
} 
img.qrInstallImage{
  height: 85px;
}
 
 .divHighlightsFilterMatchType {
    margin-right: 20px;
}
.divHighlightsFilterMatchType button {
    font-weight:500;
    font-size:1em;
    margin:2px;
    color: #172b4d; 
    font-family: var(--body-font-avenir);
}
.divHighlightsFilterMatchType  .selectedFilter{
    background:var(--logo-color);
    color:white;
}
.divHighlightsFilterSeriesType{
  display:flex;
  overflow:scroll; 
}
.divHighlightsFilterSeriesType button {
    font-weight:500;
    font-size:0.89em;
}

.divHighlightsFilterSeriesType  .selectedFilter{
    background:var(--logo-color);
    color:white;
}
/* 
figure img:not([src]) {
   
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);
  visibility: hidden;
}
figure img:([src]) {
  visibility: visible;
}
.imgloading_placeholder{ 
  visibility: hidden;
} */



.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
}

.wave {
  background: url(../images/wave.svg) repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%,
  100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
.endWave{
  display:none;
}   

.roundCloseIcon{
  border-radius: 50% !important;
  border: 2px solid #25a9ea;
  color: #25a9ea;
}
.imgIPLLogoFilter{
  border-radius:15%;
  height:60px;
  width:60px;
  margin:5px;
}

.imgIPLLogoFilter:hover{
   opacity: 0.6;   
  box-shadow: 5px 5px 5px var(--logo-color);
}

.divUlVideosByIPLHighlights .selectedYearFilter{
  background:var(--logo-color);
  color:white;
} 
.divUlVideosByIPLHighlights .selectedTeamFilter{
    opacity: 0.6;   
  box-shadow: 5px 5px 5px var(--logo-color);
} 
.divTopBanner{
  height:100px;
  margin-bottom:5px; 
}
.imgIPLTopBanner{
  border-radius:15px;   
  cursor:pointer;
}
.imgIPLTopBanner:hover{
  opacity:0.6;   
}
.imgIPLTopBannerMobile{
  display: none;
}
.imgIPLTopBannerWeb{
  display: block;
}
.makeViewOnTop{
  position:fixed;
  top:50%;
  padding: 40px 0px;
  z-index:99999999 !important;
  width:96%;

} 
.aTryAgain{ 
  font-size: large;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  margin: 10px;
  padding: 20px;
  background-color: #25a9ea;
  color: white;
  border-radius: 24px;
  text-decoration: none;
  min-width: 500px;
}
.aTryAgain:hover{
  background-color:gray;
  color: white;
}
#ulHomeScreenSkillGrid  li:hover{
  border: solid var(--logo-color) 2px;
}
.teamIndexInnerUl li,
#ulHomeScreenSkillGrid  li{
  margin:5px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  font-size:16px;
  font-weight:400;
  padding: 20px;
  -webkit-box-shadow: inset 1px 1px 20px 0 #E8F2FA;
  -moz-box-shadow: inset 1px 1px 20px 0 #E8F2FA;
  box-shadow: inset 1px 1px 20px 0 #E8F2FA;
  border: solid #EAEEF4 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center; 
  font-family: var(--body-font-avenir);
}
#ulHomeScreenCategoriesList  li:hover{
  border: solid var(--logo-color) 2px;
}
#ulHomeScreenCategoriesList  li{
  margin:4px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  font-size: 16px;
  font-weight: 500;
  padding: 20px;
  /* -webkit-box-shadow: inset 1px 1px 20px 0 #E8F2FA; */
  -moz-box-shadow: inset 1px 1px 20px 0 #E8F2FA;
  /* box-shadow: inset 1px 1px 20px 0 var(--logo-color); */
  border: solid #EAEEF4 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-family: var(--body-font-avenir);
  background: var(--main-color-blue-369);
  color: white;

}
#ulHomeScreenCategoriesList .categoryItem {
  box-shadow: none !important;
  height: 40px;
  max-width: 160px;
  white-space: pre-line;
  overflow: hidden;  
  line-height: 20px;
} 
.w3-display-bottomleft-minus5{
  position: absolute;
    left: 0;
    bottom: -5px;
}
ul#ulHomeScreenTeamsList .teamItem {
  width: 120px!important; 
  display: flex;
  flex-direction: column;
}
.teamItem .teamName {
  padding: 8px;
  font-size: 1em;
}

.teamThumbnail { 
  height: 60px;
  object-fit: contain;
  margin: 10px auto;
}
#ulHomeScreenTeamsList li:hover { 
     box-shadow:1px 1px 6px var(--logo-color);
    border-radius:10px;
    margin: 5px 10px 5px 5px; 
}
.bottomMenuOptionsRow {
    margin: 20px;
    display: inline-flex;
}
.bottomMenuOptionsRow button{
    padding:10px; 
    height:60px;
    width:250px;
    font-size: 1.2em;
    font-weight: 500;
    font-family: var(--body-font-avenir);
    border:1px solid var(--logo-color) ;
    border-radius:10px; 
    margin:0px 100px 00px 0px;
}
.btnBottomMenu_search{
  width:98% !important;
  font-size: 1.3em;
}
.divUlAmazonProducts ul li {
  border-radius:10px; 
    margin:0px 10px 00px 3px;
}
.divUlAmazonProducts img {
  border-radius:10px;  
}

.divAmazonItemsMoreButtonView {
  min-height: 250px;
  width: 200px;
  background: steelblue;
  cursor: pointer;
  color: white;
  font-size: large;
}
#divAmazonFullItemsList ul li {
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 5px;
}