@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
/*@import url('https://fonts.googleapis.com/css?family=Orbitron');*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;800&display=swap');

html {
  font-family: 'Roboto', sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html *,
body * {
  font-family: 'Roboto', sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* https://xd.adobe.com/view/477866cb-4807-4042-b86c-acb70bd1d049-122b/screen/e73ce7f9-73dc-4b3a-8933-918756b2b1a6/specs/ */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

main {
  position: relative;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137254902);
  padding: 14px 30px 14px 80px;
}

.logo {
  max-width: 320px;
  display: inline-block;
}

img {
  max-width: 100%;
}

#header ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#header ul li {
  display: inline-block;
}

#header ul li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

#header ul li a:hover,
#header ul li a.active {
  color: #d74000;
  text-decoration: none;
}

/* header */

/* menu */

#header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

/* menu icon */

#header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 20px 5px 20px;
  position: relative;
  user-select: none;
  margin: 0;
}

#header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 25px;
}

#header .menu-icon .navicon::before,
#header .menu-icon .navicon::after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

#header .menu-icon .navicon::before {
  top: 7px;
}

#header .menu-icon .navicon::after {
  top: -7px;
}

/* menu btn */

#header .menu-btn {
  display: none;
}

#header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

#header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

#header .menu-btn:checked ~ .menu-icon .navicon::before {
  transform: rotate(-45deg);
}

#header .menu-btn:checked ~ .menu-icon .navicon::after {
  transform: rotate(45deg);
}

#header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon::before,
#header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon::after {
  top: 0;
}

/* 48em = 768px */
@media (max-width: 48em) {
  #header {
    padding: 10px 15px;
    position: relative;
    z-index: 50;
  }
}

@media (max-width: 767px) {
  #header {
    padding: 10px 15px;
    position: relative;
    z-index: 50;
  }

  #header .menu {
    position: absolute;
    width: 100vw;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }

  .menu li {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in;
  }

  #header .menu-btn:checked ~ .menu li {
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0px -1px 1px rgba(0, 0, 0, 0.1);
  }

  #header li a {
    display: block;
    padding: 20px 20px;
    border-right: 0px solid #f4f4f4;
    text-decoration: none;
  }

  #header ul li {
    display: block;
  }

  .logo {
    max-width: 200px;
  }
}
@media (min-width: 48em) {
  #header li {
    float: left;
  }

  #header .menu {
    clear: none;
    float: right;
    max-height: none;
  }

  #header .menu-icon {
    display: none;
  }
}

/* End header */
.landingpage {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom -40px;
  height: calc(100vh - 80px);
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.left_col {
  width: 43%;
  height: 100%;
  padding: 40px 40px 40px 98px;
}

.left_col figure {
  box-shadow: 0px 10px 10px rgba(57, 32, 32, 0.10196078431372549);
  position: relative;
  margin: 0;
  /*  */
  max-width: 88%;
  left: 12%;
}

.left_col figure::before {
  content: '';
  padding-bottom: calc(540 / 450 * 100%);
  /* 5:6 */
  width: 100%;
  display: block;
  background-color: #fff;
}

.left_col figure img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top;
}

.right_col {
  width: 55%;
  height: 100%;
  padding: 25px 90px 40px 40px;
  position: relative;
  z-index: 1;
}

.right_col .btn_group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.right_col .btn_group button {
  margin: 10px 0;
  display: inline-block;
  min-width: 190px;
}

.right_col figure {
  position: relative;
  height: calc(100vh - 300px);
  max-width: 100%;
  z-index: -1;
  margin: 0;
  text-align: right;
}

.right_col figure img {
  margin-top: -40px;
  object-fit: cover;
  object-position: top;
  height: calc(100% + 40px);
}

.custom-btn {
  height: 45px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.10196078431372549);
  border: 2px solid #00a8e5;
  border-radius: 2px;
  opacity: 1;
  color: #00a8e5;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.custom-btn.orange {
  color: #d74000;
  border: 2px solid #d74000;
}

