*, *::after, *::before {
  box-sizing: border-box;
}

.modal {
  position: fixed;
  display: none;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid white;
  /* border-radius: 10px; */
  z-index: 50;
  background-color: white;
  width: 1200px;
  height: 600px;
  max-width: 80%;
  max-height: 80%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  
}

.modal.active {
  display: block;
  transform: translate(-50%, -25%) scale(1);
}

.modal-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
  height: 40px;
  font-family: Arial, Helvetica, sans-serif;
}

.modal-header .title {
  font-size: 1rem;
  font-weight: bold;
  color: black;
  font-family: Arial, Helvetica, sans-serif;

}

.modal-header .close-button {
  font-size: 1rem;
  font-weight: bold;
  font: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif;
  cursor: none;
  border: none;
  outline: none;
  background: rgb(150, 150, 150);
  padding: 5px, 5px;
  border-radius: 25px;
  font-size: 1rem;
  /* font-weight: bold; */
}

.modal-header .close-button:hover {
  background-color: rgb(15, 89, 226);
/* border-bottom:3px solid rgb(15, 89, 226); */
}

.modal-header .close-button:hover:focus {
  background-color: rgb(15, 194, 226);
  /* border-bottom:3px solid rgb(15, 194, 226); */
}

/* Create an active/current tablink class */
.modal-header .close-button:hover.active {
  background-color: rgb(15, 89, 226);
  /* border-bottom:3px solid rgb(15, 89, 226); */

}

.modal-body {
  padding: 40px 45px;
  color: black;
  height: calc(100% - 50px);
  overflow-y: scroll;
  font-family: Arial, Helvetica, sans-serif;
}

.modal-body .block {
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0px;
  line-height: 150%;
  font-size: 17px;
}

.modal-body .branding {
  display: block;
  margin: auto;
  max-width: 100%;
}
.modal-body .enter {
  /* display: block; */
  margin: auto;
  max-width: 100%;
  box-align: center;
  padding: 20px;
}

.modal-body .heading {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.modal-body .para {
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 150%;
  
  
}

.modal-body .nav-bar {
  display: block;
  margin: 30px auto;
  max-width: 100%;
}

.modal-body .nav-item {
  display: block;
  margin: auto;
  max-width: 100%;
}

.modal-body .icon-box {
  display: flex;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 150%;
  
}

.modal-body .icon-img {
  margin-right: 10px;
}

.modal-body .horizontal-rule {
  margin-top: 30px;
  margin-bottom: 40px;
}

#overlay-welcome {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
  font-family: Arial, Helvetica, sans-serif;
}

#overlay-welcome.active {
  opacity: 1;
  pointer-events: all;
  color: rgb(255, 251, 251);
}
.tabConWrap {
  width:98%;    
  position:relative;
  padding-top:18px;
  margin:10px auto 30px;
  border-bottom:4px solid #39f;
  text-align:left;
}
.tabs {
  width:auto;
  height:28px;
  margin:0px 0px;
  padding:0px 0px;
}
.tabs li {    
  margin:0px 2px 0px 0px;
  padding:0px 0px;
  display:inline;
  font:bold 12px Arial,Sans-Serif;
}
.tabs li a {
  background-color:#39f; 
  color:white;
  padding:7px 10px; 
  text-decoration:none;
  border:1px solid rgb(255, 255, 255);
  border-bottom:none;
  /* -webkit-border-radius:5px 5px 0px 0px;
  -moz-border-radius:5px 5px 0px 0px;
  border-radius:5px 5px 0px 0px; */
}
.tabs .currentTab {
  background-color:white; 
  color:rgb(255, 255, 255);
  position:relative;
  z-index:7;
}
.tabContainer {
  padding:10px;
  height:300px;
  background-color:white;
  border:1px solid rgb(255, 255, 255);
  position:relative;
  margin-top:-3px;
  z-index:2;
  overflow:hidden;
}
.tabContainer iframe {
  border:none;
  border:1px solid rgb(255, 255, 255);
  width:100%;
  height:100%;    
}

h2#loading {
  width:100px;
  text-align:center;
  font:bold 11px Arial,Sans-Serif;
  position:absolute;
  top:0px;
  left:50%;
  margin-left:-50px;
  padding:5px 0px;
  background-color:#BC151A;
  color:white;    
}
/* Style the tab */
.tab {
overflow: hidden;
/* border: 1px solid #ccc; */
background-color: #ffffff;
align-items: center;
}

/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: center;
border: none;
outline: none;
/* cursor: pointer; */
padding: 5px;
transition: 0.3s;
align-items: center;
text-align: center;
background-color: rgb(255, 251, 251);

}

/* Change background color of buttons on hover */
.tab button:hover {
background-color: rgb(255, 251, 251);
border-bottom:3px solid rgb(15, 89, 226);
}

.tab .close-button:hover {
background-color:rgb(15, 89, 226);
}

.tab .close-button:focus {
background-color: rgb(15, 194, 226);
/* border-bottom:3px solid rgb(15, 194, 226); */
}

.tab button:focus {
/* background-color: rgb(255, 251, 251); */
border-bottom:3px solid rgb(15, 194, 226);
}

/* Create an active/current tablink class */
.tab button.active {
background-color: rgb(255, 255, 255);
border-bottom:3px solid rgb(15, 89, 226);

}

/* Style the tab content */
.tabcontent {
/* display: none; */
/* padding: 6px 12px;  */
border:1px solid rgb(255, 255, 255);
  border-top: none;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}
@keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
.column {
float: left;
width: 50%;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 600px) {
.column {
  width: 100%;
}
}
