﻿/* Poultry main page */

#poultrySolverTableSection {
    width: 95%;
    margin:0 auto;
}

#poultrySolverTable_wrapper {
    margin-bottom: 20px;
}
    #planListDetailID #objectDetaiId {
    margin-top: 2em;
    padding-left: 45px;
}

#objectDetaiId .nav-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#objectDetaiId .nav-tabs li {
    width: 50%;
    border-left: 1px solid #fff;
}

#objectDetaiId .nav-tabs li a {
    width: 100%;
    padding: 10px 0;
    font-size: 12px;
    color: #262f41;
    text-align: center;
    background: #dddde2;
    border: 1px solid transparent;
    border-radius: 0;
    text-transform: uppercase;
}

#objectDetaiId .nav-tabs li.active a {
    color: #fff;
    background: #262f41;
    border: 1px solid #262f41;
}

#farmerReportTab {
    padding: 20px 0;
}

#farmerReportTab table th {
    position: relative;
    color: #fff;
    background: #262f41;
}

/*  End Poultry main page */

.questionnaireSection {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 95%;
    margin: 30px auto;
}

.tab {
    display: none;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .5s;
}
@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.widgetSection {
    margin-left: 2em;
}

.widgetSection #containerGraph .highcharts-background {
    fill: #f8f8f8;
}

.widgetSection #containerGraph.red .highcharts-color-0 {
    fill: #ef5452;
}

.widgetSection #containerGraph.orange .highcharts-color-0 {
    fill: #FFA500;
}

.widgetSection #containerGraph.green .highcharts-color-0 {
    fill: #06AE06;
}

.widgetSection #containerGraph .highcharts-button {
    display: none;
}
    
#questionnaireForm {
    min-width: 68%;
}

#questionnaireForm .questionnaireHeadline {
    padding: 10px;
    background: #262f41;
}

#questionnaireForm .questionnaireHeadline h4 {
    margin: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

#questionnaireForm .questionnaireBody {
    padding: 20px 10px;
    border: 1px solid #eee;
}

#questionnaireForm section .question {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 5px 0;
}

#questionnaireForm section .question .questionText{
    width: 80%;
}

.buttonGroup {
    position: relative;
}
.question input[type="radio"] {
    display: none;
}
.question input[type="radio"] + label {
    color: #000;
    cursor: pointer;
    user-select: none;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: normal;
}
.question input[type="radio"] + label::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #bbb;
    font-size: 0;
    position: absolute;
    top: -8px;
    left: 0;
    transform: translate(-50%, 50%);
}

 .question input[type="radio"] + label:nth-child(4)::before {
     right: 35px;
     left: auto;
 }

.question input[type="radio"] + label::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbbbbb;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, 50%);
}

.question input[type="radio"] + label:nth-child(4)::after {
    right: 43px;
    left: auto;
}

.question input[type="radio"]:checked + label::before {
    border-width: 2px;
    border: 1px solid #262f41;
}

.question input[type="radio"]:checked + label::after {
    background-color: #262f41;
}

.resultTab {
    text-align: center;
}

.resultTab span {
    display: block;
    color: #cc0000
}

.resultTab .result {
    display: block;
    margin-top: 10px;
    font-size: 20px;
    color: #000;
}

.resultTab ul li:first-child {
    margin-top: 10px;
}

.errorField {
    position: relative;
    display: none;
    width: auto;
    margin: 10px auto;
    padding: 10px;
    color: #cc0000;
    background: rgba(204,0,0,0.2);
    border: 1px solid rgb(204, 0, 0);
    border-left: 10px solid;
    text-align: center;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .5s;
}

.errorField #closeBtn {
    position: absolute;
    top: 0;
    right: 10px;
    color: #cc0000;
    cursor: pointer;
}

.buttonGroup input:last-child {
    margin-left: 15px;
}

