@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&family=Pacifico&family=Roboto:wght@100;400;500&display=swap');

/* GENERAL */

/*body {*/
/*    margin: 0;*/
/*    color: #000;*/
/*    fill: #d0d3d8;*/
/*    font-family: 'Roboto';*/
/*    font-size: 14px;*/
/*    background: #fff;*/
    /* background-image: url("../image/pcs-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover; */
    /* background-blend-mode: color-burn; */
/*}*/

.dropdown {
    outline: none;
}

    .dropdown.active .dropdown-options {
        display: block;
    }

.dropdown-options {
    display: none;
    position: absolute;
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.3);
    min-width: 200px;
    background-color: #FFF;
}

    .dropdown-options .dd-item {
        width: calc(100% - 16px);
        min-height: 32px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0 8px;
        cursor: pointer;
    }

        .dropdown-options .dd-item a {
            text-decoration: none;
            color: #8484a5;
        }

.container-form {
    padding: 15px 0;
    width: 100%;
}

a {
    text-decoration: none;
    color: #6e82a3;
    outline: none;
    fill: #6e82a3;
}

input {
    color: #6e82a3;
    font-family: 'Roboto';
    font-size: 14px;
    outline: none;
}

    input::-webkit-input-placeholder {
        color: #DDD;
    }

button {
    color: #6e82a3;
    font-size: 14px;
}

.separator {
    padding: 20px;
    width: 100%;
}

.field-input.error {
    background-color: #efdcdc;
    border: 1px solid #e4b0b0 !important;
}

.custom-select.error .value {
    background-color: #efdcdc;
    border: 1px solid #e4b0b0;
}

.error-msg .item {
    color: #b75f5f;
    margin-bottom: 5px;
    font-size: 13px;
}

.hide {
    display: none !important;
}


/* MAIN ENTRIES */
.main-entries {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

    .main-entries .entry {
        width: 100%;
    }

/* VIEW BASE */
.view-base {

}

    .view-base .view-header {
        margin-bottom: 20px;
    }

        .view-base .view-header .item {
            display: flex;
            flex-direction: row;
            align-items: center;
            font-weight: 500;
            font-size: 18px;
        }

            .view-base .view-header .item .icon {
                width: 35px;
                height: 35px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }

            .view-base .view-header .item .text {
                display: flex;
                align-items: center;
            }

        .view-base .view-header .small-text {
            font-size: 13px;
            font-weight: normal;
            color: #b1b1d1;
            padding-left: 35px;
        }

    .view-base .manage-list {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 10px;
    }

        .view-base .manage-list .item {
            display: flex;
            flex-direction: row;
            align-items: center;
            height: 32px;
            border: 1px solid #d3d7e0;
            border-radius: 2px;
            padding: 0 8px 0 3px;
            cursor: pointer;
            color: #1e86ff;
            fill: #1e86ff;
        }

            .view-base .manage-list .item .icon {
                height: 30px;
                width: 30px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }

            .view-base .manage-list .item .text {
                display: flex;
                align-items: center;
            }

/* LIST BASE */
.list-base {
    width: 100%;
}

    .list-base .no-record {
        width: 100%;
        min-height: 200px;
        border: 4px dashed #e1e9f5;
        background-color: #f2f8ff;
        color: #1e86ff;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .list-base .list-item {
        margin-bottom: 15px;
        min-height: 60px;
        border: 1px solid #d3d7e0;
        border-radius: 6px;
        box-shadow: 0 0 2px 1px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 15px;
        align-items: center;
    }

        .list-base .list-item .item-name {
            display: flex;
            flex-direction: row;
            margin-bottom: 5px;
        }

            .list-base .list-item .item-name .icon {
                height: 22px;
                width: 22px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin-right: 5px;
            }

            .list-base .list-item .item-name .text {
                font-size: 16px;
                font-weight: 500;
                display: flex;
                align-items: center;
            }

        .list-base .list-item .item-detail {
            display: flex;
            flex-direction: row;
            align-items: center;
            flex-wrap: wrap;
        }

            .list-base .list-item .item-detail .item {
                display: flex;
                flex-direction: row;
                margin-right: 12px;
            }

                .list-base .list-item .item-detail .item .icon {
                    height: 20px;
                    width: 20px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    margin-right: 4px;
                }

                .list-base .list-item .item-detail .item .text {
                    display: flex;
                    align-items: center;
                }

                    .list-base .list-item .item-detail .item .text span {
                        margin-left: 3px;
                        color: #6ea387;
                    }

        .list-base .list-item .manage {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

            .list-base .list-item .manage .icon {
                width: 35px;
                height: 35px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin-left: 5px;
                fill: #bcc7dc;
                cursor: pointer;
            }

                .list-base .list-item .manage .icon:hover {
                    fill: #1e86ff;
                }

/* FORM FIELD */
.form-row {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

    .form-row .form-field {
        width: 100%;
        margin-right: 10px;
    }

        .form-row .form-field:last-child {
            margin-right: 0;
        }

        .form-row .form-field .field-label {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 3px;
        }

            .form-row .form-field .field-label .icon {
                height: 20px;
                width: 20px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin-right: 3px;
            }

            .form-row .form-field .field-label .text {
                display: flex;
                align-items: center;
            }

        .form-row .form-field .field-input {
            border: 1px solid #d3d7e0;
            height: 36px;
            padding: 0 8px;
            width: calc(100% - 17px);
            border-radius: 4px;
        }

        .form-row .form-field textarea.field-input {
            resize: none;
            outline: none;
            height: 180px;
            padding: 8px;
            font-size: 14px;
            font-family: 'Roboto';
            color: #546a7a;
        }

.form-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
    right: 9px;
}

    .form-buttons .form-button {
        background-color: transparent;
        border: 1px solid #d3d7e0;
        height: 36px;
        min-width: 70px;
        text-align: center;
        margin-left: 8px;
        border-radius: 4px;
    }

    .form-buttons .save {
        background-color: #1e86ff;
        border: 1px solid #1e86ff;
        color: #FFF;
    }

/* CSS FOR SPECIFIC ELEMENTS */
.form-field #Location {
    font-size: 16px;
    font-weight: 500;
}

.title-field {
    width: 30% !important;
}

#client-details {
    padding-left: 2px;
}