.custom-btn:hover,
.custom-btn.orange:hover,
.modal .custom-btn,
.modal .custom-btn.orange {
  color: #fff;
  background: rgba(0, 103, 147, 1);
  background: -moz-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(0, 103, 147, 1)),
    color-stop(56%, rgba(0, 167, 228, 1)),
    color-stop(100%, rgba(0, 210, 217, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(0, 103, 147, 1) 0%,
    rgba(0, 167, 228, 1) 56%,
    rgba(0, 210, 217, 1) 100%
  );
  background: -o-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
  background: -ms-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
  background: linear-gradient(to right, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006793', endColorstr='#00d2d9', GradientType=1);

  background: rgba(0, 103, 147, 1);
  background: -moz-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(0, 103, 147, 1)),
    color-stop(64%, rgba(0, 167, 228, 1)),
    color-stop(100%, rgba(0, 210, 217, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(0, 103, 147, 1) 0%,
    rgba(0, 167, 228, 1) 64%,
    rgba(0, 210, 217, 1) 100%
  );
  background: -o-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
  background: -ms-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
  background: linear-gradient(to right, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006793', endColorstr='#00d2d9', GradientType=1);

  border-image-source: -moz-linear-gradient(
    left,
    rgba(0, 103, 147, 1) 0%,
    rgba(0, 167, 228, 1) 64%,
    rgba(0, 210, 217, 1) 100%
  );
  border-image-source: -webkit-linear-gradient(
    left,
    rgba(0, 103, 147, 1) 0%,
    rgba(0, 167, 228, 1) 64%,
    rgba(0, 210, 217, 1) 100%
  );
  border-image-source: -o-linear-gradient(
    left,
    rgba(0, 103, 147, 1) 0%,
    rgba(0, 167, 228, 1) 64%,
    rgba(0, 210, 217, 1) 100%
  );
  border-image-source: -ms-linear-gradient(
    left,
    rgba(0, 103, 147, 1) 0%,
    rgba(0, 167, 228, 1) 64%,
    rgba(0, 210, 217, 1) 100%
  );
  border-image-source: linear-gradient(
    to right,
    rgba(0, 103, 147, 1) 0%,
    rgba(0, 167, 228, 1) 64%,
    rgba(0, 210, 217, 1) 100%
  );

  border-image-slice: 1;
  border-width: 2px;

  border-image-slice: 0;
  border-width: 0px;
  background: #00a8e5;
  color: #ffffff;
  border-radius: 0px;
}

.custom-btn.orange:hover,
.modal .custom-btn.orange {
  background: rgba(194, 36, 0, 1);
  background: -moz-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(194, 36, 0, 1)),
    color-stop(74%, rgba(219, 95, 0, 1)),
    color-stop(100%, rgba(222, 130, 0, 1))
  );
  background: -webkit-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
  background: -o-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
  background: -ms-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
  background: linear-gradient(to right, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c22400', endColorstr='#de8200', GradientType=1);

  border-image-source: -moz-linear-gradient(
    left,
    rgba(194, 36, 0, 1) 0%,
    rgba(219, 95, 0, 1) 74%,
    rgba(222, 130, 0, 1) 100%
  );
  border-image-source: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(194, 36, 0, 1)),
    color-stop(74%, rgba(219, 95, 0, 1)),
    color-stop(100%, rgba(222, 130, 0, 1))
  );
  border-image-source: -webkit-linear-gradient(
    left,
    rgba(194, 36, 0, 1) 0%,
    rgba(219, 95, 0, 1) 74%,
    rgba(222, 130, 0, 1) 100%
  );
  border-image-source: -o-linear-gradient(
    left,
    rgba(194, 36, 0, 1) 0%,
    rgba(219, 95, 0, 1) 74%,
    rgba(222, 130, 0, 1) 100%
  );
  border-image-source: -ms-linear-gradient(
    left,
    rgba(194, 36, 0, 1) 0%,
    rgba(219, 95, 0, 1) 74%,
    rgba(222, 130, 0, 1) 100%
  );
  border-image-source: linear-gradient(
    to right,
    rgba(194, 36, 0, 1) 0%,
    rgba(219, 95, 0, 1) 74%,
    rgba(222, 130, 0, 1) 100%
  );

  background: #d74000;
}

.counter_sticker {
  position: absolute;
  width: 68%;
  height: 37%;
  bottom: 18%;
  right: 11%;
  z-index: 1;
  text-align: center;
}

.right_col figure .counter_sticker img {
  object-fit: cover;
  height: 100%;
  margin: 0;
}
/* registration Modal */
.form_modal {
  width: 446px;
}
.body_scroll .modal-body {
  max-height: 65vh;
  overflow-y: scroll;
}
.body_scroll .modal-body form {
  padding: 30px 40px;
}
.body_scroll .modal-header {
  box-shadow: 0px 3px 6px rgb(0 0 0 / 5%);
  padding: 40px 40px;
}
.modal-title {
  font-size: 1em;
}
.body_scroll .modal-content {
  border-radius: 0;
}
.body_scroll .close {
  position: relative;
}
.body_scroll .close span {
  font-size: 0;
}
.body_scroll .close span::after {
  content: '';
  width: 30px;
  height: 2px;
  background: black;
  position: absolute;
  transform: rotate(-45deg);
  top: 20%;
  left: 0;
}
.body_scroll .close span::before {
  content: '';
  width: 30px;
  height: 2px;
  background: black;
  position: absolute;
  transform: rotate(45deg);
  top: 20%;
  left: 0;
}
.form-group input,
.form-group textarea {
  border-radius: 0 !important;
  background: #f8f8f8 !important;
  letter-spacing: 0.16px;
  color: rgb(0 0 0 / 30%);
}
::-webkit-input-placeholder {
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}

:-ms-input-placeholder {
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}

::placeholder {
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}
/* End registration Modal */
@media (max-width: 1120px) {
  .landingpage {
    background-position: right bottom;
  }

  .left_col {
    width: 32%;
    padding: 30px;
    margin-top: 25%;
    transform: translateY(-50%);
  }

  .left_col figure {
    max-width: 100%;
    left: 0;
  }

  .right_col figure {
    height: auto;
    max-height: 100%;
    position: absolute;
    text-align: center;
    bottom: 30px;
    right: 50px;
  }

  .right_col figure img {
    width: 100%;
  }

  .right_col,
  .left_col {
    height: auto;
  }

  .counter_sticker {
    width: 80%;
  }

  .right_col figure .counter_sticker img {
    width: auto;
  }

  .right_col .btn_group {
    padding-top: 7vh;
  }
}

