@charset "utf-8";
/* CSS Document */
#titlediv #title {
    padding: 3px 8px;
    font-size: 1.7em;
    line-height: 100%;
    height: 1.7em;
    width: 100%;
    outline: 0;
    margin: 0 0 3px;
    background-color: #fff;
}
.state_settings_container,
.hotspot_settings_container{
	background-color: #F1F1F1;
	padding: 0px 0px;
	border-bottom: 2px solid #CCC;
	margin-bottom: 20px;
}
svg #NSW,svg #NT,
svg #QLD,svg #WA,
svg #VIC,svg #SA,
svg #TAS,svg #ACT,
svg .svg_hotspot{
	cursor:pointer;
}
svg .icons { animation: out 1s ease; }  
svg .icons:hover { animation: in 2s ease; }  

@-webkit-keyframes in {
    from { stroke-width: 3; } 
    to { stroke-width: 8; }
}

@-webkit-keyframes out {
    0% { stroke-width: 8; }
    100% { stroke-width: 3; } 
}

.trigger {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 70%;
    top:15%;
    left:15%;
    border-radius: 50%; 
    cursor: pointer;
    pointer-events: all;
    transition: box-shadow 0.4s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.trigger i{
    font-size:1.5vw;
}

.trigger.purple{
    background: #671e75;
    color: #f2f2e2;
    box-shadow: 0 0 0 0 #671e75;
}

.trigger.purple:hover{
    box-shadow: 0 0 0 calc(2vw + .5em) rgb(230, 216, 252, 0.5);
}

.trigger.cream{
    background: #f2f2e2;
    color: #671e75;
    box-shadow: 0 0 0 0 #f2f2e2;
}

.trigger.cream:hover{
    box-shadow: 0 0 0 calc(2vw + .5em) rgb(248, 248, 240, 0.5);
}
.hotspot_settings_container .alt_settings{
    background-color: #d7f3f7;
    border: solid 1px #4ba0d1;
    border-radius:5px;
    padding: 10px;
}
.interactive_map_container svg foreignObject{
    border-radius:50% !important;
}
#tbstinteractive_overlay{
	background-color:rgba(0,0,0,.5);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1999;
	top:0;
	left: 0;
}
#tbstinteractive_content_pop{
	background-color: #FFF;
    border: solid 1px #CCC;
    border-radius: 5px;
    position: relative;
    padding: 50px 20px; 
    top: 10%;
    min-height: 50px;
	min-width: 10px;
	max-width: 100%;
    overflow: auto;
    margin: 0 auto;
	display: none;
}
#tbstinteractive_content_pop .pop_close{
	cursor: pointer;
    float: right;
    text-align: right;
    padding: 5px;
    font-weight: 300;
    color: #000000;
   /* margin: -40px -10px 0px 0px; */
    text-transform: uppercase;
    font-family: 'Abraham-Regular';
	position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
	height:30px;
}
#tbstinteractive_content_pop .pop_close:hover{
	opacity: 0.5;
}
#tbstinteractive_tooltip {
  background: #FFFFFF; 
  border: none;
  border-radius: 5px;
  padding: 5px;
  max-width: 300px;
}

#tbstinteractive_admin_tooltip {
  background: #FFFFFF;
  border: 2px solid #514F4F;
  opacity: .8;
  padding: 2px 10px;
  border-radius: 5px;
}

#tbstinteractive_accordion .hotspot_settings_container .acc-title{
	padding: 10px 20px;
	background-color: #FFFFFF;
	border: 1px solid #CCC;
	cursor: pointer;
	margin: 0px;
}
#tbstinteractive_accordion .hotspot_settings_container .acc-title:after{
	content: "\f347";
	font-family: dashicons;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
	position: absolute;
    right: 20px;
}
#tbstinteractive_accordion .hotspot_settings_container .acc-body{
	padding: 10px 20px;
}
@media only screen and (max-width: 600px) {
	#tbstinteractive_content_pop{
		min-width: 90% !important;
	}
}