body{
  --pink: #FF1C68;
}
.full{
  min-height: 100%;
  width: 100%;
  height: 100%;
}
.row{
  display: flex;
  flex-direction: row;
}
.column{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rowfit{
  display: inline-flex;
  flex-direction: row;
}
.btnpure {
  height: 20px;
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  background: #ffa600;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btnpure:hover {
  background: #ffd119;
  text-decoration: none;
}

.btngray{
  background: #cccccc;
  height: 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.circle{
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  color: white;
  font-family: Arial;
  font-size: 18pt;
  text-align: center;
  vertical-align: middle;
  line-height: 100px;
}

.chance_circle {
  background-color: #55c7ed;
}

.event_circle {
  background-color: #edd152;
}

.payday_circle {
  background-color: #ed528b;
}

#jail{
  position: absolute;
  border-radius: 50%;
  background-color: #ffffff;
  color: black;
  font-family: Arial;
  font-size: 18pt;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*#pop_up_card{
  height: 300px;
  width: 600px;
}
*/

#pop_up_card_resource{
  /*height: 600px;
  width: 800px;*/
  font-size: 16pt;
}
#start{
  background-color: orange;
}

.player{
  position: absolute;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  color: white;
  z-index: 10;
  text-align: center;
  vertical-align: middle;
  line-height: 50px;
}

.player:hover{
  cursor: pointer;
}

#character1{
  background-color: red;
}

#character2{
  background-color: green;
}

#character3{
  background-color: yellow;
}

#character4{
  background-color: cyan;
}

#info{
  display: none;
}

#resource{
  color: white;
  font-family: Arial;
}

#scoreBoard{
  color: orange;
  font-family: Arial;
}

.quad{
  font-size: 16pt;
  display: flex;
  flex: 1;
  justify-content: space-around;
  color: white;
  font-family: Arial;
  background-color: rgba(0, 0, 0, 1.0);
  border: 3px dashed white;
  padding: 15px;
  margin: 10px;
  position: relative;
}

.resource_card{
  font-size: 16pt;
  display: flex;
  flex: 1;
  justify-content: space-around;
  color: black;
  font-family: Arial;
  background-color: white;
  /*border: 5px dotted white;*/
  padding: 15px;
  margin: 10px;
  position: relative;
}

.quadCard{
  z-index: 25;
}

.q_header{
  height: 10%;
  margin: 10px;
  color: orange;
  font-weight: bold;
}

.q_content{
  max-height: 60%;
}

.q_decision{
  height: 10%;
  margin: 10px;
}

.yes{
  display: none;
  margin-right: 25px;
}

.no{
  display: none;
  margin-left: 25px;
}

.bail{
  display: none;
  margin-left: 25px;
}

h1 {
  font-size: 32px;
  line-height: 28px;
  margin-bottom: 10px;
}

button {
  cursor: pointer;
  color: white;
  background-color: #3cb0fd;
  font-size: 24px;
  border: none;
  padding: 20px 25px;
}

.modal-cancel {
  background-color: white;
  color: var(--pink);
}

.modal-ok {
  background-color: orange;
}

.modal-shade {
  display: none;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0, rgba(0,0,0,0.8) 100%);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  will-change: opacity;
  z-index: 45;
}

.modal-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 50;
  font-family: Arial; 
}

.modal {
  opacity: 0;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  background: white;
  border-radius: 5px;
  padding: 30px 45px;
  min-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
  
.modal-actions { 
  align-self: flex-end;
  display: flex;
  flex-direction: row;
}

.image-btn{
  display: block;
  border: 3px solid orange;
  border-radius: 50%;
}

#threejscanvas:hover{
  cursor: pointer;
}

.orangeBold{
  color: orange;
  font-weight: bold; 
  font-family: Arial;
}

.spaced{
  margin-bottom: 10px;
}

.orangeBack{
  background-color: orange;
  color: white;
  font-weight: bold;
  padding: 5px;
}

.grayBack{
  background-color: #999999;
  color: white;
  font-weight: bold;
  padding: 5px;
}

/* The animation code */
@keyframes orange_flash {
    0%   {border-bottom: 50px solid orange;}
    50%  {border-bottom: 50px solid rgba(255, 165, 0, 0.5);}
    100% {border-bottom: 50px solid orange;}
}

@keyframes orange_flash_after {
    0%   {border-top: 50px solid orange;}
    50%  {border-top: 50px solid rgba(255, 165, 0, 0.5);}
    100% {border-top: 50px solid orange;}
}

.diamond-narrow-a {
  width: 0;
  height: 0;
  border: 30px solid transparent;
  position: relative;
  animation-name: orange_flash;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-delay: -1s;
}

.diamond-narrow-a-after {
  position: relative;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  animation-name: orange_flash_after;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.diamond-narrow-b {
  width: 0;
  height: 0;
  border: 30px solid transparent;
  position: relative;
  animation-name: orange_flash;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.diamond-narrow-b-after {
  position: relative;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  animation-name: orange_flash_after;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-delay: -1s;
}

.diamond-narrow-c {
  width: 0;
  height: 0;
  border: 30px solid transparent;
  position: relative;
  animation-name: orange_flash;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-delay: -2s;
}

.diamond-narrow-c-after {
  position: relative;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  animation-name: orange_flash_after;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.diamond-narrow-d {
  width: 0;
  height: 0;
  border: 30px solid transparent;
  position: relative;
  animation-name: orange_flash;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-delay: -3s;
}

.diamond-narrow-d-after {
  position: relative;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  animation-name: orange_flash_after;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}