@media (max-width: 812px) {
  #header {
    padding: 14px 30px 14px 40px;
    padding: 8px 15px 6px 15px;
  }

  .landingpage {
    background-position: right bottom;
    background-attachment: fixed;
    display: block;
    height: auto;
    min-height: calc(100vh - 72px);
  }

  .left_col,
  .right_col {
    width: 100%;
    padding: 30px;
    margin-top: 0%;
    transform: translateY(-0%);
  }

  .left_col figure {
    max-width: 320px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .right_col figure {
    height: auto;
    position: relative;
    text-align: center;
    bottom: 0px;
    right: 0px;

    max-width: 580px;
    margin: 0 auto;
  }

  .counter_sticker {
    width: 80.5%;
  }

  .right_col figure .counter_sticker img {
    object-fit: contain;
  }

  .right_col .btn_group {
    padding-top: 0vh;
    padding-right: 7vw;
  }

  .logo {
    max-width: 220px;
  }
}

@media screen and (max-width: 480px) {
  .right_col .btn_group {
    padding-right: 0vw;
  }

  .right_col .btn_group button {
    margin: 7px 0;
    min-width: 150px;
    font-size: 14px;
  }

  .left_col figure {
    max-width: 220px;
    max-width: 190px;
  }

  .custom-btn {
    height: 40px;
  }

  .right_col {
    padding-top: 0;
  }
}

@media screen and (orientation: landscape) and (max-height: 415px) {
  /* figure{background-color: red !important;} */
  .landingpage {
    background-position: right top;
    background-size: 200% 300%;
    height: auto;
  }
  .left_col figure {
    max-width: 240px;
  }
}

@media screen and (min-width: 1640px) {
  .right_col figure {
    height: auto;
    max-height: 100%;
    position: absolute;
    text-align: center;
    bottom: 30px;
    right: 50px;
  }

  .right_col figure img {
    width: 100%;
  }

  .counter_sticker {
    width: 75%;
    right: 14%;
  }

  .right_col .btn_group {
    padding-top: 15vh;
  }
}
@media screen and (min-width: 1920px) and (min-height: 1200px) {
  .landingpage {
    background-position: right bottom;
  }
  .left_col figure {
    max-width: 75%;
  }
}
@media screen and (min-width: 1680px) and (min-height: 1050px) {
  .landingpage {
    background-position: right bottom;
  }
  .left_col figure {
    max-width: 75%;
  }
}
@media screen and (min-width: 1600px) and (max-height: 900px) {
  .right_col figure {
    height: auto;
  }
  .right_col .btn_group {
    margin-top: 20vh;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1441px) {
  @media screen and (max-height: 1024px) {
    .landingpage {
      background-position: right bottom;
    }
    .right_col figure {
      height: auto;
    }
    .right_col .btn_group {
      margin-top: 20vh;
    }
    .left_col figure {
      max-width: 60%;
    }
  }
  @media screen and (min-height: 820px) and (max-height: 900px) {
    .left_col figure {
      max-width: 80%;
    }
  }
}
@media screen and (min-width: 1346px) and (max-width: 1368px) {
  @media screen and (max-height: 1024px) {
    .landingpage {
      background-position: right bottom;
    }
    .right_col figure {
      height: auto;
    }
    .right_col .btn_group {
      margin-top: 10vh;
    }
    .left_col figure {
      /* max-width: 50%; */
    }
  }
  @media screen and (min-height: 960px) and (max-height: 1024px) {
    .landingpage {
      background-position: center bottom;
    }
    .right_col figure {
      margin-top: 10vh;
    }
  }
  @media screen and (max-height: 700px) {
    .right_col .btn_group {
      margin-top: 0;
    }
    .right_col figure {
      height: calc(100vh - 300px);
    }
    .left_col figure {
      max-width: 75%;
    }
  }
}
@media screen and (min-width: 1250px) and (max-width: 1280px) {
  @media screen and (min-height: 880px) and (max-height: 950px) {
    .landingpage {
      background-position: right bottom;
    }
    .counter_sticker {
      width: 80%;
      height: 29%;
    }
    .right_col .btn_group {
      padding-top: 10vh;
    }
    .right_col figure {
      height: auto;
      padding-top: 10vh;
    }
    .left_col figure {
      max-width: 100%;
      left: 0;
    }
    .left_col {
      width: 32%;
    }
  }
}
@media screen and (min-width: 992px) and (max-width: 1025px) {
  @media screen and (min-height: 1365px) and (max-height: 1366px) {
    .left_col {
      transform: translateY(-0%);
    }
  }
}
@media screen and (min-width: 1279px) and (max-width: 1281px) {
  @media screen and (max-height: 800px) {
    .landingpage {
      background-position: right bottom;
    }
    .right_col figure {
      height: auto;
    }
  }
}
@media screen and (min-width: 955px) and (max-width: 960px) {
  @media screen and (min-height: 560px) and (max-height: 600px) {
    .left_col {
      width: 43%;
      margin-top: 18%;
    }
  }
}
@media screen and (min-width: 799px) and (max-width: 801px) {
  @media screen and (max-height: 1280px) {
    .landingpage {
      min-height: calc(100vh - 58px);
    }
  }
}

@media screen and (min-width: 992px) and (max-width: 1025px) {
  @media screen and (min-height: 600px) and (max-height: 601px) {
    .left_col {
      margin-top: 0;
      transform: translateY(-0%);
    }
    .left_col figure {
      left: 15vh;
    }
    .right_col .btn_group {
      padding-top: 0;
    }
  }
}
@media screen and (max-width: 767px) {
  .body_scroll .modal-header {
    padding: 30px;
  }
  .body_scroll .modal-body form {
    padding: 30px 30px;
  }
  .form_modal {
    width: auto;
  }
}
/* partners */
.page_header img {
}

.card-body h5 {
  margin: 0;
}

.card {
  padding: 1em;
}

.partners_logo {
  padding: 0 3em;
}

.partners_logo img {
  /* box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; */
  margin-bottom: 1em;
}

/* Speakers */
.profile {
  width: 160px;
  height: 160px;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.profile img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.partners .media {
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.partners .table {
  border-top: 1px solid #d9d9d9;
  min-width: 460px;
}

.partners .table tr td a {
  color: #00edff;
}

.partners .table tr td {
  padding-left: 1em;
  padding-left: 1em;
  border-top: 0px solid #dee2e6;
}

.partners .table tr td:first-child {
  padding-left: 0px;
}

@media (max-width: 1024px) {
  .profile {
    width: 130px;
    height: 130px;
  }

  .profile img {
    padding: 7px;
  }
}

@media (max-width: 800px) {
  .page_header {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  section.container.mt-5 {
    margin-top: 1rem !important;
  }

  .page_header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    max-width: 280px;
    margin: 0 auto;
  }

  .page_header img {
    margin: 0px !important;
  }

  .partners .media {
    display: block;
    text-align: center;
  }

  .profile {
    width: 115px;
    height: 115px;
    margin: 0 auto 10px;
  }

  .profile img {
    padding: 5px;
  }
}
/* IpadPro */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .left_col {
    transform: translateY(0%);
  }
}
/* portrait */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .right_col figure {
    bottom: 135px;
  }
  .right_col .btn_group {
    padding-top: 20vh;
  }
}
/* Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
  .landingpage {
    background-position: right bottom;
  }
  .right_col figure {
    height: auto;
    max-height: 100%;
    position: absolute;
    text-align: center;
    bottom: 30px;
    right: 50px;
  }
  .right_col .btn_group {
    padding-top: 15vh;
  }
  .counter_sticker {
    width: 78%;
    right: 13%;
  }
  .left_col {
    width: 30%;
    margin-top: 10vh;
  }
  .landingpage {
    max-height: 100vh;
    overflow: hidden;
  }
}
/* Ipad Pro 10.5 */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .left_col {
    transform: translateY(0%);
  }
}
/* Ipad Pro 10.5 portrait */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .right_col figure {
    bottom: 135px;
  }
  .right_col .btn_group {
    padding-top: 20vh;
  }
}
/* Ipad Pro 10.5 Landscape */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
  .landingpage {
    background-position: right bottom;
  }
  .right_col figure {
    height: auto;
    max-height: 100%;
    position: absolute;
    text-align: center;
    bottom: 30px;
    right: 50px;
  }
  .right_col .btn_group {
    padding-top: 15vh;
  }
  .counter_sticker {
    width: 78%;
    right: 13%;
  }
  .left_col {
    width: 30%;
    margin-top: 10vh;
  }
  .landingpage {
    max-height: 100vh;
    overflow: hidden;
  }
}

