body{
    font-family: "Tahoma", Sans-serif;
    font-weight: 400;
}
.a-enter-vr-button, .a-enter-ar-button{
    display: none;
}


button:focus {
    outline: none;
    webkit-tap-highlight-color: rgba(0,0,0,0);
    background-color:transparent
}

button:disabled,
button[disabled]{
    background-color: #e3e3e3 !important;
}
span.btn_close{
    padding: 10px;
    font-size: 1.2em;
    color: #666;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1000;
}

span.btn_minimize{
    padding: 10px;
    font-size: 1.2em;
    color: #666;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 0px;
    z-index: 1000;
}

div#fade_in
{
	border: 0px solid pink; 
	position: fixed; 
	top: 0px;  
	width:100%; height:100%; 
	z-index: 10000; 
	pointer-events: none; /* allow click-through in transparent areas */
	align-items: center;
  	justify-content: center;
}
div#fade_in_header{
    height: 40%;
    width: 100%;
    display: flex;
    align-items: center;
  	justify-content: center;
}
div#fade_in_cta{
    height: 20%;
    width: 100%;
    display:flex;
    align-items: center;
  	justify-content: center;
}
div#fade_in_footer{
    height: 40%;
    width: 100%;
    display: flex;
    align-items: center;
  	justify-content: center;
}
div#btn_start
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	pointer-events: auto;	
	filter: drop-shadow(0px 0px 20px white);
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 5px;
}

div#bottom_select{
    position: fixed;
    top: calc(100vh - 200px);
    left: 0px;
    height: 150px;
    line-height: 150px;
    width: 100vw;
    z-index: 1;
}

div#actions{
    position: fixed;
    top: calc(100vh - 200px);
    left: 0px;
    height: 150px;
    line-height: 150px;
    width: 100vw;
    display: grid;
    z-index: 1;
    grid-template-columns: 1fr 1fr 1fr;
}

div#actions_left{
    display: inline-grid;
    grid-column-start: 1;
    grid-column-end: 2;
    text-align: center;    
}
div#actions_center{
    display: inline-grid;
    grid-column-start: 2;
    grid-column-end: 3;
    text-align: center;    
}
div#actions_right{
    display: inline-grid;
    grid-column-start: 3;
    grid-column-end: 4;
    text-align: center;    
}

/**********************/
/*****   Points   *****/
/**********************/

div#block_display{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    vertical-align: top;
    background-color: RGBA(0,0,0,0.2);
    border-radius: 10px;
    padding: 10px;
}
img#points_icon{
    width: 40px;
    vertical-align: middle;
}
span#block_value{
    font-size: 30px;
    padding: 10px;
    display: inline;
    vertical-align: middle;
    color: #FFFFFF;
}

div#block_display.pulsate{
    transform: scale(1);
	animation: pulse 1s normal forwards ease-in-out;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(66,139,202, 0);
	}

	70% {
		transform: scale(1.4);
		box-shadow: 0 0 0 10px rgba(66,139,202, 0.5);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(66,139,202, 0);
	}
}
/**********************/
/*****  Account   *****/
/**********************/
div#account{
    position: fixed;
    z-index: 1000;
    top: 10px;
    right: 10px;
    vertical-align: top;
    border-radius: 10px;
    padding: 10px;
}

div#account_name{
    background-color: #FFFFFF;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    -webkit-box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 2px 2px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 25%);
    transition: box-shadow 200ms cubic-bezler(0.,0,0.2,1);
}

div#account_name:hover{
    -webkit-box-shadow: 0px 3px 8px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 3px 8px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 3px 8px 1px rgba(0,0,0,0.25);    
}

div#account_name i, div#account_name span{
    font-size: 1.5em;
    line-height: 1.7em;
    text-transform: uppercase;
}
div#btn_share{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 1.5em;
    line-height: 1.7em;
    margin-top: 20px;
}
div#menu{
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 999;
    vertical-align: top;
    border-radius: 10px;
    padding: 10px;
    width: 150px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 2px 2px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 25%);
    transition: box-shadow 200ms cubic-bezler(0.,0,0.2,1);
}
div#menu.inactive{
    display: none;
}

.menu_item{
    line-height: 1.5em;
    font-size: 1em;
    padding: 0.5em 0.2em;
    border-bottom: 1px solid #e9e9e9;
    color: #666;
    cursor: pointer;
}

.menu_item:hover{
    background-color: #007bff;
    color: #FFFFFF;
}

