@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  font-size: 1rem;
  background-color: #36393f;
}

body.auth {
  display: flex;
  align-items: center;
  background-image: url(../img/auth-bg.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: auto;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
}

#mobile-portrait {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  display: none;
}

.center-device {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2.5);
  height: 50vh;
  max-height: 250px;
}

@media only screen and (min-device-width: 0px) and (max-device-width: 815px) and (orientation: portrait) {
  #mobile-portrait {
    display: block !important;
  }
}
.form-auth {
  /* width: 90%;
  max-width: 450px;
  padding: 15px;
  margin: auto; */
  position: absolute;
  top: 0;
  left: 0;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
}
.form-auth form {
  color: #72767d;
  background: #36393f;
  width: 480px;
  padding: 32px;
  font-size: 14px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  box-sizing: border-box;
}
.form-auth form .header {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
.form-auth form .form-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 30px;
}
.form-auth form input {
  border: none;
  background-color: transparent;
  padding: 10px;
  height: 40px;
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  color: #dcddde;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  transition: border-color 0.2s ease-in-out;
}
.form-auth form input:focus {
  border-color: #42b0f4;
  background-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: none;
  color: #dcddde;
}
.form-auth form .btn-submit {
  color: #fff;
  background-color: #5865f2;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  padding: 2px 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 44px;
  min-width: 130px;
  min-height: 44px;
}
.form-auth form a {
  color: #42b0f4 !important;
}

.form-auth .checkbox {
  font-weight: 400;
}

.form-auth .form-floating {
  margin-bottom: 0rem;
}

.form-auth .form-floating:focus-within {
  z-index: 2;
}

.form-auth input[type=email] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-auth input[type=password] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.form-auth .text-error {
  font-size: 0.7rem;
  margin-left: 0.75rem;
}