/* pixel 2 xl portrait */
@media only screen and (min-width: 411px) and (max-height: 823px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .landingpage {
    min-height: calc(100vh - 56px);
  }
}
/* Ipad portrait */
@media only screen and (min-width: 768px) and (max-height: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .left_col figure {
    max-width: 222px;
  }
}
/* Glaxy s9 portrait */
@media only screen and (min-width: 360px) and (max-height: 740px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .landingpage {
    min-height: calc(100vh - 56px);
  }
}
@media only screen and (min-width: 640px) and (max-height: 360px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
  .left_col figure {
    max-width: 210px;
  }
}
/* Ipfone X portrait */
@media only screen and (min-width: 375px) and (max-height: 812px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .landingpage {
    min-height: calc(100vh - 56px);
  }
}

/* One Plus 7t Landscape */
@media only screen and (min-width: 412px) and (max-height: 914px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
  .right_col .btn_group {
    padding-top: 0vh;
  }
  @media (max-width: 914px) and (min-width: 824px) {
    .right_col figure {
      position: relative;
    }
  }

  .landingpage {
    /* background-size: cover; */
    background-position: right top;
  }
}
/* One Plus 7t portrait */
@media only screen and (min-width: 412px) and (max-height: 914px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .landingpage {
    min-height: calc(100vh - 56px);
  }
}
/* Nexus 10 portrait */
@media only screen and (min-width: 800px) and (max-height: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .landingpage {
    min-height: calc(100vh - 56px);
  }
}
@media screen and (min-width: 1279px) and (max-width: 1281px) {
  @media screen and (min-height: 630px) and (max-height: 700px) {
    .landingpage {
      background-position: right bottom;
    }
    .right_col figure {
      right: 50px;
      max-width: 500px;
    }
    .right_col figure img {
      height: auto;
    }
    .left_col {
      width: 40%;
      margin-top: 0vh;
    }
  }
}
/* Videos */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/*  */
form label.error {
  color: #ff0000;
  font-size: 12px;
  margin-bottom: 0;
}
form .custom-checkbox label.error,
#phone-box #phone-error {
  position: absolute;
  top: 105%;
  left: 0;
}
#phone-box + div {
  margin-top: 0;
}
form p {
  letter-spacing: 0.12px;
  color: #000000;
  margin-bottom: 30px;
  font-size: 12px;
  line-height: 20px;
}
.interested-in label {
  letter-spacing: 0.12px;
  color: #000000;
  margin-bottom: 0px;
  font-size: 12px;
}
.iti-flag {
  display: none !important;
}
.intl-tel-input.separate-dial-code .selected-dial-code {
  padding-left: 0;
}
.intl-tel-input.allow-dropdown {
  width: 100%;
  color: rgb(0 0 0 / 30%) !important;
}
.intl-tel-input .selected-flag .iti-arrow {
  right: 10px;
}