.navigationButtons {
    margin-top: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.navigationButtons button,
.navigationButtons .backBtn {
    display: none;
    min-width: 150px;
    padding: 3px 6px;
    color: #fff;
    background: #262f41;
    border: 1px solid #262f41;
    border-radius: 4px;
    text-align: center;
    outline: none;
    box-shadow: none;
}

.navigationButtons #nextBtn,
.navigationButtons .backBtn {
    margin-left: 15px;
}

.navigationButtons .backBtn:hover,
.navigationButtons .backBtn:focus {
    color: #fff;
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

#chatNotifficationStressId {
    background-color: white;
    height: 190px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 10px;
    border-left: 5px solid red;
    background-position: bottom;
    position: relative;
    overflow: hidden;
}

#chatNotifficationNoStressId {
    background-color: white;
    height: 190px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 10px;
    border-left: 5px solid #80e0ae;
    background-position: bottom;
    position: relative;
    overflow: hidden;
}
.stressHeader {
    position: absolute;
    width: 100%;
    margin-top: 15px;
}
.stressHeader b {
    margin-left: 25px;
}
.stressHeader i {
    margin-right: 25px;
    right: 0px;
}
.stressText {
    position: absolute;
    margin-top: 55px;
    margin-left: 170px;
    width: calc(100% - 362px);
    height: 66%;
    font-size: 15px;
    z-index: 10 !important;
}
.noStressHeader {
    position: absolute;
    width: 100%;
    margin-top: 15px;
}
.noStressHeader b {
    margin-left: 25px;
}
.noStressHeader i {
    margin-right: 25px;
    right: 0px;
}
.noStressText {
    position: absolute;
    margin-top: 55px;
    margin-left: 170px;
    width: calc(100% - 365px);
    height: 66%;
    font-size: 15px;
    z-index: 10 !important;
}
.closeWindow {
    cursor: pointer;
    float: right;
    position: absolute;
}
.showImages {
    position: absolute;
    bottom: 12px;
    left: 30px;
}
#confirmAlarmId {
    position: absolute;
    bottom: 12px;
    left: 430px;
    z-index: 10 !important;
}
.selectionStress {
    position: absolute;
    bottom: 12px;
    left: 230px;
    width: 180px;
    font-weight: 500;
    background-color: transparent;
    z-index: 10 !important;
    display: block;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    border: 1px solid #262f41;
    /*-webkit-box-shadow: inset 0 1px 1px rgba(38, 47, 65, 0.175);
    box-shadow: inset 0px 1px 1px rgba(250, 0, 0, 0.175), 1px 1px 1px rgba(38, 47, 65, 0.175);*/
    border-radius: 4px;
}
.selectionStress:focus { 
    -webkit-box-shadow: inset 0 1px 1px rgba(38, 47, 65, 0.175);
    box-shadow: inset 0px 1px 1px rgba(38, 47, 65, 0.175), 1px 1px 1px rgba(38, 47, 65, 0.175);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.selectionStress option {
    color: #333333;
}
.stressChickenImageIcon {
    position: absolute;
    width: 55px;
    height: 55px;
    top: 60px;
    left: 55px;
    z-index: 10 !important;
}
.stressChickenImage {
    position: absolute;
    width: 90px;
    height: 120px;
    top: 35px;
    right: 80px;
    z-index: 10 !important;
}
.stressBckgImage {
    position: absolute;
    background: url('../img/poultry/stressBckg.png');
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: cover;
    width: 103%;
    height: 116px;
    bottom: -4px;
    z-index: 0 !important;
}
.noStressChickenImageIcon {
    position: absolute;
    width: 55px;
    height: 55px;
    top: 60px;
    left: 55px;
    z-index: 10 !important;
}
.noStressChickenImage {
    position: absolute;
    width: 115px;
    height: 100px;
    top: 55px;
    right: 60px;
    z-index: 10 !important;
}
.noStressBckgImage {
    position: absolute;
    background: url('../img/poultry/noStressBckg.png');
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: cover;
    width: 103%;
    height: 116px;
    bottom: -4px;
    z-index: 0 !important;
}

.hensDashboardContainer{
    margin-top:190px !important;
}

#graphId {
    margin-left: 15px;
    margin-right: 15px;
}
/* questionnaire media query for mobile phones */
@media only screen and (max-width: 767px) {
    .welcomeSection button {
        width: 100%;
        margin-top: 20px;
    }

    #questionnaireForm section .question {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .buttonGroup {
        margin-left: 10px;
    }
    .showImages {
        left: 20px;
    }
    .stressText {
        margin-left: 82px;
        width: calc(100% - 108px);
        font-size: 14px;
        z-index: 11 !important;
    }
    .stressChickenImageIcon {
        top: 67px;
        left: 13px;
    }
    .stressChickenImage {
        display: none;
    }
    .noStressText {
        margin-left: 100px;
        width: calc(100% - 122px);
        font-size: 14px;
        z-index: 11 !important;
    }
    .noStressChickenImageIcon {
        top: 67px;
        left: 13px;
    }
    .noStressChickenImage {
        display: none;
    }
}
/* end media query for mobile phones */

