#show {
    color : black;
}

#showMessage {
    color : black;
}

#nameMessage {
    color : red;
    display : none;
}

#imgDiv {
    color : red;
    display : none;
}

#codeMessage {
    color : red;
    display : none;
}

#emailMessage {
    color : red;
        display : none;
}

#loader{
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: fixed;
    display: none;
	opacity: 0.6;
	background-color: #fff;
	z-index: 1000;
	text-align: center;
}

#loader img{
	position: absolute;
	z-index: 150;
	top: 42% !important;
}
.requiredField {
	position: absolute;
    color: red;
    right: 5px;
    top: 20px;
    font-size: 22px;
}


.intro {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
    background: linear-gradient(#78D1F6, #0074A3);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    z-index: 99;
    position: absolute;
}

@media (min-width: 768px) {
    .intro .intro-body .brand-heading {
        font-size: 3.2vw;
        font-family: "Proxima Nova Regular";
        margin-bottom: 10px;
    }
    .navbar-custom.top-nav-collapse {
        background-color: #414149 !important;
        color: white;
        text-align: center;
    }
    .introdution {
        padding-top: 220px;
    }
}

.intro .intro-body {
    display: block;
    margin-top: 100px;
}
.intro .intro-body p {
   color: #fff;
}

@media screen and (max-width: 1400px) {
    p {
        font-size: 14px;
    }
    .intro {
        height: 119%;
    }
}

@media screen and (min-width: 1366px) {
    .intro {
        height: 100%;
    }
}

@media screen and (max-width: 1366px) {
    .intro {
        height: 100%;
    }
}

@media screen and (min-width: 1850px) {
    .intro .intro-body {
        margin-top: 123px;
    }
}


/*custom*/

.input-group-addon {
    background: #fff !important;
    color: #00aff0 !important;
}

@media screen and (max-width: 992px) {}

.form-control {
    margin: 20px 0 0 0;
}

.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 1em;
    width: calc(100% - 1em);
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-appearance: none;
    /* for box shadows to show on iOS */
}

.input__field:focus {
    outline: none;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    color: #6a7989;
    font-weight: normal;
    letter-spacing: 0.5px;
    font-size: 70.25%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
    color: white;
}

.icon {
    color: #ddd;
    font-size: 150%;
}

.input--hoshi {
    overflow: hidden;
}

.input__field--hoshi {
    margin-top: 2em;
    padding: 1.9em 1em;
    width: 100%;
    background: transparent;
    color: #414149;
}

.input__label--hoshi {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0.25em;
    width: 100%;
    font-size: 1.2em;
    height: calc(100% - 0.5em);
    text-align: left;
    pointer-events: none;
}

.input__label-content--hoshi {
    position: absolute;
}

.input__label--hoshi::before,
.input__label--hoshi::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: calc(100% - 10px);
    border-bottom: 1px solid #ffffff;
}

.input__label--hoshi::after {
    margin-top: 2px;
    border-bottom: 4px solid red;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.input__label--hoshi-color-1::after,
.textarea-box.input__label--hoshi-color-1::after {
    border-color: #ffffff;
}

.input__field--hoshi:focus+.input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.input__field--hoshi:focus+.input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
    -webkit-animation: anim-1 0.3s forwards;
    animation: anim-1 0.3s forwards;
}

@-webkit-keyframes anim-1 {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(1em, 0, 0);
        transform: translate3d(1em, 0, 0);
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(-1em, -40%, 0);
        transform: translate3d(-1em, -40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
}

@keyframes anim-1 {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(1em, 0, 0);
        transform: translate3d(1em, 0, 0);
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(-1em, -40%, 0);
        transform: translate3d(-1em, -40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
}

.fa-phone:before,
.fa-map-marker:before,
.fa-envelope-o:before {
    line-height: 3;
}

.submit {
    width: 200px;
    font-size: 14px;
    margin-top: 2em;
    background: #6be0f3;
    color: #f3f4f5;
    position: relative;
}

.submit.active,
.submit:active {
    outline: 0;
    box-shadow: none;
}

.submit.focus,
.submit:focus,
.submit:hover {
    color: white;
}

.submit:hover {
    padding-left: 0;
}

.submit:before {
    right: 0%;
    opacity: 0;
    top: -11px;
}

.submit:hover:before {
    right: 9%;
    opacity: 1;
    top: -11px;
}

.submit:before {
    position: absolute;
    height: 100%;
    font-size: 15px;
    line-height: 4.5;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    font-family: fontawesome;
}

.sub_content .btn-default[disabled]:hover {
    background-color: #fba78a;
    border-color: transparent;
}

.icon-arrow-right:before {
    content: "\f1d8";
}

p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1.1px;
}


/*---------------------------------------------------*/

@media screen and (max-width: 1400px) {
    .submit:hover::before {
        right: 11%;
        opacity: 1;
        /*top: -1px;
         */
    }
    .submit:before {
        right: 0%;
        opacity: 0;
    }
}

.contact-frm {
    margin-top: 2em;
}


/*----------------------contact form css end -------------------------------*/


/*-------------------------------price page css start 12-8-16---------------------------------------------------------------*/

.pricing {
    padding: 100px 0px;
}


/*-----------Registration css-------------*/

.reg {
    padding-bottom: 20px;
}

.registration {
    background: #f5f5f5;
    border: 1px solid #e1edef;
    border-radius: 6px;
    height: auto;
    margin: 20px auto 0;
    width: 473px;
    position: relative;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.65);
    padding: 10px 15px;
    overflow: hidden;
}

