﻿
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* DAISY'S STYLES - ADDED ON 13th December 2018 to pretify the site before it goes to clients */

body {
    text-align: center;
}

.passwordGlyphicon {
    right: 10%;
    z-index: 5;
    cursor: pointer;
    margin-top: 6px;
    position: absolute;
}

.center-container {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-width: 600px;
    height: 320px;
}

.col-md-8 {
    width: 100%;
}

.col-md-4 {
    display: none;
    width: 0;
}

input, select, textarea {
    max-width: 390px;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.col-md-offset-2 {
    margin-left: 10% !important;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #eee;
    background-image: none;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

hr {
    border-top: none !important;
}

body {
    letter-spacing: 0.04em;
}

.register-form-horizontal .form-group {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.register-form-horizontal h1 {
    font-weight: bold;
}

.register-form-horizontal h4 {
    font-size: 20px;
    margin-top: 30px;
}

.register-form-horizontal h1, h4 {
    color: #222222;
}

.sign-up-google-container {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-up-google {
    width: 90%;
    height: 75px;
    display: flex;
    color: #979DA0;
    font-size: 24px;
    font-weight: bold;
    border-radius: 3px;
    align-items: center;
    cursor: not-allowed;
    justify-content: center;
    border: 1px solid #979DA0;
}

    .sign-up-google:hover .sign-in-text {
        opacity: 0;
        transition: opacity 0.3s;
    }

    .sign-up-google:hover .tooltiptext {
        opacity: 1;
        transition: opacity 0.3s;
    }

    .sign-up-google .tooltiptext {
        opacity: 0;
        position: absolute;
        transition: opacity 0.3s;
    }

.google-icon {
    left: 15%;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    border: 2px solid #979DA0;
}

.already-signed-up {
    height: 22px;
    width: 200px;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
}

    .already-signed-up > a {
        color: #138995;
    }

.dont-have-an-account {
    height: 22px;
    width: 200px;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
}

    .dont-have-an-account > a {
        color: #138995;
    }

/*Registration form fields start*/
#receive-offer-and-news {
    text-align: left;
    margin: 15px 0 15px 15px;
}


.pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 16px;
    line-height: 1.5;
}

    /* Input */
    .pure-material-checkbox > input {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        z-index: -1;
        position: absolute;
        left: -10px;
        top: -8px;
        display: block;
        margin: 0;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
        box-shadow: none;
        outline: none;
        opacity: 0;
        transform: scale(1);
        pointer-events: none;
        transition: opacity 0.3s, transform 0.2s;
    }

    /* Span */
    .pure-material-checkbox > span {
        display: inline-block;
        width: 100%;
        cursor: pointer;
    }

        .pure-material-checkbox > span > label {
            font-weight: normal;
        }
        /* Box */
        .pure-material-checkbox > span::before {
            content: "";
            display: inline-block;
            box-sizing: border-box;
            margin: 3px 11px 3px 1px;
            border: solid 2px; /* Safari */
            border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
            border-radius: 2px;
            width: 18px;
            height: 18px;
            vertical-align: top;
            transition: border-color 0.2s, background-color 0.2s;
        }

        /* Checkmark */
        .pure-material-checkbox > span::after {
            content: "";
            display: block;
            position: absolute;
            top: 3px;
            left: 1px;
            width: 10px;
            height: 5px;
            border: solid 2px transparent;
            border-right: none;
            border-top: none;
            transform: translate(3px, 4px) rotate(-45deg);
        }

    /* Checked, Indeterminate */
    .pure-material-checkbox > input:checked,
    .pure-material-checkbox > input:indeterminate {
        background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    }

        .pure-material-checkbox > input:checked + span::before,
        .pure-material-checkbox > input:indeterminate + span::before {
            border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
            background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
        }

        .pure-material-checkbox > input:checked + span::after,
        .pure-material-checkbox > input:indeterminate + span::after {
            border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
        }

        .pure-material-checkbox > input:indeterminate + span::after {
            border-left: none;
            transform: translate(4px, 3px);
        }

    /* Hover, Focus */
    .pure-material-checkbox:hover > input {
        opacity: 0.04;
    }

    .pure-material-checkbox > input:focus {
        opacity: 0.12;
    }

    .pure-material-checkbox:hover > input:focus {
        opacity: 0.16;
    }

    /* Active */
    .pure-material-checkbox > input:active {
        opacity: 1;
        transform: scale(0);
        transition: transform 0s, opacity 0s;
    }

        .pure-material-checkbox > input:active + span::before {
            border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
        }

    .pure-material-checkbox > input:checked:active + span::before {
        border-color: transparent;
        background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    }

    /* Disabled */
    .pure-material-checkbox > input:disabled {
        opacity: 0;
    }

        .pure-material-checkbox > input:disabled + span {
            color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
            cursor: initial;
        }

            .pure-material-checkbox > input:disabled + span::before {
                border-color: currentColor;
            }

    .pure-material-checkbox > input:checked:disabled + span::before,
    .pure-material-checkbox > input:indeterminate:disabled + span::before {
        border-color: transparent;
        background-color: currentColor;
    }

.registration-modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    visibility: hidden;
    align-items: center;
    background: #000000b0;
    justify-content: center;
}

    .registration-modal .block {
        width: 30%;
        min-width: 400px;
        padding: 5px;
        background: #fff;
    }

    .registration-modal .close {
        opacity: 0.6;
        padding: 0 5px;
    }

    .registration-modal .message {
        text-align: left !important;
        padding: 25px;
    }

    .registration-modal .button {
        display: flex;
        justify-content: flex-end;
        padding-top: 30px;
    }

    .registration-modal .login-button {
        color: #fff;
        width: 200px;
        height: 45px;
        display: flex;
        font-size: 15px;
        font-weight: bold;
        background: #22A8D8;
        align-items: center;
        text-decoration: none;
        justify-content: center;
    }

/*Registration form fields end*/

h2 {
    font-weight: 600;
    font-size: 60px;
}

h4 {
    font-weight: 400;
    font-size: 22px;
}

.control-label {
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 14px;
    padding-left: 8px;
}

.checkbox label {
    font-weight: 400;
}

input.btn.btn-default {
    padding: 10px 40px;
    background: transparent;
    border: solid 2px #122541;
    color: #122541;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 0.04em;
}

.register-form-group {
    margin: 20px 20px 30px 20px;
}

input.btn.btn-default.input-register {
    height: 50px;
    width: 230px;
    color: white;
    background: #138995;
    border: none;
    border-radius: 50px;
    box-shadow: 0px 3px 0px 0px #0A5A63;
    -moz-box-shadow: 0px 3px 0px 0px #0A5A63;
    -webkit-box-shadow: 0px 3px 0px 0px #0A5A63;
}

.form-control:focus {
    border-color: #383838;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(53, 55, 56, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(53, 55, 56, 0.6);
}

input, select, textarea {
    max-width: 100%;
}

table {
    background: white;
}

tr:nth-child(even) {
    background-color: #fff !important;
}

td, th {
    border: 1px solid #dbdbdb;
}

.dropzoneCustomCss {
    margin: 50px 0 50px -17px !important;
}

.dz-default.dz-message {
    font-size: 24px;
    font-weight: 600;
}

.dropzone {
    min-height: 150px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 0 4px #5a5a5a, 2px 1px 6px 4px rgba(10, 10, 0, 0.5);
    border: none !important;
}

.btn-success {
    color: #fff;
    background-color: #122541;
    border-color: #122541;
}

.modal-header, .modal-footer {
    background-color: #11294a !important;
}

.btn-success:hover, .btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success {
    background-color: #6ea0df !important;
    border-color: #6ea0df !important;
}

@media (min-device-width: 1px) and (max-width: 768px) {

    .form-horizontal .control-label {
        margin-bottom: 4px;
    }

    .col-md-offset-2 {
        margin-left: 0%;
    }

    input, select, textarea {
        max-width: 600px;
    }

    .sign-up-google-container {
        height: auto;
        margin-bottom: 50px;
    }

    .google-icon {
        position: unset;
    }
}

.validation-summary-errors ul {
    list-style-type: none;
}


/* HTML Site map*/

.html-site-map {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: left;
}

    .html-site-map > a {
        cursor: pointer;
    }

.form__group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
}

    .form__group select {
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
    }


