*, 
*:before, 
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body.noScroll{
    position: fixed;
    overflow: hidden;
    width: 100%;
}

/*top nav*/
header{
    position: relative;
    padding: 8px 0;
}
.navbar-nav li a{
    font-size: 12px;
    border-right: 0px solid #b7b5b5;
    letter-spacing: 0.5px;
}
.closeMenu{
    display: none;
}
.menuToggle{
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

.menuToggle a{
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
}

.menuToggle a:hover{
    color: tomato;
}
.menuToggle input{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    -webkit-touch-callout: none;
}
.menuToggle span{
    display: none;
    width: 26px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 3px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.menuToggle span:first-child{
    transform-origin: 0% 0%;
}

.menuToggle span:nth-last-child(2){
    transform-origin: 0% 100%;
}
.menuToggle input:checked ~ span{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, 0px);
    background: #232323;
}
.menuToggle input:checked ~ span:nth-last-child(3){
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}
.menuToggle input:checked ~ span:nth-last-child(2){
    transform: rotate(-45deg) translate(0, 0px);
}
.menuToggle input:checked ~ ul.main{
    transform: none;
}
nav{
    position: relative;
    float: left;
    width: 100%;
    text-align:end
}
nav ul.main{
    margin: 0;
    padding: 0;
    display: inline-block;
    margin-top: 30px;
}
nav ul.main li{
    float: left;
    list-style: none;
}
nav ul.main li a{
    text-transform: uppercase;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    padding:0 10px; 
    position: relative;
    color: #000;
    text-decoration:none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    text-decoration: none;
}
nav ul.main li a:after{
   /* content: '';
    position: absolute;
    right: 0;
    top: 0px;
    width: 1px;
    height: 12px;
    background: #b7b5b5;*/
}
/*nav ul.main li:last-of-type a:after{*/
nav ul.main li a.brderNone:after{
    display: none;
}
nav ul.main li a.active,
nav ul.main li a:hover{
    color: #1e94b0;
}
/*nav ul.main li#loginspace a:after{
    content: '';
    position: absolute;
    right: 0;
    top: 0px;
    width: 1px;
    height: 12px;
    background: #b7b5b5;
}*/
.brandLogo {
    /*float: right;*/
    /*width: 210px;*/
    width: 190px;
    height: 80px;
}

/*top nav*/
.banner-area {      
    background: url(../img/banner.jpg) no-repeat top center;
    min-height: 600px;
    max-height: 900px;
    border-top: 3px solid #b6ccda;
    margin-top: 0;
    background-size: cover;
}
.formWrap {
    width: 100%;
    max-width: 340px;
    /*width: 340px;*/
    padding: 25px 20px;
    background: rgba(0,0,0,0.8);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-top: 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: absolute;
    right: 0;
    z-index: 1;
}
.formWrap h2{
    color: #0094B3;
    text-align: center;
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 30px;
}

.formWrap .custom-checkbox{
    padding-left: 24px;
    float: left;
    cursor: pointer;
}
.formWrap .custom-checkbox .custom-control-label{
    cursor: pointer;
    padding-top: 3px;
}
.formWrap .custom-checkbox .custom-control-label::before {
    border-radius: 3px;
}
    .formWrap .forgotPwd {
        float: right;
        color: #fff;
        font-size: 13px;
        line-height: 15px;
        text-align: right;
        padding-top: 28px;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
    }
.formWrap .forgotPwd:hover{
    color: #008aad;
}
.optionBox{
    position: relative;
}
.optionBox p{
    font-size: 14px;
   /* color: #fff;*/
    margin-bottom: 5px;
}
.optionBox .custom-radio{
    vertical-align:top;
    display: inline-block;
    padding-left: 22px;
    padding-right: 10px;
}

.optionBox .custom-radio .custom-control-label{
  /*  color: #fff;*/
    font-size: 13px;
    line-height: 24px;
    cursor: pointer;
}
.optionBox .floating-form{
    padding-top: 5px;
}
.optionBox .floating-input::placeholder{
    font-size: 12px;
}
.optionBox .floating-input::-webkit-placeholder{
    font-size: 12px;
}
.optionBox .floating-input::-ms-placeholder{
    font-size: 12px;
}
.optionBox .floating-input::-moz-placeholder{
    font-size: 12px;
}
.optionBox .floating-input::-o-placeholder{
    font-size: 12px;
}
.optionBox .floating-form .errorText{
    top: 40px;
}
.register .rememberOrForgot{
    margin-top: 16px;
}
.register .rememberOrForgot .custom-control-label{
    font-size: 11px;
    line-height: 13px;
    color: #fff;
}
.steps p{
    font-size: 12px;
    line-height: 16px;
    color: #fff;
}
.steps .optionBox{
    padding-top: 5px;
}
.steps{
    display: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
}
.steps.active{
    display: block;
}
#lbltimer{
    text-align: center;
}
#timer{
    font-size: 20px;
    line-height: 22px;
   /* color: #FFF;*/
    padding: 15px 0 0;
    display: inline-block;
}
#lblresend{
    /*display: none;*/
    font-size: 14px;
    line-height: 16px;
    padding: 15px 0 0;
    text-align: center;
    color: #fff;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
