﻿@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500);

*:focus {
    outline: none;
}
html {
    width: 100%;
    height: auto;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    background: #DDD;
    font-size: 16px;
    color: #222;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background: url(../images/header-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login_block {
    position: relative;
    margin: 10% auto;
    width: 450px;
    height: 420px;
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.login-left, .login_right {
    position: relative;
    float: left;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 20px 40px 40px 40px;
    width: 100%;
    height: 325px;
}

h1 {
    margin: 0 0 30px 0;
    font-weight: 500;
    font-size: 20px;
    text-align:center;
    text-transform:uppercase;
    border-left:5px solid #16a085;
}

input[type="text"],
input[type="password"] {
    display: block;
    box-sizing: border-box;
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 4px;
    width: 100%;
    height: 32px;
    border: none;
    border-bottom: 1px solid #AAA;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: 0.2s ease;
}

    input[type="text"]:focus,
    input[type="password"]:focus {
        border-bottom: 1px solid #16a085;
        color: #2f2f2f;
        transition: 0.2s ease;
    }

input[type="submit"] {
    margin-top: 10px;
    width: 100%;
    height: 32px;
    background: #008081;
    border: none;
    border-radius: 2px;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.1s ease;
    cursor: pointer;
}


    input[type="submit"]:hover,
    input[type="submit"]:focus {
        opacity: 0.8;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        transition: 0.1s ease;
    }

    input[type="submit"]:active {
        opacity: 1;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        transition: 0.1s ease;
    }

/*.or {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 40px;
    height: 40px;
    background: #efefefbd;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 42px;
    text-align: center;
    font-weight: 500;
}*/

.login_logo {
    position:relative;
    padding:10px;
    margin:0;
    text-align:center;
}
.login_logo img {
    width:110px;
}
.forgot-block {
    display:inline-block;
    margin:0;
    padding:8px 0;
    float:right;
}
.remember-block {
    display: inline-block;
    margin: 0;
    padding: 0;
    float: left;
}
.forgot {
    line-height: 22px;
    padding: 5px 0;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    color: #008081;
    text-decoration: underline;
 
}
.rem {
    line-height: 2.75;
    cursor: pointer;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 500;
}
.pad_zero {
    padding:0;
    margin:0;
    font-size:12px;
}

.jconfirm .jconfirm-scrollpane {
    /*width:50% !important;*/
    width: 20% !important;
    margin: 0px auto !important;
}
/*
.jconfirm .jconfirm-scrollpane {
    /*width:50% !important;*/
    width: 20% !important;
    margin: 0px auto !important;
}
/*
.jconfirm .jconfirm-scrollpane {
    width:50% !important;
    margin:0px auto !important;
}*/

.jconfirm .jconfirm-box div.jconfirm-title-c {
    font-size:22px !important;
    font-weight:400 !important;
}
.mandatory {
    color:#ff0000;
    font-weight:400;
}
.m-t-130 {
    margin-top: 110px !important;
}

.tab-block {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 0;
    list-style: none;
}

    .tab-block > li {
        width: 50%;
        float: left;
        position: relative;
        display: block;
        border-bottom: 1px solid #008081;
    }

        .tab-block > li > a {
            position: relative;
            display: block;
            padding: 8px 15px;
            text-align: center;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            background-color: #f7f7f7bf;
            color: #3a3a3a;
        }

        .tab-block > li.active > a, .tab-block > li.active > a:focus, .tab-block > li.active > a:hover {
            color: #fff;
            background-color: #008081;
        }

.tab-content > .tab-pane {
    display: none;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.tab-content > .active {
    display: block;
}

.fade.in {
    opacity: 1;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        -o-transition: -o-transform 0.3s ease-out;
        transition: -webkit-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-body h4{
    font-weight:400;
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
.modal-footer .btn{
    width:auto!important;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.8;
  text-decoration:none;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.8;
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


@media (min-width: 768px) {
    .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
    /* .login_right .loginwith {
        display: block;
        margin-bottom: 40px;
        font-size: 28px;
        color: #FFF;
        text-align: center;
    }*/
    /*
button.social-signin {
    margin-bottom: 20px;
    width: 220px;
    height: 36px;
    border: none;
    border-radius: 2px;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: 0.2s ease;
    cursor: pointer;
}

    button.social-signin:hover,
    button.social-signin:focus {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        transition: 0.2s ease;
    }

    button.social-signin:active {
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        transition: 0.2s ease;
    }

    button.social-signin.facebook {
        background: #32508E;
    }

    button.social-signin.twitter {
        background: #55ACEE;
    }

    button.social-signin.google {
        background: #DD4B39;
    }
*/

@media (max-width:769px) {
    .login_block {
        width:90%;
    }
}