div#teleport_progress{
    position: fixed;
    bottom: 0px;
    width: 100%; 
    height: 36px; 
    background-color: #FFFFFF; 
    display: none;
}
/**********************/
/*****  Spheres   *****/
/**********************/
@media (orientation: landscape) {
    
    div#spheres_container, div.spheres_options{
        height: calc(100vh - 160px);
        overflow-y: scroll;
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 50% 50%
    }
    
    div.spheres{
        display: inline-block;
        max-width: 640px;
        padding-top: 80%;
        margin: 10px;
        border: 20px;
        border-radius: 20px;
        background-color: #e9e9e9;
        background-size: cover;
        background-position: center;
        cursor: pointer;
    }    
}

@media (orientation: portrait) {

    div#spheres_container, div.spheres_options{
        height: calc(100vh - 160px);
        overflow-y: scroll;
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
    }

    div.spheres{
        display: inline-block;
        width: 100%;
        max-width: 640px;
        padding-top: 80%;
        margin: 5px auto 5px auto;
        border: 20px;
        border-radius: 20px;
        background-color: #e9e9e9;
        background-size: cover;
        background-position: center;
        cursor: pointer;
    }    
    
    
}



div.spheres[action=create]{
    background-image: url("https://block360.live/assets/images/available.png");
    background-position: center center;
    background-size: cover;
    text-transform: capitalize;
}

div.spheres .selected{
    border: 2px solid #428bca;    
}

div.spheres p{
    text-align: center;
    color: #FFFFFF;
    font-size: 0.8em;
}

p.new_sphere_caption{
    text-align: center;
    color: #666;
    font-size: 1.2em;
}

div#swiper_new_spheres{
    overflow: hidden;
    height: calc(100vh - 160px);
}
/**********************/
/*****   Buttons   ****/
/**********************/

button#btn_add{
    color: #999;
    width: 80px;
    height: 80px;
    line-height: 100px;
    margin-top: 35px;
    font-size: 40px;
}
button#btn_add i{
    text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.5);
}

.btn_colors{
    background-color: RGBA(256,256,256,0.7) !important;
    color: #999;
    width: 50px;
    height: 50px;
    line-height: 70px;
    margin-top: 10px;
    margin-left: 10px;
    font-size: 18px;

}

.buttonUI{
	    border: 0px solid lime;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    pointer-events: auto;	
	    filter: drop-shadow(0px 0px 20px white);
    }

.button_shadow:hover{
    -webkit-box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 2px 2px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 25%);
    transition: box-shadow 200ms cubic-bezler(0.,0,0.2,1);
}

.button_shadow{
    -webkit-box-shadow: 0px 3px 8px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 3px 8px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 3px 8px 1px rgba(0,0,0,0.25);        
}


.fab{
    padding: 0px;
    text-align: center;
    border: 0px;
    border-radius: 50%;
    box-shadow: 0 6px 10px 0 #666;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}
#countdown {
  position: fixed;
  top: 20px;
  right: 10px;
  margin: auto;
  margin-top: 0px;
  height: 40px;
  width: 40px;
  text-align: center;
}

#countdown-number {
  color: white;
  display: inline-block;
  font-size: 20px;
  line-height: 40px;
}

/*svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}
*/

svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: white;
  fill: none;
  animation: countdown 60s linear infinite forwards;
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}
@media not all and (pointer: coarse) {
    .fab:hover{
        box-shadow: 0 6px 14px 0 #666;
        transform: scale(1.05);
    }
}
.fab:active {
    box-shadow: 0 6px 14px 0 #666;
    transform: scale(1.05);
}
.fab i{
    position: relative; 
    top: 0px; 
    left: 0px;
}

@media (orientation: portrait) {
.bottomNav{
    position: fixed;
    height: 25vh;
    bottom: -20vh;
    width: 100%;
    z-index: 1000;
}

.bottomNav.active{
    bottom: 0px;
}

.bottomNavToggle{
    text-align: center;
    display: inline-block;
    width: 100%;
    text-align: center;
}

div#bottomNavExpand, div#bottomNavButton{
    margin-left: auto;
    margin-right: auto;
    background-color: #e9e9e9;
    -moz-border-radius: 50% 50% 0 0;
    -webkit-border-radius: 50% 50% 0 0;
    border-radius: 50% 50% 0 0;
    cursor: pointer;
    transition: box-shadow 200ms cubic-bezler(0.,0,0.2,1);
    height: 5vh;
    width: 6vh;
    font-size: 1vh;
    text-align: center;
    padding: 1vh;
    text-decoration: none;
}