button.close:focus {
  outline: none;
}
#message .form-container {
  padding: 65px 45px 50px;
  text-align: center;
}
.form-container .btn {
  text-transform: uppercase;
  font-size: 20px;
}
#message .form-container .btn {
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 30px;
  max-width: 180px;
}

/*scrollBar*/
.modal-body > .scroll-element,
.modal-body > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.modal-body > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.modal-body > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.modal-body > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.modal-body > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.modal-body > .scroll-element .scroll-element_outer,
.modal-body > .scroll-element .scroll-element_track,
.modal-body > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.modal-body > .scroll-element .scroll-element_track,
.modal-body > .scroll-element .scroll-bar {
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=40)';
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.modal-body > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}
@media (min-width: 1024px) {
  .modal-body > .scroll-element .scroll-bar {
    background-color: #c2c2c2;
  }
}
.modal-body > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}
.modal-body > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
  cursor: pointer;
}

/* update scrollbar offset if both scrolls are visible */

.modal-body > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}
.modal-body > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.modal-body > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}
.modal-body > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

/*new Header */
.form_button_set {
  display: flex;
  justify-content: center;
}
.modal-header.custom_close_btn .close {
  margin: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  border-radius: 0;
  background-color: #ffffff;
  color: #ffffff;
  font-size: 9px;
  opacity: 1;
  z-index: 10;
}
.custom_close_btn .close span::before {
  content: '';
  width: 25px;
  height: 1.4px;
  background: black;
  position: absolute;
  transform: rotate(45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
.custom_close_btn .close span::after {
  content: '';
  width: 25px;
  height: 1.4px;
  background: black;
  position: absolute;
  transform: rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
.body_scroll .modal-header {
  padding: 20px 30px;
}
.login-register {
  display: none;
}

footer .login-register {
  display: block;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@media (max-width: 900px) {
  .logo {
    max-width: 300px;
    display: inline-block;
  }
}
@media (max-width: 810px) {
  .logo {
    max-width: 250px;
    display: inline-block;
  }
}
#srcSet img {
  object-fit: cover;
  min-height: calc(100vh - 110px);
  min-width: 100vw;
}
@media (max-width: 992px) {
  #srcSet img {
    min-height: calc(100vh - 90px);
    object-position: center top;
  }
}
@media (max-width: 767px) {
  #srcSet img {
    min-height: calc(100vh - 65px);
    object-position: center top;
  }
  section.container.mt-5 {
    padding-bottom: 65px;
  }
}
/*@media (max-width: 480px) {*/
@media (max-width: 580px) {
  .logo {
    max-width: 65vw;
    width: 225px;
    display: inline-block;
  }
  #srcSet img {
    min-height: calc(100vh - 56px);
    object-position: center top;
  }

  footer .login-register {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    display: flex;
  }
  footer .btn_group {
    display: flex;
    width: 100%;
  }
  footer .custom-btn {
    height: 50px;
    width: 100%;
    border: 0px solid transparent !important;
    background: #00a8e5;
    color: #fff !important;
    border-radius: 0px;
    box-shadow: none;
  }
  footer .custom-btn:last-child {
    background: #d74000;
  }
}
.sidenav-fix a[href^='auditorium'] .icon::after,
.sidenav-fix a.live .icon::after {
  background: #b00;
  content: 'Live';
  position: absolute;
  top: 10px;
  right: 12px;
  line-height: 1;
  padding: 3px 7px;
  color: #fff;
  font-size: 12px;
  pointer-events: none;
  border-radius: 2px;
  top: -5px;
  right: 1px;
}
#ajendaTable tr {
  position: relative;
}
.date_cell.live_event::after {
  background: #b00;
  content: 'Live';
  position: absolute;
  top: 0px;
  left: 12px;
  line-height: 1;
  padding: 3px 7px;
  color: #fff;
  font-size: 12px;
  pointer-events: none;
  border-radius: 2px;
}
.date_cell.upcomming_event::after {
  background: orange;
  content: 'Upcoming';
  position: absolute;
  top: 0px;
  left: 12px;
  line-height: 1;
  padding: 3px 7px;
  color: #fff;
  font-size: 12px;
  pointer-events: none;
  border-radius: 2px;
}
@media (min-width: 767px) {
  footer .login-register {
    display: none;
  }

  #header {
    flex-wrap: wrap;
    padding: 0;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 5;
  }
  .top_header {
    width: 100%;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    background: white;
    display: flex;
    justify-content: space-between;
    z-index: 1;
  }
  .logo {
    padding: 10px 25px 10px;
  }
  .preeheader {
    width: 100%;
    background: #e9e9e9;
    text-align: left;
  }
  #header ul li a {
    padding: 10px 20px 9px;
    border-bottom: 1px solid transparent;
  }

  #header ul li a:hover,
  #header ul li a.active {
    color: #00a8e5;
    border-bottom: 2px solid #00a8e5;
  }

  .login-register {
    display: flex;
  }
  .login-register button {
    margin: 0;
    height: 100%;
    padding: 0 35px;
    box-shadow: none;
    border-radius: 0;
    background: #d74000 !important;
    color: #ffffff !important;
    font-weight: 600;
    border-width: 0px !important;
    float: left;
    outline: none !important;
  }
  .login-register button:first-child {
    background: #00a8e5 !important;
  }
  .login-register button:focus,
  .login-register button:active {
    box-shadow: inset 0 0px 0 #ddd;
  }

  #landingpage.landingpage {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 110px);
    position: relative;
  }

  /**/

  #header li {
    float: left;
  }

  #header .menu {
    clear: none;
    float: right;
    float: left;
    max-height: none;
  }

  #header .menu-icon {
    display: none;
  }

  /*Modal*/
  .body_scroll .modal-body {
    max-height: calc(100vh - 110px);
  }
  .body_scroll .modal-header {
    padding: 20px 40px;
  }
  .modal-title {
    font-size: 1.3em;
  }
  .modal-header.custom_close_btn .close {
    right: -52px;
  }
}

