﻿:root {
    --primaryColor: #242424;
    --secondColor: #deb271;
}

body {
    background-color: var(--primaryColor);
    color: var(--secondColor);
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding: 0px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
}

.BDC_CaptchaIconsDiv {
    display: flex;
    flex-direction: row;
}

    .BDC_CaptchaIconsDiv a {
        margin: 0px !important;
    }

.BDC_CaptchaImageDiv {
    height: 45px !important;
}

    .BDC_CaptchaImageDiv img {
        width: 100%;
    }

.BDC_Warning {
    max-width: 280px;
}

hr {
    display: block;
    width: 100%;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--secondColor);
    margin: 0 0;
    padding: 0;
}

.registrationForm {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

    .registrationForm .field-validation-error {
        color: red;
    }



    .registrationForm .validation-summary-errors {
        border: 1px solid red;
        padding: 10px 5px;
        width: 100%;
        margin-bottom: 10px;
        display: flex;
    }

        .registrationForm .validation-summary-errors ul {
            padding: 0px;
            margin: 0px;
            margin-left: 20px;
        }

            .registrationForm .validation-summary-errors ul li {
                color: red;
            }

    .registrationForm .btn {
        background-color: #8c1e1f;
        color: var(--secondColor);
        border-color: var(--secondColor);
        font-weight: bold;
        font-size: 22px;
    }

    .registrationForm a {
        color: var(--secondColor);
    }

    .registrationForm input, .registrationForm textarea {
        background: #242424;
        border: 1px solid rgba(255, 255, 255, 0.60);
        border-radius: 0px;
        color: white;
        width: 100%;
    }

    .registrationForm textarea {
        height: 100px;
    }

    .registrationForm input:focus {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--secondColor);
    }

    .registrationForm label {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .registrationForm span {
        margin-left: 5px;
    }

    .registrationForm .logo {
        background-image: url('/Images/ChiboTech-logo.png');
        margin-bottom: 5px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 120px;
        margin: 30px;
    }

    .registrationForm.registrationFormSuccess .logosuccess {
        content: url('/Images/ChiboTech-logo.png');
        margin-bottom: 5px;
    }

    .registrationForm .inputPanel {
        width: auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .registrationForm .inputPanelCaptcha {
        align-items: center;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .registrationForm textarea {
        width: 100%;
    }

    .registrationForm .registrationFormContent {
        width: 300px;
        padding-top: 20px;
        padding-bottom: 50px;
    }

.SuccessContent {
    width: 550px;
    padding-top: 30px;
    padding-bottom: 10px;
}


.registrationForm .registrationFormContentPanel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.registrationForm .pattern {
    position: absolute;
    width: 500px;
    display: none;
    opacity: 1;
    z-index: -1;
}

.registrationForm .blackPattern {
    display: block;
    bottom: -200px;
    left: -200px;
}

.registrationForm .whitePattern {
}

.registrationForm .redPattern {
    display: block;
    top: -200px;
    right: -200px;
}

.registrationForm .buttonPanel {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
}

.registrationForm a {
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
}

.registrationForm .alert-success {
    background: var(--primaryColor);
    color: var(--secondColor);
    border-color: var(--secondColor);
    border-radius: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 25px;
    font-size: 22px;
}

.registrationForm.registrationFormSuccess .btn {
    width: 300px;
}

.registrationForm .validation-summary-valid {
    display: none;
}

.registrationForm.registrationFormSuccess .registrationFormContent {
    padding-top: 20px;
}

footer p {
    margin-top: 5px;
    text-align: center;
}


#checkmark {
    width: 80px;
    height: 80px;
}
/***************** scrollbar ***************/
::-webkit-scrollbar {
    width: 17px;
    height: 17px;
}

::-webkit-scrollbar-button {
    display: block;
    width: 17px;
    height: 17px;
}

    ::-webkit-scrollbar-button:-webkit-decrement:-webkit-start {
        background-color: rgba(0, 0, 0, 0.00);
        border: 2px solid black;
    }

    ::-webkit-scrollbar-button:-webkit-increment:-webkit-start {
        background-color: rgba(0, 0, 0, 0.00);
        border: 2px solid black;
    }

    ::-webkit-scrollbar-button:-webkit-decrement:-webkit-end {
        background-color: orange;
        border: 2px solid black;
    }

    ::-webkit-scrollbar-button:-webkit-increment:-webkit-end {
        background-color: rgba(0, 0, 0, 0.00);
        border: 2px solid black;
    }

    ::-webkit-scrollbar-button:hover {
        background-color: rgba(0, 0, 0, 0.00) !important;
    }

::-webkit-scrollbar-thumb {
    min-width: 20px;
    min-height: 20px;
    background-color: var(--secondColor);
    border: 2px solid var(--secondColor);
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.00);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.00) !important;
}

::-webkit-scrollbar-thumb:active {
    /*border: 3px dotted white;*/
}

::-webkit-scrollbar-track:hover {
    background-color: rgba(0, 0, 0, 0.00) !important;
}
/*******************************/

@media print {

    .registrationFormSuccess .logosuccess {
        content: url('/Images/ChiboTech-logo-black.png') !important;
    }

    .registrationFormSuccess .buttonPanel {
        display: none;
    }
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    html, body, .body-content, form, .registrationForm {
        overflow-x: hidden;
    }

        .registrationForm img {
            width: 100%;
        }

        .registrationForm .buttonPanel {
            justify-content: center;
        }

            .registrationForm .buttonPanel a {
                text-align: center;
            }

        .registrationForm .registrationFormContent {
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
        }

    footer p {
        text-align: center;
    }
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
    /* Styles */
}

/* Smartphones (portrait) ----------- */
/* viewport size <= 320px ----------- */
@media only screen and (max-width : 320px) {
    /* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    /* Styles */
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    /* Styles */
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    /* Styles */
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
    /* Styles */
}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
    /* Styles */
}

/*************** Specific to device if required **********************/
/* stolen from http://nmsdvid.com/snippets/ **************************/

/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
    /* Styles */
}

/* iPhone5 ------------- */

@media screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* Blackberry Torch ---------- */
@media screen and (max-device-width: 480px) {
}

/* Samsung S3 ---------------- */
@media only screen and (-webkit-device-pixel-ratio: 2) {
}

/* Google Nexus 7 ------------- */
@media screen and (device-width: 600px) and (device-height: 905px) and (-webkit-min-device-pixel-ratio: 1.331) and (-webkit-max-device-pixel-ratio: 1.332) {
}

/* iPad Mini ------------------ */
@media screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 1) {
}

/* iPad 3 (Landscape)-------------------- */
@media (max-device-width: 1024px) and (orientation: landscape) {
}

/* iPad 3 (portrait)-------------------- */
@media (max-device-width: 768px) and (orientation: portrait) {
}

/* Galaxy Tab 10.1 (Landscape) -------- */
@media (max-device-width: 1280px) and (orientation: landscape) {
}

/* Galaxy Tab 10.1 (Portrait) -------- */
@media (max-device-width: 800px) and (orientation: portrait) {
}

/* Retina images ---------------------- */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {

    /* Retina replacement CSS here */

}