#lblresend:hover{
    color: #008aad;
}
.emailOrMob, .pwdMissMatch{
    font-size: 12px;
    line-height: 12px;
    color: #ff4d4d;
    padding: 5px 0;
    margin: 0;
    display: none;
}
.pwdMissMatch{
    padding:0; 
}
/*.steps .fa-eye, .steps .fa-eye-slash{*/
 .fa-eye,  .fa-eye-slash {
    position: absolute;
    right: 8px;
    top: 23px;
    opacity: 0.5;
    cursor: pointer;
}


/****  floating-Lable style start ****/
.floating-form{
    padding: 14px 0 ;
    position:relative; 
}
.floating-form:last-of-type{
    padding-bottom: 0;
}
.floating-form .floating-input , 
.floating-form .floating-select {
    font-size: 14px;
    padding: 5px 10px;
    display: block;
    width: 100%;
    height: 36px;
    background: #fff;
    border: 0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
}

.floating-form .floating-input:focus , 
.floating-form .floating-select:focus {
    outline:none;
    color: #495057;
    outline: 0;
    box-shadow: 0 0 5px rgba(0,123,255,.9);
    -webkit-box-shadow: 0 0 5px rgba(0,123,255,.9);
    -ms-box-shadow: 0 0 5px rgba(0,123,255,.9);
    -moz-box-shadow: 0 0 5px rgba(0,123,255,.9);
    -o-box-shadow: 0 0 5px rgba(0,123,255,.9);
}

.floating-form label {
    color:#999; 
    font-size: 12px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 24px;
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -ms-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
    -o-transition:0.2s ease all;
}

.floating-form .floating-input ~ label.floatUp {
    top: -6px;
    font-size: 13px;
    color: #FFF;
    left: 0;
}


.floating-form .floating-input:focus ~ label, 
.floating-form .floating-input:not(:placeholder-shown) ~ label{
    top: -6px;
    font-size: 13px;
    color: #FFF;
    left: 0;
}

.floating-form .floating-select:focus ~ label ,
.floating-form .floating-select:not([value=""]):valid ~ label {
    top:-6px;
    font-size:13px;
    color:#FFF;
    left: 0;
}
.floating-form .floating-select{
    margin: 12px 0;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    -ms-appearance:none;
    appearance:none;
    background: #FFF url(../img/downArrow.png) no-repeat top 13px right 12px;
    background-size: 10px;
}
.floating-form .floating-select:last-of-type{
    margin-bottom: 0; 
}
    .floating-form .dropLabel {
        padding: 0;
        /*margin: -10px 0 0;*/
        margin: -26px -10px 0;
        font-size: 14px;
        font-weight: normal;
        color: #fff;
    }
/* active state */
.floating-form .floating-textarea {
    min-height: 30px;
    max-height: 260px; 
    overflow:hidden;
    overflow-x: hidden; 
}

