/* Preloader CSS */
#loader-div {
  z-index: 9999;
  width: 100%;
  opacity: 0.5;
  display: flex;
  height: 100vh;
  position: fixed;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  justify-content: center;
}

.loader-div2 {
  position: absolute;
  display: flex;
}

#loading-text {
  margin-top: 2px;
  margin-left: 5px;
  color: #fff;
}

.loader {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 3px solid #A92028;
  border-top-color: #E3E3E5;
  box-sizing: border-box;
  background: transparent;
  animation: loading 2s linear infinite;
}

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

  0% {
    transform: rotate(-360deg);
  }
}

/* Preloader CSS Ends */

/* Stream Div CSs */
.stream-div {
  position: absolute;
  width: fit-content;
  padding: 7px;
  margin: 3px;
  bottom: 0;
  left: 0;
}

/* Stream Div Css ends */

/* Stream Div CSs */
.chat-div {
  height: 200px;
  position: absolute;
  width: fit-content;
  padding: 7px;
  margin: 3px;
  bottom: 0;
  right: 0;
}

/* Stream Div Css ends */

/* tabs div */
.tabs-div {
  position: absolute;
  width: fit-content;
  padding: 7px;
  margin: 3px;
  top: 60;
  left: 0;
}

/* tabs div end */

/* LOGO div CSS Start */
.logo-div {
  position: absolute;
  width: fit-content;
  padding: 7px;
  margin: 3px;
  top: 0;
  left: 0;
}

.logo-div>img {
  height: 40px;
  width: auto;
}

/* Logo div css ends */

/* Right Side buttons div */
.buttons-div {
  position: absolute;
  width: fit-content;
  padding: 7px;
  margin: 3px;
  top: 0;
  right: 0;
}

/* right side buttons div */

/* Timer Div */
.timer-div {
  margin: 6px;
  position: absolute;
  top: 0.5%;
  left: 50%;
  transform: translate(-50%, -0.5%);
}

/* Timer Div End */

/* Toaster Message Start */
#toast {
  visibility: hidden;
  max-width: 50px;
  height: 50px;
  /*margin-left: -125px;*/
  margin: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;

  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 30px;
  font-size: 17px;
  white-space: nowrap;
}

#toast #img {
  width: 50px;
  height: 50px;

  float: left;

  padding-top: 16px;
  padding-bottom: 16px;

  box-sizing: border-box;


  background-color: #111;
  color: #fff;
}

#toast #desc {


  color: #fff;

  padding: 16px;

  overflow: hidden;
  white-space: nowrap;
}

#toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes expand {
  from {
    min-width: 50px
  }

  to {
    min-width: 350px
  }
}

@keyframes expand {
  from {
    min-width: 50px
  }

  to {
    min-width: 350px
  }
}

@-webkit-keyframes stay {
  from {
    min-width: 350px
  }

  to {
    min-width: 350px
  }
}

@keyframes stay {
  from {
    min-width: 350px
  }

  to {
    min-width: 350px
  }
}

@-webkit-keyframes shrink {
  from {
    min-width: 350px;
  }

  to {
    min-width: 50px;
  }
}

@keyframes shrink {
  from {
    min-width: 350px;
  }

  to {
    min-width: 50px;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 60px;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 60px;
    opacity: 0;
  }
}

/* Toaster Message Ends */

/* Toolbar CSS Start */
.tool-bar {
  position: absolute;
  width: 60px;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 7px;
  top: 50%;
  left: 0.5%;
  transform: translate(-0.5%, -50%);
}

/* Toolbar CSS Ends */

/* Scroll Bar CSS */
/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #471671;
  border-radius: 10px;
}

/* Scrollbar CSS Ends */

.text-primary-main {
  color: #471671;
}

.bg-primary-main {
  background-color: #471671;
}

.btn-primary-main {
  color: #fff;
  background-color: #471671;
  border-color: #471671;
}

.btn-primary-main:hover {
  color: #fff;
  background-color: #831daf;
  border-color: #831daf;
}

.btn-primary-main.focus,
.btn-primary-main:focus {
  box-shadow: 0 0 0 0.2rem rgb(106, 21, 142, 0.5);
}

.btn-primary-main.disabled,
.btn-primary-main:disabled {
  color: #fff;
  background-color: #7e4794;
  border-color: #7e4794;
}

.btn-primary-main:not(:disabled):not(.disabled).active,
.btn-primary-main:not(:disabled):not(.disabled):active,
.show>.btn-primary-main.dropdown-toggle {
  color: #fff;
  background-color: #471671;
  border-color: #471671;
}

.btn-primary-main:not(:disabled):not(.disabled).active:focus,
.btn-primary-main:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary-main.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgb(106, 21, 142, 0.5);
}

.btn-link-primary-main {
  font-weight: 400;
  color: #471671;
  background-color: transparent;
}

.btn-link-primary-main:hover {
  color: #540c74;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link-primary-main.focus,
.btn-link-primary-main:focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}

.btn-link-primary-main.disabled,
.btn-link-primary-main:disabled {
  color: #6c757d;
}