/* questionnaire media query for tablet */

 @media only screen and (min-width: 768px) and (max-width: 1024px) {
    #questionnaireForm section .question > div:nth-child(1) {
        width: 75%;
    }


    .showImages {
        left: 20px;
    }
    .stressText {
        margin-left: 82px;
        width: calc(100% - 198px);
        font-size: 14px;
    }
    .stressChickenImageIcon {
        top: 67px;
        left: 13px;
    }
    .stressChickenImage {
        top: 35px;
        right: 17px;
    }
    .noStressText {
        margin-left: 100px;
        width: calc(100% - 260px);
        font-size: 14px;
    }
    .noStressChickenImageIcon {
        top: 67px;
        left: 13px;
    }
    .noStressChickenImage {
        position: absolute;
        right: 15px;
    }
 }

@media only screen and (min-width: 1023px) and (max-width: 1524px) {
    .showImages {
        left: 20px;
    }
    .stressText {
        margin-left: 95px;
        width: calc(100% - 223px);
        font-size: 15px;
    }
    .stressChickenImageIcon {
        top: 67px;
        left: 25px;
    }
    .stressChickenImage {
        top: 35px;
        right: 31px;
    }

    .noStressText {
        margin-left: 100px;
        width: calc(100% - 260px);
        font-size: 15px;
    }
    .noStressChickenImageIcon {
        top: 67px;
        left: 25px;
    }
    .noStressChickenImage {
        position: absolute;
        right: 30px;
    }
}