.floating-form .errorText{
    font-size: 12px;
    line-height: 12px;
    padding: 0;
    color: #ff4d4d;
    padding: 5px 0 0;
    margin: 0;
    position: absolute;
    top: 50px;
    right: 0;
    display: none;
}


/****  floating-Lable style end ****/


.btnWrap{
    text-align: center;
    margin: 15px 0 0;
}
/* Button 1d */
.primaryBtn {
    font-size: 14px;
    color: #FFF;
    border: 0;
    background: #008aad;
    cursor: pointer;
    padding: 10px;
    display: inline-block;
    min-width: 120px;
    border-radius: 5px;
    text-align: center;
    margin: 0;
    outline: none;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 18px;
}
.primaryBtn:hover{
    text-decoration: none;
    color: #FFF;
    outline: none;
}
    .primaryBtn:focus {
        outline: none;
    }

.uaePassBtn {
    font-size: 14px;
    color: black;
    border: 0;
    background: #FFF;
    cursor: pointer;
    padding: 10px;
    display: inline-block;
    min-width: 120px;
    border-radius: 5px;
    text-align: center;
    margin: 0;
    outline: none;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 18px;
}

.cursor-pointer {
    cursor: pointer;
}
        /*footer section*/
.footera ul {
    display: block;
}



.footera ul li a {
    font-size: 14px;
    border-right: 1px solid rgba(255,255,255,0.8);
    padding: 0 8px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-weight: normal;
    opacity: 0.9;
}

        .footera ul li a:hover {
            opacity: 1;
        }

    .footera ul li:first-of-type a {
        padding-left: 0;
    }

.footerc h4 {
    font-size: 13px;
    margin: 0 0 5px;
}

.footera .copyRight {
    color: #FFF;
    padding: 15px 0 5px;
    margin: 0;
    width: 100%;
   /* border-bottom: 1px solid rgba(255,255,255,0.5);*/
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

    .footera .copyRight a {
        color: #fff;
    }

.footera .copyRightBy {
    float: right;
    color: #FFF;
}

.footera .footerBottom {
    margin: 15px 0 0;
    padding: 0;
    width: 100%;
}

    .footera .footerBottom li {
        float: left;
        width: 25%;
        padding: 0 20px 0 0;
    }

        .footera .footerBottom li h4 {
            font-size: 16px;
            color: #FFF;
        }

        .footera .footerBottom li a {
            display: block;
            padding: 5px 0 0 18px;
            border: 0;
        }

        .footera .footerBottom li:first-of-type a {
            padding-left: 18px;
        }

        .footera .footerBottom li h4 a {
            border: 0;
            padding-left: 18px;
        }
/*footer section*/

/*scroll to top button*/
#myBtn{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    /*background-color: red;*/
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 35px;
    width: 56px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#myBtn:hover{
    background-color: #555;
}

#iconscroll{
    color: black;
}

#iconscroll:hover{
    color: white;
}
/*scroll to top button*/


