﻿
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

@font-face {
    font-family: helvetica;
    src: url();
}

@font-face {
    font-family: 'helvetica';
    src: url('/Content/fonts/Helvetica 400.ttf') format('truetype');
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-weight: bold;
    margin: 10px 0px;
}

h2 {
    text-align: center;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

span {
    font-size: 12px;
}

a {
    color: #333;
    text-decoration: underline;
}

button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

input, select {
    border: none;
    padding: 9px 11px;
    width: 100%;
    margin-bottom: 12px;
    margin-top: 4px;
    padding: 0 10px;
    border-radius: 9px;
    border: 1px solid #f7f7f7;
    box-shadow: 3px 3px 11px 0 #ccc;
    height: 38px;
    outline: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(5, 80, 159)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
    margin-right: 2rem;
    padding: 1rem;
    padding-right: 2rem;
}

.ui-datepicker-header select {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    background-image: none;
    box-shadow: none;
    margin-right: 6px;
    padding: 0px;
    height: auto;
    border-radius: initial;
}

.sign-up-container .input-wrapper {
    display: flex
}

.sign-up-container .input-column {
    flex: 1;
}

.sign-up-container .flex-input-space {
    flex: 0.10
}

.input-wrapper .label-input {
    font-size: 13px;
}

.sign-up-button {
    margin-top: 20px;
}

.container {
    background-color: #fff;
    position: relative;
    width: 768px;
    max-width: 100%;
}

.auth-header-desc {
    width: 760px;
    text-align: center;
}

.flex-end {
    align-self: flex-end;
}

.form-container {
    top: 0;
    height: 100%;
    padding: 15px;
    /*transition: all 0.6s ease-in-out;*/
}

    .form-container h1 {
        color: #252525;
        font-size: 25px;
    }

    .form-container a {
        color: #05509f;
        font-weight: bold;
    }

.sign-in-container {
    -webkit-box-shadow: 1px 0px 8px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 0px 8px -4px rgba(0,0,0,0.75);
    box-shadow: 1px 0px 8px -4px rgba(0,0,0,0.75);
    margin-bottom: 12px;
}

    .sign-in-container h1 {
        color: #999999;
        font-size: 20px;
        margin: 7px;
    }

.form-container .form-group {
    display: flex;
    flex-direction: column;
}

    .form-container .form-group label {
        align-self: flex-start;
        font-size: 13px;
        color: #999999;
        margin-bottom: 0;
    }

.sign-in-container, .forgot-password-container {
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    height: inherit;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    right: 0;
    margin: 5px auto;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.75) 1px 0px 8px -4px;
}

.verification-container, .forgot-password-container, .reset-password-container {
    left: 0;
    right: 0;
    margin: 30px auto;
    width: 60%;
    /*opacity: 0;*/
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.75) 1px 0px 8px -4px;
}

    .verification-container .text-input, .forgot-password-container .text-input {
        width: 60%;
    }

.container.right-panel-active .sign-up-container {
    opacity: 1;
    z-index: 5;
    /*animation: show 0.6s;*/
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    /*transition: transform 0.6s ease-in-out;*/
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    /*transform: translateX(-100%);*/
}

.overlay {
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}


.bootstrap-select .bs-searchbox input {
    padding: 0 10px;
    border-radius: 9px;
    border: 1px solid #f7f7f7;
    box-shadow: 3px 3px 11px 0px #CCC;
    height: 33px;
    width: 100%;
    outline: none;
    margin: 0px 0px 10px 0;
}

.bootstrap-select .caret {
    display: none;
}

.bootstrap-select .filter-option-inner-inner {
    padding: 6px;
}

.bootstrap-select .dropdown-menu.open {
    border-radius: 9px;
    border: 1px solid #f7f7f7;
}

