@media (min-width: 768px){
    .seven-cols .times-col,
    .seven-cols .times-col,
    .seven-cols .times-col  {
      width: 100%;
      *width: 100%;
      padding: 0 5px;
    }
  }
  
  @media (min-width: 992px) {
    .seven-cols .times-col,
    .seven-cols .times-col,
    .seven-cols .times-col {
      width: 14.285714285714285714285714285714%;
      *width: 14.285714285714285714285714285714%;
      padding: 0 5px;
    }
  }
  
  /**
   *  The following is not really needed in this case
   *  Only to demonstrate the usage of @media for large screens
   */    
  @media (min-width: 1200px) {
    .seven-cols .times-col,
    .seven-cols .times-col,
    .seven-cols .times-col {
      width: 14.285714285714285714285714285714%;
      *width: 14.285714285714285714285714285714%;
      padding: 0 5px;
    }
  }

  .card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
  }

  .text-clip {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .dark .controlsBox {
    /* bottom: 20px;
    left: 20px;
    right: 20px; */
    /* border: 1px solid rgba(72, 94, 144, 0.16);
    box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 4px 24px 2px rgba(0,0,0,.1); */
    justify-content: space-between;
    height: 133px;
    display: inline-block;
    border: 1px solid black;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }

  .dark .nav-link {
    color: #9f9795 !important;
  }

  .dark .nav-link:hover {
    color: white !important;
  }
  .dark .nav-line .nav-link.active {
    color: white !important;
  }

  .dark .nav-line .nav-link.active::after {
    background: none !important;
  }

  .dark .box-header {
    background: #33363d;
    padding: 8px;
    border-bottom: 1px solid black;
    padding-left: 20px;
  }

  .dark .sidebar-header-title {
    color: #9f9794;
    padding: 0px 0px 0px 0px;
    /* border-bottom: 1px solid #97979b3d; */
    margin-left: 0px;
    margin-right: 10px;
  }

  .dark .puzzle-sidebar {
    /* background: #303038; */
    background: #28292e;
  }

  .dark .clues-sidebar {
    background: #28292e;
  }

  .dark nav a {
    padding: 0px 8px;
    color: #9f9793
  }

  .dark i {
    /* color: #9f9793; */
    color: rgb(114 124 128);
    /* color: #d9e4e5 */
  }

  .dark .audio-track {
    width:75px;
    /* border-right: 1px solid black; */
  }

  .dark .audio-track .header {
    /* background: #191a20; */
    padding: 8px;
    text-align: center;
    /* border-bottom: 1px solid black; */
    font-size: 12px !important;
  }

  .dark .audio-track .sub-header {
    /* background:  #27282e; */
    padding: 8px;
    text-align: center;
    /* border-bottom: 1px solid black; */
    font-size: 12px !important;
  }

  .dark .audio-track .sub-header2 {
    background:  #191a20;
    padding: 8px;
    text-align: center;
    /* border-bottom: 1px solid black; */
    font-size: 12px !important;
  }

  .dark .audio-track .solo-mute {
    padding: 5px;
    /* border-bottom: 1px solid black; */
  }

  .dark .audio-track .volume-meter {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .dark .rangeslider-vertical {
    width: 4px;
    margin-top: 5px;
  }

  .dark .rangeslider-vertical .rangeslider__handle {
    width: 12px;
    height: 25px;
    left: -4px;
  }

  .dark .rangeslider .rangeslider__handle {
    /* background: #9f9793; */
    background: linear-gradient('red 1%', '#ff0 16%', 'lime 45%', '#080 100%');
    border: 1px solid black;
  }

  .dark .rangeslider .rangeslider__handle-tooltip {
    display: none;
  }


  .clear-screen {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulseRed 2s infinite;
  }

  .game-live {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(0.1);
    animation: pulseGreen 2s infinite;
  }



  @keyframes pulseRed {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(161, 34, 34, 0.8);
    }
  
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }
  
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
  }

  @keyframes pulseGreen {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 #15c115;
    }
  
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }
  
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
  }


.sign-wrapper {
  border: 1px solid #e5e2e2;
  background-color: #fff;
  /* padding: 50px 20px; */
  padding: 40px 30px;
  /* box-shadow: 0 0 9px 1px rgb(0 0 0 / 9%); */
  border-radius: 8px;
  /* border-color: #dbdbdb; */
  margin-bottom: 100px;
}


.bj-shadow-soft {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06)
}

#briefcaseBGVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

.breifcase-prelobby-container {
  padding: 20px;
  background: #000000c0;
  border-radius: 0.25rem;
}