div#bottomNavExpand i, div#bottomNavButton i{
    font-size: 2.5vh;
    line-height: 2.5vh;
}

.bottomNavContent{
    background-color: #e9e9e9;    
    height: 20vh;
}

}

@media (orientation: landscape) {
.bottomNav{
    position: fixed;
    height: 25vw;
    bottom: -20vw;
    width: 100%;
    z-index: 1000;
}

.bottomNav.active{
    bottom: 0px;
}

.bottomNavToggle{
    text-align: center;
    display: inline-block;
    width: 100%;
    text-align: center;
}

div#bottomNavExpand, div#bottomNavButton {
    margin-left: auto;
    margin-right: auto;
    background-color: #e9e9e9;
    -moz-border-radius: 50% 50% 0 0;
    -webkit-border-radius: 50% 50% 0 0;
    border-radius: 50% 50% 0 0;
    cursor: pointer;
    transition: box-shadow 200ms cubic-bezler(0.,0,0.2,1);
    height: 5vw;
    width: 6vw;
    font-size: 2vh;
    padding: 1vw;
    text-decoration: none;
}

div#bottomNavExpand i, div#bottomNavButton i{
    font-size: 2.5vw;
    line-height: 2.5vw;
}

.bottomNavContent{
    background-color: #e9e9e9;    
    height: 20vw;
}

    
}

/**********************/
/***   Post Popup  ****/
/**********************/
div#popup_view_post_image.loaded{
    margin-top: 50px;
    width: 100%;
    padding-top: 140%; /* 5:8 Aspect Ratio */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
div#popup_view_post_text{
    padding: 5px;
    height: auto;
    max-height: 105px;
}
div#popup_view_post_text.expanded{
    padding: 5px;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    position: fixed;
    top: 50px;
    background-color: #FFFFFF;
    overflow-y: scroll;
}
span#popup_view_post_text_expand{
    display: block;
    color: #007bff;
    cursor: pointer;
}
span#popup_view_post_text_expand.expanded{
    display: none;
    color: #007bff;
    cursor: pointer;
}
div#popup_view_post_action_container{
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 0vh;
}
div#popup_view_post_action_container{
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}
div#popup_view_post_action_close, div#popup_view_post_action_share{
    color: #999;
    width: 40px;
    height: 40px;
    margin: 0px 10px;
    line-height: 35px;
    font-size: 18px;
    border-radius: 20px;
    border: 2px solid #e9e9e9;
    background-color: #FFFFFF;
    cursor: pointer;
    display:  table-cell;
    vertical-align: middle;
    top: 25px;
}

div#popup_view_post_action_close, div#popup_view_post_action_share i{
    line-height: 35px;
}
div#popup_view_post_action_close.inactive{
    left: 25%;
    position: absolute;
}
div#popup_view_post_action_close{
    left: 5px;
    position: absolute;
}
div#popup_view_post_action_share.inactive{
    right: 25%;
    position: absolute;
}
div#popup_view_post_action_share{
    right: 5px;
    position: absolute;
}
div#popup_view_post_action_center{
    color: #999;
    width: 70px;
    height: 70px;
    margin: 10px auto 10px auto;
    line-height: 70px;
    font-size: 18px;
    background-image: url('../images/icon_block.png');
    background-size: 80%;
    border-radius: 35px;
    border: 2px solid #17a2b8;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
}

div#popup_view_post_action_collect.inactive, div#popup_view_post_action_stake.inactive{
    width: 0px;
    height: 0px;
    -webkit-transition: width 0s ease-in-out;
    -moz-transition: width 0s ease-in-out;
    -o-transition: width 0s ease-in-out;
    transition: width 0s ease-in-out;
}

div#popup_view_post_action_stake{
    position: absolute;
    width: 150px;
    height: 40px;
    line-height: 40px;
    left: 50%;
    overflow: hidden;
    color: #FFFFFF;
    background-color: #e3e3e3;
    border-radius: 20px;
    z-index: -1;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

div#popup_view_post_action_stake.enabled{
    background-color: #007bff;
}

div#popup_view_post_action_collect{
    position: absolute;
    width: 150px;
    height: 40px;
    line-height: 40px;
    right: 50%;
    overflow: hidden;
    background-color: #e3e3e3;
    color: #FFFFFF;
    border-radius: 20px;
    z-index: -1;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