.bootstrap-select select {
    display: none !important;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.bootstrap-select .dropdown-toggle .filter-option-inner {
    padding-right: 20px;
}

.dropdown.bootstrap-select {
    flex: 4;
    min-width: 150px;
    align-self: center;
}

    .dropdown.bootstrap-select .disabled {
        padding: 0 10px;
        border-radius: 9px;
        border: 1px solid #f7f7f7;
        box-shadow: 3px 3px 11px 0 #ccc;
        height: 33px;
        outline: none;
        cursor: default;
        background: #ebebe4;
        opacity: 1;
    }

    .dropdown.bootstrap-select.input-validation-error {
        border-radius: 9px;
    }



.input-validation-error,
select.input-validation-error {
    font-size: 12px;
    background-color: #FEF1EC;
    border: 1px solid #FF0000;
}

.validation-error-message {
    font-size: 15px;
    color: #FF0000;
    margin: 5px 0px;
}

.validation-success-message {
    font-size: 16px;
    color: #1db674;
    font-weight: bold;
    margin: 5px 0px;
}

.form-group {
    width: 90%;
}


.form-group {
    margin-bottom: 0;
}

.ui-datepicker-calendar a {
    margin: 0px;
    font-size: 12px;
}

.field-validation-error {
    display: block;
}

.website-content {
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 30px;
}

.contact-us-wrapper a {
    display: flex;
    flex-direction: column;
    width: 200px;
    text-decoration: none;
    align-items: center;
    flex: 1;
    margin-bottom: 30px;
}

.contact-us-wrapper span {
    text-align: center;
    color: #054c9a;
    font-family: Roboto;
    font-size: 25px;
    font-weight: bold;
    margin-top: 5px;
}

#questions-dialog, #verification-success-dialog {
    display: none;
}

    #questions-dialog label {
        width: 186px;
        display: inline-block;
        text-align: left;
    }


    #questions-dialog input, #questions-dialog textarea {
        display: inline-block;
        width: 100%;
    }

.dialog-input-wrapper {
    display: flex;
    align-items: center;
    width: 90%;
}

.website-content {
    display: flex;
}

    .website-content.contact-us-wrapper {
        justify-content: inherit;
        flex-direction: column;
    }

    .website-content.faq-wrapper {
        justify-content: inherit;
        justify-content: space-between;
    }

    .website-content.contact-us-wrapper .contact-us-row {
        display: flex;
    }

    .website-content .share-section .share-item-wrapper {
        margin-bottom: 8px;
        cursor: pointer;
    }

        .website-content .share-section .share-item-wrapper img {
            width: 25px;
            margin-right: 15px;
        }


    .website-content .share-section a.share-image {
        bottom: 0;
        position: absolute;
        margin-right: 17px;
    }

    .website-content .share-section img.share-big-image {
        width: 100%;
        /*bottom: 0;
        position: absolute;*/
    }

    .website-content .share-section span {
        font-family: Roboto;
        font-size: 16px;
        font-weight: 600;
        color: #636363;
    }

    .website-content .faq-accordeon-wrapper {
        width: 50%
    }

    .website-content .faq-title, .website-content .share-title {
        font-family: Roboto;
        font-size: 25px;
        font-weight: 600;
        color: #636363;
        margin-bottom: 20px;
        display: block;
    }

    .website-content .share-section {
        background-color: #f2f2f2;
        width: 35%;
        padding: 17px;
        display: flex;
        flex-direction: column;
        position: relative;
    }

        .website-content .share-section .share-title {
            font-family: Roboto;
            font-size: 18px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 30px;
        }


.registry-wrapper {
    flex-direction: row;
    justify-content: space-between;
}

.registry-left-column-wrapper {
    width: 45%
}

.registry-right-column-wrapper {
    width: 40%
}

.registry-left-column-wrapper .grey-text {
    font-family: helvetica;
    font-size: 16px;
    color: #636363;
    margin-bottom: 20px;
    display: block;
}

.registry-right-column-wrapper .blue-text {
    font-family: Roboto;
    font-size: 16px;
    color: #05509f;
    display: block;
    margin-bottom: 5px;
}

.login-reference {
    margin-top: 0px;
}

a.login-forgot-password-url {
    margin: 8px 0px;
}

.verification-code-description {
    font-size: 13px;
}

    .verification-code-description b {
        color: #054c9a;
    }


.terms-header {
    font-size: 20px;
    color: #999999;
}

.terms-text {
    font-size: 13px;
}

.terms-text-header {
    font-weight: bold;
    display: block;
    margin-top: 14px;
    margin-bottom: 2px;
}

button.accept-terms {
    border: 1px solid #054c9a;
    background: #ebebeb;
    padding: 5px 50px;
    color: #054c9a;
    font-size: 15px;
    border-radius: 7px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.terms-text-wrapper {
    height: 400px;
    overflow-y: scroll;
}


#verification-success-dialog .popup-notification {
    font-size: 33px;
    font-weight: bold;
    color: rgb(5, 76, 154);
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 60px;
}


