@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap');


*:lang(en) {
  text-decoration: none;
  box-sizing: border-box;

  font-family: "Nunito Sans";
}
*:lang(kh) {
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Battambang";
}
/*set all font color */
h1:lang(en),
h2:lang(en),
h3:lang(en),
h4:lang(en),
h5:lang(en),
h6:lang(en),
p:lang(en){
  font-family: "Nunito Sans";
}
h1:lang(kh),
h2:lang(kh),
h3:lang(kh),
h4:lang(kh),
h5:lang(kh),
h6:lang(kh),
p:lang(kh){
  font-family: "Battambang";
}


/* chat list style */
.chat-list{
    height: 'auto';
    overflow-y: auto;
    padding: 0 20px;
}
.chat-list-item{
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
}
.chat-list-item-avatar{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.chat-list-item-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chat-list-item-content{
    flex: 1;
}
.chat-list-item-content-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-list-item-content-header-name{
    display: flex;
    align-items: center;
}
.chat-list-item-content-header-name h5{
    margin-bottom: 0;
    margin-right: 10px;
}
.chat-list-item-content-header-name span{
    font-size: 12px;
}
.chat-list-item-content-header-action{
    font-size: 20px;
    cursor: pointer;
}
.chat-list-item-content-body{
    font-size: 14px;
    color: #666;
}
/* chat list style */

/* animation loading */
.sk-cube-grid .sk-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: #033156;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
/* animation loading */


.mr-1 {
  margin-right: 10px;
}

.mr-2 {
  margin-right: 20px;
}

.mr-3 {
  margin-right: 30px;
}

.mr-4 {
  margin-right: 40px;
}

.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

img {
  max-width: 100%;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body {
  background-color: #ffffff;
}

nav .logo {
  font-size: 28px;
  color: #033156;
  font-weight: bold;
}

.dropdown-toggle::after, .dropleft .dropdown-toggle::before {
  display:  none !important;
}
.container-join::-webkit-scrollbar {
  display: none;
}

.tags-container {
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  border: 1px solid rgb(168, 178, 203);
  padding: 0px 5px 0 5px;
  border-radius: 10px;
}
.form-control:focus {
  box-shadow: none !important;
}
.tag {
  background-color: #d6eeff;
  color: #033156;
  padding: 3px 10px;
  font-weight: bold;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.tag button {
  background: none;
  border: none;
  color: #fff;
  font-size: 12px;
  margin-left: 5px;
}

/*input[type='text'] {
  padding: 5px;
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}*/

.suggestions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suggestions li {
  padding: 8px;
  cursor: pointer;
}

.suggestions li:hover {
  background-color: #e4e4e4;
}

@media screen and (min-width: 1200px){
  .setting-inside{
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: translate(0px, -100px);
  }
  .dropdown-paticipant{
    
    text-align: center;
    margin-left: -1px;
    color: #fff;
    padding: 3px;
    height: 30px;
    width: 30px;
    border-radius: 100px;
    transition: color 0.3s ease 0s;
    position: absolute !important;
    right: 10px;
    z-index: 100;
    margin-top: 5px;
  }
    
  .dropdown-menu.show{
    border-radius: 10px;
    min-width: 30vh;
    transform: translate3d(-80px, -110px, 0px)

  }
  .video-frame-participant{
    width: 100%;
    height: 100%;
    /*margin-right: 10px;*/
    object-fit: contain;
    background-color: rgba(0,0,0,.8);
  }
  .container-join{
    height: 100vh;
    overflow-y: auto;
  }
  .container-room .whiteboard-cont .colors-cont .color-picker:hover {
    cursor: pointer;
  }
  .container-room .whiteboard-cont .colors-cont .clearboard {
    height: 30px;
    width: 30px;
    font-size: 26px;
    margin-top: 10px;
    color: #2b2b2b;
  }
  .container-room .whiteboard-cont .colors-cont .clearboard:hover {
    cursor: pointer;
  }
  .container-room .video-cont .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    position: relative;
  }
  .container-room .video-cont .video-box .video-frame {
    position:absolute;
    z-index:0;
    top:0;
    left:0;
    width:100%; 
    height: calc(100vh - (var(--vh-offset, 0px)));
    object-fit: contain;
  }
  .container-room .video-cont .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont .video-box .video-off {
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
  }
  /*asd */
  
  
  
  /*asd */
  .container-room .video-cont-single {
    height: 100vh;
  }
  .container-room .video-cont-single .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-single .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
  }
  .container-room .video-cont-single .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-single .video-box .video-off {
    color: white;
    bottom: 10px;
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-single .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .footer {
    /*position: fixed;*/
    bottom:0
  }
  .footer .utils {
    text-align: center;
    margin: 0 auto;
    display: flex;
    /*margin-top: 50px;*/
    width: 350px;
    /*background-color: #ffffff;*/
    border-radius: 10px;
    padding: 10px;
    justify-content: center;
  }
  .footer .utils .audio {
    background-color: #0092ff;
    text-align: center;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .footer .utils .audio:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .footer .utils .novideo {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .footer .utils .novideo:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .footer .utils .screenshare {
    background-color: #d8d8d8;
    text-align: center;
    margin-left: 10px;
    color: #033156;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .footer .utils .screenshare:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .footer .utils .board-icon {
    background-color: #d8d8d8;
    text-align: center;
    color: #033156;
    margin-left: 10px;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .footer .utils .board-icon:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .footer .utils .cutcall {
    background-color: #cc4e4e;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .footer .utils .cutcall:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .footer .utils .chatBox {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .footer .utils .chatBox:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .footer .copycode-cont {
    /*position: absolute;*/
    /*top: 10px;
    left: 0;*/
    display: flex;
  }
  .footer .copycode-cont .roomcode {
    color: #0092ff;
    padding: 10px 20px;
    background-color: white;
    /*border-bottom: 3px solid #0092ff;*/
    font-weight: bold;
    border-radius: 5px;
  }
  .footer .copycode-cont .copycode-button {
    padding: 10px 0;
    width: 100px;
    text-align: center;
    color: white;
    background-color: #0092ff;
    border: none;
    font-weight: bold;
    outline: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .footer .copycode-cont .copycode-button:hover {
    cursor: pointer;
  }
  .footer .copycode-cont .copycode-button:focus {
    outline: none;
  }
  .right-cont {
    /*width: 30%;*/
    background-color: #ffffff;
    height: 100vh;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .right-cont ::-webkit-scrollbar {
    width: 10px;
  }
  .right-cont ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .right-cont ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .right-cont ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .right-cont .head-title {
    font-weight: bold;
    color: #033156;
    background-color: #ffffff;
    width: 100%;
    display: flex;
    border-bottom: 2px solid #033156;
  }
  .dismissButton{
    display: flex;
      background-color: rgb(0 0 0 / 17%);
      color: rgb(3, 49, 86);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 0;
  }
  .right-cont .head-title .chats,
  .right-cont .head-title .attendies {
    padding: 10px;
    padding-top: 20px;
    width: 100%;
    text-align: center;
    transition: background-color 0.5s;
  }
  .right-cont .head-title .chats:hover,
  .right-cont .head-title .attendies:hover {
    background-color: #f8f8f8;
    cursor: pointer;
  }
  .right-cont .chat-cont {
    background-color: #ffffff;
    height: 84vh;
    padding: 10px;
    padding-top: 10px;
    overflow-y: scroll;
  }
  .right-cont .chat-cont .message {
    margin-bottom: 15px;
    margin-left: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    word-break: break-all;
    word-wrap: break-word;
  }
  .right-cont .chat-cont .message .info {
    display: flex;
    font-size: 0.85rem;
  }
  .right-cont .chat-cont .message .info .username {
    font-weight: bold;
    color: #0092ff;
  }
  .right-cont .chat-cont .message .info .time {
    margin-left: 12px;
  }
  .right-cont .chat-cont .message .content {
    margin-top: 5px;
    font-size: 0.9rem;
  }
  .right-cont .chat-input-cont {
    padding: 12px;
    display: flex;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.15);
  }
  .right-cont .chat-input-cont .ci-cont {
    width: 80%;
  }
  .right-cont .chat-input-cont .ci-send {
    width: 20%;
    margin-left: 20px;
  }
  .right-cont .chat-input-cont .chat-input {
    width: 100%;
    height: 36px;
    font-size: 0.85rem;
    padding: 4px 10px;
    border: none;
    border-bottom: 3px solid #0092ff;
    color: #033156;
  }
  .right-cont .chat-input-cont .chat-input:focus {
    outline: none;
  }
  .right-cont .chat-input-cont .chat-send {
    height: 36px;
    padding: 5px 20px;
    border: none;
    background-color: white;
    color: #0092ff;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: background-color 0.5s;
  }
  .right-cont .chat-input-cont .chat-send:hover {
    color: #2980b9;
    cursor: pointer;
    background-color: #f3f3f3;
  }
  .right-cont .chat-input-cont .chat-send:focus {
    outline: none;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0f0f0f transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 0.8;
  }
  .video-cont-multiple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    height: 75vh;
  }
  .video-cont-multiple .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .video-cont-multiple .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
  }
  .video-cont-multiple .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .video-cont-multiple .video-box .video-off{
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .video-cont-multiple .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  
  .main {
    display: flex;
    padding: 0 12%;
    width: 100%;
  }
  .main .create-join {
    width: 85%;
  }
  .main .create-join .text .head {
    font-size: 36px;
    font-weight: bold;
    color: #033156;
  }
  .main .create-join .text .subtext {
    font-size: 24px;
    color: #6f6f6f;
    margin-top: 10px;
  }
  .main .create-join .createroom-butt {
    width: 50%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    background-color: #0092ff;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    border: 2px solid #0092ff;
    transition: 0.3s;
  }
  .main .create-join .createroom-butt:hover {
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
    cursor: pointer;
  }
  .main .create-join .createroom-butt:focus {
    outline: none;
  }
  .main .create-join .createroom-clicked {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
  }
  .main .create-join .createroom-clicked:focus {
    outline: none;
  }
  .main .create-join .roomcode {
    width: 100%;
    margin-top: 30px;
    font-size: 24px;
    color: #033156;
    text-align: center;
    padding: 10px 0;
    border: none;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    font-weight: bold;
  }
  .main .create-join .roomcode:focus {
    background-color: white;
    border: 0;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    outline: none;
    border-radius: 0;
  }
  .main .create-join .roomcode-error {
    border-bottom: 3px solid #d31c1c;
  }
  .main .create-join .joinroom {
    border: 3px solid #ffffff;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 8px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    
    color: #232931;
  }
  .main .create-join .joinroom:hover {
    cursor: pointer;
    border-color: #0092ff;
    border: 3px solid #0092ff;
    color: #0092ff;
    padding: 8px;
    border-radius: 10px;
  }
  .main .video-cont {
    width: 100%;
    text-align: center;
  }
  .main .video-cont .video-self {
    height: 400px;
    width: 100%;
    background-color: #033156;
    border-radius: 10px;
    object-fit: contain;
  }
  .main .video-cont .settings {
    margin: 0 auto;
    display: flex;
    margin-top: 10px;
    width: 100px;
  }
  .main .video-cont .settings .device {
    background-color: #0092ff;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .device:hover {
    background-color: #033156;
    cursor: pointer;
  }
  .main .video-cont .settings .nodevice {
    background-color: #b12c2c;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .nodevice:hover {
    background-color: #033156;
    cursor: pointer;
  }
  
  @media (max-width: 1200px) {
    .main {
      flex-direction: column;
    }
    .main .create-join {
      width: 100%;
      margin-right: 0;
    }
    .main .video-cont {
      margin-top: 100px;
      margin-bottom: 100px;
    }
  }
  .overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #033156;
  }
  .overlay .box {
    /*width: 25%;*/
    margin: 0 auto;
    height: 200px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
  }
  .overlay .box .head-name {
    padding-top: 20px;
    text-align: center;
    color: #033156;
    font-weight: bold;
  }
  .overlay .box .name-field {
    margin: 0px auto;
    margin-top: 20px;
    border: 0;
    font-weight: bold;
    padding: 10px;
    width: 90%;
    border-bottom: 3px solid #0092ff;
    color: #033156;
    height: 40px;
  }
  .overlay .box .name-field:focus {
    outline: none;
  }
  .overlay .box .continue-name {
    border: none;
    margin: 0 auto;
    margin-top: 30px;
    color: #ffffff;
    font-weight: bold;
    background-color: #0092ff;
    padding: 12px 20px;
    border-radius: 10px;
    transition: opacity 0.5s;
  }
  .overlay .box .continue-name:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  .overlay .box .continue-name:focus {
    outline: 0;
  }
  
  .container-room {
    margin: 0;
    top: 0;
    bottom: 0;
    display: flex;
    background-color: #ecf0f1;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room {
    /*width: 80%;*/
    background-color: #033156;
    height: 100vh;
    padding: 50px;
    text-align: center;
    position: relative;
  }
  .container-room .whiteboard-cont {
    height: 85vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0px;
    padding-bottom: 0;
    min-height: 600px;
    z-index: 999999;
  }
  .container-room .whiteboard-cont #whiteboard {
    background-color: white;
    border-radius: 10px;
  }
  .container-room .whiteboard-cont .colors-cont {
    position: absolute;
    right: 10px;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .container-room .whiteboard-cont .colors-cont .color-picker {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
  }
  .host-label{
    position: absolute;
    top: 10px;
    left: 10px;
    color: #033156;
    z-index: 99;
    background: #ffffff;
    padding: 0 5px;
    border-radius: 10px;
    font-size: 12px;
  }
  .me-label{
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: #ffffff;
    z-index: 99;
    background: #0092ff;
    padding: 0 5px;
    border-radius: 10px;
    font-size: 12px;
  }
  .participant-box{
    height: 170px;
    width: 100%;
    position: relative;
  }
 .nametag{
    font-size: 16px;
    font-weight: bold;
    /*transform: translate3d(-100px, -35px, 0px);*/
    color: #ffffff;
    
  }
 .mute-icon {
    font-size: 16px;
    font-weight: bold;
    /*transform: translate3d(100px, -60px, 0px);*/
    color: #ffffff;
    
  }
 .video-off {
    font-size: 16px;
    font-weight: bold;
    transform: translate3d(0px, -130px, 0px);
    color: #ffffff;
  }
  
  
  /*.video-frame-participant{
    height: 100%;
    width: 100%;
    object-fit: contain;
  }*/
/* Desktop */
@media screen and (min-width: 1025px) and (max-width: 1199px){
  .participant-box{
    height: 170px;
    width: 100%;
    position: relative;
  }
  .setting-inside{
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: translate(0px, -100px);
  }
  .dropdown-paticipant{
    text-align: center;
    margin-left: -1px;
    color: #fff;
    padding: 3px;
    height: 30px;
    width: 30px;
    border-radius: 100px;
    transition: color 0.3s ease 0s;
    position: absolute !important;
    right: 10px;
    z-index: 100;
    margin-top: 5px;
  }
    
  .dropdown-menu.show{
    border-radius: 10px;
    min-width: 30vh;
    transform: translate3d(-80px, -110px, 0px)

  }
  .video-frame-participant{
    width: 100%;
    height: 170px;
    /* margin-right: 10px; */
    object-fit: contain;
    background-color: rgba(0,0,0,.8);
    /*position: fixed;*/
    bottom: 100px;
  }
  
  .container-join{
    height: 100vh;
    overflow-y: auto;
  }
  .container-room .whiteboard-cont .colors-cont .color-picker:hover {
    cursor: pointer;
  }
  .container-room .whiteboard-cont .colors-cont .clearboard {
    height: 30px;
    width: 30px;
    font-size: 26px;
    margin-top: 10px;
    color: #2b2b2b;
  }
  .container-room .whiteboard-cont .colors-cont .clearboard:hover {
    cursor: pointer;
  }
  .container-room .video-cont {
    /*display: grid;*/
    /*grid-template-columns: 1fr 1fr;*/
    /*grid-gap: 20px;*/
    /*height: 75vh;*/
  }
  .container-room .video-cont .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont .video-box .video-frame {
    position:absolute;
    z-index:0;
    top:0;
    left:0;
    width:100%; 
    height: calc(100vh - (var(--vh-offset, 0px)));
    object-fit: contain;
  }
  
  .container-room .video-cont .video-box .nametag {
    color: white;
    top: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont .video-box .video-off {
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
  }
  .container-room .video-cont-single {
    height: 100vh;
  }
  .container-room .video-cont-single .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-single .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
  }
  .container-room .video-cont-single .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-single .video-box .video-off {
    color: white;
    bottom: 10px;
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-single .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .container-room .footer {
    /*position: fixed;*/
    bottom:0
  }
  .container-room .footer .utils {
    text-align: center;
    margin: 0 auto;
    display: flex;
    /*margin-top: 50px;*/
    width: 350px;
    /*background-color: #ffffff;*/
    border-radius: 10px;
    padding: 10px;
    justify-content: center;
  }
  .container-room .footer .utils .audio {
    background-color: #0092ff;
    text-align: center;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .audio:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .novideo {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .novideo:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .screenshare {
    background-color: #d8d8d8;
    text-align: center;
    margin-left: 10px;
    color: #033156;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .container-room .footer .utils .screenshare:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .container-room .footer .utils .board-icon {
    background-color: #d8d8d8;
    text-align: center;
    color: #033156;
    margin-left: 10px;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .container-room .footer .utils .board-icon:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .container-room .footer .utils .cutcall {
    background-color: #cc4e4e;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .cutcall:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .chatBox {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .chatBox:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .copycode-cont {
    /*position: absolute;*/
    /*top: 10px;
    left: 0;*/
    display: flex;
  }
  .container-room .footer .copycode-cont .roomcode {
    color: #0092ff;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 3px solid #0092ff;
    font-weight: bold;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .container-room .footer .copycode-cont .copycode-button {
    padding: 10px 0;
    width: 100px;
    text-align: center;
    color: white;
    background-color: #0092ff;
    border: none;
    font-weight: bold;
    outline: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .container-room .footer .copycode-cont .copycode-button:hover {
    cursor: pointer;
  }
  .container-room .footer .copycode-cont .copycode-button:focus {
    outline: none;
  }
  .container-room .right-cont {
    /*width: 30%;*/
    background-color: #ffffff;
    height: 100vh;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room .right-cont ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room .right-cont ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room .right-cont ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room .right-cont ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room .right-cont .head-title {
    font-weight: bold;
    color: #033156;
    background-color: #ffffff;
    width: 100%;
    display: flex;
    border-bottom: 2px solid #033156;
  }
  .dismissButton{
    display: flex;
      background-color: rgb(0 0 0 / 17%);
      color: rgb(3, 49, 86);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 0;
  }
  .container-room .right-cont .head-title .chats,
  .container-room .right-cont .head-title .attendies {
    padding: 10px;
    padding-top: 20px;
    width: 100%;
    text-align: center;
    transition: background-color 0.5s;
  }
  .container-room .right-cont .head-title .chats:hover,
  .container-room .right-cont .head-title .attendies:hover {
    background-color: #f8f8f8;
    cursor: pointer;
  }
  .container-room .right-cont .chat-cont {
    background-color: #ffffff;
    height: 84vh;
    padding: 10px;
    padding-top: 10px;
    overflow-y: scroll;
  }
  .container-room .right-cont .chat-cont .message {
    margin-bottom: 15px;
    margin-left: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    word-break: break-all;
    word-wrap: break-word;
  }
  .container-room .right-cont .chat-cont .message .info {
    display: flex;
    font-size: 0.85rem;
  }
  .container-room .right-cont .chat-cont .message .info .username {
    font-weight: bold;
    color: #0092ff;
  }
  .container-room .right-cont .chat-cont .message .info .time {
    margin-left: 12px;
  }
  .container-room .right-cont .chat-cont .message .content {
    margin-top: 5px;
    font-size: 0.9rem;
  }
  .container-room .right-cont .chat-input-cont {
    padding: 12px;
    display: flex;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.15);
  }
  .container-room .right-cont .chat-input-cont .ci-cont {
    width: 80%;
  }
  .container-room .right-cont .chat-input-cont .ci-send {
    width: 20%;
    margin-left: 20px;
  }
  .container-room .right-cont .chat-input-cont .chat-input {
    width: 100%;
    height: 36px;
    font-size: 0.85rem;
    padding: 4px 10px;
    border: none;
    border-bottom: 3px solid #0092ff;
    color: #033156;
  }
  .container-room .right-cont .chat-input-cont .chat-input:focus {
    outline: none;
  }
  .container-room .right-cont .chat-input-cont .chat-send {
    height: 36px;
    padding: 5px 20px;
    border: none;
    background-color: white;
    color: #0092ff;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: background-color 0.5s;
  }
  .container-room .right-cont .chat-input-cont .chat-send:hover {
    color: #2980b9;
    cursor: pointer;
    background-color: #f3f3f3;
  }
  .container-room .right-cont .chat-input-cont .chat-send:focus {
    outline: none;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0f0f0f transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 0.8;
  }
  .container-room .video-cont-multiple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    height: 75vh;
  }
  .container-room .video-cont-multiple .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-multiple .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
  }
  .container-room .video-cont-multiple .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-multiple .video-box .video-off {
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-multiple .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .main {
    display: flex;
    padding: 0 12%;
    margin-top: 20vh;
    width: 100%;
  }
  .main .create-join {
    width: 85%;
    margin-right: 50px;
  }
  .main .create-join .text .head {
    font-size: 36px;
    font-weight: bold;
    color: #033156;
  }
  .main .create-join .text .subtext {
    font-size: 24px;
    color: #6f6f6f;
    margin-top: 10px;
  }
  .main .create-join .createroom-butt {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    background-color: #0092ff;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    border: 2px solid #0092ff;
    transition: 0.3s;
  }
  .main .create-join .createroom-butt:hover {
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
    cursor: pointer;
  }
  .main .create-join .createroom-butt:focus {
    outline: none;
  }
  .main .create-join .createroom-clicked {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
  }
  .main .create-join .createroom-clicked:focus {
    outline: none;
  }
  .main .create-join .roomcode {
    width: 100%;
    margin-top: 30px;
    font-size: 24px;
    color: #033156;
    text-align: center;
    padding: 10px 0;
    border: none;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    font-weight: bold;
  }
  .main .create-join .roomcode:focus {
    background-color: white;
    border: 0;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    outline: none;
    border-radius: 0;
  }
  .main .create-join .roomcode-error {
    border-bottom: 3px solid #d31c1c;
  }
  .main .create-join .joinroom {
    border: 3px solid #ffffff;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 8px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    
    color: #232931;
  }
  .main .create-join .joinroom:hover {
    cursor: pointer;
    border-color: #0092ff;
    border: 3px solid #0092ff;
    color: #0092ff;
    padding: 8px;
    border-radius: 10px;
  }
  .main .video-cont .video-self {
    height: 400px;
    width: 100%;
    background-color: #033156;
    border-radius: 10px;
    object-fit: contain;
  }
  .main .video-cont .settings {
    margin: 0 auto;
    display: flex;
    margin-top: 10px;
    width: 100px;
  }
  .main .video-cont .settings .device {
    background-color: #0092ff;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .device:hover {
    background-color: #033156;
    cursor: pointer;
  }
  .main .video-cont .settings .nodevice {
    background-color: #b12c2c;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .nodevice:hover {
    background-color: #033156;
    cursor: pointer;
  }
  
  @media (max-width: 1200px) {
    .main {
      flex-direction: column;
    }
    .main .create-join {
      width: 100%;
      margin-right: 0;
    }
    .main .video-cont {
      margin-top: 100px;
      margin-bottom: 100px;
    }
  }
  .overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #033156;
  }
  .overlay .box {
    /*width: 25%;*/
    margin: 0 auto;
    height: 200px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
  }
  .overlay .box .head-name {
    padding-top: 20px;
    text-align: center;
    color: #033156;
    font-weight: bold;
  }
  .overlay .box .name-field {
    margin: 0px auto;
    margin-top: 20px;
    border: 0;
    font-weight: bold;
    padding: 10px;
    width: 90%;
    border-bottom: 3px solid #0092ff;
    color: #033156;
    height: 40px;
  }
  .overlay .box .name-field:focus {
    outline: none;
  }
  .overlay .box .continue-name {
    border: none;
    margin: 0 auto;
    margin-top: 30px;
    color: #ffffff;
    font-weight: bold;
    background-color: #0092ff;
    padding: 12px 20px;
    border-radius: 10px;
    transition: opacity 0.5s;
  }
  .overlay .box .continue-name:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  .overlay .box .continue-name:focus {
    outline: 0;
  }
  
  .container-room {
    margin: 0;
    top: 0;
    bottom: 0;
    display: flex;
    background-color: #ecf0f1;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room {
    /*width: 80%;*/
    background-color: #353b48;
    height: 100vh;
    padding: 50px;
    text-align: center;
    position: relative;
  }
  .container-room .whiteboard-cont {
    height: 85vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0px;
    padding-bottom: 0;
    min-height: 600px;
    z-index: 999999;
  }
  .container-room .whiteboard-cont #whiteboard {
    background-color: white;
    border-radius: 10px;
  }
  .container-room .whiteboard-cont .colors-cont {
    position: absolute;
    right: 10px;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .container-room .whiteboard-cont .colors-cont .color-picker {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
}
  
  
 /* small laptop */
@media screen and (min-width: 768px) and (max-width: 1024px){
  .participant-box{
    height: 170px;
    width: 100%;
    margin: 0.5rem;
    position: relative;
  }
  .setting-inside{
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: translate(0px, -100px);
  }
  .dropdown-paticipant{
    text-align: center;
    margin-left: -1px;
    color: #fff;
    padding: 3px;
    height: 30px;
    width: 30px;
    border-radius: 100px;
    transition: color 0.3s ease 0s;
    position: absolute !important;
    right: 10px;
    z-index: 100;
    margin-top: 5px;
  }
    
  .dropdown-menu.show{
    border-radius: 10px;
    min-width: 30vh;
    transform: translate3d(-80px, -110px, 0px)

  }
  .video-frame-participant{
    width: 400px;
    height: 170px;
    /* margin-right: 10px; */
    object-fit: contain;
    background-color: rgba(0,0,0,.8);
  }
  .container-join{
    overflow-x: scroll;
    display: flex;
    overflow-y: hidden;
    position: fixed !important;
    white-space: nowrap;
    bottom: 100px;
    
  }
  /*.container-join{
    height: 100vh;
    overflow-y: auto;
  }*/
  .container-room .whiteboard-cont .colors-cont .color-picker:hover {
    cursor: pointer;
  }
  .container-room .whiteboard-cont .colors-cont .clearboard:hover {
    cursor: pointer;
  }
  .container-room .video-cont {
    /*display: grid;*/
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    /*height: 75vh;*/
  }
  .container-room .video-cont .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont .video-box .video-frame {
    position:absolute;
    z-index:0;
    top:0;
    left:0;
    width:100%; 
    height: calc(100vh - (var(--vh-offset, 0px)));
    object-fit: contain;
  }
  .container-room .video-cont .video-box .video-off {
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
  }
  .container-room .video-cont-single {
    height: 80vh;
  }
  .container-room .video-cont-single .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-single .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
  }
  .container-room .video-cont-single .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-single .video-box  {
    color: white;
    bottom: 10px;
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-single .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .container-room .footer {
    /*position: fixed;*/
    bottom:0
  }
  .container-room .footer .utils {
    text-align: center;
    margin: 0 auto;
    display: flex;
    /*margin-top: 50px;*/
    width: 350px;
    /*background-color: #ffffff;*/
    border-radius: 10px;
    padding: 10px;
    justify-content: center;
  }
  .container-room .footer .utils .audio {
    background-color: #0092ff;
    text-align: center;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .audio:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .novideo {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .novideo:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .screenshare {
    background-color: #d8d8d8;
    text-align: center;
    margin-left: 10px;
    color: #033156;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .container-room .footer .utils .screenshare:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .container-room .footer .utils .board-icon {
    background-color: #d8d8d8;
    text-align: center;
    color: #033156;
    margin-left: 10px;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .container-room .footer .utils .board-icon:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .container-room .footer .utils .cutcall {
    background-color: #cc4e4e;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .cutcall:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .chatBox {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .chatBox:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .copycode-cont {
    /*position: absolute;*/
    /*top: 10px;
    left: 0;*/
    display: flex;
  }
  .container-room .footer .copycode-cont .roomcode {
    color: #0092ff;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 3px solid #0092ff;
    font-weight: bold;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .container-room .footer .copycode-cont .copycode-button {
    padding: 10px 0;
    width: 100px;
    text-align: center;
    color: white;
    background-color: #0092ff;
    border: none;
    font-weight: bold;
    outline: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .container-room .footer .copycode-cont .copycode-button:hover {
    cursor: pointer;
  }
  .container-room .footer .copycode-cont .copycode-button:focus {
    outline: none;
  }
  .container-room .right-cont {
    /*width: 30%;*/
    background-color: #ffffff;
    height: 100vh;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room .right-cont ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room .right-cont ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room .right-cont ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room .right-cont ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room .right-cont .head-title {
    font-weight: bold;
    color: #033156;
    background-color: #ffffff;
    width: 100%;
    display: flex;
    border-bottom: 2px solid #033156;
  }
  .dismissButton{
    display: flex;
      background-color: rgb(0 0 0 / 17%);
      color: rgb(3, 49, 86);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 0;
  }
  .container-room .right-cont .head-title .chats,
  .container-room .right-cont .head-title .attendies {
    padding: 10px;
    padding-top: 20px;
    width: 100%;
    text-align: center;
    transition: background-color 0.5s;
  }
  .container-room .right-cont .head-title .chats:hover,
  .container-room .right-cont .head-title .attendies:hover {
    background-color: #f8f8f8;
    cursor: pointer;
  }
  .container-room .right-cont .chat-cont {
    background-color: #ffffff;
    height: 84vh;
    padding: 10px;
    padding-top: 10px;
    overflow-y: scroll;
  }
  .container-room .right-cont .chat-cont .message {
    margin-bottom: 15px;
    margin-left: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    word-break: break-all;
    word-wrap: break-word;
  }
  .container-room .right-cont .chat-cont .message .info {
    display: flex;
    font-size: 0.85rem;
  }
  .container-room .right-cont .chat-cont .message .info .username {
    font-weight: bold;
    color: #0092ff;
  }
  .container-room .right-cont .chat-cont .message .info .time {
    margin-left: 12px;
  }
  .container-room .right-cont .chat-cont .message .content {
    margin-top: 5px;
    font-size: 0.9rem;
  }
  .container-room .right-cont .chat-input-cont {
    padding: 12px;
    display: flex;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.15);
  }
  .container-room .right-cont .chat-input-cont .ci-cont {
    width: 80%;
  }
  .container-room .right-cont .chat-input-cont .ci-send {
    width: 20%;
    margin-left: 20px;
  }
  .container-room .right-cont .chat-input-cont .chat-input {
    width: 100%;
    height: 36px;
    font-size: 0.85rem;
    padding: 4px 10px;
    border: none;
    border-bottom: 3px solid #0092ff;
    color: #033156;
  }
  .container-room .right-cont .chat-input-cont .chat-input:focus {
    outline: none;
  }
  .container-room .right-cont .chat-input-cont .chat-send {
    height: 36px;
    padding: 5px 20px;
    border: none;
    background-color: white;
    color: #0092ff;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: background-color 0.5s;
  }
  .container-room .right-cont .chat-input-cont .chat-send:hover {
    color: #2980b9;
    cursor: pointer;
    background-color: #f3f3f3;
  }
  .container-room .right-cont .chat-input-cont .chat-send:focus {
    outline: none;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0f0f0f transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 0.8;
  }
  .container-room .video-cont-multiple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    height: 75vh;
  }
  .container-room .video-cont-multiple .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-multiple .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
  }
  .container-room .video-cont-multiple .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-multiple .video-box {
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-multiple .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .main {
    display: flex;
    padding: 0 12%;
    margin-top: 5vh;
    width: 100%;
  }
  .main .create-join {
    width: 85%;
    margin-right: 50px;
  }
  .main .create-join .text .head {
    font-size: 36px;
    font-weight: bold;
    color: #033156;
  }
  .main .create-join .text .subtext {
    font-size: 24px;
    color: #6f6f6f;
    margin-top: 10px;
  }
  .main .create-join .createroom-butt {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    background-color: #0092ff;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    border: 2px solid #0092ff;
    transition: 0.3s;
  }
  .main .create-join .createroom-butt:hover {
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
    cursor: pointer;
  }
  .main .create-join .createroom-butt:focus {
    outline: none;
  }
  .main .create-join .createroom-clicked {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
  }
  .main .create-join .createroom-clicked:focus {
    outline: none;
  }
  .main .create-join .roomcode {
    width: 100%;
    margin-top: 30px;
    font-size: 24px;
    color: #033156;
    text-align: center;
    padding: 10px 0;
    border: none;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    font-weight: bold;
  }
  .main .create-join .roomcode:focus {
    background-color: white;
    border: 0;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    outline: none;
    border-radius: 0;
  }
  .main .create-join .roomcode-error {
    border-bottom: 3px solid #d31c1c;
  }
  .main .create-join .joinroom {
    border: 3px solid #ffffff;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 8px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    
    color: #232931;
  }
  .main .create-join .joinroom:hover {
    cursor: pointer;
    border-color: #0092ff;
    border: 3px solid #0092ff;
    color: #0092ff;
    padding: 8px;
    border-radius: 10px;
  }
  .main .video-cont {
    width: 100%;
    text-align: center;
  }
  .main .video-cont .video-self {
    height: 400px;
    width: 100%;
    background-color: #033156;
    border-radius: 10px;
    object-fit: contain;
  }
  .main .video-cont .settings {
    margin: 0 auto;
    display: flex;
    margin-top: 10px;
    width: 100px;
  }
  .main .video-cont .settings .device {
    background-color: #0092ff;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .device:hover {
    background-color: #033156;
    cursor: pointer;
  }
  .main .video-cont .settings .nodevice {
    background-color: #b12c2c;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .nodevice:hover {
    background-color: #033156;
    cursor: pointer;
  }
  
  @media (max-width: 1200px) {
    .main {
      flex-direction: column;
    }
    .main .create-join {
      width: 100%;
      margin-right: 0;
    }
    .main .video-cont {
      margin-top: 100px;
      margin-bottom: 100px;
    }
  }
  .overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #033156;
  }
  .overlay .box {
    /*width: 25%;*/
    margin: 0 auto;
    height: 200px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
  }
  .overlay .box .head-name {
    padding-top: 20px;
    text-align: center;
    color: #033156;
    font-weight: bold;
  }
  .overlay .box .name-field {
    margin: 0px auto;
    margin-top: 20px;
    border: 0;
    font-weight: bold;
    padding: 10px;
    width: 90%;
    border-bottom: 3px solid #0092ff;
    color: #033156;
    height: 40px;
  }
  .overlay .box .name-field:focus {
    outline: none;
  }
  .overlay .box .continue-name {
    border: none;
    margin: 0 auto;
    margin-top: 30px;
    color: #ffffff;
    font-weight: bold;
    background-color: #0092ff;
    padding: 12px 20px;
    border-radius: 10px;
    transition: opacity 0.5s;
  }
  .overlay .box .continue-name:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  .overlay .box .continue-name:focus {
    outline: 0;
  }
  
  .container-room {
    margin: 0;
    top: 0;
    bottom: 0;
    display: flex;
    background-color: #ecf0f1;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room {
    /*width: 80%;*/
    background-color: #353b48;
    height: 100vh;
    padding: 50px;
    text-align: center;
    position: relative;
  }
  .container-room .whiteboard-cont {
    height: 85vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0px;
    padding-bottom: 0;
    min-height: 600px;
    z-index: 999999;
  }
  .container-room .whiteboard-cont #whiteboard {
    background-color: white;
    border-radius: 10px;
  }
  .container-room .whiteboard-cont .colors-cont {
    position: absolute;
    right: 10px;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .container-room .whiteboard-cont .colors-cont .color-picker {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
  }
  
  
 /* tablet */
@media screen and (min-width: 575px) and (max-width: 767.98px){
   .participant-box{
    height: 170px;
    width: 100%;
    margin: 0.5rem;
    position: relative;
  }
  .setting-inside{
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: translate(0px, -100px);
  }
  .dropdown-paticipant{
    text-align: center;
    margin-left: -1px;
    color: #fff;
    padding: 3px;
    height: 30px;
    width: 30px;
    border-radius: 100px;
    transition: color 0.3s ease 0s;
    position: absolute !important;
    right: 10px;
    z-index: 100;
    margin-top: 5px;
  }
    
  /*.dropdown-menu.show{
    border-radius: 10px;
    min-width: 30vh;
    transform: translate3d(-80px, -110px, 0px)

  }*/
  .video-frame-participant{
    width: 320px;
    height: 162px;
    /* margin-right: 10px; */
    object-fit: contain;
    background-color: rgba(0,0,0,.8);
  }
  .container-join{
    overflow-x: scroll;
    display: flex;
    overflow-y: hidden;
    position: fixed !important;
    white-space: nowrap;
    bottom: 100px;
    
  }
  .container-room .whiteboard-cont .colors-cont .color-picker:hover {
    cursor: pointer;
  }
  .container-room .whiteboard-cont .colors-cont .clearboard:hover {
    cursor: pointer;
  }
  .container-room .video-cont {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    /*height: 75vh;*/
  }
  .container-room .video-cont .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont .video-box .video-frame {
    position:absolute;
    z-index:0;
    top:0;
    left:0;
    width:100%; 
    height: calc(100vh - (var(--vh-offset, 0px)));
    object-fit: contain;
  }
  .container-room .video-cont .video-box .nametag {
    color: white;
    top: 15px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont .video-box .video-off {
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont .video-box  {
    /*color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;*/
  }
  .container-room .video-cont .video-box .mute-icon {
    color: #d63434;
    top: 15px;
    position: absolute;
    right: 10px;
    font-size: 20px;
  }
  .container-room .video-cont-single {
    height: 80vh;
  }
  .container-room .video-cont-single .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-single .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
  }
  .container-room .video-cont-single .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-single .video-box  {
    color: white;
    bottom: 10px;
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-single .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .container-room .footer {
    /*position: fixed;*/
    bottom:0
  }
  .container-room .footer .utils {
    text-align: center;
    margin: 0 auto;
    display: flex;
    /*margin-top: 50px;*/
    width: 350px;
    /*background-color: #ffffff;*/
    border-radius: 10px;
    padding: 10px;
    justify-content: center;
  }
  .container-room .footer .utils .audio {
    background-color: #0092ff;
    text-align: center;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .audio:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .novideo {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .novideo:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .screenshare {
    background-color: #d8d8d8;
    text-align: center;
    margin-left: 10px;
    color: #033156;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .container-room .footer .utils .screenshare:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .container-room .footer .utils .board-icon {
    background-color: #d8d8d8;
    text-align: center;
    color: #033156;
    margin-left: 10px;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .container-room .footer .utils .board-icon:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .container-room .footer .utils .cutcall {
    background-color: #cc4e4e;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .cutcall:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .chatBox {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .chatBox:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .copycode-cont {
    /*position: absolute;*/
    /*top: 10px;
    left: 0;*/
    display: flex;
  }
  .container-room .footer .copycode-cont .roomcode {
    color: #0092ff;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 3px solid #0092ff;
    font-weight: bold;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .container-room .footer .copycode-cont .copycode-button {
    padding: 10px 0;
    width: 100px;
    text-align: center;
    color: white;
    background-color: #0092ff;
    border: none;
    font-weight: bold;
    outline: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .container-room .footer .copycode-cont .copycode-button:hover {
    cursor: pointer;
  }
  .container-room .footer .copycode-cont .copycode-button:focus {
    outline: none;
  }
  .container-room .right-cont {
    /*width: 30%;*/
    background-color: #ffffff;
    height: 100vh;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room .right-cont ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room .right-cont ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room .right-cont ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room .right-cont ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room .right-cont .head-title {
    font-weight: bold;
    color: #033156;
    background-color: #ffffff;
    width: 100%;
    display: flex;
    border-bottom: 2px solid #033156;
  }
  .dismissButton{
    display: flex;
      background-color: rgb(0 0 0 / 17%);
      color: rgb(3, 49, 86);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 0;
  }
  .container-room .right-cont .head-title .chats,
  .container-room .right-cont .head-title .attendies {
    padding: 10px;
    padding-top: 20px;
    width: 100%;
    text-align: center;
    transition: background-color 0.5s;
  }
  .container-room .right-cont .head-title .chats:hover,
  .container-room .right-cont .head-title .attendies:hover {
    background-color: #f8f8f8;
    cursor: pointer;
  }
  .container-room .right-cont .chat-cont {
    background-color: #ffffff;
    height: 84vh;
    padding: 10px;
    padding-top: 10px;
    overflow-y: scroll;
  }
  .container-room .right-cont .chat-cont .message {
    margin-bottom: 15px;
    margin-left: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    word-break: break-all;
    word-wrap: break-word;
  }
  .container-room .right-cont .chat-cont .message .info {
    display: flex;
    font-size: 0.85rem;
  }
  .container-room .right-cont .chat-cont .message .info .username {
    font-weight: bold;
    color: #0092ff;
  }
  .container-room .right-cont .chat-cont .message .info .time {
    margin-left: 12px;
  }
  .container-room .right-cont .chat-cont .message .content {
    margin-top: 5px;
    font-size: 0.9rem;
  }
  .container-room .right-cont .chat-input-cont {
    padding: 12px;
    display: flex;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.15);
  }
  .container-room .right-cont .chat-input-cont .ci-cont {
    width: 80%;
  }
  .container-room .right-cont .chat-input-cont .ci-send {
    width: 20%;
    margin-left: 20px;
  }
  .container-room .right-cont .chat-input-cont .chat-input {
    width: 100%;
    height: 36px;
    font-size: 0.85rem;
    padding: 4px 10px;
    border: none;
    border-bottom: 3px solid #0092ff;
    color: #033156;
  }
  .container-room .right-cont .chat-input-cont .chat-input:focus {
    outline: none;
  }
  .container-room .right-cont .chat-input-cont .chat-send {
    height: 36px;
    padding: 5px 20px;
    border: none;
    background-color: white;
    color: #0092ff;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: background-color 0.5s;
  }
  .container-room .right-cont .chat-input-cont .chat-send:hover {
    color: #2980b9;
    cursor: pointer;
    background-color: #f3f3f3;
  }
  .container-room .right-cont .chat-input-cont .chat-send:focus {
    outline: none;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0f0f0f transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 0.8;
  }
  .container-room .video-cont-multiple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    height: 75vh;
  }
  .container-room .video-cont-multiple .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-multiple .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
  }
  .container-room .video-cont-multiple .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-multiple .video-box  {
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-multiple .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .main {
    display: flex;
    padding: 0 12%;
    margin-top: 5vh;
    width: 100%;
  }
  .main .create-join {
    width: 85%;
    margin-right: 50px;
  }
  .main .create-join .text .head {
    font-size: 36px;
    font-weight: bold;
    color: #033156;
  }
  .main .create-join .text .subtext {
    font-size: 24px;
    color: #6f6f6f;
    margin-top: 10px;
  }
  .main .create-join .createroom-butt {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    background-color: #0092ff;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    border: 2px solid #0092ff;
    transition: 0.3s;
  }
  .main .create-join .createroom-butt:hover {
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
    cursor: pointer;
  }
  .main .create-join .createroom-butt:focus {
    outline: none;
  }
  .main .create-join .createroom-clicked {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
  }
  .main .create-join .createroom-clicked:focus {
    outline: none;
  }
  .main .create-join .roomcode {
    width: 100%;
    margin-top: 30px;
    font-size: 24px;
    color: #033156;
    text-align: center;
    padding: 10px 0;
    border: none;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    font-weight: bold;
  }
  .main .create-join .roomcode:focus {
    background-color: white;
    border: 0;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    outline: none;
    border-radius: 0;
  }
  .main .create-join .roomcode-error {
    border-bottom: 3px solid #d31c1c;
  }
  .main .create-join .joinroom {
    border: 3px solid #ffffff;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 8px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    
    color: #232931;
  }
  .main .create-join .joinroom:hover {
    cursor: pointer;
    border-color: #0092ff;
    border: 3px solid #0092ff;
    color: #0092ff;
    padding: 8px;
    border-radius: 10px;
  }
  .main .video-cont {
    width: 100%;
    text-align: center;
  }
  .main .video-cont .video-self {
    height: 400px;
    width: 100%;
    background-color: #033156;
    border-radius: 10px;
    object-fit: contain;
  }
  .main .video-cont .settings {
    margin: 0 auto;
    display: flex;
    margin-top: 10px;
    width: 100px;
  }
  .main .video-cont .settings .device {
    background-color: #0092ff;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .device:hover {
    background-color: #033156;
    cursor: pointer;
  }
  .main .video-cont .settings .nodevice {
    background-color: #b12c2c;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .nodevice:hover {
    background-color: #033156;
    cursor: pointer;
  }
  
  @media (max-width: 1200px) {
    .main {
      flex-direction: column;
    }
    .main .create-join {
      width: 100%;
      margin-right: 0;
    }
    .main .video-cont {
      margin-top: 100px;
      margin-bottom: 100px;
    }
  }
  .overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #033156;
  }
  .overlay .box {
    /*width: 25%;*/
    margin: 0 auto;
    height: 200px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
  }
  .overlay .box .head-name {
    padding-top: 20px;
    text-align: center;
    color: #033156;
    font-weight: bold;
  }
  .overlay .box .name-field {
    margin: 0px auto;
    margin-top: 20px;
    border: 0;
    font-weight: bold;
    padding: 10px;
    width: 90%;
    border-bottom: 3px solid #0092ff;
    color: #033156;
    height: 40px;
  }
  .overlay .box .name-field:focus {
    outline: none;
  }
  .overlay .box .continue-name {
    border: none;
    margin: 0 auto;
    margin-top: 30px;
    color: #ffffff;
    font-weight: bold;
    background-color: #0092ff;
    padding: 12px 20px;
    border-radius: 10px;
    transition: opacity 0.5s;
  }
  .overlay .box .continue-name:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  .overlay .box .continue-name:focus {
    outline: 0;
  }
  
  .container-room {
    margin: 0;
    top: 0;
    bottom: 0;
    display: flex;
    background-color: #ecf0f1;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room {
    /*width: 80%;*/
    background-color: #353b48;
    height: 100vh;
    padding: 50px;
    text-align: center;
    position: relative;
  }
  .container-room .whiteboard-cont {
    height: 85vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0px;
    padding-bottom: 0;
    min-height: 600px;
    z-index: 999999;
  }
  .container-room .whiteboard-cont #whiteboard {
    background-color: white;
    border-radius: 10px;
  }
  .container-room .whiteboard-cont .colors-cont {
    position: absolute;
    right: 10px;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .container-room .whiteboard-cont .colors-cont .color-picker {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
}
  
  
 /* tablet and large mobiles */
@media screen and (min-width: 320px) and (max-width: 480px){
  .participant-box{
    height: 170px;
    width: 100%;
    margin: 0.5rem;
    position: relative;
  }
  .dropdown-container {
    position: fixed;
    bottom: 75px;
    z-index: 1;
  }
  .setting-inside{
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: translate(0px, -100px);
  }
  .dropdown-paticipant{
    text-align: center;
    color: #fff;
    padding: 3px;
    height: 30px;
    width: 30px;
    border-radius: 100px;
    transition: color 0.3s ease 0s;
    position: absolute !important;
    z-index: 100;
    margin-top: 5px;
    margin-left: 5px;
  }
    
  .dropdown-menu.show {
    width: 230px;
    /*transform: translate(-110px, -100px) !important;*/
  }
  .video-frame-participant{
    width: 250px;
    height: 163px;
    
    /* margin-right: 10px; */
    
    object-fit: contain;
    background-color: rgba(0,0,0,.8);
  }
  .container-join{
    overflow-x: scroll;
    display: flex;
    overflow-y: hidden;
    position: fixed !important;
    white-space: nowrap;
    bottom: 100px;
    
  }
 
  
  .container-room .whiteboard-cont .colors-cont .color-picker:hover {
    cursor: pointer;
  }
  
  .container-room .whiteboard-cont .colors-cont .clearboard {
    height: 30px;
    width: 30px;
    font-size: 26px;
    color: #2b2b2b;
  }
  .container-room .whiteboard-cont .colors-cont .clearboard:hover {
    cursor: pointer;
  }
  .container-room .video-cont {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    /*height: 75vh;*/
  }
  .container-room .video-cont .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont .video-box .video-frame {
    position:absolute;
    z-index:0;
    top:0;
    left:0;
    width:100%; 
    height: calc(100vh - (var(--vh-offset, 0px)));
    object-fit: contain;
  }
  .container-room .video-cont .video-box .nametag {
    color: white;
    top: 15px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont .video-box .video-off {
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont .video-box  {
    /*color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;*/
  }
  .container-room .video-cont .video-box .mute-icon {
    color: #d63434;
    top: 15px;
    position: absolute;
    right: 10px;
    font-size: 20px;
  }
  .container-room .video-cont-single {
    height: 80vh;
  }
  .container-room .video-cont-single .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-single .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
  }
  .container-room .video-cont-single .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-single .video-box .video-off {
    color: white;
    bottom: 10px;
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-single .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .container-room .footer {
    /*position: fixed;*/
    bottom:0
  }
  .container-room .footer .utils {
    text-align: center;
    margin: 0 auto;
    display: flex;
    /*margin-top: 50px;*/
    width: 350px;
    /*background-color: #ffffff;*/
    border-radius: 10px;
    padding: 10px;
    justify-content: center;
  }
  .container-room .footer .utils .audio {
    background-color: #0092ff;
    text-align: center;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .audio:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .novideo {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .novideo:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .screenshare {
    background-color: #d8d8d8;
    text-align: center;
    margin-left: 10px;
    color: #033156;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .container-room .footer .utils .screenshare:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .container-room .footer .utils .board-icon {
    background-color: #d8d8d8;
    text-align: center;
    color: #033156;
    margin-left: 10px;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
    transition: color 0.3s;
  }
  .container-room .footer .utils .board-icon:hover {
    cursor: pointer;
    color: white;
    background-color: #033156;
  }
  .container-room .footer .utils .cutcall {
    background-color: #cc4e4e;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .cutcall:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .utils .chatBox {
    background-color: #0092ff;
    text-align: center;
    margin-left: 10px;
    color: white;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    transition: background-color 0.3s;
  }
  .container-room .footer .utils .chatBox:hover {
    cursor: pointer;
    background-color: #033156;
  }
  .container-room .footer .copycode-cont {
    /*position: absolute;*/
    /*top: 10px;
    left: 0;*/
    display: flex;
  }
  .container-room .footer .copycode-cont .roomcode {
    color: #0092ff;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 3px solid #0092ff;
    font-weight: bold;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .container-room .footer .copycode-cont .copycode-button {
    padding: 10px 0;
    width: 100px;
    text-align: center;
    color: white;
    background-color: #0092ff;
    border: none;
    font-weight: bold;
    outline: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .container-room .footer .copycode-cont .copycode-button:hover {
    cursor: pointer;
  }
  .container-room .footer .copycode-cont .copycode-button:focus {
    outline: none;
  }
  .container-room .right-cont {
    /*width: 30%;*/
    background-color: #ffffff;
    height: 100vh;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room .right-cont ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room .right-cont ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room .right-cont ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room .right-cont ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room .right-cont .head-title {
    font-weight: bold;
    color: #033156;
    background-color: #ffffff;
    width: 100%;
    display: flex;
    border-bottom: 2px solid #033156;
  }
  .dismissButton{
    display: flex;
      background-color: rgb(0 0 0 / 17%);
      color: rgb(3, 49, 86);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 0;
  }
  .container-room .right-cont .head-title .chats,
  .container-room .right-cont .head-title .attendies {
    padding: 10px;
    padding-top: 20px;
    width: 100%;
    text-align: center;
    transition: background-color 0.5s;
  }
  .container-room .right-cont .head-title .chats:hover,
  .container-room .right-cont .head-title .attendies:hover {
    background-color: #f8f8f8;
    cursor: pointer;
  }
  .container-room .right-cont .chat-cont {
    background-color: #ffffff;
    height: 84vh;
    padding: 10px;
    padding-top: 10px;
    overflow-y: scroll;
  }
  .container-room .right-cont .chat-cont .message {
    margin-bottom: 15px;
    margin-left: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    word-break: break-all;
    word-wrap: break-word;
  }
  .container-room .right-cont .chat-cont .message .info {
    display: flex;
    font-size: 0.85rem;
  }
  .container-room .right-cont .chat-cont .message .info .username {
    font-weight: bold;
    color: #0092ff;
  }
  .container-room .right-cont .chat-cont .message .info .time {
    margin-left: 12px;
  }
  .container-room .right-cont .chat-cont .message .content {
    margin-top: 5px;
    font-size: 0.9rem;
  }
  .container-room .right-cont .chat-input-cont {
    padding: 12px;
    display: flex;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.15);
  }
  .container-room .right-cont .chat-input-cont .ci-cont {
    width: 80%;
  }
  .container-room .right-cont .chat-input-cont .ci-send {
    width: 20%;
    margin-left: 20px;
  }
  .container-room .right-cont .chat-input-cont .chat-input {
    width: 100%;
    height: 36px;
    font-size: 0.85rem;
    padding: 4px 10px;
    border: none;
    border-bottom: 3px solid #0092ff;
    color: #033156;
  }
  .container-room .right-cont .chat-input-cont .chat-input:focus {
    outline: none;
  }
  .container-room .right-cont .chat-input-cont .chat-send {
    height: 36px;
    padding: 5px 20px;
    border: none;
    background-color: white;
    color: #0092ff;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: background-color 0.5s;
  }
  .container-room .right-cont .chat-input-cont .chat-send:hover {
    color: #2980b9;
    cursor: pointer;
    background-color: #f3f3f3;
  }
  .container-room .right-cont .chat-input-cont .chat-send:focus {
    outline: none;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0f0f0f transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 0.8;
  }
  .container-room .video-cont-multiple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    height: 75vh;
  }
  .container-room .video-cont-multiple .video-box {
    background-color: #353b48;
    height: 100%;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
    position: relative;
  }
  .container-room .video-cont-multiple .video-box .video-frame {
    background-color: #353b48;
    height: 100vh;
    min-height: 200px;
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
  }
  .container-room .video-cont-multiple .video-box .nametag {
    color: white;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .container-room .video-cont-multiple .video-box .video-off{
    color: white;
    bottom: 10px;
    position: absolute;
    font-weight: bold;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .container-room .video-cont-multiple .video-box .mute-icon {
    color: #d63434;
    bottom: 10px;
    position: absolute;
    right: 10px;
    font-size: 20px;
    bottom: 10px;
  }
  .main {
    display: flex;
    padding: 0 12%;
    margin-top: 5vh;
    width: 100%;
  }
  .main .create-join {
    width: 85%;
    margin-right: 50px;
  }
  .main .create-join .text .head {
    font-size: 36px;
    font-weight: bold;
    color: #033156;
  }
  .main .create-join .text .subtext {
    font-size: 24px;
    color: #6f6f6f;
    margin-top: 10px;
  }
  .main .create-join .createroom-butt {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    background-color: #0092ff;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    border: 2px solid #0092ff;
    transition: 0.3s;
  }
  .main .create-join .createroom-butt:hover {
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
    cursor: pointer;
  }
  .main .create-join .createroom-butt:focus {
    outline: none;
  }
  .main .create-join .createroom-clicked {
    width: 100%;
    margin-top: 60px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: white;
    border: 2px solid #0092ff;
    color: #0092ff;
  }
  .main .create-join .createroom-clicked:focus {
    outline: none;
  }
  .main .create-join .roomcode {
    width: 100%;
    margin-top: 30px;
    font-size: 24px;
    color: #033156;
    text-align: center;
    padding: 10px 0;
    border: none;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    font-weight: bold;
  }
  .main .create-join .roomcode:focus {
    background-color: white;
    border: 0;
    border-bottom: 3px solid #232931;
    border-top: 2px solid white;
    outline: none;
    border-radius: 0;
  }
  .main .create-join .roomcode-error {
    border-bottom: 3px solid #d31c1c;
  }
  .main .create-join .joinroom {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    padding: 8px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    border: 3px solid #ffffff;
    color: #232931;
  }
  .main .create-join .joinroom:hover {
    cursor: pointer;
    border-color: #0092ff;
    border: 3px solid #0092ff;
    color: #0092ff;
    padding: 8px;
    border-radius: 10px;
  }
  .main .video-cont {
    width: 100%;
    text-align: center;
  }
  .main .video-cont .video-self {
    height: 400px;
    width: 100%;
    background-color: #033156;
    border-radius: 10px;
    object-fit: contain;
  }
  .main .video-cont .settings {
    margin: 0 auto;
    display: flex;
    margin-top: 10px;
    width: 100px;
  }
  .main .video-cont .settings .device {
    background-color: #0092ff;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .device:hover {
    background-color: #033156;
    cursor: pointer;
  }
  .main .video-cont .settings .nodevice {
    background-color: #b12c2c;
    border-radius: 100px;
    padding: 10px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: white;
  }
  .main .video-cont .settings .nodevice:hover {
    background-color: #033156;
    cursor: pointer;
  }
  
  @media (max-width: 1200px) {
    .main {
      flex-direction: column;
    }
    .main .create-join {
      width: 100%;
      margin-right: 0;
    }
    .main .video-cont {
      margin-top: 100px;
      margin-bottom: 100px;
    }
  }
  .overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #033156;
  }
  .overlay .box {
    /*width: 25%;*/
    margin: 0 auto;
    height: 200px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
  }
  .overlay .box .head-name {
    padding-top: 20px;
    text-align: center;
    color: #033156;
    font-weight: bold;
  }
  .overlay .box .name-field {
    margin: 0px auto;
    margin-top: 20px;
    border: 0;
    font-weight: bold;
    padding: 10px;
    width: 90%;
    border-bottom: 3px solid #0092ff;
    color: #033156;
    height: 40px;
  }
  .overlay .box .name-field:focus {
    outline: none;
  }
  .overlay .box .continue-name {
    border: none;
    margin: 0 auto;
    margin-top: 30px;
    color: #ffffff;
    font-weight: bold;
    background-color: #0092ff;
    padding: 12px 20px;
    border-radius: 10px;
    transition: opacity 0.5s;
  }
  .overlay .box .continue-name:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  .overlay .box .continue-name:focus {
    outline: 0;
  }
  
  .container-room {
    margin: 0;
    top: 0;
    bottom: 0;
    display: flex;
    background-color: #ecf0f1;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .container-room ::-webkit-scrollbar {
    width: 10px;
  }
  .container-room ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .container-room ::-webkit-scrollbar-thumb {
    background: #c5c5c5;
  }
  .container-room ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .container-room {
    /*width: 80%;*/
    background-color: #353b48;
    height: 100vh;
    padding: 50px;
    text-align: center;
    position: relative;
  }
  .container-room .whiteboard-cont {
    height: 85vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0px;
    padding-bottom: 0;
    min-height: 600px;
    z-index: 999999;
  }
  .container-room .whiteboard-cont #whiteboard {
    background-color: white;
    border-radius: 10px;
  }
  .container-room .whiteboard-cont .colors-cont {
    position: absolute;
    right: 10px;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .container-room .whiteboard-cont .colors-cont .color-picker {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
  }
  
  
 /* Mobile*/

/*# sourceMappingURL=style.css.map */