.indicator {
  background-color: #cc0000;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #000;
  transform: translate(-50%, -50%);
  /*animation: pulse 1s infinite;*/
  -webkit-animation: pulse 3s linear infinite;
          animation: pulse 3s linear infinite;
}
.indicator.d-8 {
  width: 8px;
  height: 8px;
  bottom: -4px;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.7019607843), 0 0 0 0 rgba(255, 109, 74, 0.7019607843);
  }
  40% {
    box-shadow: 0 0 0 15px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 109, 74, 0.7019607843);
  }
  80% {
    box-shadow: 0 0 0 15px rgba(255, 109, 74, 0), 0 0 0 10px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 10px rgba(255, 109, 74, 0);
  }
  /* 0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(36, 61, 125, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(36, 61, 125, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(36, 61, 125, 0);
  } */
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.7019607843), 0 0 0 0 rgba(255, 109, 74, 0.7019607843);
  }
  40% {
    box-shadow: 0 0 0 15px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 109, 74, 0.7019607843);
  }
  80% {
    box-shadow: 0 0 0 15px rgba(255, 109, 74, 0), 0 0 0 10px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 10px rgba(255, 109, 74, 0);
  }
  /* 0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(36, 61, 125, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(36, 61, 125, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(36, 61, 125, 0);
  } */
}
/* Main Area */
#content {
  position: relative;
  /* height: fit-content; */
  max-height: 100vh;
  overflow: hidden;
}
#content.show-all {
  overflow: auto;
  max-height: 100%;
}
#content.show-all .bottom-menu {
  position: fixed !important;
}
#content #menu-top {
  background-color: #ccc;
}
#content #menu-top #menu-top-right .dropdown-menu.user-menu.show {
  right: 0 !important;
  left: auto;
}
#content #menu-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  background-color: rgb(0, 0, 0);
  transform: translateX(-50%);
  z-index: 1;
}
#content #menu-bottom .nav-bottom li i,
#content #menu-bottom .nav-bottom li a {
  display: block;
  color: #eeeeee;
  font-size: 1rem;
  text-align: center;
  padding: 5px 10px 0;
}
#content #menu-bottom .nav-bottom li a {
  font-weight: 100;
}
#content #main-area {
  position: relative;
  margin-top: 0px;
}
#content #main-area img#bg-image {
  width: 100%;
  height: auto;
}
#content #main-area #lobbyBg {
  width: 100%;
  height: auto;
}
#content #main-area #lobbyVideo {
  position: absolute;
  top: 18%;
  left: 42.8%;
  width: 14.4%;
  height: 13.4%;
}
#content #main-area #networkLounge {
  position: absolute;
  top: 23.8%;
  left: 27.8%;
  width: 7.7%;
  height: 2.5%;
}
#content #main-area #partnersLounge {
  position: absolute;
  top: 23.8%;
  left: 65.4%;
  width: 6.2%;
  height: 2.5%;
}
#content #main-area #audi1 {
  position: absolute;
  top: 37.5%;
  left: 32.4%;
  width: 5.6%;
  height: 2.5%;
}
#content #main-area #audi2 {
  position: absolute;
  top: 37.5%;
  left: 47.4%;
  width: 5.6%;
  height: 2.5%;
}
#content #main-area #audi3 {
  position: absolute;
  top: 37.5%;
  left: 62.4%;
  width: 5.6%;
  height: 2.5%;
}
#content #main-area #bannerAgenda {
  position: absolute;
  top: 49.3%;
  left: 40.7%;
  width: 2.5%;
  height: 8.1%;
}
#content #main-area #bannerAgenda .indicator {
  bottom: 40%;
  left: 40%;
}
#content #main-area #bannerHighlights {
  position: absolute;
  top: 49.3%;
  left: 57%;
  width: 2.5%;
  height: 8.1%;
}
#content #main-area #bannerHighlights .indicator {
  bottom: 40%;
  left: 40%;
}
#content #main-area #helpDesk {
  position: absolute;
  top: 54%;
  left: 47.9%;
  width: 4.4%;
  height: 1.8%;
}
#content #main-area #helpDesk .indicator {
  bottom: -40%;
  left: 40%;
}
#content #main-area #leftBanner {
  position: absolute;
  top: 39%;
  left: 0.4%;
  width: 11.1%;
  height: 13.8%;
}
#content #main-area #leftBanner .indicator {
  bottom: 50%;
  left: 50%;
}
#content #main-area #rightBanner {
  position: absolute;
  top: 39%;
  right: 0.4%;
  width: 11.1%;
  height: 13.8%;
}
#content #main-area #rightBanner .indicator {
  bottom: 50%;
  left: 50%;
}
#content #main-area.audi #webcast-area {
  position: absolute;
  top: 8.6%;
  left: 28.2%;
  width: 43.8%;
  height: 39.7%;
}
#content #main-area.audi #webcast-area #player {
  width: 100%;
  height: 100%;
}
#content #main-area.audi #actions {
  position: absolute;
  top: 25%;
  right: 0px;
  transform: translateY(-50%);
  border: 0px solid #c00;
  box-shadow: 0px 0px 4px 2px rgba(255, 255, 255, 0.12);
  border-radius: 6px 0 0 6px;
}
#content #main-area.audi #actions a.btn {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 3% 5%;
  cursor: pointer;
  display: inline-block;
  margin: 0.5em 0;
  transition: all 0.4s;
  width: 100%;
}
#content #main-area.audi #actions a.btn img {
  max-width: 25px;
  display: block;
  margin: auto;
  margin-bottom: 5px;
}
#content #main-area.exhib #back-partners {
  position: absolute;
  top: 5%;
  left: 2%;
  background-color: #36393f;
  padding: 0.4rem 1rem;
}
#content #main-area.exhib #back-partners a {
  color: white;
}
#content #main-area.exhib #tv {
  position: absolute;
  top: 23.3%;
  left: 38%;
  width: 33.7%;
  height: 30.3%;
}
#content #main-area.exhib #tvMini {
  position: absolute;
  top: 22.3%;
  left: 17.7%;
  width: 14.3%;
  height: 13.2%;
}
#content #main-area.exhib #posterOne {
  position: absolute;
  top: 12.3%;
  left: 75%;
  width: 9.6%;
  height: 18.5%;
  border-radius: 3px;
}
#content #main-area.exhib #posterTwo {
  position: absolute;
  top: 32.8%;
  left: 75%;
  width: 9.6%;
  height: 18.3%;
  border-radius: 3px;
}
#content #main-area.exhib #resources {
  position: absolute;
  top: 5%;
  left: 92%;
  width: 4.5%;
  height: 8%;
}
#content #main-area.exhib #query {
  position: absolute;
  top: 16%;
  left: 92%;
  width: 4.5%;
  height: 8%;
}
#content #main-area.exhib #know-more {
  position: absolute;
  top: 28%;
  left: 92%;
  width: 4.5%;
  height: 8%;
}
#content #main-area.exhib.flex #posterOne {
  position: absolute;
  top: 14.3%;
  left: 75%;
  width: 9.6%;
  height: 18.5%;
  border-radius: 3px;
}
#content #main-area.exhib.flex #posterTwo {
  position: absolute;
  top: 33.9%;
  left: 75%;
  width: 9.6%;
  height: 18.5%;
  border-radius: 3px;
}
#content #main-area #loungeVideo {
  position: absolute;
  top: 14.6%;
  left: 40.1%;
  width: 19.5%;
  height: 17.6%;
}
#content #main-area #shareCards {
  position: absolute;
  top: 49.8%;
  left: 43.5%;
  width: 15.2%;
  height: 6.6%;
}
#content #main-area #shareCards .indicator {
  bottom: -5%;
}
#content #main-area #clickSelfie {
  position: absolute;
  top: 32.9%;
  left: 15.5%;
  width: 21.6%;
  height: 21.9%;
}
#content #main-area #clickSelfie .indicator {
  bottom: 30%;
  left: 40%;
}
#content #main-area #socialWall {
  position: absolute;
  top: 32.5%;
  left: 66.6%;
  width: 20.4%;
  height: 18%;
  overflow-x: hidden;
  overflow-y: auto;
}
#content #main-area #socialWall .indicator {
  bottom: 40%;
}
#content #main-area .panel {
  position: absolute;
  top: 0px;
  right: -350px;
  width: 350px;
  height: calc(100% - 60px);
  cursor: pointer;
  background-color: #ffffff;
  font-size: 1em;
  transition: all 0.5s;
  z-index: 1;
  overflow: auto;
}
#content #main-area .panel .panel-heading {
  padding: 0.25rem;
  position: relative;
  font-size: 0.8rem;
}
#content #main-area .panel .panel-heading .close {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 1rem;
  color: #ccc;
  background-color: #c00;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0rem 0.4rem;
}
#content #main-area .panel .panel-content {
  padding: 20px;
}
#content #main-area .panel .panel-content form textarea {
  width: 100%;
}
#content #main-area .panel .panel-content #currpoll .form-check-input {
  margin-left: 0;
}
#content #main-area .panel.show {
  right: 0;
}
#content #main-area .panel .progress {
  height: 1.5rem;
}
#content #main-area #partners-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  background-color: blue;
}
#content #main-area #partners-menu ul li {
  border-right: 1px solid #ccc;
  padding: 0 15px;
}
#content #main-area #partners-menu ul li:last-child {
  border-right: none;
}
#content #main-area #partners-menu ul li.active, #content #main-area #partners-menu ul li:hover {
  background-color: #fff;
}
#content #main-area #partners-menu ul li.active a, #content #main-area #partners-menu ul li:hover a {
  color: blue;
}
#content #main-area #partners-menu ul li a {
  color: #fff;
  font-size: 1rem;
}
#content #main-area #hallsCarousel {
  position: absolute;
  top: 25%;
  left: 22%;
  width: 56%;
  height: 30%;
  border: 0px solid #ccc;
  padding: 0px;
}
#content #main-area #hallsCarousel .carousel-control-next,
#content #main-area #hallsCarousel .carousel-control-prev {
  align-items: unset !important;
  justify-content: unset !important;
  top: 35% !important;
  left: 10px;
  background-color: blue;
  width: 60px;
  height: 60px;
  padding: 16px 18px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50%;
  transition: all 0.2s ease-in;
  opacity: 0.65;
}
#content #main-area #hallsCarousel .carousel-control-next:hover,
#content #main-area #hallsCarousel .carousel-control-prev:hover {
  opacity: 1;
}
#content #main-area #hallsCarousel .carousel-control-next {
  padding: 16px 23px;
  left: auto;
  right: 10px;
}
#content #main-area #hallsCarousel .carousel-item.stall1, #content #main-area #hallsCarousel .carousel-item.stall2 {
  padding: 0;
}
#content #main-area #hallsCarousel .carousel-item.stall1 #hall1, #content #main-area #hallsCarousel .carousel-item.stall2 #hall1 {
  position: absolute;
  top: 2.3%;
  left: 5%;
  width: 24.3%;
  height: 21.7%;
}
#content #main-area #hallsCarousel .carousel-item.stall1 #hall2, #content #main-area #hallsCarousel .carousel-item.stall2 #hall2 {
  position: absolute;
  top: 2.3%;
  left: 38.7%;
  width: 22.6%;
  height: 21.7%;
}
#content #main-area #hallsCarousel .carousel-item.stall1 #hall3, #content #main-area #hallsCarousel .carousel-item.stall2 #hall3 {
  position: absolute;
  top: 2.3%;
  left: 70.5%;
  width: 25.6%;
  height: 21.7%;
}
#content #main-area #hallsCarousel .carousel-item.stall1 #hall4, #content #main-area #hallsCarousel .carousel-item.stall2 #hall4 {
  position: absolute;
  top: 26.2%;
  left: 12.2%;
  width: 30.8%;
  height: 29.9%;
}
#content #main-area #hallsCarousel .carousel-item.stall1 #hall5, #content #main-area #hallsCarousel .carousel-item.stall2 #hall5 {
  position: absolute;
  top: 26.2%;
  left: 56.7%;
  width: 32.2%;
  height: 29.9%;
}
#content #main-area #gamesCarousel {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 80%;
  height: 50%;
}
#content #main-area #gamesCarousel #games-slider {
  border: 0px solid white;
}
#content #main-area #gamesCarousel #games-slider .slide {
  margin: 1rem;
  padding: 2rem;
  position: relative;
  text-align: center;
}
#content #main-area #gamesCarousel #games-slider .slide img {
  width: 100%;
  height: auto;
}
#content #main-area #gamesCarousel #games-slider h3 {
  background: #fff;
  color: #3498db;
  font-size: 36px;
  line-height: 100px;
  margin: 10px;
  padding: 2%;
  position: relative;
  text-align: center;
}
#content #main-area.game {
  padding: 0;
}
#content #main-area.game2048 {
  padding: 0;
}
#content #main-area.game2048 .container {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ccc;
  padding: 1rem;
}
#content #main-area.gamecarrace {
  padding: 0;
}
#content #main-area.gamecarrace #racer {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
#content #main-area.gamesudoku #sudoku {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 1rem;
  /* border: 1px solid red; */
}
#content #main-area.gamesudoku #sudoku .actions {
  display: flex;
  justify-content: center;
}
#content #main-area.gamesudoku #sudoku .game-status {
  display: flex;
  height: auto !important;
  align-items: center;
  justify-content: space-evenly !important;
  margin-top: 1rem;
}
#content #main-area.gamesudoku #sudoku .card {
  float: none;
  padding: 16px 32px !important;
  text-align: center;
}
#content #main-area.gamesudoku #sudoku .game {
  margin: 1rem auto;
}
#content #main-area.gametictactoe #tictactoe {
  position: absolute;
  top: 0;
}