/*CountDOwn*/

.timer-container {
  position: fixed;
  top: calc(50% + 90px);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #d53738;
  width: 90%;
  max-width: 500px;
}
.timer-container h5 {
  font:
    4vw 'Orbitron',
    sans-serif;
}
#countDownTimer {
  font:
    3vw 'Orbitron',
    sans-serif;
}
@media (max-width: 800px) {
  .timer-container {
    top: calc(50% + 50px);
  }
  .timer-container h5 {
    font:
      7vw 'Orbitron',
      sans-serif;
  }
  #countDownTimer {
    font:
      5vw 'Orbitron',
      sans-serif;
  }
}
.timer-container hr {
  margin: 1em auto;
  width: 40%;
}

/*clockdiv*/
.countDownPopup .form_modal {
  width: 600px;
  max-width: 90%;
}
.countDownPopup .modal-content {
  background-color: transparent;
  border: 2px solid rgb(0, 172, 245);
}
.countDownPopup .modal-header {
  padding: 0;
  border-bottom: 0px solid #dee2e6;
  top: 0;
  z-index: 1;
  width: 100%;
  color: #fff;
  justify-content: center;
  transform: translateY(-50%);
}
.countDownPopup .modal-title {
  padding: 10px 40px;
  background: rgb(0, 172, 245);
  line-height: 1;
  border-radius: 50px;
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.0345em;
}
.countDownPopup .modal-body {
  padding: 0rem;
  border-radius: 13px;
  padding-top: 30px;
}
.countDownPopup h2 {
  text-align: center;
  color: #fff;
  padding: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.countDownPopup .custom_close_btn .close span::after,
.countDownPopup .custom_close_btn .close span::before {
  width: 14px;
}
.countDownPopup .modal-header.custom_close_btn .close {
  font-size: 0px;
}
.countDownPopup .modal-header.custom_close_btn .close {
  top: 22px;
  right: 5px;
  width: 30px;
  height: 20px;
  background-color: #00acf5;
  font-size: 0px;
  opacity: 1;
  z-index: 10;
  border-radius: 50%;
}

#clockdiv {
  color: #fff;
  display: inline-block;
  font-weight: 100;
  text-align: center;
  font-size: 30px;
  display: flex;
}

#clockdiv > div {
  display: inline-block;
  flex: 1;
  position: relative;
}

#clockdiv div > span {
  padding: 15px 10px 5px;
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 52px;
  font-weight: 800;
}

.smalltext {
  padding-top: 5px;
  font-size: 16px;
  background: rgb(0, 172, 245);
}
#clockdiv circle {
  position: absolute;
  right: 0;
  top: calc(50% - 18px);
  border: 1px solid #00acf5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
#clockdiv circle + circle {
  top: calc(50% - 2px);
}
.modal-open .modal {
  background: rgba(0, 0, 0, 0.7);
  /*margin-top: 100px;*/
}
@media (max-width: 800px) {
  .countDownPopup .form_modal {
    margin: auto;
  }
  .countDownPopup .modal-title {
    font-size: 13px;
    padding: 10px 15px;
  }
  .modal-open .countDownPopup.modal {
    padding-right: 0 !important;
  }
}

@media (max-width: 440px) {
  #clockdiv div > span {
    font-size: 30px;
  }
  #clockdiv circle {
    top: calc(50% - 16px);
    width: 6px;
    height: 6px;
  }
  #clockdiv circle + circle {
    top: calc(50% - 4px);
  }
}
.countDownPopup .modal-content {
  margin-top: 40px;
}
@media (min-width: 980px) {
  #clockdiv div > span {
    font-size: 130px;
  }
  .countDownPopup h2 {
    font-size: 56px;
  }
  .countDownPopup .form_modal {
    width: 880px;
  }
}

@media (min-width: 1024px) {
  .countDownPopup h2 {
    padding: 25px 15px;
    font-size: 72px;
  }
  #clockdiv div > span {
    padding: 15px 10px 15px;
  }
}
@media (max-height: 414px) {
  .countDownPopup h2 {
    padding: 0 10px;
    font-size: 38px;
  }
}