#loginspace{
    /*margin-left: 9rem;*/
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px){
    #loginspace
    {
        margin-left: 0rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px){
    #loginspace
    {
        margin-left: 0rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px){
    #loginspace
    {
        margin-left: 0rem;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px){
    #loginspace
    {
        margin-left: 0rem;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px){
    #loginspace {
        /*margin-left: 8rem;*/
        /*margin-left: 11rem;*/
    }
}

.login .form-group input{
    font-weight: 100 !important;
}

.logo{
    right: -6%;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .logo{
        right: 2%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px){
    .logo{
        right: 10%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px){
    .logo{
        right: 18%;
    }

    .logintab a{
        border-right: 1px solid #b7b5b5;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px){
    .logo{
        right: 4%;
    }

    .logintab a{
        border-right: 1px solid #b7b5b5;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px){
    .logo {
        right: 1%;
    }
}

.logintab a{
    border-right: 1px solid #b7b5b5;
}

/*body{
    font-family: Arial !important;
}*/

@media only screen and (max-width: 600px){
    .banner-area {
        /*height: 90vh !important;*/
        min-height: 400px !important;
        max-height: auto !important;
        height: auto !important;
        background-position: top left -90px;
    }

    .banner-areaa{
        margin-top: 0px !important;
        right: 0px;
    }
}

.btn-outline-info{
    color: #17a2b8 !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: #17a2b8 !important;
}

.btn-outline-info:hover{
    color: #fff !important;
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

#lblforgot:hover{
    text-decoration: underline;
}

.btn-outline-info{
    color: #17a2b8 !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: #17a2b8 !important;
}

.btn-outline-info:hover{
    color: #fff !important;
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

.ui-menu .ui-menu-item-wrapper{
    font-size: 13px;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
}
.ui-state-active, 
.ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active, 
a.ui-button:active, 
.ui-button:active, 
.ui-button.ui-state-active:hover {
    border: 0;
    border-bottom: 1px solid #eee;
    background: #008aad;
    font-weight: normal;
    color: #ffffff;
}



@media screen and (max-width:1199px){
    .brandLogo{
        width: 200px;
        height: 75px;
    }
    .brandLogo img{
        width: 100%;
    }
    nav ul.main li a{
        padding: 0 7px;
    }
}

@media screen and (max-width: 991px){
    .brandLogo{
        width: 180px;
        height: 70px;
    }
    .brandLogo img{
        width: 100%;
    }
    nav ul.main{
        left: 0;
        padding: 10px 15px 30px;
        z-index: 999;
        background: #FFF;
        position: fixed;
        margin: 28px 0 0 0;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        width: 100%;
        height: 100%;
    }
    nav ul.main li{
        float: none;
        display: block;
    }
    nav ul.main li, #loginspace{
        width: 690px;
        margin: 0 auto;
    }
    nav ul.main li a{
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    nav ul.main li:last-of-type a{
        border-bottom: 0;
    }
    nav ul.main li a:after{
        display: none;
    }
    #loginspace{
        margin-top: 20px;
    }
    nav ul.main li#loginspace a{
        padding: 8px 0;
    }
    .menuToggle{
        position: relative;
        top: 30px;
        display: inline-block;
    }
    .menuToggle span{
        display: block;
    }

}

@media screen and (max-width: 767px){
    nav ul.main li, #loginspace{
        width: 510px;
    }
}
@media screen and (max-width: 575px){
     nav ul.main li, #loginspace{
        width: 100%;
    }
}
.rememberOrForgot a{
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    cursor: pointer;
    padding-top: 3px;
    font-size: 11px;
    line-height: 13px;
    color: #fff;
    line-height: 14px;
    display: block;
    margin-left: 20px;
    margin-top: -23px;
}


/*loader Start*/
.loader {
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    z-index: 10000000;
    background: #cfcde6;
    height: 100%;
    width: 100%;
    margin: auto;
}

.strip-holder {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 50%;
    margin-left: -50px;
    position: relative;
}


.loader_div {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #007bff;
    width: 90px;
    height: 90px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
#tblServiceDetails tr th, #tblServiceDetails tr td {
    white-space: unset;
}

/*loader End


/*chnages for IE 20-06-2020*/
input::-ms-clear, 
input::-ms-reveal {
    display: none;
    height: 0;
    width: 0;
}
#showpass .fas.fa-eye-slash {
    display: block;
}
/*chnages for IE 20-06-2020*/

/*Top menu and footer new style - 27-06-2020*/
nav ul.main {
    margin-top: 0px;
    /*width: 900px;*/
}
    nav ul.main li:last-of-type a:after {
        display:none;
    }
    nav ul.main li.noBorder a:after {
        display: none;
    }
    nav ul.main li.menuTop {
        display: block;
        width: 100%;
        text-align: left;
        margin: 0 0 5px;
        padding: 0;
    }
nav ul.main li > ul.quickMenu {
    text-align: left;
    margin: 0;
    width: 100%;
    padding: 0;
}
nav ul.main li > ul.quickMenu li#loginspace {
    margin-left:0;
}
nav ul.main li > ul.quickMenu li:last-of-type a:after{
    display: none;
}

    nav ul.main li.subMenu {
        position: relative;
    }
    nav ul.main li.subMenu:hover > ul{
        display: block;
    }

nav ul.main li.subMenu > a {
            padding-right: 25px;
            background: url(../assets/images/down_arrow_dp1.png) no-repeat center right 5px;
        }
        nav ul.main li.subMenu ul {
            position: absolute;
            left: 0;
            top: 26px;
            margin: 0;
            padding: 0;
            text-align: left;
            min-width: 180px;
            width: auto;
            box-shadow: 0 0 5px rgba(0,0,0,0.2);
            display: none;
        }
            
nav ul.main li.subMenu ul li {
    display: block;
    width: 100%;
}
        nav ul.main li.subMenu ul li a{
            display: block;
            background: #FFF;
            padding: 5px 10px;
            border-bottom: 1px solid #ccc;
            transition: all 0.4s ease;
        }
        nav ul.main li.subMenu ul li:last-of-type a {
            border-bottom: 0;
        }
        nav ul.main li.subMenu ul li:hover a {
            background: #eee;
        }

.footera .footerBottom li {
    float: left;
    width: 20%;
}
    .footera .footerBottom li:last-of-type {
        padding-right: 0;
    }
    .footera .footerBottom li .socialIconsWrap {
        text-align: right;
    }
    .footera .footerBottom li .socialIconsWrap a {
        display: inline-block;
        position: relative;
        padding: 0 3px;
        transition: all 0.4s ease;
        text-decoration: none;
    }
        .footera .footerBottom li .socialIconsWrap a:hover {
            transform: rotate(360deg);
        }




@media screen and (max-width: 1199px) {
    nav ul.main {
        width: 720px;
    }
    .footera .footerBottom li {
        width: auto;
        padding-right: 20px;
        min-width: 185px;
    }
        .footera .footerBottom li:last-of-type {
            padding-right: 0px;
            padding-left:0px !important;
        }
        
}
@media screen and (max-width: 991px) {
    nav ul.main {
        width: 100%;
        height: auto;
        overflow-y: auto;
    }
        nav ul.main li > ul.quickMenu li#loginspace {
            margin-left: auto;
        }

        nav ul.main li a {
            padding: 10px 0;
        }
         
        nav ul.main li.subMenu ul {
            width: 100%;
            margin: 5px 0 0;
            box-shadow: none;
        }
        nav ul.main li.subMenu:hover > ul {
            display: none;
        }
        nav ul.main li.subMenu ul.show {
            display: inline-block;
            padding-bottom: 20px;
        }

            nav ul.main li.subMenu ul li {
                width: 90%;
            }
                nav ul.main li.subMenu ul li a {
                    padding: 8px 0;
                    border-bottom: 1px solid #eee;
                }
                nav ul.main li.subMenu ul li:hover a {
                    background: #fff;
                }
    .footera .footerBottom li {
        min-width: 130px;
    }

}
@media screen and (max-width: 767px) {

    .footera .footerBottom li {
        /*width: 100%;*/
        padding: 0 0 10px;
    }
        .footera .footerBottom li:first-of-type a {
            padding-left: 0;
        }
        .footera .footerBottom li h4 a {
            padding-left: 0;
        }
        .footera .footerBottom li .socialIconsWrap {
            text-align: left;
        }
}

.residental {
    padding-top: 35px;
}
span.quickPayLabel{
    margin: 0px auto;
    background: #1e94b0;
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 20px;
    /*margin-top: -15px;*/
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    margin: 5px 0;
}

 {
    display: none;
}
/*Top menu new style - 27-06-2020*/
/*Top menu new style - 27-06-2020*/


/*About Us , Privacy Policy, Disclaimer, Termand Condition Start ===============================*/
.align_side {
    padding: 0% 8%;
    text-align: justify;
}

.residentala h4 {
    margin-left: 1.5%;
}

.box_sha {
    box-shadow: 0 7px 17px 0 rgba(23,84,116,0.18);
    border: solid 0.9px #f3f3f3;
}

.title_a {
    color: #1e94b0;
}

.hidden {
    display: none;
}


#div_header {   
    position: sticky;
    width: 100%;
    z-index: 9999999999999999;
    background-color: #ffffff;
    top: 0;
}

