#backgroundDiv{
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    overflow-x: hidden;
    /* overflow-y:scroll; */
    height: 100%;
    opacity: 0.5;
    position: fixed;
}
body
{
    user-select: none;
}

.container
{
    /* padding: 10px; */
    position:absolute;
    top:5vh;
}
.ti-facebook,.ti-twitter,.ti-instagram,p
{
    color:gray;
    font-weight: bold;
}
.noPadding
{
    padding: 0%!important;
}
#section1,#section2,#section3
{
    display:none; 
    padding:3vw;
    border-radius: 1vw;
    background: white;
    margin-top: 5vh;
    box-shadow: 2px 3px 14px black;
    
}
label
{
    margin-top: 3vh;
    font-size:30px;
    color:rgb(25, 12, 206);
    font-family: 'Tangerine', serif;
}
#errorMessage
{
    display: none;
    color:red;
    font-style: italic;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 15px;
    font-weight:bold;
}
select, input{
    height:8vh;
   border-radius: 5px;
}
.nextBtn,.prevBtn 
{
    font-size: 18px;
    font-weight: bold;
    background: #ffcc04;
    box-shadow: 2px 3px 6px;
    border-radius: 4px;
    padding: 5px;
}
.marginForBtn{
    margin-top: 6vh;
}
input.required:after
{
    color: red;
    content: " *";
    position:relative;
}
ul li{
    
    list-style: none;
    float:left;
    text-align: center;
    font-weight: bold;
    font-family: auto;
    font-size: 15px;
    font-style: oblique;
}
#sliderBar
{
    counter-reset: section;
}
#sliderBar li:before {
  
    counter-increment: section;
    content: counter(section) ;
    width: 35px;
    line-height: 35px;
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}
#sliderBar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 18px;
    z-index: -1;
}
#sliderBar li.active:before,#sliderBar li.active:after
{
    background: #ffcc04;
}
#userPhto
{
    border-radius: 50%;
    height:230px;
    box-shadow: 8px 13px 19px;
}
#messageDiv
{
    box-shadow: 8px 13px 19px;
    transform: skewY(-10deg);
    position: absolute;
    bottom: 0vh;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: black;
    border: 1px solid;
    background: #79adb5;
    font-style: italic;
    font-family: serif;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#userPhtoDiv
{
    border-style: double;
    border-radius:50%;
}
.messages
{
    /* padding: 10px; */
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    font-family: serif;
    border: 1px solid black;
    height: 55px;
    color:black;
}
.wrongField
{
    border: 1px solid #f00;
    box-shadow: 0 0 4px 0 #f00;
}
#message0
{
    background: #79adb5;
}
#message1
{
    background: #dab8bd;
}
#message2
{
    background: #b191cf;
}
#message3
{
    background: #b5d9b5;
}
#uploadPhotoDiv
{
    margin-top:65px; 
}
.uploadPhotoClass
{
    /* padding: 6px; */
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    font-family: serif;
    border: 1px solid #8b7272;
    background: #80808075;
    color: black;
    border-radius: 8px;
}
#camera
{
    border: 1px solid #8b7272;
    border-radius: 8px;
    box-shadow: 1px 2px 10px black;
    height:25vh;
}
#video
{
    height:25vh;
}
#photoCanvas
{
    position: absolute;
    left: 0;
}
#cameraDiv
{
    display: none;
}
#file
{
    opacity: 0.0;
    position: absolute;
    top: 0vh;
    z-index: 1;
}
.closed {
    display: none;
    opacity: 1 !important;
    color: red;
    float: right;
    font-size: 3.5vw;
    font-weight: bold;
    position: absolute;
}
@keyframes slideInDown
{
    0% {
        transform: translate3d(0, -6%, 0);
        visibility: visible;
}
100% {
    transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp
{
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
}
100% {
    transform: translate3d(0, -40%, 0);
}
}