﻿/*CONFIDENTIALITY TERMS POPUP*/
body {
    margin: 0;
    padding: 0;
}

.stretch {
    width: 100%;
}

.terms-popup-box {
    position: fixed;
    width: 60%;
    margin: 10% 20%;
    background-color: white;
    border-radius: 15px;
    z-index:9999;
    opacity:1;
    top:0;
}


.terms-popup-title {
    width: 100%;
    text-align: center;
    font-family:'Roboto', arial, sans-serif;
    font-weight:bold;
    font-size:120%;
    margin:2% 0;
}

.background-closebutton {
    position:absolute;
    width:3.5%;
    top:2%;
    right:2%;
}

.optional-title {
    font-size:110%;
    font-family:'Roboto', arial, sans-serif;
    margin-left:5%;
}


.stretch-checkbox-setup {
    width:1em;
}

.terms-text {
    font-size:70%;
    font-family:'Roboto', arial, sans-serif;
    padding:1%;
}

.terms-agree {
    font-size:80%;
    font-family:'Roboto', arial, sans-serif;
    padding-left:1%;
    float:left;
}

.background-confirm {
    width:40%;  
    margin: 0 auto; 
}


.user-term-info {
    font-size:90%;
    font-family:'Roboto', arial, sans-serif;
}

b-properties {
    position: relative;
}

.prop-spinner {
    position:absolute;
    top: 50%;
    left: 60%;
    z-index: 999;
    display: none;
}

.ball {
    background-color: rgba(0,0,0,0);
    border: 5px solid rgba(0,183,229,0.9);
    opacity: .9;
    border-top: 5px solid rgba(0,0,0,0);
    border-left: 5px solid rgba(0,0,0,0);
    border-radius: 60px;
    box-shadow: 0 0 35px #2187e7;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    -moz-animation: spin .5s infinite linear;
    -webkit-animation: spin .5s infinite linear;
}

.ball1 {
    background-color: rgba(0,0,0,0);
    border: 5px solid rgba(0,183,229,0.9);
    opacity: .9;
    border-top: 5px solid rgba(0,0,0,0);
    border-left: 5px solid rgba(0,0,0,0);
    border-radius: 50px;
    box-shadow: 0 0 15px #2187e7;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
    top: -90px;
    -moz-animation: spinoff .5s infinite linear;
    -webkit-animation: spinoff .5s infinite linear;
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-moz-keyframes spinoff {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(-360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spinoff {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}