/*ajendaTableOption 2*/
.tableLayout .table.border-separate {
  border-collapse: separate;
  border-spacing: 0 15px;
  padding-bottom: 0px;
}
.agenda_table_option2 tr {
  position: relative;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.tableLayout .table .agenda_table_option2 td.day_cell {
  min-width: 90px;
}
.tableLayout.modal td.action_cell + .action_cell .custom-btn.blue {
  background: transparent !important;
  color: #00acf5;
  border: 1px solid #00acf5;
  box-shadow: none;
}
.tableLayout.modal td.action_cell + .action_cell .custom-btn.blue:hover {
  background: #00acf5 !important;
  color: #fff;
  border: 1px solid #00acf5;
  box-shadow: none;
}
.tableLayout.modal .agenda_table_option2 .custom-btn.orange {
  border-width: 1px;
}
.tableLayout.modal .agenda_table_option2 .custom-btn.expire_btn {
  background: #000 !important;
}
.tableLayout.modal .agenda_table_option2 .custom-btn.live_btn {
  background: #049504 !important;
  /*background: rgba(184, 25, 3, 1) !important;*/
}
.agenda_table_option2 .btn.btn-outline-primary.custom-btn {
  display: block;
  border-radius: 4px;
  font-size: 14px;
}

.btn.btn-outline-primary.custom-btn.blue.filterButtons {
  background: transparent;
  box-shadow: none;
  color: #3d454f;
  font-size: 15px;
  padding: 0 5px;
  margin: 0 1.7rem;
  position: relative;
}
.btn.btn-outline-primary.custom-btn.blue.filterButtons:first-child {
  margin-left: 0;
}
.btn.btn-outline-primary.custom-btn.blue.filterButtons:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: transparent;
}
.btn.btn-outline-primary.custom-btn.blue.filterButtons.active:after {
  background: #00a8e5;
}

.tex-left.agenda_table_option2 h2 {
  padding: 3rem 0;
  padding: 6rem 0;
  font-size: 1.3rem;
  text-align: center;
}
#ajendaButtons {
  padding-top: 1.2rem;
  display: block;
  border-bottom: 2px solid rgb(221, 221, 221);
  width: calc(100% - 3%);
  display: flex;
  height: auto !important;
}
.agendaPopup_v3 .modal-content {
  border-radius: 5px !important;
  background: rgba(247, 248, 252, 1);
}
.agendaPopup_v3 .modal-header {
  padding-bottom: 0 !important;
}
.agendaPopup_v3 .modal-header .close,
#AgendaDetails .modal-header .close {
  background: transparent;
}
.agendaPopup_v3 .modal-header .close span,
#AgendaDetails .modal-header .close span {
  font-size: 2.3rem !important;
  color: rgb(32, 36, 47);
  font-weight: bolder;
}
.agendaPopup_v3.tableLayout .table {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}
.agendaPopup_v3.tableLayout .table td {
  border-width: 0px;
  background: #fff;
}
.agendaPopup_v3 .time_cell {
  min-width: 140px !important;
}
.agendaPopup_v3 .time_cell > div {
  display: flex;
  align-items: center;
}
.agendaPopup_v3 .time_cell > div span {
  display: block;
  padding-left: 10px;
}
.agendaPopup_v3 .time_cell > div img {
  padding: 7px;
  border-radius: 4px;
  background: rgba(0, 168, 229, 0.1);
}
.agendaPopup_v3 .action_cell a.btn {
  line-height: 2.3;
}
.agendaPopup_v3 .time_cell > div > span {
  padding: 0 !important;
  width: 34px;
}
#AgendaDetails .modal-content {
  border-radius: 5px !important;
  background: rgba(247, 248, 252, 1);
}
#AgendaDetails h4.modal-title {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.5);
}
#AgendaDetails p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 980px) {
  .agendaPopup_v3.tableLayout .table td:not(.action_cell) {
    min-width: 140px;
  }
  .agendaPopup_v3.tableLayout .table td {
    padding: 7px 7px;
  }
  .agendaPopup_v3 .btn.btn-outline-primary.custom-btn.blue.filterButtons:first-child {
    margin-left: 0;
  }
  .agendaPopup_v3 .time_cell > div span {
    padding-left: 6px;
  }
  .agendaPopup_v3 .btn.btn-outline-primary.custom-btn.blue.filterButtons {
    font-size: 13px;
    margin: 0 0.7rem;
  }
  #ajendaButtons {
    padding-top: 0;
  }
  .agendaPopup_v3 .modal-content,
  #AgendaDetails .modal-content {
    border-radius: 5px !important;
    background: rgba(247, 248, 252, 1);
    max-width: 95%;
    margin: 15px auto;
    max-height: calc(100vh - 30px);
  }
  #AgendaDetails h4.modal-title {
    font-size: 1rem;
  }
  .agendaPopup_v3.expo_modal.body_scroll .modal-body,
  #AgendaDetails .modal-body {
    max-height: calc(100vh - 90px);
  }
  .agendaPopup_v3.tableLayout .table {
    font-size: 12px !important;
    line-height: 1.4;
  }
  .tableLayout .table .agenda_table_option2 td.day_cell {
    min-width: 52px;
  }
  .agenda_table_option2 .btn.btn-outline-primary.custom-btn {
    font-size: 13px !important;
    padding: 0 10px;
    height: 35px;
  }
  .agendaPopup_v3 .action_cell a.btn {
    line-height: 2.5;
  }
  .agendaPopup_v3 .time_cell > div img {
    padding: 4px;
  }
  .agendaPopup_v3 .time_cell {
    min-width: 102px !important;
  }
  .expo_modal.body_scroll .modal-body {
    padding: 0 0 5px;
  }
  .agendaPopup_v3 .time_cell > div > span {
    max-width: 26px;
  }
  .agendaPopup_v3 .title_cell .text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-bottom: 0;
  }
  .agendaPopup_v3.tableLayout .table td.action_cell {
    padding: 5px;
  }
  .tex-left.agenda_table_option2 h2 {
    font-size: 1.1rem;
  }
}

