﻿@font-face {
    font-family: 'Roboto-Black';
    src: url('../fonts/Roboto-Black.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'OpenSans-Regular';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'OpenSans-Light';
    src: url('../fonts/OpenSans-Light.ttf') format('truetype');
}
body {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    /* -webkit-box-align: center; */
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;

    background-image: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.1)), url('../images/SignIn.png');
    background-size: cover;
}

html, body {
    height: 100%;
}
.login_block {
    background-color: #fff;
    padding: 60px 30px 30px;
    position: relative;
    top: -12%;
    font-family: OpenSans-Regular;
    border-radius:5px;
}
.login_txt {
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 40px;
    color: #1A202C;
}
.mt_15{
    margin-top:15px;
}
.welcome_txt {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #2D3748;
    font-family: OpenSans-Light;
}
.round {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 99;
    width: 130px;
    top: 30%;
}
.round_circle {
    height: 130px;
    width: 130px;
    margin: auto;
    background-color: #fff;
    border-radius: 50%;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 9;
}
.forgot {
    width: 50%;
    text-align: end;
    float: right;
    margin-top: 30px;
    /*margin-bottom: 25px;*/
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    /* 800 */
    color: #2C5282 !important;
    text-decoration: none;
}
.forgot a:hover {
    
    text-decoration: none;
}
.remember {
    width: 50%;
    margin-top: 25px;
    margin-bottom: 25px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    /* 800 */
    color: #2D3748;
}

 
/*.login_btn {
    background: #04C45C !important;
    color: #fff !important;
    border-radius: 5px;
    font-family: Roboto-Regular;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    padding: 12px
}
.login_btn:hover {
    background: none !important;
    color: #253142 !important;
    border: 1px solid #fff;
    font-family: Roboto-Regular;
    font-weight: 600;
    padding: 12px
}*/
.reset_txt {
    margin: 15% 0px;
}
.reset_block {
    width: 100%;
    max-width: 350px;
    margin-top: -15%;
}
.sent_pass {
    visibility:hidden;
}
.error {
    color: red;
    font-size: 18px;
    line-height: 22px;
    font-weight: 200;
}

.center {
    text-align: center;
}

.mt5 {
    margin-top: 5px;
}
#password_strength {
    font-weight: bold;
}

.creating_txt {
    color: black;
    font-family: Roboto-Regular;
    font-weight: bold;
    font-weight: 700;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
}



