﻿
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    /*border-radius: 10px;*/
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #000;
    /*border-radius: 10px;*/
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #000;
    }

@-webkit-keyframes anim-glow {
    0% {
        box-shadow: 0 0 #fff;
    }

    100% {
        box-shadow: 0 0 10px 8px transparent;
        border-width: 2px;
    }
}

@keyframes anim-glow {
    0% {
        box-shadow: 0 0 #fff;
    }

    100% {
        box-shadow: 0 0 10px 8px transparent;
        border-width: 2px;
    }
}

.icon {
    border-radius: 50%;
    border: 2px solid #61ef61;
    width: 15px;
    height: 15px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    -webkit-animation: anim-glow 2s ease infinite;
    animation: anim-glow 2s ease infinite;
}

    .icon i {
        border-radius: 50%;
        border: 2px solid #61ef61;
        width: 8px;
        height: 8px;
        display: inline-block;
        vertical-align: 5.5px;
        background-color: #61ef61;
    }
body {
    font-family: Arial, Helvetica, sans-serif;
   
}
form {
    color: black;
}


/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }

    .cancelbtn {
        width: 100%;
    }
}
.text-black{
    color:black;
}
label{
    width:100%;
}
.modal-backdrop{
    z-index:0;
}
.modal-body {
    font-size: 1.2em;
    height: 500px;
    overflow-y: auto;
}
.navbar-header{
    width:100%;
    
}
.modal img{
    width:100%;
}
.popover {
    color: black;
}
.social {
    position: fixed;
    bottom: 20px;
    z-index: 1;
}
    .social ul {
        padding: 0px;
        -webkit-transform: translate(-270px, 0);
        -moz-transform: translate(-270px, 0);
        -ms-transform: translate(-270px, 0);
        -o-transform: translate(-270px, 0);
        transform: translate(-270px, 0);
    }
    .social ul li a {
        color: #fff;
        text-decoration: none;
    }

        .social ul li i {
            margin-left: 10px;
            color: #174275;
            background: #fff;
            padding: 10px;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 20px;
            background: #ffffff;
            -webkit-transform: rotate( 0deg );
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        .social ul li:hover {
            -webkit-transform: translate(110px, 0);
            -moz-transform: translate(110px, 0);
            -ms-transform: translate(110px, 0);
            -o-transform: translate(110px, 0);
            transform: translate(110px, 0);
            background: rgba(255, 255, 255, 0.4);
            text-decoration: none;
        }
.social ul li {
    display: block;
    margin: 5px;
    background: rgba(0, 0, 0, 0.36);
    width: 321px;
    text-align: right;
    padding: 10px;
    -webkit-border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    border-radius: 0 30px 30px 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.padding40 {
    padding: 0px 40px;
}

.error {
    color: red;
}