.client-item {
    cursor: pointer;
}

    .client-item.active {
        border: 1px solid #97c27d;
        box-shadow: 0 0 4px 2px #97c27d;
    }

        .client-item.active .icon {
            fill: #97c27d !important;
        }

/*#request-submit-buttons {*/
/*    justify-content: space-between;*/
/*}*/

    #request-submit-buttons .additional {
        margin-left: 0;
        background-color: #303b45;
        border: 1px solid #303b45;
        color: #EEE;
        cursor: pointer;
    }

    #request-submit-buttons button {
        min-width: 120px;
        text-align: center;
    }

/* ALLOCATION BASE */
.allocation-base {
    margin-bottom: 10px;
}

/*.tabs-form {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    margin-bottom: 20px;*/
/*}*/

/*    .tabs-form .item {*/
/*        min-width: 70px;*/
/*        text-align: center;*/
/*        padding: 5px 0;*/
/*        border-bottom: 3px solid #FFf;*/
/*        cursor: pointer;*/
/*        margin-right: 8px;*/
/*    }*/

/*        .tabs-form .item.active {*/
/*            border-bottom: 3px solid #1e86ff;*/
/*        }*/

.allocation-base .allocate {
    width: 100%;
    display: none;
}

    .allocation-base .allocate.active {
        display: flex;
        flex-direction: row;
    }

    .allocation-base .allocate .group {
        border: 1px solid #d3d7e0;
        width: 100%;
        margin-right: 10px;
    }

        .allocation-base .allocate .group:last-child {
            margin-right: 0;
        }

    .allocation-base .allocate .group-title {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 28px;
        background-color: #f6f8fa;
    }

    .allocation-base .allocate .group .search input {
        padding: 8px 5px;
        width: calc(100% - 10px);
        border: 0;
        border-bottom: 1px solid #d3d7e0;
    }

    .allocation-base .allocate .group .item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid #EEE;
        fill: #beced9;
        background-color: #FFF;
        min-height: 55px;
    }

    .allocation-base .allocate .group.added .item.isparent {
        width: calc(100% - 8px);
    }

    .allocation-base .allocate .group .item .sides {
        display: flex;
        flex-direction: row;
    }

    .allocation-base .allocate .group .item .prefix {
        align-items: flex-start;
    }

        .allocation-base .allocate .group .item .prefix .start {
            width: 2px;
            height: 28px;
            background-color: #beced9;
        }

        .allocation-base .allocate .group .item .prefix .hline {
            height: 2px;
            width: 15px;
            background-color: #beced9;
        }

        .allocation-base .allocate .group .item .prefix .end {
            width: 2px;
            height: calc(100% - 19px);
            background-color: #beced9;
        }

    .allocation-base .allocate .group .item .pointer-base {
        margin-left: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-right: 5px;
    }

        .allocation-base .allocate .group .item .pointer-base .ptr {
            border-left: 6px solid #beced9;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

    .allocation-base .allocate .group .item .icon {
        width: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #515f6d;
        fill: #EEE;
        cursor: pointer;
    }

        .allocation-base .allocate .group .item .icon.expand {
            background-color: #f3f5f7;
            fill: #beced9;
        }

            .allocation-base .allocate .group .item .icon.expand:hover {
                background-color: #e8f2ff;
                fill: #1e86ff;
            }

        .allocation-base .allocate .group .item .icon:hover {
            background-color: #627180;
            fill: #FFF;
        }

    .allocation-base .allocate .group .item .text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4px;
    }

    .allocation-base .allocate .group .item .small-text {
        font-size: 12px;
        color: #CCC;
        padding: 2px 0;
    }

    .allocation-base .allocate .group .expanded {
        display: block;
    }

    .allocation-base .allocate .group .multiple.active > .expanded {
        display: block;
    }

    .allocation-base .allocate .group .expanded .item {
        padding-left: 12px;
        border-bottom: 0;
        width: calc(100% - 12px);
    }

        .allocation-base .allocate .group .expanded .item:last-child .end {
            visibility: hidden;
        }

        .allocation-base .allocate .group .expanded .item:last-child {
            border-bottom: 1px solid #EEE;
        }

    .allocation-base .allocate .added .expanded .item .icon {
        margin-right: 20px;
    }

    .allocation-base .allocate .added .expanded .item {
        padding-left: 0;
        width: 100%;
    }

    .allocation-base .allocate .added .multiple > .item {
        padding-left: 8px;
    }

    .allocation-base .allocate .group .items {
        min-height: 300px;
        max-height: 300px;
        overflow: auto;
        background-color: #f8f9f9;
    }

    .allocation-base .allocate .available .item .remove {
        display: none;
    }

