﻿.my-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.my-row-start {
    align-self: flex-start;
}
.my-row-1-12 { flex: 0.08}
.my-row-2-12 { flex: 0.166}
.my-row-3-12 { flex: 0.249}
.my-row-4-12 { flex: 0.332}
.my-row-5-12 { flex: 0.415}
.my-row-6-12 { flex: 0.498}
.my-row-7-12 { flex: 0.581}
.my-row-8-12 { flex: 0.664}
.my-row-9-12 { flex: 0.747}
.my-row-10-12 { flex: 0.83}
.my-row-11-12 { flex: 0.88}
.my-row-12-12 { flex: 1}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="my-row-"] {
        flex: 1;
    }



    .inventorySummaryButtonGroup {
        width: 100%;
        justify-content: space-between;
        display: flex;
    }

}

.my-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.my-row-streach {
    align-items: stretch;
}

.my-section {
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.flex {
    display: flex;
}

.highlight-text {
    color: #f9d434;
}

.my-icons {
    margin: 0 5px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: auto;
}

.my-icons-plus {
    background-image: url(../Content/images/PlusIcon.png)
}

.my-icons-close {
    background-image: url(../Content/images/CloseIcon.png)
}

.required-text {
    font-size: 14px;
    color: black;
}

.custom-input {
    height: 40px;
    border: 1px solid;
    width: 100%;
    margin: 0 9px;
    padding: 10px;
    outline: none;
}

.validation-group {
    position: relative!important;
    margin-bottom: 25px!important; 
}
.input-validation-error {
    border: 1px solid red;
}


.custom-error-input {
    position: absolute;
    bottom: -17px;
    left: 10px;
    font-size: 1.1rem;
    color: red;
}

/*.custom-input:focus {
        border: 1px solid #f9d434;
    }*/

.custom-textarea {
    height: 163px;
    border: 1px solid;
    width: 100%;
    margin: 0 9px;
    padding: 10px;
    outline: none;
}
/*.custom-textarea:focus {
        border: 1px solid #f9d434;
    }*/

.custom-input-group {
    margin: 0 0 25px;
    flex-wrap:wrap;
 }

    .custom-input-group label {
        margin: 0 10px;
        font-family: "Chivo Regular";
        font-weight: normal;
        font-size: 12px;
    }




textarea::-webkit-input-placeholder {
    /*font-family: "EBGaramond Regular";*/
    font-size: 16px;
    color: #a1a1a1;
    padding: 0px;
    padding-left: -20px;
}

textarea:-moz-placeholder { /* Firefox 18- */
    /*font-family: "EBGaramond Regular";*/
    font-size: 16px;
    color: #a1a1a1;
}

textarea::-moz-placeholder { /* Firefox 19+ */
    /*font-family: "EBGaramond Regular";*/
    font-size: 16px;
    color: #a1a1a1;
}

textarea:-ms-input-placeholder {
    /*font-family: "EBGaramond Regular";*/
    font-size: 16px;
    color: #a1a1a1;
}


/* Custom checkbox*/
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

    [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label {
        position: relative;
        padding: 2px 30px;
        cursor: pointer;
    }

        /* checkbox aspect */
        [type="checkbox"]:not(:checked) + label:before, [type="checkbox"]:checked + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border: 1px solid black;
            background: #fff;
            border-radius: 0;
        }
        /* checked mark aspect */
        [type="checkbox"]:not(:checked) + label:after,
        [type="checkbox"]:checked + label:after {
            content: '';
            position: absolute;
            top: -3px;
            left: 2px;
            background-image: url(/Content/images/check.png);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            width: 22px;
            height: 20px;
            transition: all .2s;
        }
        /* checked mark aspect changes */
        [type="checkbox"]:not(:checked) + label:after {
            opacity: 0;
            transform: scale(0);
        }

        [type="checkbox"]:checked + label:after {
            opacity: 1;
            transform: scale(1);
        }
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}

.custom-button {
    height: 50px;
    color: black;
    min-width: 150px;
    background-color: #f9d434;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
    border: none;
    margin: 0 10px;
}


    .custom-button.custom-success span {
        margin: 0 20px 0 0;
        position: relative;
    }

        .custom-button.custom-success span::after {
            content: '';
            background-image: url(/Content/images/carrot.png);
            background-repeat: no-repeat;
            background-position: center;
            background-size: auto;
            position: absolute;
            right: -20px;
            top: 0px;
            height: 15px;
            width: 17px;
        }

.custom-button-bleack {
    height: 40px;
    background-color: black;
    color: white;
    font-weight: bold;
    outline: none;
    border: none;
    font-size: 12px;
    padding: 0 20px;
}

    .custom-button-bleack[disabled="disabled"] {
        background-color: #999999;
        color: #c2c2c2;
    }

.filter-section, .detail-info {
    background: #fdd030;
}

    .filter-section .filter-element.my-row, .detail-info .detail-info .my-row {
        padding: 10px 0;
        margin: auto -15px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .filter-section .filter-element .header-element-text, .detail-info .header-section h3 {
        padding: 10px 0 0;
        font-size: 20px;
    }

    .filter-section .filter-element .filter-select-element {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 150px;
        flex: 1;
    }
.detail-info {
    
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}


.custom-input {
    min-width: 150px;
}