:root {
  --gray: #fafafa;
  --white: #ffffff;
  --black: #000000;
  --blue: #22177A;
  --dark-gray: #9e9e9e;
}

.mulish-extralight {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.mulish-light {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.mulish-regular {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.mulish-medium {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.mulish-semibold {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.mulish-bold {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.mulish-extrabold {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.mulish-black {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

body{
  min-height: 100%;
  background: var(--gray);
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: var(--black);
}
.font-12{
  font-size: 12px;
}
.font-14{
  font-size: 14px !important;
}
.font-16{
  font-size: 16px;
}
.font-18{
  font-size: 18px;
}
.font-20{
  font-size: 20px;
}
.font-22{
  font-size: 22px;
}
.font-24{
  font-size: 24px;
}
.font-28{
  font-size: 28px;
}
.font-30{
  font-size: 30px;
}
.font-32{
  font-size: 32px;
}
.font-40{
  font-size: 40px;
}
.text-blue{
  color: var(--blue);
}
.text-dark-gray{
  color: var(--dark-gray);
}

.form-input{
  background-color: var(--gray);
  color: black;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  font-size: 18px;
}
a{
  text-decoration: none;
  color: var(--blue) !important;
}
a:hover{
  text-decoration: underline;
  color: var(--blue) !important;
}
label.error{
  color: red;
}
.btn-blue{
  background-color: var(--blue);
  border-radius: 40px;
  border:none;
  color: var(--white) !important;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 20px;
   text-align: center;
   padding: 12px 24px;
   text-decoration: none;
}

.btn-blue:hover, .btn-blue:focus{
  background-color: #352a8f !important;
  color: var(--white) !important;
  text-decoration: none;
}
.btn-blue-bordered{
  background-color: transparent;
  border: 1px solid var(--blue);
  border-radius: 40px;
  padding: 12px 40px;
  color: var(--blue);
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}
.btn-blue-bordered:hover, .btn-blue-bordered:focus{
  background-color: var(--blue);
  color: var(--white) !important;
  text-decoration: none !important;
}
.btn-compact{
  padding: 8px 24px;
}

.nav-links a, .nav-links a:hover, .nav-links a:focus{
  text-decoration: none;
  font-size: 16px;
  color: var(--black) !important;
  height: 100%;
  padding: 0px 20px;
  margin: 0px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.nav-links a:hover, .nav-links a:focus{
  color: var(--blue) !important;
}
.nav-links a.active{
  font-weight: 700;
  color: var(--blue) !important;
  border-bottom:  1px solid var(--blue);
  box-sizing: border-box;
}

.nav-header{
  height: 80px;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 0px 80px;
  margin-bottom: 24px;
}
.logo-container{
  display: inline-flex;
  justify-content: space-between;
  align-items: end;
  text-decoration: none;
  font-size: 22px;
  color: var(--black) !important;
}
.logo-container:hover{
  text-decoration: none;
}
.nav-header .logo{
  max-width: 230px;
}

.auth-box{
  width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border-radius: 40px;
  padding: 36px;
}

.content-box{
  background-color: var(--white);
  border-radius: 20px;
  padding: 24px;
}
.record-item{
  background-color: var(--gray);
  border-radius: 20px;
  border: 1px solid #eee;
  padding: 12px 24px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-action{
  font-size: 22px;
  background-color: var(--white);
  margin: 0px 10px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--blue) !important;
  border:none;
}
.btn-red, .btn-red:hover{
  color: red !important;
}
.btn-action:hover{
  border: 2px solid #eee;
}
.btn-danger, .btn-danger:hover{
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  color: var(--white) !important;
  text-decoration: none !important;
}
.page-heading{
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 0px;
}

.video-thumb{
  width: 150px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.video-thumb i{
  position: absolute;
  top: 50%; /* Move to the middle vertically */
  left: 50%; /* Move to the middle horizontally */
  transform: translate(-50%, -50%); /* Center the element perfectly */
  color:  var(--white) !important;
  font-size: 24px;
}

.video-thumb img, .plane-thumb img{
   width: 100%; /* Ensure the image covers the full width */
    height: 100%; /* Ensure the image covers the full height */
    object-fit: cover; /* Cover effect */
    object-position: center; /* Optional: Position the image center */
}

.range-labels{
  margin-top: -10px;
}

.plane-thumb{
  width: 100px;
  height: 100px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.now-playing{
  border-radius: 8px;
  overflow: hidden;
}

.ratio-9x16 {
  aspect-ratio: 9 / 16;
}
.btn-blue:disabled, button:disabled{
  opacity: 0.6 !important;
}
.bg-blue{
  background-color: var(--blue) !important;
}
.bg-gray{
  background-color: var(--gray) !important;
}
.toast{
  position: fixed;
  top: 90px;
  left: 50%; /* Move to the middle horizontally */
  transform: translateX(-50%);
  z-index: 10;
}
.avatar{
  width: 50px;
  height: 50px;
  display: inline;
  border-radius: 50px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #ececec;
}

.btm-right-link{
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.new-meeting-container{
  min-height: 80vh;
}

.doc-added{
  border: 5px solid #eee !important;
}

.doc-discussion{
  border: 5px solid #fbbb04 !important;
}
.doc-voting{
  border: 4px solid #0c24d5 !important;
}

.doc-accepted{
  border: 5px solid #208d33 !important;
}

.doc-rejected{
  border: 5px solid #e50c30 !important;
}

.doc-name{
  cursor: pointer !important;
}
.file-preview-container{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
}
.file-container{
  height: 100vh;
  width: 100vw;
  overflow: auto;
}
.close-file-btn{
  position: fixed;
  right: 32px;
  bottom: 90px;
  z-index: 3000;
}

.request-mic-btn{
  position: fixed;
  right: 32px;
  bottom: 12px;
  z-index: 3000;
}

.doc-preview-timer{
  position: fixed;
  left: 32px;
  bottom: 12px;
  z-index: 300;
  padding: 8px;
  background-color: #cecece;
  border-radius: 10px;
  font-size: 24px;
}

#xlsx-container{
  padding: 24px;
  background-color: #ececec;
}

.server-status{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 32px;
  color: #fff !important;
}

.block-meeting{
  position: fixed;
  left: 0px;
  top: 80px;
  width: 100vw;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  font-size: 32px;
  color: #fff !important;
  z-index: 3000;
}

.online{
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: green;
  border-radius: 20px;
}

.offline{
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #aeaeae;
  border-radius: 20px;
}
.voting-results-container{
  cursor: pointer;
}
.cursor-pointer{
  cursor: pointer;
}
.mic-container{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: 30px;
  height: 30px;
}
.mic-requests-container{
  position: fixed;
  right: 60px;
  bottom: 0px;
  padding: 12px 24px;
  z-index: 2000;
  width: 350px;
}

#mic-requests{
  max-height: 80vh;
  overflow-y: auto;
}
.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

.btn-voting{
  font-size: 2rem !important;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}


@media (min-width: 992px) { 
  .btm-right-link{
    position: fixed;
    left: 20px;
    bottom: 20px;
    font-weight: bold;
  }
}

.party-name{
  font-size: 10px !important;
}