﻿@charset "utf-8";
/* CSS Document */
body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif !important;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

:focus {
    outline: none
}

.cb-slideshow, .cb-slideshow:after {
    /*position: fixed;*/
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}

    .cb-slideshow:after {
        content: '';
        background: transparent url(../images/pattern.png) repeat top left;
    }

    .cb-slideshow li span {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        color: transparent;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: none;
        opacity: 0;
        z-index: 0;
        -webkit-backface-visibility: hidden;
        -webkit-animation: imageAnimation 36s linear infinite 0s;
        -moz-animation: imageAnimation 36s linear infinite 0s;
        -o-animation: imageAnimation 36s linear infinite 0s;
        -ms-animation: imageAnimation 36s linear infinite 0s;
        animation: imageAnimation 36s linear infinite 0s;
    }

    .cb-slideshow li div {
        z-index: 1000;
        position: absolute;
        bottom: 30px;
        left: 0px;
        width: 100%;
        text-align: center;
        opacity: 0;
        -webkit-animation: titleAnimation 36s linear infinite 0s;
        -moz-animation: titleAnimation 36s linear infinite 0s;
        -o-animation: titleAnimation 36s linear infinite 0s;
        -ms-animation: titleAnimation 36s linear infinite 0s;
        animation: titleAnimation 36s linear infinite 0s;
    }

        .cb-slideshow li div h3 {
            font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
            font-size: 240px;
            padding: 0;
            line-height: 200px;
            color: rgba(169,3,41, 0.8);
        }

    .cb-slideshow li:nth-child(1) span {
        background-image: url(../images/1.jpg)
    }

    .cb-slideshow li:nth-child(2) span {
        background-image: url(../images/2.jpg);
        -webkit-animation-delay: 6s;
        -moz-animation-delay: 6s;
        -o-animation-delay: 6s;
        -ms-animation-delay: 6s;
        animation-delay: 6s;
    }

    .cb-slideshow li:nth-child(3) span {
        background-image: url(../images/3.jpg);
        -webkit-animation-delay: 12s;
        -moz-animation-delay: 12s;
        -o-animation-delay: 12s;
        -ms-animation-delay: 12s;
        animation-delay: 12s;
    }

    .cb-slideshow li:nth-child(4) span {
        background-image: url(../images/4.jpg);
        -webkit-animation-delay: 18s;
        -moz-animation-delay: 18s;
        -o-animation-delay: 18s;
        -ms-animation-delay: 18s;
        animation-delay: 18s;
    }

    .cb-slideshow li:nth-child(5) span {
        background-image: url(../images/5.jpg);
        -webkit-animation-delay: 24s;
        -moz-animation-delay: 24s;
        -o-animation-delay: 24s;
        -ms-animation-delay: 24s;
        animation-delay: 24s;
    }

    .cb-slideshow li:nth-child(6) span {
        background-image: url(../images/6.jpg);
        -webkit-animation-delay: 30s;
        -moz-animation-delay: 30s;
        -o-animation-delay: 30s;
        -ms-animation-delay: 30s;
        animation-delay: 30s;
    }

    .cb-slideshow li:nth-child(2) div {
        -webkit-animation-delay: 6s;
        -moz-animation-delay: 6s;
        -o-animation-delay: 6s;
        -ms-animation-delay: 6s;
        animation-delay: 6s;
    }

    .cb-slideshow li:nth-child(3) div {
        -webkit-animation-delay: 12s;
        -moz-animation-delay: 12s;
        -o-animation-delay: 12s;
        -ms-animation-delay: 12s;
        animation-delay: 12s;
    }

    .cb-slideshow li:nth-child(4) div {
        -webkit-animation-delay: 18s;
        -moz-animation-delay: 18s;
        -o-animation-delay: 18s;
        -ms-animation-delay: 18s;
        animation-delay: 18s;
    }

    .cb-slideshow li:nth-child(5) div {
        -webkit-animation-delay: 24s;
        -moz-animation-delay: 24s;
        -o-animation-delay: 24s;
        -ms-animation-delay: 24s;
        animation-delay: 24s;
    }

    .cb-slideshow li:nth-child(6) div {
        -webkit-animation-delay: 30s;
        -moz-animation-delay: 30s;
        -o-animation-delay: 30s;
        -ms-animation-delay: 30s;
        animation-delay: 30s;
    }
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -webkit-animation-timing-function: ease-out;
    }

    17% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }

    25% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes imageAnimation {
    0% {
        opacity: 0;
        -moz-animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        -moz-transform: scale(1.05);
        -moz-animation-timing-function: ease-out;
    }

    17% {
        opacity: 1;
        -moz-transform: scale(1.1);
    }

    25% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }

    100% {
        opacity: 0
    }
}

@-o-keyframes imageAnimation {
    0% {
        opacity: 0;
        -o-animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        -o-transform: scale(1.05);
        -o-animation-timing-function: ease-out;
    }

    17% {
        opacity: 1;
        -o-transform: scale(1.1);
    }

    25% {
        opacity: 0;
        -o-transform: scale(1.1);
    }

    100% {
        opacity: 0
    }
}