@media only screen and (max-width: 1250px) {
    .securityQuestionare .col-md-5 {
        transform: translateX(-100px);
        margin-top: 30px;
    }

    .securityQuestionare .col-md-7 {
        width: initial;
    }
}
    /* end questionnaire media query for tablet */

    /* Start plan list */

    .addButton {
        padding: 6px 12px;
        color: #fff;
        background: #262f41;
        border-radius: 4px;
    }

        .addButton i {
            margin-right: 10px;
        }

        .addButton:hover,
        .addButton:focus,
        .tableButton:hover,
        .tableButton:focus {
            color: #fff;
            text-decoration: none;
            opacity: 0.9;
            outline: none;
            box-shadow: none;
        }

    .tableButton {
        display: inline-block;
        width: 30px;
        padding: 3px;
        color: #fff;
        background: #262f41;
        text-align: center;
        border-radius: 4px;
    }

    #deleteModal .modal-header,
    #deleteModal .modal-footer {
        border: 0;
    }

        #deleteModal .modal-footer button {
            border: 1px solid #262f41;
            transition: all ease-in-out .3s;
        }

            #deleteModal .modal-footer button:hover,
            #deleteModal .modal-footer button:focus {
                color: #fff;
                background: #262f41;
            }


    /* End plan list */
    /* Start calculation plan */

    .dropdownTitleSection {
        margin: 10px 0;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

        .dropdownTitleSection select {
            margin-left: 0;
            margin-right: 10px;
        }

        .dropdownTitleSection h4 {
            margin-left: 20px;
        }

    .tabSection {
        margin-bottom: 2em;
        margin-top: 2em;
    }

        .tabSection .tabList {
            width: 19.7%;
        }

            .tabSection .tabList:last-child {
                width: 20%;
            }

    #henHouse .tabList {
        width: 33.3%;
    }

    #henHouse .tabListLayingHens {
        width: 50%;
    }

    #calculationTab {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: stretch;
        align-items: stretch;
    }

        #calculationTab > li > a {
            width: 100%;
            height: 100%;
            color: white !important;
            background-color: #dddee2;
            font-weight: bold;
            border-radius: 0 !important;
        }

        #calculationTab > li.active > a,
        #calculationTab > li.active > a:hover,
        #calculationTab > li.active > a:focus {
            background-color: #262f41;
        }

    .displayGrid {
        display: grid;
        grid-template-columns: auto auto;
    }

    #measurementsTab .table-responsive {
    }

    #measurementsTab .rightSection {
        margin-left: 1.5%;
        vertical-align: top;
    }

    #measurementsTab #measurementWarning {
        display: none;
    }

    #measurementsTab #dateMeasurement {
        margin-left: 15px;
    }

    #measurementsTab .measurementsInstructionSection {
        margin-bottom: 1em;
    }

        #measurementsTab .measurementsInstructionSection #measurementsInstruction {
            margin-top: 10px;
        }

    #crawTestRight #crawWarning {
        display: none;
    }

    #crawTestRight .crawInstructionSection {
        margin-bottom: 1em;
    }

        #crawTestRight .crawInstructionSection #crawInstruction {
            margin-top: 10px;
        }

    #reportTab table td a .form-control {
        cursor: pointer;
    }


    .tabSection .tab-content {
        padding: 20px 0;
    }

    .tabSection .tabDiv table thead th {
        color: #fff;
        background: #262f41;
        border: 1px solid #dadada;
    }

    .tabSection .tabDiv table tbody tr {
        border: 1px solid #dadada;
        text-align: left;
    }

        .tabSection .tabDiv table tbody tr:focus-within {
            background: #eaeaea;
        }

    .tabSection .tabDiv table tbody td {
        border: 1px solid #dadada;
        text-align: center;
        vertical-align: middle;
    }

    .tabSection .tabDiv table tbody input {
        height: 30px;
        width:100%;
    }

        .tabSection .tabDiv table tbody input:focus {
            border-color: #262f41;
            outline: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .tabSection .tabDiv table tbody input[readonly] {
            pointer-events: none;
        }

    .tabSection #calculationTableTab table tbody td input {
        width: 140px;
        display: inline-block;
    }

    .tabSection .tabDiv table tbody .tableHead {
        color: #fff;
        background: #262f41;
    }

    .tabSection .tabDiv table tbody .total {
        background: #262f41;
        color: white;
    }

    .tabSection .btnSection {
        margin-top: 10px;
        text-align: right;
    }

        .tabSection .btnSection .backButton,
        .tabSection .btnSection .btnSubmit,
        .tabSection .btnSection .btnShowChart {
            min-width: 100px;
            width: auto;
            color: #fff;
            background: #262f41;
            outline: none;
            box-shadow: none;
        }

        .tabSection .btnSection .btnSubmit,
        .tabSection .btnSection .btnShowChart {
            margin-left: 5px;
        }

            .tabSection .btnSection .btnShowChart i {
                margin-right: 5px;
            }

    #GrowthIdChartModal #GrowthId .highcharts-button {
        display: none;
    }

    #ConversionIdChartModal #ConversionId .highcharts-button {
        display: none;
    }

    #ConsumptionIdChartModal #ConsumptionId .highcharts-button {
        display: none;
    }

    #calculationChartModal #calculationChart .highcharts-button {
        display: none;
    }

    #turnusHolder button {
        width: 110px !important;
    }

    @media only screen and (max-width:980px) {
        .displayGrid {
            display: grid;
            grid-template-columns: auto;
        }
    }

    @media only screen and (min-width:1024px) {
        #calculationChartModal .modal-dialog {
            width: 900px;
        }
    }

    /* poultry solver */
    /*.poultrySolverbtnSection {
    margin: 10px 10px 0;
}*/

    .priceInfo {
        margin: 10px 0;
    }

    .poultrySolverbtnSection select {
        display: inline-block;
        height: 29px;
        padding: 0 6px;
    }

        #poultrySolverTableSection table tbody input {
            height: 30px;
        }

    #poultrySolverTable_filter {
        float: right;
    }

        #poultrySolverTable_filter input {
            width: 300px;
            margin: 10px 10px 8px;
            padding: 2px 6px;
        }

    .needsPoultry #poultrySolverTable_filter {
        visibility: hidden !important;
    }

    #poultrySolverTable {
        background: #fff;
    }

        #poultrySolverTable tbody tr {
            cursor: pointer;
        }

        #poultrySolverTable th,
        #poultrySolverTable td {
            padding: 8px 2px;
            font-size: 13px;
            line-height: 1;
            vertical-align: middle;
        }

        #poultrySolverTable .tableDataTitle {
            text-transform: uppercase;
        }

        #poultrySolverTable td input {
            width: 100%;
            text-align: center;
            min-width:40px;
        }

            #poultrySolverTable td input#item_Name {
                width: 80%;
            }

    #poultrySolverTableSection #btnAdd {
        min-width: 150px;
        padding: 3px 6px;
        color: #fff;
        background: #262f41;
        border: 1px solid #262f41;
        border-radius: 4px;
        text-align: center;
        box-shadow: none;
    }

    .minMaxTableBody input {
        height: 27px !important;
        padding: 6px;
        font-size: 13px;
        outline: none;
        box-shadow: none;
    }

    .minMaxTableBody .min input,
    .tableRestrictions .min input {
        color: #2196F3;
    }

        .minMaxTableBody .min input:focus,
        .tableRestrictions .min input:focus {
            border-color: #2196F3;
            box-shadow: none;
        }

    .minMaxTableBody .max input,
    .tableRestrictions .max input {
        color: #e45656;
    }

        .minMaxTableBody .max input:focus,
        .tableRestrictions .max input:focus {
            border-color: #e45656;
            box-shadow: none;
        }

    .minMaxTableBody input::-webkit-outer-spin-button,
    .minMaxTableBody input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
    }

    #crawTestRight #crawTestTotal {
        background: #dddee2;
    }

    #henHouseTime {
        display: inline-block;
        margin-right: 1em;
        margin-bottom: 1em;
    }

    #addTableBtn {
        display: inline-block;
        margin-bottom: 1em;
    }

    #detailModal .modal-dialog {
        width:auto;
        margin:10% 5%;
    }

    .tableRestrictions .form-control{
        width:100% !important;
        text-align:center;
        max-width:none;
    }

    #detailModal .modal-body {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    #detailModal .leftSection,
    #detailModal .rightSection {
        width: 48%;
    }

    #detailModal .form-group {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        margin-bottom:10px;
    }

        #detailModal .form-group label {
            min-width: 170px;
        }

    #detailModal .input-group {
        width: 100%;
    }

        #detailModal .input-group .input-group-addon {
            width: 30px;
            box-sizing: content-box;
        }

    #detailModal .form-group input {
        width: 100%;
        height: 30px;
        max-width:none;
    }

        #detailModal .form-group input[title="Name"] {
            border-radius: 4px;
        }

    #detailModal .modal-footer button {
        width: 100px;
        padding: 4px 12px;
        color: #262f41;
        background: transparent;
        border: 1px solid #262f41;
        border-radius: 4px;
        transition: all ease-in-out .3s;
    }

        #detailModal .modal-footer button:hover,
        #detailModal .modal-footer button:focus {
            color: #fff;
            background: #262f41;
            border: 1px solid #262f41;
        }

    /*** Poultry Tool  ***/
    #turnusHolder .ui-multiselect {
        width: 300px !important;
    }

    .poultryTool-header {
        display: flex;
        float: none;
        width: 100%;
        background-color: #fff;
        margin: 0 !important;
        padding: 20px 15px;
    }

        .poultryTool-header select {
            height: 34px;
            background: white;
            color: #262f41;
        }

            .poultryTool-header select:focus {
                border-color: #262f41;
                -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(38, 47, 65, 0.3);
                box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(38, 47, 65, 0.3);
            }

        .poultryTool-header input[type=button] {
            height: 34px;
            text-align: center;
            display: inline-block;
            width: 120px;
            background: #262f41;
            color: white;
            border: 1px solid #262f41;
        }

            .poultryTool-header input[type=button]:hover {
                -webkit-box-shadow: 0 0 4px rgba(38, 47, 65, 0.3);
                box-shadow: 0 0 4px rgba(38, 47, 65, 0.3);
            }


    /*Veliki div za grafove (prva 4 osnovna grafa)*/

    /*Manji div za osnovne grafove*/
    .poultryTool-graph-divs {
        clear: both;
        margin-top: 4vh;
    }

    .poultryTool-graph-divs-graph {
        background-color: rgba(255,255,255,0);
    }

    /*boxShadow za male grafove*/
