﻿#status-modal {
    text-align: center;

    .modal-dialog {
        padding-top: 120px;
    }

    .modal-footer {
        padding: 10px;
        text-align: center;

        .invite-friends-btn {
            width: 200px;
            margin: 0 auto;
            text-align: center;
        }
    }

    .modal-body {
        .dismiss {
            position: absolute;
            right: 15px;
        }

        .status-title {
            font-size: 25px;
            margin-bottom: 5px;
        }

        .status-desc {
            font-size: 15px;
        }
    }

    .btn-cta {
        border: 1px solid grey;
        padding: 6px;
        border-radius: 5px;
        cursor: pointer;
    }

    .btn-dismiss {
        border: 1px solid grey;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
    }
}

.dz-image-preview {
    float: left;
    margin-left: 25px;
}

.selectize-dropdown-content {
    img {
        width: 80px;
        height: 80px;
        float: left;
    }

    .product-id {
        color: #a19f9f;
        font-size: 12px;
    }
}

.feedbackreport {
    @colorBlue: #0076B6;
    @colorWhite: white;
    @borderColor: #e6e6e6;
    @greyBackground: #f3f3f3;
    @colorRed: red;
    @colorGreen: green;
    @colorGrey: grey;

    margin-left: 15px;

    a {
        cursor: pointer;
    }

    input:focus {
        border: 1px solid @borderColor;
    }

    .blue-btn {
        border-radius: 0px;
        background-color: @colorBlue;
        color: @colorWhite;
        height: 26px;
        width: 94px;
        padding: 0;
    }

    .section-datefilter {
        background-color: @greyBackground;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-right: 0;
        padding-left: 0;
        display: flex;

        label {
            padding-top: 2px;
        }

        input {
            border-color: @borderColor;
            color: @colorGrey;
            border-style: solid;
            margin-left: 10px;
            margin-right: 10px;
        }

        .normal-label {
            color: @colorGrey;
        }

        .red-label {
            color: @colorRed;
        }

        &.detail-active {
            justify-content: space-between;
        }

        &.detail-unactive {
            justify-content: flex-start;
            padding-left: 15px;
        }
    }

    .section-title {
        padding-left: 0;
        position: relative;
        left: -20px;
        font-size: 20px;
        font-weight: bold;
    }

    .section-table {
        margin-top: 15px;
        margin-left: -15px;
        padding-right: 0;
        padding-left: 0;

        table {
            th {
                background-color: @greyBackground;
                border: thin solid @borderColor;
                padding: 15px;
            }

            tr {
                td {
                    padding: 15px;
                    border: thin solid @borderColor;
                }

                &:nth-child(2n+1) td {
                    background-color: @greyBackground;
                }

                td:nth-child(3) {
                    color: @colorGreen;
                }

                td:nth-child(4) {
                    color: @colorRed;
                }
            }
        }
    }

    .section-pagination {
        #pagination-block {
            float: right;
            margin-top: 5px;
        }

        .active {
            span {
                background-color: @colorGrey;
            }
        }
    }

    .section-report-detail {
        color: @colorGrey;
        padding: 0;
        position: relative;
        left: -15px;

        .section-detail-top {
            padding-left: 0;
            margin: 15px 0;
            padding-right: 0;

            table {
                th {
                    color: black;
                    background-color: @greyBackground;
                }

                th, td {
                    padding: 10px 5px 10px 5px;
                    border: thin solid @borderColor;
                }

                td:nth-child(2) {
                    color: @colorGreen;
                }

                td:nth-child(3) {
                    color: @colorRed;
                }
            }
        }

        .section-detail-bottom {
            padding-left: 0;
            margin: 15px 0;
            padding-right: 0;

            table {
                th {
                    color: black;
                    background-color: @greyBackground;
                }

                th, td {
                    padding: 10px 5px 10px 5px;
                    border: thin solid @borderColor;
                }

                td:nth-child(3) {
                    color: @colorGreen;
                }

                td:nth-child(4) {
                    color: @colorRed;
                }
            }
        }
    }
}

.memberContainer{
    background-color: white!important;
}