* {
   font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial,
    "Microsoft YaHei", PingFang SC, sans-serif, "Segoe UI Symbol";   
} 

body {
  padding-bottom: 40px;
}

.container {
  padding: 0;
  width: 100%;
}

.header {
  height: 50px;
  transparent: 10%;
  padding: 10px 10px;
  /* background-color: #00182f; */
  display: flex;
  justify-content: space-between;
}

.content {
  padding: 20px 0;
}

.github {
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
  padding: 10px;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 20px;
}

li {
  font-size: 14px;
  line-height: 22px;
}

ul {
  padding-left: 1rem;
}

.step {
  padding: 10px 0;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #212529;
  background-color: white;
}

.input-list {
  display: flex;
  justify-content: space-between;
}

.input-group:nth-child(odd) {
  margin-right: 10px;
}

.input-group-sm > .input-group-text {
  width: 90px;
}

.wrapper > button {
  margin-bottom: 10px;
}

.select-wrapper {
  display: flex;
}

.pusher {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.log {
  min-width: 180px;
  width: calc(100% - 490px);
  height: 360px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  padding: 6px;
  overflow-y: scroll;
}

.log > div {
  font-size: 12px;
}

.tag {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  padding: 0 4px;
  flex-direction: row-reverse;
}

.tag > div {
  height: 25px;
  width: 25px;
  cursor: pointer;
}

.muteAudio {
  background: url(../icon/mic-mute.svg) center center no-repeat;
}

.unmuteAudio {
  background: url(../icon/mic.svg) center center no-repeat;
}

.muteVideo {
  background: url(../icon/camera-mute.svg) center center no-repeat;
}

.unmuteVideo {
  background: url(../icon/camera.svg) center center no-repeat;
}

.success {
  color: green;
}

.failed {
  color: red;
}

.local {
  width: 480px;
  height: 360px;
  margin: 0 0 10px 0;
  position: relative;
}

.player {
  display: flex;
  width: 100%;
  min-height: 100px;
  flex-direction: row;
}

.log > p {
  font-size: 12px;
  line-height: 18px;
}

#language {
  font-size: 14px;
  cursor: pointer;
}

.remote {
  width: 20%;
  height: 160px;
  margin: 0 10px 10px 0;
  position: relative;
  float: left;
}

#userIdContainer {
  width: 100%;
  color: white;
  font-size: 12px;
  line-height: 25px;
}

.en {
  display: none;
}

.copy {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.invite-input {
  border: 1px solid #d5d5d5;
  line-height: 30px;
  font-size: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 1px 6px;
}

.invite-btn {
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-color: #eee;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
}

@media (max-width: 540px) {
  .log {
    width: 100%;
    height: 150px;
    margin-right: 0;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 6px;
    overflow-y: scroll;
  }

  .local {
    width: 100%;
    height: 100%;
    margin-right: 0;
  }

  .remote {
    width: 100%;
    margin-right: 0;
  }
}

.bold {
  font-weight: 500;
}

#console {
  position: fixed;
  left: 0;
  bottom: 0;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 18px;
  font-size: 12px;
  height: 20px;
  width: auto;
  background-color: #ccc;
  cursor: pointer;
}

.tooltipped {
  position: relative;
}