.modal#confAgenda .modal-dialog {
  width: 90% !important;
  max-width: 800px !important;
  height: 80vh;
  max-height: 600px;
}
.modal#confAgenda .modal-dialog {
  max-width: 1200px !important;
}
.modal#wallSocial .modal-dialog {
  width: 90% !important;
  max-width: 1200px !important;
  height: 80vh;
  max-height: 600px;
}
.modal .modal-content {
  border: none;
  border-radius: 0;
}
.modal .modal-content .modal-header {
  background-color: #333333;
  border: none;
  border-radius: 0;
}
.modal .modal-content .modal-title {
  color: #fff;
  text-transform: uppercase;
}
.modal .modal-content .close {
  position: absolute;
  z-index: 1;
  right: -1.25rem !important;
  top: -1.25rem !important;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  font-size: 1.75rem;
  padding: 0;
  background: #c00 !important;
  border: none;
}
.modal .modal-content .close span {
  color: #fff;
  background-image: none;
}
.modal .modal-content .modal-body {
  padding: 2rem;
}
.modal .modal-content .modal-body .content {
  padding: 0;
}
.modal .modal-content .modal-body textarea {
  width: 100%;
  padding: 1rem;
}
.modal#annModal .modal-header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.modal#annModal .modal-title {
  color: #333;
}
.modal#annModal .close {
  position: unset;
  z-index: 1;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.75rem;
  padding: 0;
  background: transparent !important;
  border: none;
}
.modal#annModal .close span {
  color: #ccc;
}