.registration form {
    margin: 40px auto 20px auto;
}

.registration input[type="email"],
.registration input[type="text"] {
    height: 50px;
    line-height: 41px;
    font-size: 16px;
    outline: none;
    width: 400px;
    padding: 0 10px;
    margin: 0;
    border-radius: 4px;
    margin: 5px;
    border: 1px solid #64b8dd;
}

.registration input[type="password"]:focus,
.registration input[type="text"]:focus {
    box-shadow: 0 0 4px 1px rgba(55, 166, 155, 0.3);
    outline: 2px solid #74d6eb;
}

.show-password {
    display: block;
    height: 16px;
    margin: 26px 0 0 28px;
    width: 87px;
}

.registration input[type="submit"] {
    width: 50px;
    height: 50px;
    display: block;
    font-family: Arial, "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding-top: 3px;
    margin: -63px 0 0 1038px;
    position: absolute;
    cursor: pointer;
    border: none;
    background-color: #2f3a4c;
    background-image: linear-gradient(top, #3db0a6, #3111);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.65);
}

.registration input[type="submit"]:active {
    background: #414149;
}

.reg_submit {
    border-radius: 5px;
    width: 200px;
    font-size: 14px;
    margin-top: 0.2em;
    background: #414149;
    color: lightgrey;
    padding: 10px;
    position: relative;
}

.reg_submit:before {
    position: absolute;
    font-size: 15px;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    font-family: fontawesome;
}

.reg_submit:before {
    right: 0%;
    opacity: 0;
    top: 10px;
}

.reg_submit:hover:before {
    right: 4%;
    opacity: 1;
}

.reg_submit:hover {
    color: white;
    background: #2f3a4c
}

.out {
    margin-top: 30px;
    color: #2f3a4c;
    margin-bottom: 5px;
}

.verify {
    background: #17aa56;
    color: #fff;
    min-width: 175px;
    /*line-height: 17px;
     font-size: 1.8vmin;*/
    overflow: hidden;
    padding: 10px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    font-size: 14px;
}

.resend {
    background: #414149;
}

.resend:hover {
    background: #a94442;
}

.verify:focus,
.verify:active:focus {
    outline: none;
    color: white;
}

.verify:active {
    background: #1d8e4e;
    top: 2px;
}

.verify span {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.3s;
    -moz-backface-visibility: hidden;
    transition: all 0.3s;
    backface-visibility: hidden;
    text-transform: capitalize;
}

.verify:before {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 2.5;
    font-size: 150%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    font-family: fontawesome;
    opacity: 0;
}

.verify:active:before {
    color: #703b87;
}

.verifya:hover span {
    -webkit-transform: translateY(300%);
    -moz-transform: translateY(300%);
    -ms-transform: translateY(300%);
    transform: translateY(300%);
    color: white;
}

.verifya:before {
    left: 0;
    top: -100%;
}

.verifya:hover:before {
    top: -5px;
    opacity: 1;
    color: white;
}

.icon-cart:before {
    content: "\f00c";
}

.icon-rotate:before {
    content: "\f0e2";
}


/* #loading {
     width: 100%;
     height: 100%;
     position: fixed;
     display: none;
     background: rgba(0, 0, 0, 0.44);
     z-index: 999;
     top: 0;
     left:0;
}
 #loading img {
     position: absolute;
     top: 45.5% !important;
     left: 47.5% !important;
     width: 60px;
     height: 60px;
}*/

.valMsg {
    color: red;
}

h5 {
    color: rgb(65, 65, 73);
    margin: 2em 0 0 0;
    font-weight: 400;
}

.reg_submit:focus {
    color: lightgray;
    outline: none;
}

.registration .image-preview-input {
    position: relative;
    overflow: hidden;
    margin: 0px;
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.registration .image-preview-input input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 192px;
}

.registration .image-preview-input-title {
    margin-left: 2px;
}

.registration .input-group-btn {
    float: right;
}

.registration .input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
    z-index: 2;
    float: right;
    top: 6px;
    margin-right: 23px;
    background: white;
    padding: 13px;
}