/*.mt_Title {
    margin-top: 9% !important;
}*/

/*.btn {
    font-size: 1.25rem;
}*/

    /*About Us , Privacy Policy, Disclaimer, Termand Condition End*/
    /*for Portfolio / New Lanch / Quick Pay Img start*/
    .portf_img {
    width: 100%;
    /*max-width: 515px;
    height: 450px;*/
}

.portf_details_img {
    width: 100%;
    /*max-width: 700px;
    height: 600px;*/
}

.log_pop {
    margin-top: 16%;
}

@media screen and (max-width: 360px) {
    /*.portf_img {
        width: 100%;
        max-width: 367px;
        height: 280px;
    }

    .portf_details_img {
        width: 100%;
        max-width: 367px;
        height: 280px;
    }*/

    /*Quick pay*/ 
    .img-fluid {
        /*width: 100% !important;
        height: 100% !important;
        max-height: 130px !important;*/
    }
}

@media (max-width: 480px) {
    .log_pop {
        margin-top: 43%;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
   
}

  @media (min-width: 768px) and (max-width: 1024px) {

        .residentalc b {
            font-size: 0.8rem;
        }

        .residentalc p {
            font-size: 0.8rem;
        }
    }

    @media (min-width: 1025px) and (max-width: 1280px) {
        .mt_Title {
            margin-top: 11% !important;
        }

    }

    @media (min-width: 1281px) {
       
    }

    /*for Portfolio / New Lanch / Login, Register, SearchProperty BlackBox  end */


.captchaBox {
    /*margin-bottom: 12px;*/
}

    .captchaBox #imgcaptcha {
        width: 250px;
        height: 30px;
    }

    .captchaBox .btn-primary {
        width: 40px;
        height: 30px;
        margin-left: 4px;
    }

