﻿@media all {
    html,
    body,
    .view {
        height: 100%;
        width: 100%;
        overflow: hidden;
        min-width: 1280px;
    }

    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    body,
    input,
    textarea {
        font-family: Segoe UI, Arial, sans-serif;
        font-size: 13px;
        color: #222;
    }

        input::-ms-reveal,
        input::-ms-clear {
            display: none;
        }
}

.background {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.centre-div {
    width: 750px;
    height: 760px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.header-text {
    text-align: center;
    font-weight: normal;
    background-color: rgba(255,255,255,0.5);
    font-size: 14px;
    border-radius: 5px;
}

.vertical-parent {
    display: flex;
    flex-direction: row;
}

.vertical-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-centre-div {
    margin-top: 100px;
    height: 450px;
}

.main-left-div {
    width: 250px;
    border-radius: 16px 0 0 16px;
    border: 2px solid rgba(255,255,255,0.8);
    border-right: none;
}

.main-right-div {
    width: 500px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0 16px 16px 0;
    border: 2px solid rgba(255,255,255,0.8);
    border-left: none;
}

.main-centre-right-div {
    margin: 60px;
    height: 100%;
}

.message-div {
    top: 7px;
    font-weight: 400;
    height: 20px;
    margin-left: 3px;
}

.login-fields {
    border-radius: 8px;
    border: 1px solid #42BADA;
    width: 356px;
    height: 30px;
    margin-top: 20px;
    padding: 0px 10px 0px 10px;
    background-color: white;
}

.sumbit-button {
    text-align: center;
    top: 10px;
}

    .sumbit-button > input {
        background: linear-gradient(to bottom, rgb(91,211,243), rgb(15,135,167)), #42BADA;
        color: white;
        padding: 5px 40px 5px 40px;
        border-radius: 8px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        text-transform: uppercase;
    }

.header {
    font-weight: 700;
}

.header-space {
    margin-top: 10px;
}

.no-space {
    margin-top: 0px;
}

.no-top-space {
    top: 0px;
}

.pass-field {
    -webkit-text-security: disc !important;
}

#LoginPageRedirectDiv,
#NewPasswordResultDiv,
#NoticeDiv {
    text-align: justify;
    color: white;
}

#lblNoticeDiv {
    margin-left: 10px;
}

.warning-div {
    margin-top: 25px;
    background-color: rgba(37, 60, 73, 0.6);
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 16px;
    height: auto;
    color: white;
    padding: 10px;
}

.warning-img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.underline {
    text-decoration: underline !important;
}

/*#region Loading*/
#loading {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(100, 149, 237, .5);
    z-index: 99999;
    cursor: progress;
}

body[mode="loading"] #loading {
    display: block;
}

body[mode] #loading div.spinner_base {
    position: fixed;
    top: 50%;
    left: 50%;
}

body[mode] #loading div.spinner {
    background: url(../theme_controllers/odyssey_tiles/images/loading.gif?version=6.9.1) center no-repeat;
    background-size: 125px;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
}
/*#endregion*/

/*#region Log in*/
#PasswordContainer {
    display: flex;
}

#LoginPassword {
    background-color: transparent;
    width: 95%;
    height: 100%;
}

#ShowLoginPassword {
    background: url("../images/authenticate/show-password-icon.png?version=6.9.1");
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 18%;
    cursor: pointer;
}

#ReCAPTCHAPasswordDiv,
#reCAPTCHANewPasswordWidgetCnt {
    height: 74px;
    padding-top: 10px;
    padding-bottom: 10px;
    left: 74px;
}

#reCAPTCHANewPasswordWidgetCnt {
    padding-bottom: 20px;
}

#NewPassCaptchaDiv,
#CaptchaMessageDiv {
    top: -18px;
    left: 7px;
}

#ForgotPasswordDiv {
    width: 372px;
    text-align: center;
    margin-left: 3px;
    margin-top: 12px;
}

#ForgotYourPassword {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    white-space: nowrap;
}

    #ForgotYourPassword:hover {
        text-decoration: underline;
    }
/*#endregion */

/*#region Two-Factor Authentication*/
.two-factor {
    margin-right: 10px;
    width: 20px;
    height: 60px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}

#TwoFactorAuthenticationResendCode {
    display: block;
    top: 10px;
    color: #42bada;
}

    #TwoFactorAuthenticationResendCode:hover {
        text-decoration: underline;
    }

#TwoFactorAuthenticationVerify {
    margin: 20px auto;
}

#TwoFactorAuthenticationVerifyBtn {
    margin-top: 0px;
    z-index: 10;
}

#TwoFactorAuthenticationNeedHelp {
    width: 100%;
    text-align: center;
}

#TwoFactorAuthenticationNeedHelpEmail {
    color: white;
    cursor: pointer;
    z-index: 10;
}

    #TwoFactorAuthenticationNeedHelpEmail:hover {
        text-decoration: underline;
    }
/*#endregion*/

/*#region New Password*/
#TextNewPassword {
    margin-top: 0px;
}

#CompareValidatorDiv {
    text-align: left;
}

#PasswordPolicyMessage,
#PasswordPolicyInstructions {
    color: #333;
    font-weight: 400;
}

    #PasswordPolicyInstructions li {
        list-style-type: square;
        margin-left: 35px;
    }
/*#endregion*/

/*#region Toolbar*/
.toolbar {
    top: 40px;
    height: 40px;
    text-align: center;
}

.toolbar-icon {
    width: 25px;
    height: 25px;
    margin-left: 10px;
}
/*#endregion*/

/*#region Copyright*/
.showCopyright {
    top: -5px;
}