.registration .btn.btn-default.image-preview-input:hover {
    background:#64b8dd;
    border: 1px solid #64b8dd;
    color: #ffffff;
}

.registration .image-preview .cmpImg {
    margin-left: 19px;
}

.registration .modal-sm {
    width: 401px;
    margin-top: 320px;
    text-align: center;
}

.registration .modal-footer {
    padding: 15px;
    text-align: center;
    border-top: none;
}

.registration .modal-sm .btn-success {
    color: #fff;
    border-radius: 4px;
}

.registration .modal-sm .btn-default:focus,
.btn-default:hover {
    border: 1px solid #68dff0;
    color: #fff;
    background-color: #68dff0;
}

.registration .modal-sm .btn-default {
    border-radius: 4px;
}

.registration .modal-sm .btn-success a {
    color: #fff;
}

.modal-backdrop {
    position: relative;
}

.modal {
    background: rgba(0, 0, 0, 0.44);
}

.modal-body h5 {
    text-transform: inherit;
}


/*--------------------@media width:768px-----------------------------------*/

@media (max-width: 768px) {
    .intro {
        height: 71%;
    }
    .reg {
        height: 101.7%;
    }
}


/*---------------------------@media (max-width: 650px)---------------------*/

@media (max-width: 650px) {
    .intro .intro-body .brand-heading {
        font-size: 26px;
    }
    .registration form {
        margin: 40px auto 20px auto;
        padding: 0 5px 0 0;
    }
}


/*---------------------------@media (max-width: 450px)---------------------*/

@media (max-width: 450px) {
    .intro {
        height: 71%;
    }
    .reg {
        min-height: 100%;
    }
    .registration {
        width: 350px;
    }
    .registration input[type="email"],
    .registration input[type="text"] {
        width: 300px;
    }
    .sign-in:before,
    .sign-in:after {
        display: none;
    }
    .pricing {
        overflow: hidden;
    }
    .verify {
        font-size: 14px;
    }
    .registration .modal-sm {
        width: 404px;
        margin-top: 327px;
    }
}


/*---------------------------*/

@media (max-width: 375px) {
    .registration {
        width: 300px;
    }
    .registration input[type="email"],
    .registration input[type="text"] {
        width: 100%;
    }
    .registration .image-preview .cmpImg {
        width: 250px;
    }
    .reg_submit {
        margin-left: 5px;
        width: 100%;
        font-size: 14px;
    }
    .reg .intro-body {
        margin-top: 100px;
    }
    .registration .modal-sm {
        width: 354px;
    }
}


/*-------------------------*/

@media (max-width: 360px) {
    .registration {
        /*margin: 20px 5px;
        */
        width: 300px;
    }
    .registration input[type="email"],
    .registration input[type="text"] {
        width: 100%;
    }
    .registration .image-preview .cmpImg {
        width: 260px;
    }
    .registration .input-group-btn:last-child>.btn {
        margin-right: 10px;
    }
    .reg_submit {
        margin-left: 5px;
        width: 100%;
        font-size: 14px;
    }
}


/*------------------------------*/

@media (max-width: 320px) {
    .registration {
        width: 310px;
    }
    .registration .image-preview .cmpImg {
        width: 275px;
    }
    .started {
        margin-bottom: 35px;
    }
    .registration form {
        margin: 0px auto 20px auto;
    }
    .registration .modal-sm {
        width: 300px;
        margin-top: 203px;
    }
}

.getLink .registration {
    margin-top: 60px;
}

.getLink h5 {
    margin: 60px 0 20px 0;
}

.showMain {
    float: right;
    margin-right: 30px;
}

.sign-in {
    display: inline-block;
    /* padding: 0 15px;
     */
    position: relative;
}

.sign-in:before,
.sign-in:after {
    background: #ddd;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    width: 250%;
}

.sign-in:before {
    right: 105%;
}

.sign-in:after {
    left: 105%;
}