.modal-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0px solid #ccc;
  height: 40px;
  margin-bottom: 5px;
}
.modal-tabs:before {
  display: table-cell;
  content: "";
}
.modal-tabs li {
  float: left;
  border: 1px solid #ccc;
  padding: 10px;
}
.modal-tabs li a {
  color: #797878;
  padding: 18px 25px;
  font-size: 0.8rem;
}
.modal-tabs li.active {
  border-top: 2px solid #232f3e;
  background-color: #eeeeee;
}
.modal-tabs li.active a {
  color: #464646;
  font-weight: 600;
}

ul.audis {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.audis li {
  width: 100%;
  background-color: blue;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  padding: 10px;
}
ul.audis li a {
  color: #fff !important;
  font-size: 1em;
}

#confAgenda table {
  font-size: 0.85rem;
}
#confAgenda table td a.viewprofile {
  color: #000;
  font-weight: bold;
}
#confAgenda .day-header {
  background-color: #ee3135;
  color: #ffffff;
  text-align: center;
}
#confAgenda .heading {
  background-color: #36393f;
  color: #ffffff;
  text-align: center;
}

.content {
  /* min-height: 30vh; */
  max-height: 65vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
  width: 95%;
  margin: 10px auto;
}
.content a {
  color: #284b8b;
}
.content a.btn-dlcards {
  color: #fefefe !important;
}
.content table {
  margin-bottom: 0 !important;
}
.content.b-case-panel {
  margin: 40px 20px;
}
.content.b-case-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.content.b-case-panel ul li {
  border-bottom: 1px solid #e0e0e0;
  padding: 5px 0;
  margin-bottom: 10px;
}
.content.b-case-panel ul li a {
  color: #36393f !important;
}
.content.b-case-panel ul li a:hover {
  text-decoration: none;
}