.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    outline: 0;
    font-size: 16px;
    color: #212121;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

    .form__field::placeholder {
        color: transparent;
    }

    .form__field:placeholder-shown ~ .form__label {
        font-size: 16px;
        cursor: text;
        top: 20px;
    }

    label,
    .form__field:focus ~ .form__label {
        text-align: left;
        position: absolute;
        top: 0;
        display: block;
        transition: 0.2s;
        font-size: 12px;
        color: #9b9b9b;
    }

    .form__field:focus ~ .form__label {
        color: #0077FF;
    }

    .form__field:focus {
        padding-bottom: 6px;
        border-bottom: 2px solid #0077FF;
    }

label.error {
    color: #b94a48;
    position: relative;
}

@font-face {
    font-family: 'OpenSans-Light';
    src: url('../fonts/OpenSans-Light.ttf');
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url('../fonts/OpenSans-SemiBold.ttf');
}



.error-404-container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-family: OpenSans-Light;
}

    .error-404-container .strong-error {
        color: #8A8A8A;
        font-size: 1.6em !important;
    }

        .error-404-container .strong-error strong {
            color: #000000;
            font-family: OpenSans-SemiBold;
        }

    .error-404-container .error-logo {
        max-width: 250px;
        margin-bottom: 30px;
    }

    .error-404-container .error-lost-logo {
        height: 100%;
        width: 400px;
    }

    .error-404-container .left {
        display: flex;
        justify-content: flex-end;
    }

    .error-404-container .right {
        display: flex;
        justify-content: flex-start;
    }

    .error-404-container .left-block {
        display: flex;
        flex-wrap: wrap;
        max-width: 400px;
        text-align: left;
        flex-direction: column;
        justify-content: flex-start;
    }

    .error-404-container .error-text > * {
        display: block;
        padding: 0 20px;
        font-size: 1.1em;
    }