.font-size-15 {
  font-size: 15px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.game-customization-form {
  width: 100%;
  min-width: 500px
}

.chat-messages-box {
  display: flex;
  flex-direction: column-reverse;
  overflow: scroll;
  position: absolute;
  top: 0;
  bottom: 0px;
  /* left: 0;
  right: 0; */
  margin-top: 35px;
  -ms-overflow-style: none; /* hides scrollbar in IE and Edge */
  scrollbar-width: none; /* hides scrollbar in Firefox */
}

.message-feed-item:hover {
  background: #2c2c35;
}


.hint-message-input:focus {
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.hint-message-input::placeholder{
  opacity: 0.7;
}

.bolt-icon-button {
  width: 35px;
  height: 35px;
  font-size: 18px;
  color:#6f7781;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  padding:'5px';
  border-radius: 5px;
  transition: 0.15s;
  margin-right: 3px;
  outline: none;
}

.bolt-icon-button:hover {
  background: #3c424a;
  color:#e5e9f2;
  outline: 0 !important;
}

.bolt-icon-button:focus {
  border: none;
  outline: none;
}

/* remove scrollbar in chrome */
.chat-messages-box::-webkit-scrollbar {
  display: none
}

.live-window {
  width: 100%;
  height: 100%;
}

.live-window::-webkit-scrollbar {
  display: none;
}

.games-table {
  padding: 20px 10px !important;
}


.puzzle-item {
  padding: 8px 10px;
  color: #1b2e4b;
  /* border-radius: 0.25rem; */
  border: none;
  width: 100%;
  text-align: left;
  background: none;
  border-left: solid 7px #6b747900;
}
  .chat-msg-list .puzzle-item:hover, .chat-msg-list .puzzle-item:focus {
    /* background-color: #f5f6fa; */
    outline: none;  }
  .dark .chat-msg-list .puzzle-item:hover, .chat-msg-list .puzzle-item:focus {
      background-color: #17181c;
      outline: none;  }
    .chat-msg-list .puzzle-item:hover .avatar-online::after,
    .chat-msg-list .puzzle-item:hover .avatar-offline::after, .chat-msg-list .puzzle-item:focus .avatar-online::after,
    .chat-msg-list .puzzle-item:focus .avatar-offline::after {
      box-shadow: 0 0 0 2px #f5f6fa; }
  .chat-msg-list .puzzle-item.active {
    background-color: #e5e9f2; }
    .chat-msg-list .puzzle-item.active .avatar-online::after,
    .chat-msg-list .puzzle-item.active .avatar-offline::after {
      box-shadow: 0 0 0 2px #e5e9f2; }
  .chat-msg-list .puzzle-item + .puzzle-item {
    margin-top: 0px; }
  .chat-msg-list .puzzle-item .badge {
    border-radius: 100%;
    align-self: center; }
  
.color-picker-swatch {
    /* padding: 5px;
    background: #fff; */
    border-radius: 50px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1);
    cursor: pointer;
    padding: 5px;
    display: flex; 
    background: #fff;
    align-items: center;
}

.color-picker-bubble {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}

.rie-input {
  cursor:pointer;
  color: #d9e4e5;
}

.signup-label {
  font-size: 16px;
  font-weight: 500;
}

.df-example {
    font-size: 0.875rem;
    letter-spacing: normal;
    padding: 0px 20px;
    background-color: #fff;
    border: 1px solid rgba(72, 94, 144, 0.16);
    position: relative;
}

.df-example::before {
  content: attr(data-label);
  display: block;
  position: absolute;
  top: -6px;
  left: 5px;
  font-size: 8px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: inherit;
  color: #8392a5;
  padding: 0 5px;
}

.bolt-box-shadow {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1)
}

.clue-rating-box {
  /* position: absolute;
  transform: translate(20px, -16px) */
}

.tx-20 {
  font-size: 20px;
}

.fade-in {
  animation: fadeIn ease 0.5s;
  -webkit-animation: fadeIn ease 0.5s;
  -moz-animation: fadeIn ease 0.5s;
  -o-animation: fadeIn ease 0.5s;
  -ms-animation: fadeIn ease 0.5s;
  }
  @keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
  }
  
  @-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
  }
  
  @-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
  }
  
  @-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
  }
  
  @-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
  }
  

  .puzzle-checkmark {
    position: absolute; 
    right: -18px;
    transition: 0.2s;
  }

  .puzzle-edit-icon {
    position: absolute; 
    right: 0px;
    transition: 0.2s;
    transition-delay: 1s;
  }

  .rie-input-editing {
    background: none;
    border: none;
  }

  .rie-input-editing:focus {
    outline: none;
}



.button-shimmer {
  width: 200px;
  height: 100px;
  position: relative;
  -webkit-animation: shimmer 6s infinite;
  -moz-animation: shimmer 6s infinite;
  animation: shimmer 6s infinite;
}

@-webkit-keyframes shimmer {
    0%   {
      background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%);
      background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.2)), color-stop(100%,rgba(255,255,255,0)));
      left: -5000px;
      top: 0px;
    }
  
    100% {
      background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%);
      background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.2)), color-stop(100%,rgba(255,255,255,0)));
      left: 5000px;
      top: 0px;}
}

@-moz-keyframes shimmer {
		0%   {
      background: -moz-linear-gradient(-45deg,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%); /* FF3.6+ */ 
			left: -5000px;
      top: 0px;}
      
    100% {
      background: -moz-linear-gradient(-45deg,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%); /* FF3.6+ */
			left: 5000px;
      top: 0px;}
}

@keyframes shimmer {
		0%   {
      background: -o-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
      background: -ms-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* IE10+ */
      background: linear-gradient(135deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
      left: -5000px;
      top: 0px;
    }
  
		100% { 
      background: -o-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
      background: -ms-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* IE10+ */
      background: linear-gradient(135deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
      left: 5000px;
      top: 0px;}
}