@-ms-keyframes imageAnimation {
    0% {
        opacity: 0;
        -ms-animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        -ms-transform: scale(1.05);
        -ms-animation-timing-function: ease-out;
    }

    17% {
        opacity: 1;
        -ms-transform: scale(1.1);
    }

    25% {
        opacity: 0;
        -ms-transform: scale(1.1);
    }

    100% {
        opacity: 0
    }
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        transform: scale(1.05);
        animation-timing-function: ease-out;
    }

    17% {
        opacity: 1;
        transform: scale(1.1);
    }

    25% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0
    }
}
/* Animation for the title */
@-webkit-keyframes titleAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(200px);
    }

    8% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }

    17% {
        opacity: 1;
        -webkit-transform: scale(1);
    }

    19% {
        opacity: 0
    }

    25% {
        opacity: 0;
        -webkit-transform: scale(10);
    }

    100% {
        opacity: 0
    }
}

@-moz-keyframes titleAnimation {
    0% {
        opacity: 0;
        -moz-transform: translateY(200px);
    }

    8% {
        opacity: 1;
        -moz-transform: translateY(0px);
    }

    17% {
        opacity: 1;
        -moz-transform: scale(1);
    }

    19% {
        opacity: 0
    }

    25% {
        opacity: 0;
        -moz-transform: scale(10);
    }

    100% {
        opacity: 0
    }
}

@-o-keyframes titleAnimation {
    0% {
        opacity: 0;
        -o-transform: translateY(200px);
    }

    8% {
        opacity: 1;
        -o-transform: translateY(0px);
    }

    17% {
        opacity: 1;
        -o-transform: scale(1);
    }

    19% {
        opacity: 0
    }

    25% {
        opacity: 0;
        -o-transform: scale(10);
    }

    100% {
        opacity: 0
    }
}

@-ms-keyframes titleAnimation {
    0% {
        opacity: 0;
        -ms-transform: translateY(200px);
    }

    8% {
        opacity: 1;
        -ms-transform: translateY(0px);
    }

    17% {
        opacity: 1;
        -ms-transform: scale(1);
    }

    19% {
        opacity: 0
    }

    25% {
        opacity: 0;
        -webkit-transform: scale(10);
    }

    100% {
        opacity: 0
    }
}

@keyframes titleAnimation {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }

    8% {
        opacity: 1;
        transform: translateY(0px);
    }

    17% {
        opacity: 1;
        transform: scale(1);
    }

    19% {
        opacity: 0
    }

    25% {
        opacity: 0;
        transform: scale(10);
    }

    100% {
        opacity: 0
    }
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span {
    opacity: 1;
}

@media screen and (max-width: 1140px) {
    .cb-slideshow li div h3 {
        font-size: 100px
    }
}

@media screen and (max-width: 600px) {
    .cb-slideshow li div h3 {
        font-size: 50px
    }
}

fieldset.scheduler-border {
    border: 2px solid #e5e5e5 !important;
    padding: 0 10px 7px !important;
    margin: 0px !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
    border-radius: 4px;
}

legend.scheduler-border {
    font-size: 14px !important;
    font-weight: normal !important;
    text-align: left !important;
    width: auto;
    padding: 0 2px;
    border-bottom: none;
    color: #303030;
    margin-bottom: 5px;
}

.icn-user {
    background: url(../images/sprite.png) -7px 0 no-repeat;
    width: 18px;
    height: 27px;
    display: inline-block;
    margin-bottom: -5px;
    margin-right: 5px;
}

.icn-pswrd {
    background: url(../images/sprite.png) -40px 0 no-repeat;
    width: 18px;
    height: 27px;
    display: inline-block;
    margin-bottom: -5px;
    margin-right: 5px;
}

.oiiLogo {
    background: url(../images/sprite.png) 0 -32px no-repeat;
    width: 141px;
    height: 43px;
    padding: 25px;
    display: inline-block;
    position: relative;
    left: 20px;
    top: 13px;
}

.oiifooter {
    float: left;
    position: relative;
    top: 7%;
    width: 100%;
    text-align: center;
    color: #959ca3;
    font-size: 13px
}

ul.loginLink {
    float: left
}

    ul.loginLink li {
        border-bottom: #dbdbdb 1px solid;
        padding: 10px 4px;
    }

        ul.loginLink li a {
            color: #5b7f95;
            font-size: 13px
        }

.btn-blue {
    background-color: #003b5c !important;
    color: #fff;
    font-size: 16px;
}