#rememberChkBox {
    display: none
}

    #rememberChkBox + span {
        display: inline-block;
        vertical-align: middle;
        *vertical-align: auto;
        *zoom: 1;
        *display: inline;
        cursor: pointer;
        position: relative
    }

        #rememberChkBox + span:before {
            display: inline-block;
            vertical-align: middle;
            *vertical-align: auto;
            *zoom: 1;
            *display: inline;
            position: relative;
            bottom: 1px;
            width: 24px;
            height: 24px;
            margin-right: 10px;
            content: "";
            border: 1px solid #ccc;
            border-radius: 3px
        }

    #rememberChkBox:checked + span:before {
        /*font-family: FontAwesome;*/
        /*content: '\f00c';*/
        content: '✔';
        font-size: 10px;
        color: #fff;
        text-align: center;
        line-height: 21px
    }

    #rememberChkBox:checked + span:before {
        color: #00AEB5;
        background-color: #fff
    }

    #rememberChkBox:checked + span:before {
        color: #fff;
        background-color: #00AEB5;
        border-color: #00AEB5;
    }
    .tooltip-inner {
        background-color: #F63755 !important;
    }

    .bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {
        border-right-color: #f6375500 !important;
    }

    /* Bubble Float Left */
    .tooltip-inner {
       
        vertical-align: middle;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        position: relative;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-property: transform;
        transition-property: transform;
    }

        .tooltip-inner:before {
            position: absolute;
            z-index: -1;
            content: '';
            top: calc(50% - 10px);
            left: 0;
            border-style: solid;
            border-width: 8px 9px 9px 3px;
            border-color: transparent #F63755 transparent transparent;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-property: transform;
            transition-property: transform;
        }

        .tooltip-inner:hover, .tooltip-inner:focus, .tooltip-inner:active {
            -webkit-transform: translateX(10px);
            transform: translateX(10px);
        }

            .tooltip-inner:hover:before, .tooltip-inner:focus:before, .tooltip-inner:active:before {
                -webkit-transform: translateX(-10px);
                transform: translateX(-10px);
            }

            .login_btn {
                background-color:#00AEB5 !important;
                color:#fff !important;
                border:none;
                display: inline-block;
                vertical-align: middle;
                -webkit-transform: perspective(1px) translateZ(0);
                transform: perspective(1px) translateZ(0);
                box-shadow: 0 0 1px rgba(0, 0, 0, 0);
                overflow: hidden;
                -webkit-transition-duration: 0.3s;
                transition-duration: 0.3s;
                -webkit-transition-property: color, background-color;
                transition-property: color, background-color;
            }

                .login_btn:hover, .login_btn:focus, .login_btn:active {
                    background-color: #2098D1 !important;
                    color: white;
                }

            #rememberChkBox + span:hover:before {
                box-shadow: 0px 0px 5px 1px #00AEB5;
            }

            #rememberChkBox:checked + span:before {
                box-shadow: 0px 0px 5px 1px #00AEB5 !important;
            }


    .input_effect {
        position: relative;
        margin: 30px 0 10px;
    }
        .input_effect input {
            border: none;
            width: 100%;
            border-bottom: 1px solid #080707;
        }

    .input_effect input:focus,
    textarea:focus {
        outline: none;
    }

         .lblfocus ~ label {
            top: -14px;
            font-size: 12px;
            color: #00AEB5;
        }
    .input_effect input:focus ~ label {
        top: -14px;
        font-size: 12px;
        color: #00AEB5;
    }
        .input_effect input[type="text"]:focus ~ label {
            top: -14px;
            font-size: 12px;
            color: #00AEB5;
        }

        .input_effect input:focus ~ .bar:before,
        textarea:focus ~ .bar:before {
            width: 100%;
        }

    

    .lbl_effect {
        color: rgba(0,0,0,.7);
        font-size: 16px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 0px;
        transition: 300ms ease all;
    }

    .input_effect .bar {
        position: relative;
        display: block;
        width: 100%;
    }

    .input_effect .bar:before {
        content: "";
        height: 2px;
        width: 0;
        bottom: 0px;
        position: absolute;
        background: #00AEB5;
        transition: 300ms ease all;
        left: 0%;
    }

.input_effect input: internal-autofill-selected {
    background-color: none !important;
}
.mt_10{
    margin-top:10px;
}
.password_send {
    max-width: 350px;
}
.button_1 {
    /* top: 0%;
        bottom: 0%;*/
    left: 24.1%;
    right: 21.1%;
    position: absolute;
    background-color: #04C45C;
    border-radius: 5px;
    color: #fff;
    width: 200px;
    height: 50px;
    bottom: 20px;
    border-color: #04C45C;
}

.box_size {
    position: absolute;
    width: 386px;
    height: 246px;
    /*left: 607px;*/
    left: 35%;
    top: 389px;
    background: #FFFFFF;
    border-radius: 5px;
}
.btn-success {
    color: #fff !important;
}

/* TRIPLE SPINNER */
.triple-spinner {
    display: block;
    position: relative;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #FF5722;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}


    .triple-spinner::before,
    .triple-spinner::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 4px solid transparent;
    }

    .triple-spinner::before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-top-color: #FF9800;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3.5s linear infinite;
    }

    .triple-spinner::after {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-top-color: #FFC107;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.75s linear infinite;
    }


.tooltiptext1 a i {
    color: #fff;
    font-size: 10px;
    background: #0967c9;
    padding: 3px 6px;
    border-radius: 10px;
}




.tabs ul .campaign_tab.sche {
    width: 33.3%;
}








