body {
    background-image:none;
    color:#333;
    font-size: 13px;
    height: 100%
}

a{
    text-decoration: none;
    color:deepskyblue;
}
.body a{
    color: #c87715;
    font-weight: 600;
}

.body .breadcrumb{
    margin-bottom: 0px;
}

header{
    background: #FFF;
    position: relative;
    /*position: fixed;
    left:0px;
    right:0px;
    top:0px;*/
    z-index: 1;
    box-shadow: 1px 2px 3px #ccc;
    color:deepskyblue;
}

.navbar-toggle{
    background-color: deepskyblue;
    border: 1px solid transparent;
}
.icon-bar{
    background-color:#fff;
}


.main-content{
    margin-top:0px
}

.register-body {
    margin: 0px;
    padding: 0px;
    background: url(../../assets/image/bg.jpg) no-repeat center center fixed;
    background-size: cover;
}

svg {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 10s;
    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}



.login-area {
    padding-top:7px;
    border: 1px solid #ddd;
}
.register-svg{
    width:30%;margin:0 auto;
}

.register-area {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 4px 1px rgba(0,0,0,0.1);
    box-shadow: 0 0 4px 1px rgba(0,0,0,0.1);
}

.ap-logo {
    width: 16%;
    margin: 0 auto;
}

.login-div {
    background: #ffffff;
    color:deepskyblue;
}
.instruction-div{
    margin:0px 0 80px 0;
    color:#fff;
    background-color: #00bcd4;
    min-height: 600px;
}

.em-logo {
    width: 65px;
    vertical-align: text-bottom;
}

.em {
    display: flex;
    padding: 10px 0 6px 0;
}

.em-title {
    font-weight: 700;
}

.q-h-div .fa, .q-f-div .fa {
    font-size: 20px;
}

.f-strip {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #10436d;
    color: #eee;
    padding: 3px 30px 3px 30px;
    font-size: 1.1rem;
}
.f-strip a{
    color:orangered;
    text-decoration: none;
}
.adv-dwn a{
    margin: 4px auto;
}
/*BOOTSTRAP OVERWITTEN*/

.instruction-div>.nav > li > a {
    position: relative;
    display: block;
    padding: 2px 5px;
    color: white;
}

.nav-pills > li:hover, .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    color: #333;
    background-color: #f0ad4e;
}

.nav > li > a:focus, .nav > li > a:hover {
    color: #333;
    background-color: #f0ad4e;
}

/*MARGINS*/
.m-t-5 {
    margin-top: 5px;
}
.m-t-10 {
    margin-top: 10px;
}
.m-t-15 {
    margin-top: 15px;
}
.m-t-30{
    margin-top: 30px;
}
.m-t-35{
    margin-top: 35px;
}
.m-t-50{
    margin-top: 50px;
}
.m-l-5{
    margin-left:5px;
}

/*PADDINGS*/
.p-t-7{
    padding-top:7px;
}

/*FONT STYLES*/

.fn-s-i{
    font-style: italic;
}

/*FONT WEIGHT*/
.fn-w-600{
    font-weight: 600;
}

/*SWITCH DESIGN*/

.flipswitch {
    position: relative;
    width: 73px;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select: none;
}
.flipswitch input[type=checkbox] {
    display: none;
}
.flipswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #999999;
    border-radius: 50px;
}
.flipswitch-inner {
    width: 200%;
    margin-left: -100%;
    -webkit-transition: margin 0.3s ease-in 0s;
    -moz-transition: margin 0.3s ease-in 0s;
    -ms-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}
.flipswitch-inner:before, .flipswitch-inner:after {
    float: left;
    width: 50%;
    height: 18px;
    padding: 0;
    line-height: 18px;
    font-size: 12px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.flipswitch-inner:before {
    content: "YES";
    padding-left: 12px;
    background-color: #256799;
    color: #FFFFFF;
}
.flipswitch-inner:after {
    content: "NO";
    padding-right: 12px;
    background-color: #EBEBEB;
    color: #888888;
    text-align: right;
}
.flipswitch-switch {
    width: 25px;
    margin: -3.5px;
    background: #FFFFFF;
    border: 1px solid #999999;
    border-radius: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 52px;
    -webkit-transition: all 0.3s ease-in 0s;
    -moz-transition: all 0.3s ease-in 0s;
    -ms-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}
.flipswitch-cb:checked + .flipswitch-label .flipswitch-inner {
    margin-left: 0;
}
.flipswitch-cb:checked + .flipswitch-label .flipswitch-switch {
    right: 0;
}

/*PREFERENCE*/
.post_pre_ul{
    list-style: none;
    padding-left: 0px;
    font-weight: bold;
}
.post_pre_li:first-child .upbutton {
    display: none;
}
.post_pre_li:last-child .downbutton {
    display: none;
}
.post_pre_li{
    border:1px solid #ddd;
    padding: 5px;
}
.post_pre_li span{
    margin-right: 10px;
    width: 200px;
}

/*Dipanku*/

.loader {
    position: fixed;
    border: 8px solid #f3f3f3;
    left: 49%;
    top: 50%;
    z-index: 9999;
    border-radius: 50%;
    border-top: 8px solid blue;
    border-right: 8px solid #e5952e;
    border-bottom: 8px solid red;
    border-left: 8px solid #e5952e;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.loaderOverlay {
    opacity:    0.5;
    background: #000;
    width:      100%;
    height:     100%;
    z-index:    10000000;
    top:        0;
    left:       0;
    position:   fixed;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