div#popup_view_post_action_collect.enabled{
    background-color: #6f42c1;
}
div#popup_view_video.minimized{
    width: 160px;
    height: 80px;
    top: 75px;
    left: 10px;
    border: 0px;
    background-color: none;
}

div#message-pop-container{
    z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    background-color: RGBA(0,0,0,0.5);
}
div#message-pop-inner{
    z-index: 100001;
    width: calc(100% - 50px);
    min-height: calc(95vh - 50px);
    max-height: calc(95vh - 50px);
    margin: 25px;
    padding: 20px;
    box-sizing: border-box;
    background-color: white;
}
div#message-pop-text{
    min-height: 200px;
    margin-top: 50px;
    text-align: center;
}
img#message-pop-image{
    width: 100%;
}
div.popup_content{
    display: inline-block;
    width: 80%;
    margin-left: 10%;
    margin-top: 20px;
    overflow:hidden;
}
div.popup_text{
    font-size: 0.8rem;
    max-height: 120px;
    overflow: scroll;
}
img#logo, img.popup_logo{
    display: block;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
}
img#hr-icon{
    width: 30px;
    height: 30px;
    margin-left: calc(50% - 15px);
    margin-top: -25px;
}
p#popup_title, p.popup_title{
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #428bca;
}
p#popup_text{
    font-size: 0.8rem;
}
div.popup_image{
    width: 100%;
    height: 160px;
    background-size: cover !important;
    background-position: center center !important;
    margin-top: 15px;
}
span.input_label{
    color: #666;
}
div.popup_content input, div.popup_content textarea{
    width: 100%;
    font-size: 1em;
    line-height: 1.4em;
    padding: 0.5em;
    border: 1px solid #e9e9e9;
}
div#popup_content_new_post{
    display: block;
    width: 100%;
    margin: 20px 0px 0px 0px;
    height: calc(100% - 20px);
    overflow-y: scroll;
}
button#btn_new_post_submit{
    border-radius: 0px;
    position: fixed !important;
    bottom: 0px !important;
    z-index: 100000 !important;
    min-height: 2.4em;
}
div#popup_content_new_post input, textarea#input_new_post_description{
    border: 0px;
    outline: none;
}

textarea#input_new_post_description{
    max-height: 50vh;
}
textarea#input_new_post_description.minimize{
    height: 120px;
}
label.post_labels{
    padding: 5px;
    color: #428bca;
}
div#new_post_img_placeholder{
    width: 100%;
    min-width: 100%;
    padding-top: 140%; /* 5:8 Aspect Ratio */
    border: 1px solid #e3e3e3;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.number-input {
  display: grid;
  width: 100%;
  grid-template-columns: 25% 50% 25%;
  margin: 10px 0px;
}

.number-input,
.number-input * {
  box-sizing: border-box;
}

.number-input button {
  outline:none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input button:before,
.number-input button:after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 1rem;
  height: 2px;
  background-color: #212121;
  transform: translate(-50%, -50%);
}
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type=number] {
  font-family: sans-serif;
  padding: .5rem;
  border: solid #ddd;
  border-width: 0 2px;
  font-size: 2rem;
  height: 3rem;
  font-weight: bold;
  text-align: center;
}

button.popup_submit, button#btn_collect, button#btn_ok, button#btn_register, button#btn_login, button#close-message-pop, button#btn_create_scene{
    display: inline-block;
    border-radius: 5px;
    color: #FFFFFF;
    background-color: #000000;
    font-size: 1.2em;
    padding: 10px;
    border: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.create_step_prev{
    cursor: pointer;
    position: relative;
    top: 0px;
    left: 0px;
}
.create_step_prev:hover{
    color: #428bca;
}
@keyframes circle {
  0%, 40% {
    stroke-dashoffset: 1300;
  }
  100% {
    stroke-dashoffset: 2600;
  }
}

@-webkit-keyframes circle {
  0%, 40% {
    stroke-dashoffset: 1300;
  }
  100% {
    stroke-dashoffset: 2600;
  }
}

