﻿#loading {
    position:fixed;
    top:50%;
    left:50%;
    z-index:1104;
}

.main-container {
    position: relative;
    overflow-x: hidden;
}

.half-circle-background {
    width: 200%;
    height: 242px;
    border-radius: 0 0 75% 75%;
    background-color: #00577B;
    position: absolute;
    right: -50%
}

.well {
    position: relative;
}

.top-buffer {
    margin-top: 10px;
}

 .no-wrap {
    white-space: nowrap;
}

.hiddenElement {
visibility: hidden;
display: none;
}

.noBorder {
    border: 0;
}

#idletimeout { 
    background:#CC5100; 
    border:3px solid #FF6500; 
    color:#fff; 
    font-family:arial, sans-serif; 
    text-align:center; 
    font-size:12px; 
    padding:10px; 
    position:relative; 
    top:0px; 
    left:0; 
    right:0; 
    z-index:100000;  
}
#idletimeout a { 
    color:#fff; 
    font-weight:bold 
}
#idletimeout span { 
    font-weight:bold 
}

.has-error {
    color:red;
}
.error {
    color:#FF0000;
}
.color-red {
    color: #cb262b;
}

.color-white {
    color: white;
}

.color-black {
    color: black;
}

.background-white {
    background-color: white !important;
}
img {
    max-width: 100%;
    height: auto;
}

span.fa {
    margin-left:  10px;
    margin-right: 10px;
    color: black;
}

.back-button-appearance {
-webkit-appearance: none;
-moz-appearance: none;
	color: #777777;
}

td {
    border: 1px solid black;
}

.table-padding {
    padding-right: 25%;
}

.column-sizing {
    width: 70%;
}

.form-control {
    color: #000000;
    border: 1px solid #ECECEC;
    border-radius: 4px;
}

.form-control:focus {
    color: #000000;
    border: 1px solid #ECECEC;
    border-radius: 4px;
}

label {
    color: #BBBBBB;
}

.radio label {
    color: black
}

.has-float-label {
    display: block;
    position: relative;
}

.has-float-label label, .has-float-label > span {
    position: absolute;
    left: 0;
    top: 0;
    cursor: text;
    font-size: 75%;
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
    top: -.5em;
    left: 12px;
    z-index: 3;
    line-height: 1;
    padding: 0 1px;
}

.has-float-label label::after, .has-float-label > span::after {
    content: " ";
    display: block;
    position: absolute;
    background: white;
    height: 2px;
    top: 50%;
    left: -.2em;
    right: -.2em;
    z-index: -1;
}

.has-float-label .form-control::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.has-float-label .form-control::-moz-placeholder {
    opacity: 1;
    transition: all .2s;
}

.has-float-label .form-control:-ms-input-placeholder {
    opacity: 1;
    transition: all .2s;
}

.has-float-label .form-control::placeholder {
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: .5;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
    opacity: .5;
}

.has-float-label .form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
    opacity: .5;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder {
    opacity: .5;
}

.has-float-label .form-control:placeholder-shown:not(:focus) + * {
    font-size: 130%;
    opacity: .5;
    top: .5em;
    font-weight: normal;
}

.input-group .has-float-label {
    display: table-cell;
}

.input-group .has-float-label .form-control {
    border-radius: 4px;
}

.input-group .has-float-label:not(:last-child) .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.input-group .has-float-label:not(:first-child) .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px;
}

/*Select floating label*/

.floating-input,
.floating-select {
    padding: 4px 4px;
}

.floating-input:focus,
.floating-select:focus {
    outline: none;
}

 .floating-label label {
    position: absolute;
    pointer-events: none;
    left: 12px;
    top: .5em;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    opacity: .5;
    font-size: 130%;
    font-weight: normal;
    line-height: 1;
}

.floating-select:focus ~ label,
.floating-select:not([value=""]):valid ~ label {
    top: -.5em;
    font-size: 75%;
    opacity: 1;
    font-weight: 700;
}

/* active state */

.floating-input:focus ~ .bar:before,
.floating-input:focus ~ .bar:after,
.floating-select:focus ~ .bar:before,
.floating-select:focus ~ .bar:after {
    width: 50%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
}


/* highlighter */

.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active state */

.floating-input:focus ~ .highlight,
.floating-select:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}


/* animation */

@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.color-avibra-green {
    color: #27BD69;
}

.help-popup {
    position: relative;
    left: -2.75rem;
    top: -4.5rem;
}

.help-popup .popover {
    width: 250px;
}


#effective-float {
    left: 27px;
}

.privacybox {
    background-color: white;
    color: black;
    border: 3px solid black;
}