#odyssey_ui_copyright {
    position: fixed;
    bottom: 0px;
    left: 0px;
    height: 1px;
    width: 100%;
    text-align: right;
    z-index: 1000;
}

    #odyssey_ui_copyright a {
        color: #0044FF;
    }

        #odyssey_ui_copyright a:hover {
            text-decoration: underline;
        }

    #odyssey_ui_copyright div {
        font-size: .85em;
        display: inline-block;
        color: #111;
        padding: .25em;
        padding-left: 0.5em;
        margin-top: -1.75em;
        background-color: rgba(255,255,255, .5);
        text-shadow: 0em .125em .5em #333;
        border-top-left-radius: .75em;
    }

.copyright_message {
    text-align: justify;
    padding-right: .5em;
    padding-left: .5em;
    font-size: .975em;
    line-height: 1.5em;
    max-height: 7.5em;
    overflow: auto;
    text-shadow: 0em .125em .5em #333;
    border-radius: .25em;
    vertical-align: middle;
}

#CopyRightMessageClose {
    display: block;
}
/*#endregion*/

/*#region Maps*/
#maps {
    background-color: #333;
}

    #maps .map_container {
        width: 50%;
        height: 50%;
        float: left;
        clear: right;
        color: #eee;
        overflow: hidden;
    }

        #maps .map_container.cyprus {
            width: 100%;
            height: 50%;
        }

    #maps .country_container,
    #maps .contact_details {
        /* For IE 5.5 - 7*/
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0000000, endColorstr=#a0000000);
        /* For IE 8*/
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0000000, endColorstr=#a0000000)";
        zoom: 1;
        background-color: rgba(0, 0, 0, .65);
        position: absolute;
        left: 0px;
        width: 100%;
        z-index: 10;
        overflow: hidden;
    }

    #maps .country_container {
        top: 0px;
        height: 3em;
        line-height: 3em;
        vertical-align: middle;
    }

    #maps .flag_container {
        float: left;
        clear: right;
    }

        #maps .flag_container img {
            height: 2.5em;
            padding: .25em;
        }

        #maps .flag_container.bottom img {
            padding-top: .3em;
        }

        #maps .flag_container.left img {
            padding-left: .3em;
        }

    #maps .country {
        font-size: 2em;
        font-weight: 100;
    }

    #maps .map {
        height: 100%;
        width: 100%;
        border: none;
        text-decoration: none;
    }

        #maps .map.right {
            border-left: 2px solid #777;
        }

        #maps .map.bottom {
            border-top: 2px solid #777;
        }

    #maps .map {
        display: block;
        background-color: #eee;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: cover;
    }

        #maps .map.cyprus_office {
            background-image: url('../images/cyprus_office_map.jpg?version=6.9.1');
        }

        #maps .map.greece_office {
            background-image: url('../images/greece_office_map.jpg?version=6.9.1');
        }

        #maps .map.usa_office {
            background-image: url('../images/usa_office_map.jpg?version=6.9.1');
        }

    #maps .contact_details {
        bottom: -1px;
        height: 8.5em;
        padding-bottom: 1px;
    }

        #maps .contact_details .fa {
            font-size: 1.25em;
            padding-right: .25em;
        }

            #maps .contact_details .fa.fa-phone {
                padding-right: .5em;
            }

            #maps .contact_details .fa.fa-envelope-o {
                color: #7497f5;
            }

    #maps .address_container,
    #maps .phones_container {
        padding: .25em;
    }

        #maps .address_container > div {
            padding-left: 1.875em;
        }

        #maps .address_container div.title_container {
            padding-left: 0px;
        }

    #maps .title {
        font-weight: bold;
    }

    #maps .phones_container {
        padding-top: 0px;
    }

        #maps .phones_container > div {
            display: inline;
            margin-right: 1em;
        }

.email_info {
    color: #7497f5;
}

    .email_info:hover {
        text-decoration: underline;
    }
/*#endregion*/

/*#region Moz*/
@-moz-document url-prefix() {
    #LoginMessage {
        top: 18px;
        font-size: 12px;
    }

    #lblCopyright {
        font-size: 12px;
    }
}
/*#endregion*/

/*#region Video */
video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}
/*#endregion Video End */

#rc-imageselect, .g-recaptcha {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

#SinginHeaderContainer {
    color: white;
    text-align: center;
}

#SignInMessage {
    font-size: 17px;
}

#LoginMessage,
#CaptchaMessage,
#PasswordPolicyMessage,
#ForgotPasswordHeaderContainer,
#PasswordPolicyInstructions,
#NewPassMessage,
#NewPassCaptchaMessage,
#TwoFactorAuthenticationHeader,
#MainTwoFactorAuthentication,
#TwoFactorAuthenticationResendCode,
#TwoFactorAuthenticationNeedHelpEmail {
    color: white;
}

#NoticeImgDiv {
    padding: 2px;
}

    #NoticeImgDiv > img {
        width: 20px;
    }

#NewPasswordForm {
    margin-top: -25px;
}

#NewPasswordContainer {
    padding-top: 25px;
}

#ForgotPasswordMessage {
    left: -2px;
}

#ForgotPasswordHeaderContainer,
#MainTwoFactorAuthentication {
    text-align: center;
}

#TwoFactorAuthenticationResendCode,
#TwoFactorAuthenticationNeedHelpEmail {
    color: rgba(255, 255, 255, .75);
}

#SinginHeaderImg {
    width: 36px;
    height: 24px;
    /*background-image: url(../../partners/images/authenticate/logo.png?version=6.9.1);*/
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
}

#TwoFactorAuthenticationMessagesDiv {
    top: 10px;
}

#TwoFactorAuthenticationMessagesCnt {
    text-align: center;
    display: inline-flex;
    margin: 0 auto;
}

#TwoFactorAuthenticationForm [disabled="disabled"] {
    opacity: 0.5;
    cursor: default;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}