.loader {
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    z-index: 10000000;
    background: #cfcde6;
    height: 100%;
    width: 100%;
    margin: auto;
}

.strip-holder {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 50%;
    margin-left: -50px;
    position: relative;
}


.loader_div {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #007bff;
    width: 90px;
    height: 90px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.register .txtMobile, #txtTradeOrEmirates, #txtCaptcha {
    font-weight: normal;
}

    .register .txtMobile::-webkit-input-placeholder,
    #txtTradeOrEmirates::-webkit-input-placeholder,
    #txtCaptcha::-webkit-input-placeholder {
        color: #999;
        font-size: 12px;
    }

    .register .txtMobile:-ms-input-placeholder,
    #txtTradeOrEmirates:-ms-input-placeholder,
    #txtCaptcha:-ms-input-placeholder {
        color: #999;
        font-size: 12px;
    }

    .register .txtMobile::placeholder,
    #txtTradeOrEmirates::placeholder,
    #txtCaptcha::placeholder {
        color: #999;
        font-size: 12px;
    }

.optionBox .floating-form{
    padding-bottom: 14px;
}

.floating-form .mb-1 .errorText {
    top: 40px;
}

.img-fluid {
    width: 100%;
}
select::-ms-expand {
    display: none;
}
input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}
input::-webkit-credentials-auto-fill-button {
    margin: 0;
    width: 0;
    background-color: transparent;
}


.PortalLogOffNew .modal-body {
    padding: 20px 20px 30px;
}
    .PortalLogOffNew .modal-body .text-center {
        padding-bottom: 10px;
    }
    .PortalLogOffNew .modal-body  .dvfvbfs {
        padding: 10px 15px;
        width: auto;
    }