.scroll::-webkit-scrollbar {
  width: 10px;
}
.scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #eee;
  -webkit-box-shadow: inset 0 0 6px #eee;
}
.scroll::-webkit-scrollbar-thumb {
  background-color: #167ac6;
  border-radius: 10px;
  outline: 0px solid #0c0;
}

@media (min-width: 1200px) {
  .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link {
    text-align: center;
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link > .fa {
    display: block;
    width: 48px;
    margin: 2px auto 4px auto;
    top: 0;
    line-height: 24px;
  }
  .navbar-icon-top.navbar-expand-xl .navbar-nav .nav-link > .fa > .badge {
    top: -7px;
  }
}
@media (min-width: 768px) {
  .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link {
    text-align: center;
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link > .fa {
    display: block;
    width: 48px;
    margin: 2px auto 4px auto;
    top: 0;
    line-height: 24px;
  }
  .navbar-icon-top.navbar-expand-md .navbar-nav .nav-link > .fa > .badge {
    top: -7px;
  }
}
@media (min-width: 992px) {
  .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link {
    text-align: center;
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link > .fa {
    display: block;
    width: 48px;
    margin: 2px auto 4px auto;
    top: 0;
    line-height: 24px;
  }
  .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link > .fa > .badge {
    top: -7px;
  }
}
@media (min-width: 576px) {
  .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link {
    text-align: center;
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link > .fa {
    display: block;
    width: 48px;
    margin: 2px auto 4px auto;
    top: 0;
    line-height: 24px;
  }
  .navbar-icon-top.navbar-expand-sm .navbar-nav .nav-link > .fa > .badge {
    top: -7px;
  }
}
#card-share-contacts .contact {
  padding: 0.5rem 0;
  position: relative;
  cursor: pointer;
}
#card-share-contacts .contact:nth-child(even) {
  background-color: #efefef;
}
#card-share-contacts .contact:nth-child(odd) {
  background-color: #f5f5f5;
}
#card-share-contacts .contact .status {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #c00;
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1.25rem;
}
#card-share-contacts .contact .status.online {
  background-color: #0c0 !important;
}
#card-share-contacts .contact .header_img img {
  border-radius: 50%;
  width: 2rem;
  float: left;
  margin: 0 1rem;
  border: 2px solid rgba(0, 0, 0, 0.21);
}
#card-share-contacts .contact .icon-card {
  position: absolute;
  right: 15px;
  top: 10px;
  background-color: #dfdfdf;
  padding: 5px 7px;
  width: 2rem;
  border-radius: 50%;
}
#card-share-contacts .contact .chat_head {
  font-size: 0.8rem;
  font-weight: 600;
}
#card-share-contacts .contact .comp {
  font-size: 0.7rem;
}

