/* Default elements */
body {
    background-color: #F2F2F2;
    font-size: 16px;
    padding-bottom: 80px;
}

body.size-xs {
    font-size: 14px;
}

select {
    -webkit-appearance:carret;
    background-color: white;
}

a {
    color: #fe5e00;
}

input[type=radio] {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

input.highlighted, select.highlighted, textarea.highlighted, div.highlighted input {
    background-color: #FFFFCC;
}

.validation-indicator {
    display: none !important;
}

/* Device rendering */
.mobile-only {
    display: none;
}

.webapp-only {
    display: block;
}

.mobile-app .mobile-only {
    display: block;
}

.mobile-app .webapp-only {
    display: none;
}

/* Layout */
.page-area {
    margin-top: 50px;
}

.size-xs .page-area {
    margin-top: 10px;
}

.size-xs .btn {
    width: 100%;
}

.page-header {
    padding-bottom: 20px;
}

    .size-xs .page-header {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .page-header .page-header-controls {
        float: right;
    }

    .page-header .page-header-back {
        display: none;
    }

    .page-header .page-header-caption {
        font-size: 28px;
        font-weight: 600;
    }

        .size-xs .page-header .page-header-caption {
            padding-top: 5px;
            font-size: 22px;
        }

.page-area.mobile-app {
    margin-top: 70px;
    padding-bottom: 30px;
}

.mobile-app .page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 1000;

    background-color: #85c227;
    box-sizing: border-box;
    color: white;

    padding: 10px;
}

    .mobile-app .page-header .page-header-back {
        font-size: 24px;
        cursor: pointer;
        position: fixed;
        top: 7px;
        left: 10px;
        color: #FFFFFF;
        display: block;
        background-color: #75b217;
        width: 36px;
        height: 36px;
        border-radius: 18px;
        text-align: center;
    }

    .mobile-app .page-header .page-header-caption {
        font-size: 18px;
        font-weight: 400;
        text-align: center;
    }

    .mobile-app .page-header .page-header-controls {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        height: 40px;
        z-index: 1000;
    }

        .mobile-app .page-header .page-header-controls .btn-primary {
            border-radius: 0;
            width: 100%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        }

.prefer-align-right {
    text-align: right;
}

    .size-xs .prefer-align-right, .size-sm .prefer-align-right, .size-md .prefer-align-right {
        text-align: left;
    }

.padded {
    padding: 15px;
}

.padded-double {
    padding: 20px;
}

.button-box {
    padding-top: 20px;
}

    .button-box button {
        margin-right: 10px;
    }


.spaced-vertically {
    margin-top: 15px;
    margin-bottom: 15px;
}

.centered-form {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

    .centered-form .btn {
        width: 100%;
    }

.container.size-xs {
    padding-left: 5px;
    padding-right: 5px;
}

.image-layout {
    
}

    .image-layout .left-side {
        height:315px;
        padding-right:15px;
    }

        .image-layout .left-side .panel {
            height: 100%;
        }

    .image-layout .right-side {
        height:315px;
        padding-left:15px;
    }

        .image-layout .right-side .panel {
            height: 100%;
        }

.size-xs .image-layout .left-side {
    height: 200px;
}

.size-sm .image-layout .left-side, .size-md .image-layout .left-side {
    height: 250px;
}

.size-xs .image-layout .right-side, .size-sm .image-layout .right-side, .size-md .image-layout .right-side {
    height: auto;
}

.size-xs .image-layout .right-side .panel, .size-sm .image-layout .right-side .panel, .size-md .image-layout .right-side .panel {
    height: auto;
    border-radius: 0 0 5px 5px;
}

.size-xs .image-layout .left-side .panel, .size-sm .image-layout .left-side .panel, .size-md .image-layout .left-side .panel {
    border-radius: 5px 5px 0 0;
}


/* Links */
.link {
    color: #fe5e00;
    cursor: pointer;
}

    .link:hover {
        color: #ce2e00;
    }

/* Headers */
.content-header {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

    .content-header.large {
        font-size: 24px;
    }

    .size-xs .content-header {
        font-size: 14px;
    }


/* Toolbar */
.toolbar {
    display: flex;

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;

    background-color: #FFFFFF;
    color: #FFFFFF;
    border-top: 1px solid #CCCCCC;
    /* box-shadow: 0 0 25px rgba(0, 0, 0, 0.3); */
    text-align: center;
}

    .toolbar .toolbar-button {
        flex: 1;
        background-color: transparent;
        color: #888888;
        border: none;
        font-size: 10px;
        padding: 5px 15px;
        height: 50px;
        box-sizing: border-box;
    }

        .toolbar .toolbar-button i {
            color: #888888;
            font-size: 18px;
        }

        .toolbar .toolbar-button:focus {
            outline: none;
        }

/* Tables */
.simple-table {
    width: 100%;
    border: 1px solid #AAAAAA;
    border-collapse: collapse;
}

    .simple-table.space-vertical {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .simple-table th {
        padding: 2px 5px;
        font-weight: 600;
        border: 1px solid #AAAAAA;
    }

    .simple-table td {
        padding: 2px 5px;
        border: 1px solid #AAAAAA;
    }

.borderless-table {
    width: 100%;
    border: none;
}

    .borderless-table td {
        border: none;
    }

    .borderless-table th {
        border: none;
    }

/* Tiles */
.tile {
    transition: 0.5s;
    text-align: center;
    padding: 15px;
    cursor: pointer;
}

    .tile:hover i {
        color: black;
    }

    .tile:hover div {
        color: black;
    }

    .tile i {
        transition: 0.5s;
        color: #AAAAAA;
        font-size: 48px;
        margin-bottom: 5px;
    }

    .tile div {
        transition: 0.5s;
        color: #888888;
        font-size: 12px;
    }

.info-tile {
    display: inline-block;
    background-color: #1C3A83;
    color: white;
    width: 150px;
    height: 150px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px 0;
}

    .info-tile .counter {
        font-size: 60px;
    }

.navigation-tile {
    display: inline-block;
    background-color: #85c227;
    color: white;
    width: 150px;
    height: 150px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
    padding: 25px 0;
    cursor: pointer;
}

    .navigation-tile i {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .navigation-tile:hover {
        background-color: #75b217;
    }

.item-tile {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 250px;
    background-color: white;
    border-radius: 10px;
    vertical-align: top;

    margin-right: 25px;
    margin-bottom: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;

    font-size: 12px;
}

    .item-tile.long {
        width: 400px;
        height: 150px;
    }

        .size-xs .item-tile.long {
            width: 100%;
        }

    .item-tile.clickable {
        cursor: pointer;
    }

        .item-tile.clickable:hover {
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
        }

    .item-tile .photo-area {
        width: 100%;
        height: 165px;
        border-radius: 10px 10px 0 0;
        background-size: cover;
        background-position: center center;
    }

        .item-tile .photo-area.fill {
            height: 100%;
            border-radius: 10px;
        }

        .item-tile .photo-area .icon {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 50px;
            height: 50px;
            border-radius: 25px;
            background-color: white;
            font-size: 32px;
            text-align: center;
            box-sizing: border-box;
            padding-top: 3px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

    .item-tile .info-area {
        border-top: 1px solid #CCCCCC;
        padding: 5px;
    }





    .job-tile {
        position: relative;
        display: inline-block;
        transition: 0.5s;
        width: 250px;
        cursor: pointer;
        background-color: #FFFFFF;
        margin-bottom: 20px;
        margin-right: 25px;
        box-shadow: 0 2px 3px rgba(0,0,0, 0.2);
    }

        .size-xs .job-tile {
            margin-right: 0;
            width: 100%;
        }

            .size-xs .job-tile .image {
                width: 100%;
                height: 170px;
            }

        .size-sm .job-tile {
            width: 230px;
        }

            .size-sm .job-tile .image {
                width: 230px;
                height: 140px;
            }

        .size-md .job-tile {
            width: 320px;
        }

            .size-md .job-tile .image {
                width: 320px;
                height: 200px;
            }

        .size-lg .job-tile {
            width: 320px;
        }

            .size-lg .job-tile .image {
                width: 320px;
                height: 200px;
            }



        .job-tile:hover {
            background-color: #FFFFFF;
        }

        .job-tile .logo {
            position: absolute;
            top: 0;
            left: 0;
            background-color: #FFFFFF;
            padding: 10px;
            padding-right: 20px;
            border-radius: 0 0 40px 0;
        }

            .job-tile .logo img {
                max-width: 50px;
                max-height: 30px;
            }

        .job-tile .image {
            width: 250px;
            height: 150px;   
            background-size: cover;
            background-position: center center;
            background-color: #888888;
            position: relative;
        }

            .job-tile .image .rate-fade {
                position: absolute;
                right: 0;
                bottom: 0;
                color: #FFFFFF;
                font-size: 16px;
                padding: 8px 15px 8px 60px;
                font-weight: bold;
                background-image: linear-gradient(to right, rgba(0,0,0,0), #fe5e00);
                text-align: right;
                line-height: 15px;
            }

        .job-tile .details {
            font-size: 11px;
            padding: 5px;
        }

            .job-tile .details .skill {
                margin-top: 1px;
                float: left;
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 25px;
                text-align: center;
                box-sizing: border-box;
                font-weight: bold;
                font-size: 11px;
                margin-left: -5px;
            
            }

                .job-tile .details .skill img {
                    filter: invert(1);
                }

            .job-tile .details .title {
                font-size: 11px;
                font-weight: 600;
                color: #707070;
                width: 200px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .job-tile .details .review {
                font-size: 15px;
                color: #EEEEAA;
            }

            .job-tile .details .location {
                font-size: 11px;
                font-weight: 300;
                color: #707070;
                width: 200px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            } 






/* QuickNav */
.quicknav {
    position: fixed;
    top: 100px;
    right: 20px;
}

    .quicknav .quicknav-item {
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 25px;
        background-color: white;
        border: 2px solid #fe5e00;
        text-align: center;
        font-size: 28px;
        cursor: pointer;
        color: #fe5e00 !important;
        margin-top: 10px;
    }

        .quicknav .quicknav-item:hover {
            background-color: #fe5e00;
            color: white !important;
        }


/* Loading indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 10001;
    display: none;
}

    .loading-indicator .loading-indicator-frame {
        position: absolute;
        left: 0;
        right: 0;
        top: 40vh;
    }

    .loading-indicator .loading-indicator-frame .loading-indicator-panel {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .loading-indicator-blur {
        padding-top: 1px;
        filter: blur(5px);
    }



/* Chat bubbles */
.chat-row {
    text-align: left;
}

.chat-row.me {
    text-align: right;
}

.chat-bubble {
    display: inline-block;
    font-size: 15px;
    padding: 5px 20px;
    border: 1px solid #1C3A83;
    background-color: #1C3A83;
    opacity: 0.4;
    border-radius: 10px 10px 10px 0;
    color: white;
    margin-bottom: 15px;
    text-align: left;
    max-width: 250px;
}

    .size-xl .chat-bubble, .size-lg .chat-bubble {
        max-width: 400px;
    }

    .size-md .chat-bubble {
        max-width: 350px;
    }

    .chat-bubble.me {
        background-color: #fe5e00;
        border: 1px solid #fe5e00;
        border-radius: 10px 10px 0 10px;
        color: white;
        text-align: right;
        opacity: 0.6;
    }

        .size-xl .chat-bubble.me {
        }

        .size-lg .chat-bubble.me {
        }

.system-bubble {
    margin-left: 10%;
    margin-right: 10%;
    font-size: 15px;
    border-radius: 5px;
    background-color: #F0F0F0;
    color: #444444;
    margin-bottom: 15px;
    text-align: center;
    padding: 5px 20px;
}

/* Rating */
.rating-star {
    color: #fe5e00 !important;
}

/* Panel overrides */
.panel {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 3px rgba(0,0,0, 0.2);
}

    .panel.padded {
        padding: 15px;
    } 

    .panel .content {
        padding: 15px;
    }

    .size-xs .panel {
        padding: 10px;
    }

    .popup .frame .panel {
        box-shadow: none;
        margin-bottom: 0px;
    }

    .panel.with-more-toggle {
        padding-bottom: 40px;
    }

    .panel.clickable {
        cursor: pointer;
    }

        .panel.clickable:hover {
            /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
            box-shadow: 0 4px 3px rgba(0,0,0, 0.3);
        }

    .panel .notification {
        position: absolute;
        top: 46%;
        left: 0;
        right: 0;
        height: 20px;

        text-align: center;
        color: white;
    }

    .panel .header {
        background-color: #85c227;
        color: white;
        padding: 5px 10px;
        border-radius: 5px 5px 0 0;
    }

    .panel .header-bold {
        font-weight: 600;
        font-size: 18px;
    }

        .size-xs .panel .header-bold {
            font-size: 15px;
        }

    .panel .header-normal {
        font-size: 18px;
    }

        .size-xs .panel .header-normal {
            font-size: 15px;
        }

    .panel .detail {
        font-size: 12px;
        color: #CCCCCC;
    }

    .panel .title {
        font-weight: 600;
        font-size: 24px;
    }

        .panel .title.padding-below {
            padding-bottom: 10px;
        }

        .size-xs .panel .title {
            font-size: 18px;
        }

    .panel .caption {
        background-color: white;
        padding: 5px 60px 5px 20px;
        color: #fe5e00;
        font-size: 24px;
        font-weight: 600;
        border-radius: 0 10px 10px 0;

        position: absolute;
        left: 0;
        bottom: 30px;
    }

        .size-xs .panel .caption {
            padding: 5px 20px 5px 10px;
            font-size: 18px;
        }

    .panel .icon {
        display: inline-block;
        width: 60px;
        height: 60px;
        border-radius: 30px;
        text-align: center;
        box-sizing: border-box;
        background-color: #fe5e00;
        color: white;
        font-size: 30px;
        padding-top: 5px;
    }

    .panel .logo {
        box-sizing: border-box;

        position: absolute;
        right: 10px;
        bottom: 30px;
        width: 80px;
        height: 80px;
        border-radius: 40px;
    }

        .size-xs .panel .logo {
            width: 50px;
            height: 50px;
            border-radius: 25px;
        }

        .panel .logo.image {
            background-color: white;
            border: 5px solid white;

            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
        }

        .panel .logo.letters {
            font-size: 40px;
            font-weight: 600;
            color: white;
            background-color: #fe5e00;

            padding-top: 7px;
            text-align: center;
        }

        .size-xs .panel .logo.letters {
            font-size: 22px;
        }

    .panel .fields {
        padding-top: 5px;
    }

        .panel .fields .field-header {
            font-weight: bold;
            font-size: 14px;
            display: inline-block;
            vertical-align: top;

            line-height: 25px;
        }

            .panel .fields .field-header.fixed {
                width: 170px;
            }

            .size-xs .panel .fields .field-header { 
                font-size: 13px;
            }

            .size-xs .panel .fields .field-header, .size-sm .panel .fields .field-header, .size-md .panel .fields .field-header { 
                width: 170px;
            }

        .panel .fields .field-value {
            font-size: 14px;
            display: inline-block;
            
            vertical-align: top;

            line-height: 25px;
        }

            .panel .fields .field-value.fixed-length {
                max-width: 200px;
                white-space: nowrap; 
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .size-xs .panel .fields .field-value { 
                font-size: 13px;
            }

    .panel .fieldset {
        font-size: 14px;
        margin-bottom: 10px;
    }

        .size-xs .panel .fieldset {
            font-size: 14px;
        }

        .panel .fieldset.large {
            font-size: 17px;
        }

            .size-xs .panel .fieldset.large {
                font-size: 15px;
            }

        .panel .fieldset.double {
            display: inline-block;
            width: 48%;
        }

        .panel .fieldset .fieldset-header {
            font-weight: 600;
        }

        .panel .fieldset .fieldset-value {
   
        }

    .panel .controls {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .panel .more-toggle {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #FAFAFA;
        text-align: center;
        padding: 5px;
        border-radius: 0 0 10px 10px;
        cursor: pointer;
    }

        .panel .more-toggle:hover { 
            background-color: #DDDDDD;
        }

            .panel .more-toggle .more {

            }

            .panel .more-toggle .less {
                display: none;
            }

    .panel .tag {
        font-size: 14px;
        background-color: #fe5e00;
        color: white;
        padding: 5px 10px;
        display: inline-block;
        border-radius: 10px;
    }

    .panel .detail-panel {
        position: relative;
        padding: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        margin-bottom: 15px;
        margin-right: 10px;
    }


        .panel .detail-panel.with-more-toggle {
            padding-bottom: 40px;
        }

        .panel .detail-panel.clickable {
            cursor: pointer;
        }

        .panel .detail-panel.clickable:hover {
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
        }

        .panel .detail-panel .more-toggle {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 5px;
            border-radius: 0;
            cursor: pointer;
        }

            .panel .detail-panel .more-toggle:hover { 
                background-color: rgba(0, 0, 0, 0.2);
            }

                .panel .detail-panel .more-toggle .more {

                }

                .panel .detail-panel .more-toggle .less {
                    display: none;
                }

.mobile-app .panel {
    box-shadow: none;
    border-radius: 0;
}

.mobile-app .container {
    padding-left: 0;
    padding-right: 0;
}

/* Button overrides */
.btn {
    margin-bottom: 3px;
    cursor: pointer;
}

.btn-primary {
    min-width: 150px;
    background-color: #85c227;
    border-color: #85c227;
}

    .btn-primary:hover {
        background-color: #75B217;
        border-color: #75B217;
    }

    .btn-primary:disabled {
        color: white;
        background-color: #CCCCCC;
        border: 1px solid #CCCCCC;
    }

.btn-success {
    min-width: 150px;
}

.btn-danger {
    min-width: 150px;
    background-color: red;
    border-color: red;
}

.btn-outline-primary {
    min-width: 150px;
    color: #85c227;
    border-color: #85c227;
}

    .btn-outline-primary:hover {
        color: #85c227;
        background-color: #FAFAFA;
        border-color: #85c227;
    }

    .btn-outline-primary:disabled {
        color: #CCCCCC;
        background-color: #FFFFFF;
        border: 1px solid #CCCCCC;
    }

.btn-secondary {
    background-color: #1C3A83;
    border-color: #1C3A83;
}

    .btn-secondary.active {
        background-color: #5E5AC3 !important;
        border-color: #5E5AC3 !important;
    }

    .btn-secondary:hover {
        background-color: #0C2A73;
        border-color: #0C2A73;
    }

.btn-outline-secondary {
    color: #1C3A83;
    border-color: #1C3A83;
}

    .btn-outline-secondary.active {
        background-color: #1C3A83 !important;
        border-color: #1C3A83 !important;
    }

    .btn-outline-secondary:hover {
        background-color: #FAFAFA;
        border-color: #1C3A83;
    }


/* NavBar overrides */
.navbar.bg-light {
    background-color: white !important;
}

.navbar .nav-item .nav-link {
    position: relative;
    display: none;
    cursor: pointer;
    color: black;
    font-weight: 600;
}

    .navbar .nav-item .indicator {
        display: none;
        position: absolute;
        top: 4px;
        right: -3px;
        color: #85c227;
        font-size: 12px;
    }

    .navbar .nav-item .nav-link.active {
        color: #85c227;
    }

/* Popout navbar */
.navbar-popout {
    z-index: 10000;
    position:absolute;
    top:56px;
    left:0;
    right:0;
    background-color:#FAFAFA;
    text-align:center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

    .navbar-popout .nav-item {
        cursor: pointer;
    }

    .navbar-popout .nav-item .indicator {
        display: none;
        color: #FE5E00;
    }

    .navbar-popout .nav-item .nav-link.active {
        color: #fe5e00;
    }

    .navbar-popout .nav-item:hover {
        background-color: white;
    }


/* Advanced Tab Control overrides */
.info-tab-controls {
    margin-bottom: 30px;
}

/* Calendar overrides */
.date-picker .date-picker-popout {
    padding: 0 !important;
    width: 303px !important;
}

.calendar {
    font-size: 10px;
}

/* Field overrides */
.field {
    font-size: 14px;
    vertical-align: top;
}

    .field label {
        font-weight: 600;
        margin-bottom: 0;
    }

    .field .details {
        font-size: 11px;
        color: #AAAAAA;
        margin-left: 5px;
        vertical-align: top;
        display: inline-block;
        margin-top: 6px;
    }

.field .field-border {
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

.field.shortfield {
}

    .field.shortfield label {
        display: block;
    }

    .field.shortfield input {
        width: 100px;
    }

.field-description {
    font-size: 11px;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 15px;
}

.items-box {
    min-width: 100px !important;
}

.form-control {
    font-size: 14px;
}

.form-control:disabled, .form-control[readonly] {
    background-color: transparent;
}

/* Input group overrides */
.input-group {
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    height: 30px;
}

    .input-group .form-control {
        border: none;
    }

/* Worktimes overrides */
.worktimes-dayrow.simple {
    width: 120px;
    font-size: 14px;
}

.worktimes-dayrow.simple div {
    vertical-align: top;
    margin-top: 4px;
}

/* Validation */
.validation-incorrect {
    font-size: 14px;
    color: red;
    text-align: center;
}

/* Internal controls overrides (fix after complete rollout) */
.bubbles-control .bubble {
    padding: 3px 20px !important;
}

.items-box label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: middle !important;
    margin-right: 10px;
}

.items-box label span {
    display: inline-block;
    vertical-align: middle !important;
    margin-top: 0 !important;
}

.size-xs .popup .frame .skill-dialog {
    padding: 5px;
}

.mobile-app .floats-in-app {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

    .mobile-app .floats-in-app .btn {
        border-radius: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    }