.allocation-base .group .allocate .available .item {
    padding-left: 8px;
}

.allocation-base .group .isparent {
    min-height: 28px !important;
    background-color: #515f6d !important;
    color: #EEE;
}

    .allocation-base .group .isparent .icon {
        background-color: #515f6d !important;
    }

.allocation-base .group .isparent {
}

    .allocation-base .group .isparent .text {
        justify-content: center;
    }

.allocation-base .allocate .added .item .add {
    display: none;
}

.allocation-base .allocate .group .no-record {
    height: 250px;
    width: calc(100% - 4px);
    border: 2px dashed #f3f5f7;
    display: none;
    color: #abb9c7;
}

    .allocation-base .allocate .group .no-record.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

/* CUSTOM SELECT */
.custom-select .value {
    padding: 0px 8px;
    min-height: 36px;
    border: 1px solid #d3d7e0;
    border-radius: 4px;
    width: calc(100% - 16px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .custom-select .value .icon {
        width: 20px;
        height: 20px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .custom-select .value .text {
        display: flex;
        align-items: center;
    }

.custom-select .select-options {
    position: absolute;
    background-color: #FFF;
    border: 1px solid #d3d7e0;
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.2);
    border-radius: 4px;
    min-width: 250px;
    display: none;
}

    .custom-select .select-options .search-option {
        width: 100%;
        border-bottom: 1px solid #EEE;
    }

        .custom-select .select-options .search-option input {
            border: 0;
            outline: none;
            padding: 7px 6px;
            width: calc(100% - 12px);
        }

.custom-select.active .select-options {
    display: block;
}

.custom-select .select-options .options {
    max-height: 200px;
    overflow: auto;
}

    .custom-select .select-options .options .item {
        height: 36px;
        display: flex;
        align-items: center;
        padding: 0 8px;
        border-bottom: 1px solid #EEE;
        cursor: pointer;
    }

.custom-select .select-options .create-view {
    padding: 10px;
    display: none;
}

    .custom-select .select-options .create-view.active {
        display: block;
    }

    .custom-select .select-options .create-view input:focus {
        border: 1px solid #08c;
    }

.custom-select .select-options .cancel-create {
    color: #AAA;
}

.custom-select .select-options .create-item {
    padding: 8px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #d3d7e0;
    box-shadow: 0px -1px 2px rgba(0,0,0,0.2);
}

.custom-select .select-options button {
    border: 0;
    background-color: transparent;
    color: #1e86ff;
    cursor: pointer;
}

/* CUSTOM CHECKBOX */
.custom-checkbox {
    display: flex;
    flex-direction: row;
}

    .custom-checkbox .icon {
        display: flex;
        flex-direction: row;
        padding: 1px;
        border: 2px solid #d3d7e0;
        margin-right: 8px;
        cursor: pointer;
    }

        .custom-checkbox .icon > div {
            width: 14px;
            height: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            fill: #d3d7e0;
        }

        .custom-checkbox .icon svg {
            visibility: hidden;
        }

    .custom-checkbox.active .icon {
        border: 2px solid #1e86ff;
    }

        .custom-checkbox.active .icon svg {
            visibility: visible;
            fill: #1e86ff;
        }

    .custom-checkbox .text {
        display: flex;
        align-items: center;
    }

/* SELECT CARD */
.select-card-base {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .select-card-base .select-card {
        width: 250px;
        height: 180px;
        margin: 0 10px 10px 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: #303b45;
        color: #FFF;
        cursor: pointer;
        box-shadow: 0 0 4px 2px rgba(0,0,0,0.4);
        border-radius: 20px;
    }

        .select-card-base .select-card:nth-child(2n + 2) {
            /*color: #f5b9a6;*/
        }

/* MODEL ITEM */
.model-item {
    cursor: pointer;
}

    .model-item.active {
        border: 1px solid #97c27d;
        box-shadow: 0 0 4px 2px #97c27d;
    }

        .model-item.active .icon {
            fill: #97c27d !important;
        }

/*Hide bar for mobile*/

.m-menu {
    display: none;
}

/*Hide navbar desktop*/

.mnb {
    display: none;
}

/*Start media query*/

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .container-form {
        width: 100%;
        min-width: 0;
        padding-top: 60px;
        position: relative;
    }

    /*Start md navbar */

    .mnb {
        display: flex;
    }

    .dnb {
        display: none;
    }

    .m-menu {
        display: block;
    }


    .navbar .app-name {
        padding: 5px 8px;
        width: 100%;
        max-width: 188px;
    }

    .navbar .dropdown {
        width: 50%;
        margin: 15px 10px;
        justify-content: end;
        display: flex;
    }

    .dropdown-options {
        width: 100%;
        min-width: 0;
        z-index: 10;
        position: absolute;
        top: 51px;
    }

        .dropdown-options .dd-item {
            min-height: 41px;
            padding: 0 18px;
        }

    /*End md navbar */

    /*Start md sidenav*/
    .side-navbar {
        background: #ffffff;
        min-width: 203px;
        position: fixed;
        left: 0;
        top: 50px;
        margin-left: -207px;
        height: 100vh;
        z-index: 5 !important;
        transition: 0.5s !Important;
    }

        .side-navbar.active {
            margin-left: 0;
            box-shadow: 1px 2px 3px #cccccc5c;
        }

            .side-navbar.active .o-m {
                display: none;
            }

            .side-navbar.active .c-m {
                display: block;
            }

        .side-navbar .item.active {
            border-radius: 0;
        }

    .m-menu {
        position: absolute;
        top: 0;
        right: -33px;
    }

    .c-m {
        display: none;
    }

    /*End md sidenav*/

    /*Start allocation section */

    .allocation-base {
        overflow: auto !important;
    }

        .allocation-base .allocate .group {
            min-width: 300px;
        }

    /*End allocation section */

    /*Start Demonstrator form*/

    .separator {
        padding: 10px;
    }

    .form-row {
        flex-wrap: wrap;
    }

        .form-row .form-field {
            margin-right: 0;
            padding: 10px 0;
        }

    /*End Demonstrator form*/
}

@media screen and (orientation:landscape) and (min-device-width: 667px) and (max-device-width: 915px) {
    .container-form {
        width: 100%;
    }
}

/*End media query*/

/* VIEW PATH */
.view-path {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 2px;
}

    .view-path .item {
        display: flex;
        align-items: center;
        margin-right: 5px;
        cursor: pointer;
        font-size: 13px;
        color: #899fb6;
    }

        .view-path .item:hover {
            color: #08c;
        }

    .view-path .icon {
        display: flex;
        align-items: center;
        height: 20px;
        width: 12px;
        justify-content: center;
        margin-right: 5px;
        fill: #899fb6;
    }

/*Start media query */

@media only screen and (max-width: 600px) {
    .select-card-base .select-card {
        width: 100%;
    }
}
/*End media query */

