@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,800");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100%;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #676d79;
    text-align: left;
    line-height: 1.5;
    background-color: #ffffff;
    overflow-x: hidden;
}

p {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
    outline: 0;
}

a:focus {
    outline: none !important;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

i, span {
    display: inline-block;
}

ul, ul li{
    list-style: none;
}

a[data-toggle="collapse"] {
    position: relative;
}

button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

input::placeholder {
    color: #adadad;
}

/* ---------------------------------------------------
    TOOLTIPS
----------------------------------------------------- */
.tooltip-inner {
    background-color: #2F4050;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #2F4050;
}
.tooltip.right .tooltip-arrow {
    border-right-color: #2F4050;
}
.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #2F4050;
}
.tooltip.left .tooltip-arrow {
    border-left-color: #2F4050;
}

/* ---------------------------------------------------
    LOGIN PAGE STYLE
----------------------------------------------------- */
.tz-login{
    width: 100%;
    margin: 0 auto;
}

.tz-login-container
{
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.tz-login-wrapper{
    width: 500px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/*------------------------------------------------------------------
[ Form ]*/

.tz-login-form {
    width: 100%;
}

.tz-login-form-title,
.tz-login-form-sub-title{
    display: block;
    font-family: "Roboto", Arial, sans-serif;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.tz-login-form-title{
    font-size: 39px;
    color: #6d7fcc;
}

.tz-login-form-sub-title
{
    font-size: 22px;
}

/*------------------------------------------------------------------
[ Input ]*/

.tz-login-wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #d9d9d9;
}

.tz-login-label-input {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    padding-left: 7px;
}

.tz-login-input {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 55px;
    background: transparent;
    padding: 0 7px 0 43px;
    outline: none;
    border: none;
}


/*---------------------------------------------*/
.tz-login-focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tz-login-focus-input::after
{
    font-family: 'FontAwesome';
    color: #adadad;
    font-size: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: calc(100% - 20px);
    bottom: 0;
    left: 0;
    padding-left: 13px;
    padding-top: 3px;
}

.tz-login-focus-input.email::after{
    content: "\f0e0";
}

.tz-login-focus-input.password::after{
    content: "\f023";
}

.tz-login-focus-input::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7f7f7f;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


.tz-login-input:focus + .tz-login-focus-input::before {
    width: 100%;
}

.has-val.tz-login-input + .tz-login-focus-input::before {
    width: 100%;
}

.tz-login-input:focus + .tz-login-focus-input::after {
    color: #7386D5;
}

.has-val.tz-login-input + .tz-login-focus-input::after {
    color: #7386D5;
}

/*------------------------------------------------------------------
[ Button ]*/
.tz-container-login-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tz-wrap-login-form-btn {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 5px 30px 0px rgba(115, 134, 213, 0.2);
    -moz-box-shadow: 0 5px 30px 0px rgba(115, 134, 213, 0.2);
    -webkit-box-shadow: 0 5px 30px 0px rgba(115, 134, 213, 0.2);
    -o-box-shadow: 0 5px 30px 0px rgba(115, 134, 213, 0.2);
    -ms-box-shadow: 0 5px 30px 0px rgba(115, 134, 213, 0.2);
}

.login-form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #7386D5;
    background: -webkit-linear-gradient(right, #6d7fcc, #fc00ff, #7386D5, #fc00ff);
    background: -o-linear-gradient(right, #6d7fcc, #fc00ff, #7386D5, #fc00ff);
    background: -moz-linear-gradient(right, #6d7fcc, #fc00ff, #7386D5, #fc00ff);
    background: linear-gradient(right, #6d7fcc, #fc00ff, #7386D5, #fc00ff);
    top: 0;
    left: -100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login-form-btn {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
}

.tz-wrap-login-form-btn:hover .login-form-bgbtn {
    left: 0;
}

.txt2 {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    text-transform: uppercase;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    bottom: calc((100% - 20px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 2px;
    pointer-events: none;

    font-family: "Roboto", Arial, sans-serif;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after
{
    content: "\f06a";
    font-family: 'FontAwesome';
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    bottom: calc((100% - 20px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 8px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

.content {
    min-height: 100vh;
    transition: all 0.3s;
}
