.garden-control-cameras {
  width: 100%;
  height: 5px;
  background: rgb(25, 255, 132);
  background: linear-gradient(18deg, rgb(25, 255, 132) 0%, rgb(136, 84, 255) 100%);
}

.contain-fixed {
  width: auto;
  height: auto;
  padding: 50;
  margin: 10px;
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: right;
  align-items: center;
  z-index: 1;
}
.contain-fixed .open-actions {
  width: 50px;
  height: 50px;
  margin: 10px;
  background-color: white;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  cursor: pointer;
}
.contain-fixed .open-actions-active {
  background-color: #8854FF;
  color: white;
}

.container-actions {
  width: auto;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px;
  display: flex;
  justify-content: right;
  margin-bottom: 80px;
  align-items: flex-end;
  z-index: 10;
}
.container-actions .chat-header {
  width: 100%;
  height: 50px;
  background-color: white;
  display: flex;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 5px 27px 46px -26px rgba(0, 0, 0, 0.44);
}
.container-actions .chat-header .icon-chat {
  width: 20%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-actions .chat-header .info-chat {
  width: 50%;
  height: auto;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.container-actions .chat-header .info-chat p:first-child {
  font-size: 12px;
  margin: 0px;
}
.container-actions .chat-header .info-chat p:nth-child(2) {
  font-size: 10px;
  margin: 0px;
}
.container-actions .chat-header .action-chat {
  width: 30%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-actions .chat-header .action-chat button {
  margin: 1px;
}
.container-actions .chat {
  width: 300px;
  height: 500px;
  background-color: rgb(233, 233, 233);
  border-radius: 10px;
  display: none;
  margin-left: 10px;
}
.container-actions .chat .thumbnail-user {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-position: center;
  background-size: cover;
}
.container-actions .chat .chat-screen .chat-box {
  width: 100%;
  height: 360px;
  background-color: rgb(245, 245, 245);
  overflow-y: scroll;
  padding: 20px 20px 30px 20px;
  display: flex;
  flex-direction: column;
}
.container-actions .chat .chat-screen .chat-box .container-message-recived {
  display: flex;
  flex-direction: row;
}
.container-actions .chat .chat-screen .chat-box .container-message-recived .container-data-menssage .data-message p {
  margin-left: 10px;
  font-size: 10px;
  color: #828282;
}
.container-actions .chat .chat-screen .chat-box .container-message-recived .container-data-menssage .message-recived {
  max-width: 200px;
  height: auto;
  word-wrap: break-word;
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 13px;
  margin-bottom: 15px;
  border-radius: 0px 20px 20px 20px;
  background-color: white;
  box-shadow: 0px 2px 33px -7px rgba(0, 0, 0, 0.21);
}
.container-actions .chat .chat-screen .chat-box .container-message-send {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.container-actions .chat .chat-screen .chat-box .container-message-send .message-send {
  max-width: 200px;
  height: auto;
  word-wrap: break-word;
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 13px;
  margin-bottom: 15px;
  border-radius: 20px 20px 0px 20px;
  background-color: rgb(0, 0, 0);
  color: white;
  box-shadow: 0px 2px 33px -7px rgba(0, 0, 0, 0.21);
}
.container-actions .chat .chat-screen .message-box {
  width: 100%;
  height: 90px;
  background-color: rgb(245, 245, 245);
  border-radius: 0px 0px 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
}
.container-actions .chat .chat-screen .message-box .cont-message-to-send {
  width: 100%;
}
.container-actions .chat .chat-screen .message-box .cont-message-to-send .count-charters {
  font-size: 10px;
  padding: 5px;
  color: rgb(128, 128, 128);
}
.container-actions .chat .chat-screen .message-box .cont-message-to-send .input-message-to-send {
  width: 86%;
  height: 30px;
  border-radius: 100px;
  border: none;
  background-color: rgb(238, 238, 238);
  padding: 15px;
}
.container-actions .chat .users-screen {
  display: none;
}
.container-actions .chat .users-screen .container-users-list {
  width: 100%;
  height: 390px;
  padding: 20px;
  overflow: auto;
}
.container-actions .chat .users-screen .container-users-list .item-user-list {
  width: 100%;
  height: auto;
  display: flex;
}
.container-actions .chat .users-screen .container-users-list .item-user-list .thumbnail-cont {
  width: 20%;
  height: 50px;
  display: flex;
  align-items: center;
}
.container-actions .chat .users-screen .container-users-list .item-user-list .data-user {
  width: 70%;
  height: 50px;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.container-actions .chat .users-screen .container-users-list .item-user-list .data-user p:first-child {
  font-size: 12px;
  margin: 0px;
}
.container-actions .chat .users-screen .container-users-list .item-user-list .data-user p:nth-child(2) {
  font-size: 10px;
  margin: 0px;
}
.container-actions .chat .users-screen .container-users-list .item-user-list .container-status-user {
  width: 10%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-actions .chat .users-screen .container-users-list .item-user-list .container-status-user .status-user {
  width: 10px;
  height: 10px;
  border-radius: 100px;
}
.container-actions .chat .users-screen .container-users-list .item-user-list .container-status-user .online {
  background-color: rgb(23, 195, 46);
}
.container-actions .chat .users-screen .container-users-list .item-user-list .container-status-user .offline {
  background-color: rgb(204, 31, 31);
}
.container-actions .chat .users-detail-screen {
  width: 100%;
  height: auto;
  display: none;
}
.container-actions .chat .users-detail-screen .container-user-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.container-actions .chat .users-detail-screen .container-user-detail .thumbnail-user-detail {
  align-self: center;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: rgb(160, 160, 160);
  background-position: center;
  background-size: cover;
}
.container-actions .chat .users-detail-screen .container-user-detail .info-user-detail {
  align-self: center;
  justify-content: center;
  text-align: center;
}
.container-actions .chat .users-detail-screen .container-user-detail .info-user-detail p {
  margin: 0px;
}
.container-actions .chat .users-detail-screen .container-user-detail .info-user-detail p:nth-child(2) {
  font-size: 10px;
  margin: 0px;
}
.container-actions .chat .users-detail-screen .container-user-detail .info-extend-user-detail .title-info-extend-user-detail {
  color: black;
}
.container-actions .chat .users-detail-screen .container-user-detail .info-extend-user-detail .subtitle-info-extend-user-detail {
  color: gray;
  font-size: 10px;
}
.container-actions .chat .users-detail-screen .container-user-detail .info-extend-user-detail P {
  margin: 0PX;
}
.container-actions .power-cameras-screen {
  display: none;
}
.container-actions .control-cameras {
  width: 300px;
  height: 350px;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-left: 10px;
  display: none;
}
.container-actions .control-cameras .container-controls {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
}
.container-actions .control-cameras .container-controls .container-movement-control {
  width: 70%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  box-shadow: 2px -1px 59px 1px rgba(0, 0, 0, 0.1);
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-up {
  cursor: pointer;
  width: 100%;
  height: 33.33%;
  display: flex;
  justify-content: center;
  padding: 10px;
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-up i {
  color: rgb(190, 190, 190);
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-down {
  cursor: pointer;
  width: 100%;
  height: 33.33%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 10px;
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-down i {
  color: rgb(190, 190, 190);
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-center {
  cursor: pointer;
  width: 100%;
  height: 33.33%;
  display: flex;
  background-color: rgb(25, 19, 80) i;
  background-color-color: white;
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-center .control-camera-left {
  cursor: pointer;
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 10px;
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-center .control-camera-left i {
  color: rgb(190, 190, 190);
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-center .control-camera-right {
  cursor: pointer;
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 10px;
  justify-content: flex-end;
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .controls-camera-center .control-camera-right i {
  color: rgb(190, 190, 190);
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .center-movement-control {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  box-shadow: inset 3px -1px 105px 0px rgba(0, 0, 0, 0.1);
  background-color: #e9e9e9;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-actions .control-cameras .container-controls .container-movement-control .movement-control .center-movement-control i {
  color: rgb(172, 172, 172);
}
.container-actions .control-cameras .container-controls .container-zoom-control {
  width: 30%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-actions .control-cameras .container-controls .container-zoom-control .container-zoom-controls {
  width: 30px;
  height: 150px;
  background-color: white;
  border-radius: 50px 50px 50px 50px;
  display: flex;
  flex-direction: column;
  box-shadow: 2px -1px 59px 1px rgba(0, 0, 0, 0.1);
}
.container-actions .control-cameras .container-controls .container-zoom-control .container-zoom-controls .control-more {
  width: 100%;
  height: 50%;
  border-radius: 50px 50px 0px 0px;
  background-color: white;
  color: rgb(172, 172, 172);
  display: flex;
  justify-content: center;
  padding-top: 15px;
  cursor: pointer;
}
.container-actions .control-cameras .container-controls .container-zoom-control .container-zoom-controls .control-less {
  width: 100%;
  height: 50%;
  border-radius: 0px 0px 50px 50px;
  background-color: white;
  color: rgb(172, 172, 172);
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
}
.container-actions .control-cameras .container-power-cameras {
  width: 100%;
  height: 300px;
  padding: 20px;
}
.container-actions .control-cameras .container-power-cameras .container-item-power-camera {
  width: 100%;
  height: auto;
  display: flex;
}
.container-actions .control-cameras .container-power-cameras .container-item-power-camera .switch-camera {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
.container-actions .tests {
  width: 300px;
  height: 500px;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-left: 10px;
  display: none;
}
.container-actions .tests .container-tests {
  width: 100%;
  height: 400px;
  padding: 20px;
  overflow-x: hidden;
}
.container-actions .tests .container-tests .container-item-test {
  width: 100%;
  height: auto;
  display: flex;
}
.container-actions .tests .container-tests .container-item-test .container-button-item-test {
  width: 25%;
  padding: 3px;
}
.container-actions .tests .container-tests .container-item-test .container-button-item-test .button-start-test {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: none;
  background-color: #ffffff;
  font-size: 10px;
  color: black;
  transition-duration: 0.8s;
}
.container-actions .tests .container-tests .container-item-test .container-button-item-test .button-start-test:hover {
  background-color: #eeeeee;
  transition-duration: 0.8s;
}
.container-actions .tests .container-tests .container-item-test .container-name-item-test {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 3px;
}
.container-actions .tests .container-tests .container-item-test .container-actions-item-test {
  width: 25%;
  padding: 3px;
  display: flex;
}
.container-actions .tests .container-tests .container-item-test .container-actions-item-test div {
  width: 50%;
}
.container-actions .tests .container-tests .container-item-test .container-actions-item-test div .button-action-test {
  width: 100%;
  height: auto;
  background-color: transparent;
  border: none;
}
.container-actions .tests .history-screen {
  display: none;
}
.container-actions .tests .history-screen .container-history {
  width: 100%;
  height: auto;
  padding: 20px;
}
.container-actions .tests .history-screen .container-history .container-items-history {
  width: 100%;
  height: 320px;
  overflow: auto;
}
.container-actions .tests .history-screen .container-history .container-items-history .item-history {
  display: flex;
  flex-direction: row;
  padding: 5px 0px;
}
.container-actions .tests .history-screen .container-history .container-items-history .item-history .name-history {
  width: 40%;
}
.container-actions .tests .history-screen .container-history .container-items-history .item-history .data-history {
  width: 80%;
  font-size: 12px;
  display: flex;
  flex-direction: column;
}
.container-actions .tests .history-screen .container-history .container-form-add-file .form-add-file {
  width: 100%;
  height: 90px;
  display: flex;
  align-self: center;
}
.container-actions .tests .history-screen .container-history .container-form-add-file .form-add-file .input-upload {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-actions .tests .history-screen .container-history .container-form-add-file .form-add-file .submit-upload {
  width: 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.container-actions .tests .files-screen {
  display: none;
}
.container-actions .tests .files-screen .container-files {
  width: 100%;
  height: auto;
  padding: 20px;
}
.container-actions .tests .files-screen .container-files .container-items-files {
  width: 100%;
  height: 320px;
  overflow: auto;
}
.container-actions .tests .files-screen .container-files .container-items-files .item-file {
  display: flex;
  flex-direction: row;
  padding: 5px 0px;
}
.container-actions .tests .files-screen .container-files .container-items-files .item-file div {
  width: 50%;
}
.container-actions .tests .files-screen .container-files .container-items-files .item-file div a {
  color: black;
  text-decoration: none;
}
.container-actions .tests .files-screen .container-files .container-items-files .item-file .delete-file {
  display: flex;
  justify-content: end;
  text-align: end;
}
.container-actions .tests .files-screen .container-files .container-items-files .item-file .delete-file .btn-delete-file {
  background-color: transparent;
  border: none;
  color: rgb(192, 39, 39);
}
.container-actions .tests .files-screen .container-files .container-form-add-file .form-add-file {
  width: 100%;
  height: 90px;
  display: flex;
  align-self: center;
}
.container-actions .tests .files-screen .container-files .container-form-add-file .form-add-file .input-upload {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-actions .tests .files-screen .container-files .container-form-add-file .form-add-file .submit-upload {
  width: 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 500px) {
  .col-camera-display {
    display: none;
  }
}
@media (max-width: 500px) {
  .container-actions {
    width: 100%;
    height: auto;
    margin: 0px;
    background-color: whitesmoke;
    position: absolute;
    z-index: 2;
  }
  .container-actions .chat {
    width: 100%;
    height: 90%;
    border-radius: 0px;
    background-color: whitesmoke;
    margin-left: 0px;
  }
  .container-actions .chat .chat-screen .chat-box {
    height: 70vh;
  }
  .container-actions .chat .chat-screen .message-box {
    height: 100px;
  }
  .container-actions .control-cameras {
    width: 100%;
    margin: 0px;
  }
  .container-actions .tests {
    width: 100%;
    height: auto;
    margin: 0px;
  }
}
.btn-chat {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: none;
  background-color: rgb(238, 238, 238);
  font-size: 15px;
}

.container-cameras {
  width: 100%;
  height: 100vh;
  background-color: #000028;
  padding-top: 100px;
}
.container-cameras .col-camera {
  display: block;
}
.container-cameras .container-camera-item {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(3, 3, 3);
  margin: 0px;
}
.container-cameras .container-camera-item .camera-item {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.container-cameras .container-camera-item .camera-item .expand-camera {
  color: white;
  background: #000000;
  position: absolute;
  padding: 6px 10px 6px 10px;
  cursor: pointer;
}
.container-cameras .container-camera-item .camera-item .reload-camera {
  margin-top: 100px;
  color: white;
  background: #000000;
  position: absolute;
  padding: 6px 10px 6px 10px;
  cursor: pointer;
}
.container-cameras .container-camera-item .camera-item .audio-camera {
  margin-top: 50px;
  color: white;
  background: #000000;
  position: absolute;
  padding: 6px 10px 6px 10px;
  cursor: pointer;
}
.container-cameras .container-selected-cameras {
  display: none;
  justify-content: center;
}
.container-cameras .container-selected-cameras .number-camera {
  width: 50px;
  height: 50px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.24);
  color: white;
}
.container-cameras .container-selected-cameras .number-camera:hover {
  background-color: rgba(255, 255, 255, 0.671);
}
.container-cameras .container-selected-cameras .activeBtn {
  background-color: rgba(255, 255, 255, 0.671);
}

.empty-camera-template {
  width: 100%;
  height: 371px;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-height: 841px) {
  .container-cameras {
    height: 100%;
  }
}
@media (max-width: 1399px) {
  .empty-camera-template {
    height: 320px;
  }
}
@media (max-width: 1399px) and (max-height: 841px) {
  .container-cameras {
    height: 100vh;
  }
}
@media (max-width: 1199px) {
  .empty-camera-template {
    height: 270px;
  }
}
@media (max-width: 991px) {
  .container-cameras .container-camera-item {
    height: auto;
    background-color: transparent;
  }
  .container-cameras .container-camera-item .camera-item {
    width: 100%;
  }
  .container-cameras .container-camera-item .camera-item .video-js {
    background-color: transparent;
    position: relative;
    height: auto;
  }
  .container-cameras .container-selected-cameras {
    display: flex;
  }
  .container-cameras .col-camera:nth-child(2) {
    display: none;
  }
  .container-cameras .col-camera:nth-child(3) {
    display: none;
  }
  .container-cameras .col-camera:nth-child(4) {
    display: none;
  }

  .empty-camera-template {
    height: 405px;
  }
}
@media (max-height: 741px) {
  .container-cameras {
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .container-cameras {
    height: 100vh;
  }
}
@media (max-width: 1199px) and (max-height: 638px) {
  .container-cameras {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .container-cameras {
    height: 100vh;
  }
}
@media (max-width: 991px) and (max-height: 572px) {
  .container-cameras {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .container-cameras {
    height: 100vh;
  }
}
@media (max-width: 767px) and (max-height: 474px) {
  .container-cameras {
    height: 100%;
  }
}
@media (max-width: 527px) {
  .container-cameras {
    height: 100vh;
  }
}
@media (max-width: 527px) and (max-height: 364px) {
  .container-cameras {
    height: 100%;
  }
}
.container-login {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(25, 255, 132);
  background: linear-gradient(18deg, rgb(25, 255, 132) 0%, rgb(136, 84, 255) 100%);
}
.container-login .box-login {
  width: 400px;
  height: auto;
  background-color: white;
  padding: 40px;
  border-radius: 5px;
}
.container-login .box-login .login-header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.container-login .box-login .login-header .login-header-brand {
  margin: auto;
  margin-bottom: 50px;
}
.container-login .box-login .login-header .login-header-brand img {
  width: 200px;
}
.container-login .box-login .login-header hr {
  border: 1px solid rgb(214, 214, 214);
}
.container-login .box-login .login-body {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
.container-login .box-login .login-body .login-button {
  min-width: 200px;
  height: auto;
  padding: 10px;
  border: none;
  background-color: #8854FF;
  float: right;
  color: white;
}
.container-login .box-login .login-body .login-appoiment-button {
  min-width: 200px;
  height: auto;
  padding: 10px;
  border: none;
  background-color: #8854FF;
  float: right;
  color: white;
}
.container-login .box-login .appoiment-login {
  display: block;
}
.container-login .box-login .employee-login {
  display: none;
}
.container-login .box-login .login-footer {
  width: 100%;
  height: auto;
  display: flex;
}
.container-login .box-login .login-footer .login-foter-item {
  width: 50%;
}
.container-login .box-login .login-footer .login-foter-item a {
  cursor: pointer;
  color: black;
  text-decoration: none;
}
.container-login .box-login .response-data {
  width: 100%;
  height: 30px;
  padding-top: 10px;
}
.container-login .box-login .response-data p {
  color: rgb(180, 44, 44);
}
@media (max-width: 400px) {
  .container-login .box-login {
    width: 400px;
    height: 100vh;
  }
  .container-login .box-login .login-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .container-login .box-login .login-footer .login-foter-item {
    width: 100%;
    text-align: center;
    margin: 10px 0px;
  }
  .container-login .box-login .login-button {
    width: 100%;
  }
}

.logoutScreen {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgb(255, 255, 255);
  z-index: 1000000000000000;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-group-def {
  margin-bottom: 20px;
}
.input-group-def label {
  margin-bottom: 10px;
}
.input-group-def .input-form-def {
  width: 100%;
  height: auto;
  padding: 10px;
  border: 2px solid rgb(214, 214, 214);
  border-radius: 2px;
}

.login-appoiment-button {
  min-width: 200px;
  height: auto;
  padding: 10px;
  border: none;
  background-color: #8854FF;
  float: right;
  color: white;
}

.section {
  padding-top: 200px;
}

.thumbnail-profile {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  display: flex;
  background-color: rgb(196, 196, 196);
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: rgba(255, 255, 255, 0);
  font-size: 20px;
  transition: 1s;
  cursor: pointer;
  margin: auto;
}

.thumbnail-profile:hover {
  color: rgb(255, 255, 255);
  opacity: 0.5;
  transition: 1s;
}

.navbar-nav-right {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.dropdown-nav {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  background-color: #ffffff;
  border: 1px solid rgb(214, 214, 214);
  min-width: 200px;
  padding: 10px;
  border-radius: 0px;
  z-index: 1;
  margin-left: -180px;
  text-align: center;
}
.dropdown-content .btn-stop {
  background-color: rgb(184, 33, 33);
  border: none;
  color: white;
  padding: 10px;
  min-width: 200px;
  margin: 5px 0px;
  transition-duration: 0.8s;
}
.dropdown-content .btn-stop:hover {
  background-color: rgb(153, 35, 35);
  transition-duration: 0.8s;
}
.dropdown-content .btn-extend-session {
  background-color: #385CAD;
  border: none;
  color: white;
  padding: 10px;
  min-width: 200px;
  margin: 5px 0px;
  transition-duration: 0.8s;
}
.dropdown-content .btn-extend-session:hover {
  background-color: #1c3674;
  transition-duration: 0.8s;
}

.show-item {
  display: block;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: none;
}

@media (max-width: 500px) {
  .title-test {
    display: none;
  }
}
p {
  margin: 0px;
}

.header-divisiones-prolec {
  position: absolute;
  width: 100%;
  z-index: 2;
}

.header-divisiones-prolec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  width: 100%;
  height: 5px;
  background: rgb(25, 255, 132);
  background: linear-gradient(18deg, rgb(25, 255, 132) 0%, rgb(136, 84, 255) 100%);
}

/* USER  */
.user-thumbnail {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  border-radius: 100%;
  background-color: rgb(207, 207, 207);
  display: flex;
  justify-content: center;
  background-position: center;
  background-size: cover;
}

.modal-content {
  border: none;
  border-radius: 0px;
}
.modal-content .modal-header {
  border-bottom: 0px;
}
.modal-content .modal-body .modal-button-confirm {
  min-width: 200px;
  height: auto;
  padding: 10px;
  border: none;
  border-radius: 0px;
  background-color: #385CAD;
  float: right;
  color: white;
  transition-duration: 0.8s;
}
.modal-content .modal-body .modal-button-confirm:hover {
  background-color: #000028;
  transition-duration: 0.8s;
}

.vjs-modal-dialog-content {
  display: none;
}

.vjs-error-display {
  display: none;
}

.vjs-loading-spinner {
  display: none;
}

.btn-card-appointment {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  color: white;
  font-size: 10px;
  background-color: #8854FF;
}

.btn-card-appointment:hover {
  color: white;
  background-color: #7349d4;
}

#allowedGuestScreen {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}