.form-control-primary-main:focus {
  color: #495057;
  background-color: #fff;
  border-color: #da83ff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(106, 21, 142, 0.25);
}

.list-group {
  list-style: none;
}

.list-group>li {
  padding: 10px;
}

.logout-btn {
  position: fixed;
  top: 10;
  right: 10;
}

.hidden {
  display: none;
}

#login {
  margin: 0;
  padding: 0;
  background-color: #471671;
  height: 100vh;
}

#login .container #login-row #login-column #login-box {
  margin: 120px auto 0;
  max-width: 600px;

  border: 1px solid #9c9c9c;
  background-color: #eaeaea;
}

.tool-box {
  z-index: 111;
}

.role__select {
  color: #471671;
}

#login .container #login-row #login-column #login-box #login-form {
  padding: 20px;
}

#login .container #login-row #login-column #login-box #login-form #register-link {
  margin-top: -85px;
}

#login-form {
  margin: 0;
}

#login .redirection-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#copyMeetingCode {
  cursor: pointer;
}

.system-statics-container {
  height: 100vh;
}

.fenders {
  background-color: #471671;
}

.content-box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
}

.box {
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  position: relative;
  height: 100vh;
}

.top-bar-status {
  padding: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: flex-end;
}

.status-block {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.status-block i {
  font-size: 28px;
}

.shap-btn-group {
  padding: 2px 4px;
}

.shap-btn {
  padding: 4px;
}

.icon-block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.success {
  color: #24db86;
}

#screen-container {
  margin: 0;
  padding: 0;
  height: 150vh;
}

.page-container {
  height: 100vh;
}

.page-container .screen-wrapper {
  flex-grow: 1;
}

.sidebar-board {
  width: 140px;
  min-height: 80px;
}

.leftbar {
  z-index: 990;
  overflow: auto;
}

.rightbar {
  z-index: 990;
  overflow: auto;
  right: 0;
}

.group-btn {
  padding: 4px;
}

.pencil_range_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}

@media (min-width: 1200px) {
  .rightbar {
    width: 25%;
  }
}

.delete-board-btn {
  transition: all 100ms ease-in-out;
  transform: scale(0.7);
  opacity: 0.7;
  padding-top: 0;
  padding-bottom: 0;
  right: 0;
}

.delete-board-btn:hover {
  transform: scale(0.8);
  opacity: 0.8;
}

/* mult-column dropdown */
.dropdown-menu {
  min-width: 200px;
}

.dropdown-menu.columns-2 {
  min-width: 400px;
}

.multi-column-dropdown {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

@media (max-width: 1056px) {
  .img-fluid-parent {
    width: 22%;
  }

  #svg-icon {
    padding: 4.5px !important;
  }

  #boards-list {
    height: 30px;
  }

  #public-meeting {
    font-size: 12px;
  }

  #chat-buttons>button {
    font-size: 11px;
    display: flex;
    justify-content: center;
    z-index: 1 !important;
  }

  #hours {
    font-size: 18px;
  }

  #minutes {
    font-size: 18px;
  }

  #seconds {
    font-size: 18px;
  }

  #hours span {
    font-size: 15px;
  }

  #minutes span {
    font-size: 15px;
  }

  #seconds span {
    font-size: 15px;
  }

  .time-left-text {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }
}

.time-left-text {
  color: red;
  margin-bottom: 3px;
}

.class-warning {
  position: absolute;
  right: 10;
  bottom: 10;
  z-index: 5 !important;
}

@media (max-width: 767px) {
  .dropdown-menu.multi-column {
    min-width: 240px !important;
    overflow-x: hidden;
  }
}

.canvas {
  overflow: hidden;
}

.checkbox-menu li label {
  display: block;
  padding: 3px 10px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  margin: 0;
  transition: background-color 0.4s ease;
}

.checkbox-menu li input {
  margin: 0px 5px;
  top: 2px;
  position: relative;
}

.checkbox-menu li.active label {
  /* background-color: #cbcbff; */
  /* font-weight: bold; */
}

.checkbox-menu li label:hover,
.checkbox-menu li label:focus {
  background-color: #f5f5f5;
}

/* new style */
/* .text-primary-main {
  color: #089e7a;
}

.text-primary-light {
  color: #02cf9e;
}

.text-gray {
  color: #686868;
}

.text-gray-light {
  color: #c8c8c8;
}



.bg-primary-light {
  color: #02cf9e;
}

.bg-gray {
  color: #686868;
}

.bg-gray-light {
  color: #c8c8c8;
} */
.font-color {
  color: #471671 !important;
}

.bgColor {
  background: #471671 !important;
}

.fontWhite {
  color: white;
}

.bgColorLight {
  background: rgba(106, 21, 142, 0.3) !important;
}

input[type='range']::-webkit-slider-thumb {
  width: 12px;
  -webkit-appearance: none;
  appearance: none;
  height: 12px;
  cursor: ew-resize;
  background: #471671;
  box-shadow: -405px 0 0 400px #9c25cf;
  border-radius: 50%;
}