@keyframes check {
  0% {
    stroke-dashoffset: 430;
  }
  40% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes check {
  0% {
    stroke-dashoffset: 430;
  }
  40% {
    stroke-dashoffset: 0;
  }
}

@keyframes in-out {
  0% {
    transform:translateX(-100%);
  }
  45%,55% { /*to stay a while full width*/
    transform:translateX(0);
  }
  100% {
    transform:translateX(100%);
  }
}

@keyframes center-animate {
    0% {
        transform: scaleX(120);
    }
    100% {
        transform: scaleX(0);
    }
}
/************************/
/***** Registration******/

div.reg_form{
    padding: 20px;    
    box-sizing: border-box;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

div.reg_form label{
    width: 100;
    font-size: 0.8em;
}
div.reg_form input{
    width: 100%;
    font-size: 1em;
    padding: 0.5em;
    border: 1px solid #e9e9e9;
}
div.reg_form p.submit-message{
    font-size: 0.8em;
}

/************************/
/******** Login *********/

div#popup_content_login{
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;    
}

/************************/
/******* Popups *********/
div.popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  border-top: 1px solid #EEEEEE;
  -webkit-box-shadow: 0 -7px 4px rgba(190, 190, 190, 0.1);
          box-shadow: 0 -7px 4px rgba(190, 190, 190, 0.1);
  background-color: #FFFFFF;
  max-height: 100vh;
  overflow-y: scroll;
  z-index: 1000;
}

div.popup #message-container {
  color: #24a9b4;
  padding: 0 1em;
}

div.popup form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

div.popup form .form-group-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px;
}

div.popup form .form-group-container .message-container {
  width: 100%;
}

div.popup form .form-group-container .message-container .notice {
  color: #24a9b4;
  margin-bottom: 0.5em;
  font-size: 0.85rem;
  font-weight: 600;
}

div.popup form .form-group-container .message-container .message {
  margin: 0.5em 0;
  font-size: 0.8rem;
}

div.popup form .form-group-container .message-container .message.error {
  color: red;
}

div.popup form .form-group-container .input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

div.popup form .form-group-container .input-group .input-group-prepend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -1px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.popup form .form-group-container input {
  font-size: 0.9rem;
  padding: 0.5em 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fafafa;
}

div.popup form .form-group-container input.error {
  border: 1px solid red;
}

div.popup form .form-group-container .form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 0.3em;
}

div.popup form .form-group-container .form-bottom .input-group-email input {
  border-radius: 4px;
  width: 100%;
}

div.popup form .form-group-container .form-top {
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

div.popup form .form-group-container .form-top .input-group-mobile .input-group-prepend {
  position: relative;
  background-color: #FAFAFA;
  border: 1px solid #ced4da;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 0 0.5em;
  font-size: 0.8rem;
}

div.popup form .form-group-container .form-top .input-group-mobile .input-group-prepend span:before {
  content: "+";
}

div.popup form .form-group-container .form-top .input-group-mobile input {
  width: 100%;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

div.popup form .form-group-container .form-top .input-group-name {
  margin-right: 0.4em;
  -webkit-box-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
}

div.popup form .form-group-container .form-top .input-group-name input {
  border-radius: 4px;
  width: 100%;
}

div.popup form.btn-submit {
  background-color: #24a9b4;
  width: 100%;
  color: #FFFFFF;
  border-width: 0px;
  font-size: 0.9em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.6em 1em;
  text-decoration: none;
  font-weight: 600;
}

div.popup form.submitting {
  display: none;
  margin-left: 0.8em;
  background-color: #24a9b4;
  color: #FFFFFF;
  border-width: 0px;
  font-size: 0.9em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.6em 1em;
  text-decoration: none;
  font-weight: 600;
}

.mainUI
{
	border: 0px solid pink; 
	position: fixed; 
	top: 0px;  
	width:100%; 
	height:100%; 
	z-index: 100; 
	pointer-events: none; /* allow click-through in transparent areas */
}

.regionUI
{
	border: 0px solid yellow;
	position: absolute; 
	display: flex;
	flex-direction: row;
	pointer-events: none;
}

.buttonUI
{
	border: 0px solid lime;
	display: flex;
	flex-direction: column;
	justify-content: center;
	pointer-events: auto;	
	filter: drop-shadow(0px 0px 20px white);
}

.stick{
    opacity: 0.8;
}

.stick-base{
    opacity: 0.2;
}

.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }    
}

/***********************
/****   YT Player  ****/
/**********************/

#yt_player {
z-index: 100;
background-size: cover;
}

#yt_player.minimized{
    top: 0;
    left: 0;
    width: 160px;
    height: 80px;
}

#yt_player.fullscreen{
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: fixed;
}