.icn-login {
    background: url(../images/sprite.png) -71px -3px no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.form-group {
    margin-bottom: 22px !important;
}

.mtp20btm20 {
    margin: 20px 0 30px
}

.serviceBlck {
    position: absolute;
    right: 0;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #7a99ac;
    padding: 8px 7px;
    top: 20px;
    z-index: 9999;
}

.icn-service {
    background: url(../images/brocher-icon.png);
    width: 40px;
    height: 35px;
    display: block;
}

.overlayblack {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999;
}

ul.linksrightside {
    padding: 8px 20px
}

    ul.linksrightside li {
        font-size: 14px;
        padding-bottom: 5px;
    }

.hidden h2 {
    font-size: 13px;
    padding: 20px;
    background-color: #5b7f95;
    font-style: italic;
    margin: 0;
    line-height: 18px;
}

.right {
    width: 50%;
}

.left, .right {
    position: relative;
    height: 596px;
    width: 47%;
    float: left;
}

.left {
    z-index: 1;
}

.parent {
    overflow: hidden;
    margin: 0 -15px
}

.left:after {
    content: '';
    position: absolute;
    border-right: 170px solid #fff;
    top: -104px;
    bottom: -10px;
    left: 0;
    right: -72px;
    -moz-transform: rotate(13deg);
    -webkit-transform: rotate(13deg);
}

.hidden {
    width: 19%;
    z-index: 2;
    position: absolute;
    right: 0px;
    background: #7a99ac;
    color: #fff;
    z-index: 9999
}

.loginbg {
    background: url(../images/login-bg.jpg) center center no-repeat;
    background-size: cover;
    height: 100vh
}

.loginBlck {
    background-color: #fff;
    overflow: hidden;
    position: relative;
    top: 5%
}

.formRow {
    position: absolute !important;
    width: 53% !important;
    z-index: 99;
}



[data-simplebar] {
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0
}

.simplebar-offset {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch
}

.simplebar-content {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    visibility: visible;
    overflow: scroll;
    max-width: 100%;
    max-height: 100%
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none
}

.simplebar-height-auto-observer-wrapper {
    box-sizing: inherit !important;
    height: 100%;
    width: inherit;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0
}

.simplebar-height-auto-observer {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none
}

.simplebar-scrollbar {
    position: absolute;
    right: 2px;
    width: 7px;
    min-height: 10px
}

    .simplebar-scrollbar:before {
        position: absolute;
        content: "";
        background: #000;
        border-radius: 7px;
        left: 0;
        right: 0;
        opacity: 0;
        transition: opacity .2s linear
    }

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
    opacity: .5;
    transition: opacity 0s linear
}

.simplebar-track.simplebar-vertical {
    top: 0;
    width: 11px
}

    .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
        top: 2px;
        bottom: 2px
    }

.simplebar-track.simplebar-horizontal {
    left: 0;
    height: 11px
}

    .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
        height: 100%;
        left: 2px;
        right: 2px
    }

    .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
        right: auto;
        left: 0;
        top: 2px;
        height: 7px;
        min-height: 0;
        min-width: 10px;
        width: auto
    }

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0
}

.fontstyle {
    font-size: 13px;
    font-style: italic;
}

.right h1 {
    text-align: center;
    position: absolute;
    z-index: 999;
    left: 12%;
    top: 34%;
    color: #fff;
    font-size: 37px;
    width: 532px;
    font-weight: normal;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
}

.form-row {
    padding: 22px 26px
}

.wd53 {
    width: 53%
}

.form-check-inline-cust {
    display: -ms-inline-flexbox;
    display: inline-block !important;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 10px !important;
    float: left !important;
    width: 49%;
    margin: 0 !important;
}


@media only screen and (min-device-width: 320px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 2) {
    .oiiLogo {
        background: url(../images/sprite.png) 0 -34px no-repeat;
        width: 135px;
        height: auto;
        padding: 27px;
        display: inline-block;
        position: relative;
        left: 4px;
        z-index: 999;
        top: 14px;
    }

    .right h1 {
        text-align: center;
        position: absolute;
        z-index: 9;
        left: 138px;
        top: -42px;
        color: #fff;
        font-size: 17px;
        width: 191px;
        font-weight: normal;
        text-shadow: none;
    }

    .left, .right {
        position: absolute;
        /*width: 100%*/
    }

    .loginBlck {
        position: inherit;
    }

    .cb-slideshow, .cb-slideshow:after {
        display: none;
    }

    .form-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -5px;
        margin-left: -5px;
        float: right;
        width: 100% !important;
        position: relative !important;
    }

    .formRow {
        width: 100% !important;
        z-index: 99;
    }

    .left:after {
        display: none
    }

    .serviceBlck {
        position: absolute;
        right: 0;
        padding: 5px 4px;
        top: 11px;
    }

    .demo1 {
        height: 541px !important;
    }

    .hidden {
        width: 85%;
    }

    .loginbg {       
        height: fit-content;
    }

    .wd-100 {
        width: 100%;
    }

    .mb-02 {
        margin-bottom: 10px !important;
    }

}

.login-radio-brdr{
    border: #e5e5e5 2px solid;
    border-radius: 3px;
    padding: 10px !important;
}



.ver{
    margin-left:4px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 520px) {
    .wd-100 {
        width: 100%;
    }

    .mb-02 {
        margin-bottom: 10px !important;
    }
}