#photoBooth .modal-dialog {
  max-width: 800px !important;
}
#photoBooth .modal-dialog .modal-content {
  position: relative;
}
#photoBooth .modal-dialog .modal-content .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  border-radius: 50%;
  width: 2rem;
  /* height: 30px; */
  padding: 0;
  opacity: 1;
}
#photoBooth .modal-dialog .modal-content .modal-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#photoBooth .modal-dialog .modal-content #cam-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
}
#photoBooth .modal-dialog .modal-content #cam-panel .photo-jacket-contianer img.photo-jacket {
  width: 100% !important;
}
#photoBooth .modal-dialog .modal-content #cam-ui {
  width: 45% !important;
  height: auto !important;
  top: 35% !important;
  left: 40%;
  transform: translateX(-65%);
}
#photoBooth .modal-dialog .modal-content #after-capture,
#photoBooth .modal-dialog .modal-content #before-capture {
  bottom: -55px;
}
#photoBooth .modal-dialog .modal-content #after-capture .btn i,
#photoBooth .modal-dialog .modal-content #before-capture .btn i {
  color: #fff;
}
#photoBooth .modal-dialog .modal-content #after-capture .btn-capture,
#photoBooth .modal-dialog .modal-content #before-capture .btn-capture {
  background-color: #ee3135;
}
#photoBooth .modal-dialog .modal-content #after-capture .btn-save,
#photoBooth .modal-dialog .modal-content #before-capture .btn-save {
  background-color: #284b8b;
}
#photoBooth .modal-dialog .modal-content #after-capture .btn-retry,
#photoBooth .modal-dialog .modal-content #before-capture .btn-retry {
  background-color: #284b8b;
}