#boxShadowPoultry {
    display: block;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    -moz-box-shadow: 0 0 15px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 0 15px 0px rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 10%);
    margin-bottom:30px;
}

    /*Red za male grafove*/

        .row-graph1::after {
            content: "";
            clear: both;
            display: table;
        }

    /*Razmak izmedju malih i velikih grafova*/

    /*Kontejner i row title je bio za naslov*/
    .header-row-container1, .header-row-container2 {
        text-align: center;
        width: 100%;
    }

    /*hr koji razdvaja male i velike grafove*/
    #header-line {
        background-color: rgba(0,0,0,0.1);
        border: none;
        width: 100%;
        border-radius: 4px;
    }

    /*.header-row-title2 {
    width: 100%;
}*/

    /*Linija koja je isla ispod naslova*/
    /*.header-title-graph1, .header-title-graph2 {
    font-size: 30px;
    font-weight: lighter;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    display: inline-block;
    line-height: 80px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}*/

    /*#graph0, #graph1 {
    display: block;
    padding: 0;
    border: 3px solid #eee;
    border-radius: 0px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}*/

    /*red za velike grafove*/
    .row-graph2 {
        margin-right: 20px;
        margin-left: 20px;
    }

        .row-graph2::after {
            content: "";
            clear: both;
            display: table;
        }

    /*boxShadow za velike grafove*/
    #boxShadowGraph {
        display: block;
        padding: 0;
        border: 3px solid #eee;
        border-radius: 0px;
        box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }

    .waterImageTableDiv {
        position: relative;
        top: 20px;
    }

    .images-poultryTool-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        width: 50vw;
        margin: 0 7vw 13px 7vw;
        height: 175px;
        padding: 14px 5px;
        position: relative;
        bottom: 12px;
        display: none;
        background-color: rgba(0, 0, 0, 0.05);
        scrollbar-width: initial;
        scrollbar-color: #4f9d50 #fafafa;
    }

        .images-poultryTool-wrapper::-webkit-scrollbar-thumb {
            background: #4f9d50;
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(116, 130, 139, 0.8);
            border-radius: 3px;
        }

            .images-poultryTool-wrapper::-webkit-scrollbar-thumb:hover {
                background: #478e48;
            }

        .images-poultryTool-wrapper::-webkit-scrollbar {
            width: 13px;
        }

        .images-poultryTool-wrapper::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
            background: rgba(250, 250, 250, 1);
            border: 1px solid rgba(116, 130, 139, 0.1);
        }

    #imagesPoultryTool {
        display: flex;
        justify-content: space-around;
    }

        #imagesPoultryTool img {
            cursor: pointer;
            width: 160px;
            position: relative;
            left: 20px;
        }

    .poultryTool-graph-divs-graph .highcharts-container,
    .poultry-graphId .highcharts-container {
        box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0,0,0,0.001);
    }

    .graphReport .highcharts-container {
        border: 1px solid rgba(0,0,0,0.03);
    }

    .poultry-graphId,
    .loader-div-graphId,
    .table-div {
        display: none;
    }

    .loader-div-graphId {
        background-color: rgba(0, 0, 0, 0.05);
        width: calc(200vw / 2 - 45px);
        margin: 15px auto 25px auto;
        height: 180px;
    }

    .table-div {
        width: 50vw;
        margin: 0 7vw;
        background-color: rgba(0, 0, 0, 0.05);
        height: 393.5px;
    }

    .dataTables_info {
        margin-left: 10px;
    }

    /*odavde krece sa manjim ekranima*/
    @media screen and (max-width: 1280px) and (min-width: 1150px) {

        .poultryTool-graph-divs-graph {
            margin: 0 0 20px 0;
        }

        /*red za male grafove*/
        .row-graph1::after {
            content: "";
            clear: both;
        }

        .header-row2 {
            margin-bottom: 50px;
        }

        /*boxShadow za male grafove*/

        .waterImageTableDiv {
            position: relative;
            top: -40px;
        }

        .images-poultryTool-wrapper {
            width: calc(100vw - 45px);
            margin: 30px 0 20px 0;
            position: relative;
            right: 25px;
            bottom: 42px;
        }

        .table-div {
            width: calc(100vw - 45px);
            margin: 0;
            position: relative;
            right: 25px;
            bottom: 20px;
        }
    }
