﻿html {
    overflow-y: scroll;
}
input[type=range] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 100% !important;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #777, 0px 0px 1px #0d0d0d;
  background: #3498DB;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #222, 0px 0px 1px #0d0d0d;
  border: 1px solid #222;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #258CD1;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #222, 0px 0px 1px #0d0d0d;
  background: #258CD1;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #222, 0px 0px 1px #0d0d0d;
  border: 1px solid #222;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #222;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #222, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #222, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #222, 0px 0px 1px #0d0d0d;
  border: 1px solid #222;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}
input[type="text"] {
    margin: 0 0 0 0;
}

.hidden {
    overflow: hidden;
    height: 0;
    opacity: 0;
}

.fadeHidden {
    overflow: hidden;
    height: 0;
    opacity: 0;
    -webkit-animation: fadeOut ease-out .5s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeOut ease-out .5s; /* Firefox < 16 */
    -ms-animation: fadeOut ease-out .5s; /* Internet Explorer */
    -o-animation: fadeOut ease-out .5s; /* Opera < 12.1 */
    animation: fadeOut ease-out .5s;
}

@keyframes fadeOut {
    from { opacity: 1; height: 100%; }
    to   { opacity: 0; height: 0%; }
}

/* Firefox < 16 */
@-moz-keyframes fadeOut {
    from { opacity: 1; height: 100%; }
    to   { opacity: 0; height: 0; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeOut {
    from { opacity: 1; height: 100%; }
    to   { opacity: 0; height: 0; }
}

/* Internet Explorer */
@-ms-keyframes fadeOut {
    from { opacity: 1; height: 100%; }
    to   { opacity: 0; height: 0; }
}

/* Opera < 12.1 */
@-o-keyframes fadeOut {
    from { opacity: 1; height: 100%; }
    to   { opacity: 0; height: 0; }
}

.shown{
           
       -webkit-animation: fadein ease-in .5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein ease-in .5s; /* Firefox < 16 */
       -ms-animation: fadein ease-in .5s; /* Internet Explorer */
       -o-animation: fadein ease-in .5s; /* Opera < 12.1 */
       animation: fadein ease-in .5s;
}

@keyframes fadein {
    from { opacity: 0; height: 0%; }
    to   { opacity: 1; height: 100%; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; height: 0%; }
    to   { opacity: 1; height: 100%; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; height: 0%; }
    to   { opacity: 1; height: 100%; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; height: 0%; }
    to   { opacity: 1; height: 100%; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; height: 0%; }
    to   { opacity: 1; height: 100%; }
}

#container { 
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */

    /* Since this element now uses border-box sizing, the 10px of horizontal
       padding will be drawn inside the 80% width */
    width: 50%;
    padding: 0 10px;
}

.center {
  width: 400px;
  height: 800px;
  position: absolute;
  left: 50%;
  top: 40%;
  margin-left: -200px;
  margin-top: -200px;
  padding: 0px 40px 10px 10px;
}

.divcontainer
{
     padding: 10px;
}
.divitem
{
     margin: 0 auto;
     max-width: 1080px; 
}
.cblabel {
    padding-left: 15px;
    text-indent: -15px;
}
.cbinput {
    width: 13px;
    height: 13px;
    padding: 20px;
    padding-left: 100px;
    margin:5px;
    position: relative;
    top: -1px;
    *overflow: hidden;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    border-radius: 6px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: scroll; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
        border-radius: 6px;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

section { padding: 5%; position: relative; }
.profile-hover { 
    display: none; 
    position: relative;
    top: 0;
    left: 0;
    z-index: 99;
    border: 1px solid #333;
    background: #eee;
    width: 300px;
    text-align: center;
}
a:hover + div { display: block; }


.form-element-inline {
    background-color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3125;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    color: #777777;
    font-family: 'Source Sans Pro', 'Helvetica Neue', 'HelveticaNeue', 'Helvetica', 'Arial', sans-serif;
    padding: 0.5rem 0.875rem;
    border: 1px solid #cccccc;
    outline: 0;
    -webkit-appearance: none;
    -webkit-transition: border linear 0.25s, box-shadow linear 0.25s;
    -moz-transition: border linear 0.25s, box-shadow linear 0.25s;
    -o-transition: border linear 0.25s, box-shadow linear 0.25s;
    transition: border linear 0.25s, box-shadow linear 0.25s;
}

/*hide role-specific div html*/
.worksite, .senior, .field, .inside, .direct, .sls, .pisi, .admin, .rvp, .dm, .office, .agent {
display: none;
}

/* For this slider, disable the 'origin' size. */
#connect .noUi-origin {
	right: auto;
	width: 0;
}

/* Position the bar and color it. */
#connect .connect {
	position: absolute;
	top: 0;
	bottom: 0;
	background: #80C9F5;
	box-shadow: inset 0 0 3px rgba(51,51,51,0.45);
}

/* When the slider is moved by tap,
   transition the connect bar like the handle. */
#connect.noUi-state-tap .connect {
-webkit-transition: left 300ms, right 300ms;
	transition: left 300ms, right 300ms;
}

/* make scroll bar transpart */
::-webkit-scrollbar {
    width: 0px;
    background: transparent; 
}

/* Fixed width scrollable text area */
.fixed_wrapper {
    max-width: 620px;
    max-height: 250px;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow-y: scroll
}

/* 100% width scrollable text area */
.wrapper {
    max-height: 700px;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow-y: scroll
}
