/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
    margin: 0px;
    overflow: hidden;
    color: white;
    font-family: "montserrat", sans-serif;
}
#v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
	background-image:url("media/wide logo.png"), radial-gradient(circle,#9AB9CB,#385172);
	background-repeat: no-repeat;
	background-position: center;
	background-blend-mode:soft-light;	
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

/*point of interest CSS */
.v3d-annotation{
    background-color:#224B5D;
    color: #EDE1D5;
    border: solid 1px  #BFD050;
    border-radius: 20px;
    font-family: montserrat;
	font-size:0.9em;
}
.v3d-annotation-dialog{
	padding:5px;
    background-color:white;
	max-height:25vh;
	overflow-y: auto;
    color:#224B5D;
	width:320px;
	text-align:left;
    font-family: montserrat;
	font-size:1em;
	border:solid 1px #224B5D;
	box-shadow:0 8px 20px rgba(0, 0, 0, 0.2);
}