section.videotoplay {
  z-index: 9999;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 0px);
  height: 100vh;
  overflow: hidden;
}
section.videotoplay video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
section.videotoplay .skip {
  position: absolute;
  bottom: 50px;
  right: 50px;
  /* background-color: #cc0000;
  color: #fff;
  text-transform: uppercase;
  padding: 5px 20px; */
}
section.videotoplay .skip a {
  /* color: #fff;
  &:hover {
    color: #fff;
    text-decoration: none;
  } */
}
section.videotoplay .skip a.btn-skip {
  display: block;
  background-color: #c0392b;
  width: 150px;
  height: 50px;
  line-height: 50px;
  margin: auto;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
section.videotoplay .skip a.btn-skip span,
section.videotoplay .skip a.btn-skip .icon {
  display: block;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}
section.videotoplay .skip a.btn-skip span {
  width: 72%;
  line-height: inherit;
  font-size: 22px;
  text-transform: uppercase;
  left: 0;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
section.videotoplay .skip a.btn-skip span:after {
  content: "";
  background-color: #a53125;
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}
section.videotoplay .skip a.btn-skip .icon {
  width: 28%;
  right: 0;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
section.videotoplay .skip a.btn-skip .icon .fa {
  font-size: 30px;
  vertical-align: middle;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4), height 0.25s ease;
}
section.videotoplay .skip a.btn-skip .icon .fa-remove {
  height: 36px;
}
section.videotoplay .skip a.btn-skip .icon .fa-check {
  display: none;
}
section.videotoplay .skip a.btn-skip.success span, section.videotoplay .skip a.btn-skip:hover span {
  left: -72%;
  opacity: 0;
}
section.videotoplay .skip a.btn-skip.success .icon, section.videotoplay .skip a.btn-skip:hover .icon {
  width: 100%;
}
section.videotoplay .skip a.btn-skip.success .icon .fa, section.videotoplay .skip a.btn-skip:hover .icon .fa {
  font-size: 45px;
}
section.videotoplay .skip a.btn-skip.success {
  background-color: #27ae60;
}
section.videotoplay .skip a.btn-skip.success .icon .fa-remove {
  display: none;
}
section.videotoplay .skip a.btn-skip.success .icon .fa-check {
  display: inline-block;
}
section.videotoplay .skip a.btn-skip:hover {
  opacity: 1;
}
section.videotoplay .skip a.btn-skip:hover .icon .fa-remove {
  height: 46px;
}
section.videotoplay .skip a.btn-skip:active {
  opacity: 1;
}

.next {
  background-color: #badbff;
}

.live {
  background-color: #c7f6b6;
}

.over {
  background-color: #ffcccb;
}

span.next {
  color: #1e3f66;
}
span.live {
  color: #458728;
}
span.over {
  color: #f00;
}

.profile-pic {
  background: #36393f;
  color: #eeeeee;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.bottom-menu {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  /*   width: 450px; */
  height: 50px;
  border-radius: 50px;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.2);
}
.bottom-menu ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 2rem;
}
.bottom-menu ul li {
  width: 50px;
  text-align: center;
}
.bottom-menu ul li a {
  color: #ccc;
  font-size: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
}
.bottom-menu ul li a:hover {
  color: #ffffff;
}
.bottom-menu ul li a:hover .label {
  display: block;
}
.bottom-menu ul li a.active i {
  background-color: #36393f;
  border-radius: 50%;
  padding: 0.5rem;
}
.bottom-menu ul li:last-child a:hover {
  color: #c00;
}
.bottom-menu ul li .label {
  position: absolute;
  top: -65px;
  left: -35px;
  background: #000;
  width: 100px;
  padding: 10px;
  border-radius: 50px;
  text-transform: uppercase;
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
  color: #ffffff;
  font-weight: bold;
  display: none;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.2);
}
.bottom-menu ul li .label.ex {
  width: 200px !important;
  left: -85px !important;
}
.bottom-menu ul li .label.med {
  width: 120px !important;
  left: -45px !important;
}
.bottom-menu ul li .label:before {
  content: "";
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 14px solid #000;
  border-bottom: 14px solid transparent;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}/*# sourceMappingURL=styles.css.map */