.tooltipped:after {
  position: absolute;
  z-index: 1000000;
  display: none;
  padding: 5px 8px;
  font: normal normal 11px/1.5 Helvetica, arial, nimbussansl, liberationsans,
    freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: break-word;
  white-space: pre;
  pointer-events: none;
  content: attr(aria-label);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.tooltipped:before {
  position: absolute;
  z-index: 1000001;
  display: none;
  width: 0;
  height: 0;
  color: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  content: "";
  /*border: 5px solid transparent*/
}

.tooltipped:hover:before,
.tooltipped:hover:after,
.tooltipped:active:before,
.tooltipped:active:after,
.tooltipped:focus:before,
.tooltipped:focus:after {
  display: inline-block;
  text-decoration: none;
}

.tooltipped-multiline:hover:after,
.tooltipped-multiline:active:after,
.tooltipped-multiline:focus:after {
  display: table-cell;
}

.tooltipped-s:after,
.tooltipped-se:after,
.tooltipped-sw:after {
  top: 100%;
  right: 50%;
  margin-top: 5px;
}

.tooltipped-s:before,
.tooltipped-se:before,
.tooltipped-sw:before {
  top: auto;
  right: 50%;
  bottom: -5px;
  margin-right: -5px;
  border-bottom-color: rgba(0, 0, 0, 0.8);
}

.tooltipped-se:after {
  right: auto;
  left: 50%;
  margin-left: -15px;
}

.tooltipped-sw:after {
  margin-right: -15px;
}

.tooltipped-n:after,
.tooltipped-ne:after,
.tooltipped-nw:after {
  right: 50%;
  bottom: 100%;
  margin-bottom: 5px;
}

.tooltipped-n:before,
.tooltipped-ne:before,
.tooltipped-nw:before {
  top: -5px;
  right: 50%;
  bottom: auto;
  margin-right: -5px;
  border-top-color: rgba(0, 0, 0, 0.8);
}

.tooltipped-ne:after {
  right: auto;
  left: 50%;
  margin-left: -15px;
}

.tooltipped-nw:after {
  margin-right: -15px;
}

.tooltipped-s:after,
.tooltipped-n:after {
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.tooltipped-w:after {
  right: 100%;
  bottom: 50%;
  margin-right: 5px;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

.tooltipped-w:before {
  top: 50%;
  bottom: 50%;
  left: -5px;
  margin-top: -5px;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.tooltipped-e:after {
  bottom: 50%;
  left: 100%;
  margin-left: 5px;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

.tooltipped-e:before {
  top: 50%;
  right: -5px;
  bottom: 50%;
  margin-top: -5px;
  border-right-color: rgba(0, 0, 0, 0.8);
}

.tooltipped-multiline:after {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  word-break: break-word;
  word-wrap: normal;
  white-space: pre-line;
  border-collapse: separate;
}

.tooltipped-multiline.tooltipped-s:after,
.tooltipped-multiline.tooltipped-n:after {
  right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tooltipped-multiline.tooltipped-w:after,
.tooltipped-multiline.tooltipped-e:after {
  right: 100%;
}

@media screen and (min-width: 0\0) {
  .tooltipped-multiline:after {
    width: 250px;
  }
}

.tooltipped-sticky:before,
.tooltipped-sticky:after {
  display: inline-block;
}

.tooltipped-sticky.tooltipped-multiline:after {
  display: table-cell;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-icon {
  background: url("../icon/loading.svg") no-repeat center;
  background-color: transparent;
  background-size: 100% 100%;
  height: 1em;
  width: 1em;
  display: none;
  /* display: inline-block; */
  margin-right: 4px;
  animation: rotate 2s linear infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
}

.local,
.player {
  position: relative;
}

.local-user-desg,
.username-desg {
  position: absolute;

  background: #000;
  right: 0;
  bottom: -17px;
  padding: 1px 8px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border-radius: 0;
}

.master-desg {
  bottom: 10px;
  z-index: 999;
}

.audio-div-1,
.video-div-1 {
  width: 64px !important;
}

.icon-btn {
  width: 40px !important;
}

.icon-btn .leave-icon {
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .new-btn-join {
    top: 73% !important;
  }
  .mx-2 {
    margin: 0px !important;
  }
  .w-15 {
    /* width: 100% !important; */
  }
  .player {
    flex-direction: column;
    align-items: center;
  }
}

.w-15 {
  width: 15%;
}

/*Toggle Css*/

 .switch {
  position: relative;
  display: inline-block;
  width: 51px;
  height: 27px;
  top: -5px;
} 

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 12px;
  left: 5px;
  right: 12px;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 2px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #2196f3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
} */

/* Rounded sliders */
/* .slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} */

/*Participant list*/

.participant-list {
  position: absolute;
  top: 86%;
  right: 0%;
  max-height: 300px;
  overflow: auto;
  border: 1px solid rgb(199, 192, 192);
  border-radius: 0px;
  padding: 20px;
  overflow-y: auto;
  width: 100%;
}

.no-data {
  width: 271px;
  /* box-shadow: 0 0 0 0 !important; */
  text-align: center;
  display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.participant-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 5px;
  margin: 0.5rem 0;
  padding: 10px; */
  padding: 10px;
  font-weight: 300;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.participant-list div p {
  margin: 0;
}

.participant-list {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  /* border-radius: 5px; */
  margin: 0.5rem 0;
  padding: 0px;
  /* position: relative; */
}

.participant-list h6 {
  position: absolute;
  top: -50px;
}

.participant-list .host-div {
  background-color: #0d6efd;
  color: #fff;
}

/* The switch - the box around the slider */
/* .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
} */

/* Hide default HTML checkbox */
/* .switch input {
  opacity: 0;
  width: 0;
  height: 0;
} */

/* The slider */
/* .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #394958;
  -webkit-transition: 0.4s;
  transition: 0.4s;
} */

/* .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0px;
  bottom: 0px;
  background-color: rgb(146, 126, 126);
  -webkit-transition: 0.4s;
  transition: 0.4s;
} */

/* input:checked + .slider {
  background-color: #0075ff;;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0075ff;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
} */

/* Rounded sliders */
.slider.round {
  /* border-radius: 34px; */
}

.slider.round:before {
  /* border-radius: 50%; */
}

/* .on-class {
  position: absolute;
  font-size: 10px;
  left: 4px;
  z-index: 0;
  padding-top: 2px;
  color: #fff;
}

.off-class {
  position: absolute;
  font-size: 9px;
  right: 4px;
  z-index: 0;
  padding-top: 4px;
  color: #fff;
} */

.switch {
  /* width: 52px; */
  /* box-shadow: 2px 1px 1px #978a8a; */
  /* border-radius: 3px; */
}

/* .slider:before {
  width: 26px;
  background-color: #bfc7c5;
  border-radius: 3px;
}

.slider {
  border-radius: 3px;
} */

.participant-list::-webkit-scrollbar {
  width: 7px;
}

.participant-list::-webkit-scrollbar-track {
  background-color: transparent;
}

.participant-list::-webkit-scrollbar-thumb {
  background-color: #0d6efd;
  border-radius: 20px;
  border: 1px solid transparent;
  background-clip: content-box;
}

.participant-list::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

.participate-head {
  margin-bottom: 0px;
  font-weight: 400;
  text-align: center;
}

.participant-block {
  position: absolute;
  top: 118px;
  right: 10%;
  border: 1px solid rgb(199, 192, 192);
  width: 22%;
  padding: 15px;
  background-color: #e9ecef;
}

#participant-end-msg {
  text-align: center;
  color: white;
  position: absolute;
  top: 30%;
  font-weight: 800;
}

#participant-msg {
  font-weight: 800;
  font-size: 30px;
}

/* CSS starts 05-02-24 Guest Modal*/
.input-block {
  position: relative;
}

.custom-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 8px 12px;
}

.left-element {
  width: 25%;
}

.right-element {
  width: 75%;
}

.list-participant p {
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-data {
  width: 100%;
  justify-content: center !important;
}

#lower-band-section {
  text-align: center;
  margin-top: 39px;
}

.properties {
  bottom: 91px !important;
}

.bottom-desg {
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
  /* box-shadow: rgb(255 255 255 / 30%) 0px 1px 0px 0px,
    rgb(255 255 255 / 15%) 0px 2px 0px 2px; */
  color: #fff;
  /* border-radius: 3px; */
  /* background: #162e46; */
  width: auto;
  margin: auto;
    display: block;
    padding: 0 15px;
    font-size: 18px;
    max-height: 49px;
    overflow: auto;
    position: relative;
    bottom: -14px;
}

@media only screen and (max-width: 1440px) {
  .participant-block {
    top: 150px;
  }
}

.new-btn-join {
  z-index: 999;
}

.username-label {
  background-color: transparent;
  border: none;
  padding-left: 0px !important;
  padding-bottom: 7px !important;
}

.left-main-block {
  /* width: 40%; */
  /* float: left; */
  /* border-right: 1px solid white; */
  /* height: 74vh; */
  padding: 25px;
}

.main-left-heading,
.left-content,
.main-sub-heading {
  color: white;
  text-align: center;
}

.new-content {
  width: 60%;
  float: left;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .new-content {
    width: 100%;
  }
  /* .left-main-block {
    width: 100%;
    border: none;
  } */
  .player {
    margin-top: 24px;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .remote {
    width: 45% !important;
    display: block;
    float: left;
    margin: 0 10px 10px 10px;
    height: 125px !important;
  }
  .player {
    display: flex !important;
    text-align: center;
    flex-direction: row;
    overflow: hidden;
  }
}
@media only screen and (max-width: 480px) {
  .remote {
    width: 96% !important;
    margin: 8px;
    height: 197px !important;
  }
  .player {
    display: block !important;
    overflow-y: auto;
    max-height: 48vh;
    overflow-x: hidden;
    top: 0;
  }
  .properties {
    bottom: 66px !important;
  }
  .local {
    height: 197px !important;
    max-width: 400px !important;
  }
  .properties {
    position: fixed !important;
    bottom: 97px !important;
  }
  .local {
    margin-right: 0px !important;
  }
}

.player::-webkit-scrollbar {
  width: 4px;
  height: 8px;
  background-color: #000;
}

/* Add a track (Chrome/Safari) */
.player::-webkit-scrollbar-track {
  background-color: #2c3645;
}

/* Add a thumb (Chrome/Safari) */
.player::-webkit-scrollbar-thumb {
  background-color: #969eb3;
  border-radius: 4px;
}
.display-left-element {
  display: none;
}

.form-count {
  /* color: #fff; */
}

.custom-form-select,
.custom-form-select:hover,
.custom-form-select:active,
.custom-form-select:focus {
  background-color: transparent;
  /* border: 1px solid #fff; */
  margin-bottom: 10px;
  /* color: #fff; */
  /* display: block; */
  /* width: 29%; */
  display: inline-block;
  position: relative;
}

.custom-form-select i {
  position: absolute;
  color: #fff;
  right: 0;
  top: 0;
  font-size: 10px;
}

.custom-form-select option {
  background-color: #00182f;
}

.custom-form-btn {
  width: 45px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 3px;
  background: transparent;
  /* color: #fff;
  border: 1px solid #fff; */
}

.custom-form-btn:hover {
  /* background-color: #fff; */
  color: #00182f;
}

.teleproperties-block {
  display: flex;
  /* margin: 10px; */
  flex-direction: column;
}

.teleproperties-block span {
  /* width: 18%; */
  /* color: #fff; */
}
.teleproperties-block input {
  width: 100%;
}

.tele-properties i {
  /* color: #fff; */
}

.tele-properties {
  display: flex;
  gap: 15px;
  /* margin: 10px; */
  align-items: center;
  justify-content: end;
}

/* .tele-properties .switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 27px;
  box-shadow: 0px 0px 0px 0px;
}

.tele-properties .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.tele-properties .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.tele-properties .slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.tele-properties input:checked + .slider {
  background-color: #0075ff;
}

.tele-properties input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.tele-properties input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
 */
/* Rounded sliders */
/* .tele-properties .slider.round {
  border-radius: 34px;
}

.tele-properties .slider.round:before {
  border-radius: 50%;
} */

.prompter-heading {
  width: 20%;
  float: left;
}
.tele-properties {
  width: 70%;
  float: right;
}
.top-tele-prompter {
  width: 100%;
}
.tele-prompter-input {
  clear: both;
  width: 100%;
}
.main-telepropmter-block {
  display: flex;
  /* justify-content: space-between; */
}

.slug_content div {
  white-space: normal !important;
}


/* Dummy div css */



.dummy-div{
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid grey;
  background-color: #1534547c;
  overflow: hidden;
  font-size: 80px;
  font-weight:600;
 }

 /* CSS added 21-2-24 starts */
 .slider {
  background-color: #9da8ac;
}

.on-class, .off-class{
  color: #000;
  font-weight: 600;
}
/* CSS added 21-2-24 end */



/* CSS 10-04-24  starts*/
.participant-list div{
  gap: 5px;
  border-bottom: none;

}

.custom-p-name{
  text-overflow: ellipsis;
  width: 6vw;
  overflow: hidden;
}
.list-participant{
border-bottom: 1px solid rgba(0, 0, 0, 0.3) !important;
}



.audio-btns{
  border: none;
  background: none;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 4px;
    height: 22px;
    display: flex;
    align-items: center;
    color: #0075ff;
}



/* CSS 10-04-24  end*/


/* CSS 12-04-24  starts*/
.mute-btn{
  
  border: none;
  color: #0075ff;
  padding: 5px 12px;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.all-participants-mute-blk{
  position: absolute;
  top: -37px;
  left: 0;
}

.mute-btn:hover{
  color: #0075ff;
  background: transparent;
}

/* CSS 12-04-24  end*/

/* CSS 16-04-24  starts*/

@media only screen and (min-width: 1440px){
.participant-block{
top:162px;
}
#local{
/* margin-top:48px; */
}
}

/* CSS 16-04-24  end*/


/* CSS 17-04-24  starts*/
.live-icon{
  width: 16px;
}
.live-icon-btn{
border: none;
    color: #0075ff;
    padding: 0px 7px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: #fff;
}

.live-main-element{
position: absolute;
top: -36px;
right: 0;
}

.participant-live-btn{
  height: 22px;
    display: flex;
    align-items: center;
    padding: 0 4px;
}
/* CSS 17-04-24  end*/