/*Loader*/
#loading {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #f9f9f9;
  pointer-events: none;
  z-index: 1;
}
.loading_container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0.8;
}
.loading_container .image {
  max-width: 100px;
}

.loading_container h2 {
  line-height: 1.5;
  margin: 0;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
  font-size: 1.3rem;
}
#myProgress {
  width: 180px;
  background-color: #ddd;
  border-radius: 10px;
}

#myBar {
  width: 10%;
  height: 7px;
  background-color: #d42a1d;
  text-align: center;
  line-height: 10px;
  color: white;
  border-radius: 10px;
}
.resetPassword {
  font-size: 14px;
  text-decoration: underline;
  padding: 10px;
  display: inline-block;
}
.confirmetionMessage {
  padding: 40px;
  margin-bottom: 15px;
}
.confirmetionMessage h4 {
  text-align: center;
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .loading_container h2 {
    font-size: 1rem;
  }
  #myProgress {
    width: 130px;
  }

  #myBar {
    width: 15%;
    height: 6px;
  }
}
.agenda_table_option2 {
  width: 100%;
}
.agendaPopup_v3.tableLayout .table td.title_cell {
  min-width: calc(100% - 0px);
}
.btn.btn-outline-primary.custom-btn.blue.filterButtons {
  padding: 0 2rem;
  margin: 0 !important;
  position: relative;
  border: 1px solid black;
  border-bottom-color: #dbdcdd;
  border-color: #dbdcdd;
}
.btn.btn-outline-primary.custom-btn.blue.filterButtons.active:after {
  display: none;
}
.btn.btn-outline-primary.custom-btn.blue.filterButtons.active {
  background: #00a8e5;
  border-color: #00a8e5;
  color: #fff;
}
.agendaPopup_v3 .modal-header .close {
  right: 0 !important;
  height: 32px;
}
@media (max-width: 1100px) {
  .expo_modal.agendaPopup_v3 .close {
    width: 30px;
    height: 30px;
    line-height: 32px;
    padding: 0;
    right: 0 !important;

    width: 26px;
    height: 22px;
  }
  /*.agendaPopup_v3 .modal-header .close span, #AgendaDetails .modal-header .close span {
        font-size: 2rem !important;
    }*/
}

.agendaPopup_v3 .modal-header {
  position: relative;
}

.arrowContainer #prev,
.arrowContainer #next {
  position: absolute;
  background: #edeef0;
  width: 20px;
  height: 20px;
  left: 0.5rem;
  border-radius: 50%;
  bottom: -4px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*border: 1px solid #dbdcdd;*/
  z-index: 20;
  cursor: pointer;
  background: #686868;
  border-radius: 0px;
  border: 1px solid #686868;
  transition: all 0.3s;
  opacity: 0.6;
}
.arrowContainer #prev:hover,
.arrowContainer #next:hover {
  background: #686868;
  border-radius: 0px;
  border: 1px solid #686868;
  opacity: 1;
}
.arrowContainer #prev img,
.arrowContainer #next img {
  max-width: 10px;
  max-width: 11px;
}
.arrowContainer #next {
  left: auto;
  right: 0.5rem;
}
.custom_toast {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 320px;
}
.custom_toast .toast-header strong {
  font-weight: 500;
}
.custom_toast .toast-header,
.custom_toast .toast-header .text-muted {
  color: #6c757d;
}
.custom_toast .toast-body p {
  color: #212529;
  font-weight: 500;
  margin-bottom: 0;
}
.custom_toast .toast-body small {
  display: block;
  font-weight: 400;
  font-size: 90%;
}
.toast_btn .btn {
  padding: 4px 8px;
  height: 29px;
  background: #0494db;
  border-radius: 4px;
  color: #ffffff;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
}
.toast_btn {
  text-align: right;
}
/* NOtification card  */
#header.inner_header ul li ul.notification_card li a {
  display: inline-block;
  padding: 4px 8px;
  height: 29px;
  background: #0494db;
  border-radius: 4px;
  color: #ffffff;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  border-width: 0px;
}
#header.inner_header ul li ul.notification_card {
  width: 340px;
  max-width: 350px;
  left: -107px !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  top: 1px !important;
  border-width: 0px;
  padding: 0;
}
@media screen and (orientation: landscape) and (max-width: 980px) {
  #header.inner_header ul li ul.notification_card {
    max-height: calc(100vh - 90px);
    overflow-y: scroll;
    left: auto !important;
    right: -55px !important;
  }
}

.notificationcard {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.2rem 0.75rem;
  margin-bottom: 5px;
}
#header.inner_header ul li ul.notification_card li:last-child .notificationcard {
  border-bottom: 0px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
}
.notification_head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #6c757d;
  background-clip: padding-box;
  justify-content: space-between;
}
.notification_head strong {
  font-weight: 500;
  color: #000;
  font-size: 15px;
}
.notification_body {
  line-height: 20px;
  font-size: 14px;
  color: #152536;
}
.notify {
  position: absolute;
  right: 6.98%;
  top: 1.94%;
  background: #dc3545;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