@media screen and (max-width:992px) {
    .poultry-graphId {
        margin-top: 50px;
    }
}
    @media screen and (max-width:1500px) and (min-width:1250px) {
        #containerGraph {
            transform: scale(0.7);
        }
    }

    @media screen and (max-width:1250px) and (min-width:769px) {
        .securityQuestionare {
            flex-flow: column;
        }

            .securityQuestionare .col-md-7,
            .securityQuestionare .col-md-5 {
                margin-left: auto;
                margin-right: auto;
            }
    }

    @media screen and (max-width:1150px) and (min-width:1024px) {

        .poultryTool-graph-divs-graph {
            margin: 0 0 20px 0;
        }

        /*red za male grafove*/
        .row-graph1::after {
            content: "";
            clear: both;
        }

        .header-row2 {
            margin-bottom: 50px;
        }

        .poultry-graphId {
            margin-top: 70px;
        }
    }

    @media screen and (max-width: 1024px) and (min-width:895px) {

        .poultryTool-graph-divs-graph {
            /* width: calc(100vw / 3 - 100px);*/
            margin: 0 0 20px 0;
        }

        /*red za male grafove*/
        .row-graph1::after {
            content: "";
            clear: both;
        }

        .header-row2 {
            margin-bottom: 50px;
        }

        .poultry-graphId {
            margin-top: 50px;
        }
    }

    @media screen and (max-width:895px) and (min-width:765px) {

        .poultryTool-graph-divs-graph {
            margin: 0 0 20px 0;
        }

        .row-graph1::after {
            content: "";
            clear: both;
            display: table;
        }
    }

    @media screen and (max-width:765px) and (min-width:635px) {

        .poultryTool-graph-divs-graph {
            margin: 0 0 20px 0;
        }

        .row-graph1::after {
            content: "";
            clear: both;
            display: table;
        }
    }

    @media screen and (max-width: 635px) and (min-width: 500px) {



        .poultryTool-graph-divs-graph {
            margin: 0 0 20px 0;
        }

        .row-graph1::after {
            content: "";
            clear: both;
            display: table;
        }
    }



    .poultryTool-history-date {
        position: relative;
        bottom: 5px;
        left: 10px;
        padding-left: 5px;
        background: #17683a;
        color: white;
        font-weight: 600;
        width: 170px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        border-top-left-radius: 3px;
    }

    .acceptabce-table-div #acceptabceBody_wrapper {
        box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.12);
    }

    .poultryTool-loader {
        width: calc(100vw / 6 - 45px);
        position: relative;
        top: 13px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #ImagesLoader,
    #TableLoader,
    #GraphIdLoader {
        width: 250px;
        position: relative;
        top: 50%;
        left: 55%;
        transform: translate(-50%, -50%);
    }

    #hideModalCaption {
        width: 115px;
    }

    #showModalCaption {
        display: none;
        width: 115px;
    }

    .modal-carousel-btn {
        height: 34px;
        display: inline-block;
        background: #262f41;
        color: white;
        padding: 6px 12px;
        margin: 0;
        font-size: 14px;
        font-weight: normal;
        line-height: 1.428571429;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        border: 1px solid transparent;
        border-radius: 4px;
        transition: all 0.12s ease-in;
    }

        .modal-carousel-btn:hover {
            opacity: 0.9;
        }

    #closeModalCarousel {
        background: white;
        color: #262f41;
        border: 1px solid #262f41;
    }

        #closeModalCarousel:hover {
            background: #dfe3ec;
            color: #131720;
            border: 1px solid #131720;
        }

    .modal-footer-prev-next {
        display: flex;
        justify-content: flex-start;
        position: relative;
        right: 5px;
    }

        .modal-footer-prev-next button {
            margin-right: 5px;
        }

    .modal-footer-caption-close {
        display: flex;
        justify-content: flex-end;
        position: absolute;
        bottom: 20px;
        right: 20px;
    }

        .modal-footer-caption-close button {
            margin-left: 5px;
        }

    /*bootstrap menu bitton - start*/
    #dropdownMenuButton {
        text-align: center;
        display: inline-block;
        min-width: 80px;
        background: #262f41 !important;
        color: white;
        border: 1px solid #262f41;
    }

        #dropdownMenuButton:hover,
        #dropdownMenuButton:focus {
            background: #262f41;
            color: white;
            border: 1px solid #262f41;
            opacity: 0.9;
        }

    .videoLinkName {
        color: black !important;
        padding-left: 5px;
    }

    .poultryTest2 {
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .poultryTest2Buttons {
        width: 100%;
        height: 100%;
        text-align: center;
        position: fixed;
        margin: 20px 0;
    }

    .poultryTest3Buttons {
        margin-top: 38px;
        margin-left: 10px;
        width: 100%;
        height: 100%;
        text-align: left;
        /*    position: fixed;*/
        z-index: 100;
    }

    .poultryTest4Buttons {
        margin-top: 15px;
        margin-left: 10px;
        width: 100%;
        height: 100%;
        text-align: left;
        /*    position: fixed;*/
        z-index: 100;
    }

    .poultryTest2ButtonPrevNext {
        min-width: 150px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .poultryTestImput {
        border-width: 0px;
        border: none;
    }
    /*bootstrap menu bitton - end*/
    @media screen and (max-width: 768px) {
        .questionnaireSection #containerGraph > svg {
            padding-left: 50px;
        }
        .questionnaireSection {
            flex-wrap: wrap;
            justify-content: center;
            padding-bottom: 30px;
        }

        #questionnaireForm {
            max-width: 80%;
            margin-bottom: 40px;
        }

        .bodyChatDB {
            padding-left: 80px;
        }

        .dropdownVideo {
            width: unset;
            margin-left: auto;
            margin-right: auto;
        }

        .visualisationDropdowns {
            justify-content: center !important;
        }
    }
@media screen and (max-width: 992px) {
    .poultryTest2{
        flex-wrap:wrap
    }
}
@media screen and (max-width: 767px) {
    .questionnaireSection {
        overflow: hidden;
    }

    #questionnaireForm {
        max-width: 100%;
    }

    .poultry-graphId {
        margin-left: 10px;
    }

    .widgetSection {
        margin-left: -80px;
    }

    .activityBook {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .bodyChatDB {
        padding-left: 0 !important;
    }

    .videoHeadline {
        margin-left: 0 !important;
    }

    .poultryTool-header {
        margin-left: 0;
    }

    #poultrySolverTable_filter input {
        width: 150px;
        margin: 0
    }
}

    @media screen and (max-width: 568px) {
        .visualisationDropdowns {
            display: inherit !important;
        }
    }

    @media screen and (max-width: 425px) {
        .chatDBbutton {
            margin-right: 30px;
        }

        #turnusHolder button {
            margin-left: 0 !important;
            margin-right: 0 !important;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        #containerGraph {
            transform: scale(0.7);
        }
    }

    @media screen and (max-width: 320px) {
        #containerGraph {
            transform: scale(0.5);
        }
    }