.pageMinHeight {
    min-height: 400px;
}
.CancelBtn {
    font-size: 14px;
    color: #FFF;
    border: 0;
    background: #008aad;
    cursor: pointer;
    padding: 10px;
    display: inline-block;
    min-width: 120px;
    border-radius: 5px;
    text-align: center;
    margin-right: 8px;
    outline: none;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 18px;
}
#tblDF {
    width: 60%;
}
.register .txtMobile {
    width: 300px;
}
@media screen and (max-width:767px) {
    .captchaBox #imgcaptcha {
        width: 210px;
    }

    .feedbackRadioWrap {
        padding-left: 20px;
    }
    /*.popover {
        margin-top: -160px;
    }*/
    #MobileAlert.modal.show .modal-dialog,
    #Model_Feedback_Error.modal.show .modal-dialog,
    #ModalAlert.modal.show .modal-dialog,
    #myModal.modal.show .modal-dialog,
    #myModalsuccess.modal.show .modal-dialog,
    #myModalotpverified.modal.show .modal-dialog,
    #myModalquestdone.modal.show .modal-dialog,
    #myModalforgototpsent.modal.show .modal-dialog,
    #myModalforgotpasschange.modal.show .modal-dialog,
    #myModalresendpass.modal.show .modal-dialog,
    #PortalLogOff.modal.show .modal-dialog,
    #Model_Feedback_Error.modal.show .modal-dialog,
    #Model_Social.modal.show .modal-dialog,
    #myModalOpenPopup.modal.show .modal-dialog,
    #Model_Survey.modal.show .modal-dialog,
    #Model_Message.modal.show .modal-dialog {
        margin-top: 0 !important;
        top: 50%;
        transform: translateY(-50%);
    }
    #myModalFeedback {
        margin-top: 96px;
        padding-top: 0;
        padding-bottom: 100px;
    }
    
    .banner-area .formWrap {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
        left: 0;
        right: 0;
    }
    

    #tblDF {
        width: 96%;
    }
    .register .txtMobile {
        width: 260px;
    }
    #div_NoAvailibility {
        text-align: center;
    }
    #ModalAlert .modal-content {
        margin: 0 auto;
    }
    
}
.dvfvbfs {
    min-width: 110px;
    display:inline-block;
}
.PortalLogOffNew .modal-body {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    line-height: 1.9;
}

    .PortalLogOffNew .modal-body .dvfvbfs {
        padding: 11px 15px;
        line-height: 1.35em;
        display: inline-block;
        font-size: .8571em;
        border-radius: 0.1875rem;
    }
@media screen and (max-width:767px) {
    .PortalLogOffNew .modal-body .text-center {
        padding-bottom: 0;
    }
}

.modal-tour {
    width: 1000px!important;
    margin: auto;
}

@media (min-width: 1200px) {
    .modal-xlg {
        width: 90%;
    }
}

.btnTour {
    border: solid 1px #1e94b0;
    padding: 6px 14px 6px 50px;
    margin: 35px 0 0 0px;
    border-radius: 4px;
    background: url(../img/360d.png) no-repeat left center;
    background-size: 25%;
    font-size: 13px;
    color: #1e94b0;
}
    .btnTour:hover {
        border: solid 1px #1e94b0;
        padding: 6px 14px 6px 50px;
        margin: 35px 0 0 0px;
        border-radius: 4px;
        background: #1e94b0 url(../img/360dwhite.png) no-repeat left center;
        background-size: 25%;
        font-size: 13px;
        color: #fff;
    }
.tourscreen{
    max-width:1100px!important;
}
.tourclose {
    position: absolute;
    z-index: 9999;
    margin: 1% 0 0 92%;
}

.btnFacebook {
    background-color: #3b5998;
    border: none;
}
.btnInsta {
    background-color: #ac2bac;
    border: none;
}
.btnYoutube {
    background-color: #ed302f;
    border: none;
}
.btnLinkedin {
    background-color: #0082ca;
    border: none;
}


.card-Clientele {
    border: 1px solid rgba(26,54,126,.125);
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,.03), 0 0.9375rem 1.40625rem rgba(4,9,20,.03), 0 0.25rem 0.53125rem rgba(4,9,20,.05), 0 0.125rem 0.1875rem rgba(4,9,20,.03);
    min-height: 435px;
    margin-left: -6px;
    margin-right: -6px;
}
    .card-Clientele h3 {
        font-size: 20px !important;
        text-align: left !important;
        color: #016e89;
    }
    .card-Clientele p {
        color: #6e6a6a;
        text-align: left !important;
    }
a {
    color: #00556b;
}s