
.break {
    word-break: break-all;
}

    .break > * {
        word-break: break-all;
    }

.breakword {
    word-break: break-word;
}

    .breakword > * {
        word-break: break-word;
    }

.p-normal {
    font-size: 14px !important;
}

.p-normal-medium {
    font-size: 16px !important;
}

.p-semi-medium {
    font-size: 18px !important;
}

.p-medium {
    font-size: 15px !important;
}

.p-large {
    font-size: 30px !important;
}

.p-xlarge {
    font-size: 35px !important;
}

#buttonIcon {
    font-size: 25px !important;
}

.btn-icon-container {
    width: 45px;
    height: 45px;
}

.semi-large-input {
    height: 40px;
}

.large-input-type {
    min-height: 45px !important;
}

.active-page-button {
    background: gray !important;
    border: 1px solid gray !important;
}


#footerBottomLastText {
    padding-top: 20px;
    margin-bottom: 10px;
}

.custom-ToggleCheckBox::before {
    transition: 0.5s;
}

.custom-ToggleCheckBox:focus {
    border: 2px solid #6C757D !important;
}

.custom-ToggleCheckBox:checked {
    background: #444F57;
}

    .custom-ToggleCheckBox:checked::before {
        background: white;
    }

.hidden {
    display: none;
}



.HeaderNotificationContainer {
    width: 100%;
    min-height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #d6d6d6;
    color: #898989;
    font-size: 14px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
}

    .HeaderNotificationContainer > * {
        margin-top: auto;
        margin-bottom: auto;
    }

    .HeaderNotificationContainer.OK {
        background: initial;
        background-color: lightgreen;
        color: white;
    }

        .HeaderNotificationContainer.OK > * > .notif-link {
            color: black !important;
        }

    .HeaderNotificationContainer.Warning {
        background: initial;
        background-color: coral;
        color: white;
    }

        .HeaderNotificationContainer.Warning > * > .notif-link {
            color: black !important;
        }

    .HeaderNotificationContainer.Error {
        background: initial;
        background-color: palevioletred;
        color: white;
    }

        .HeaderNotificationContainer.Error > * > .notif-link {
            color: black !important;
        }

.notif-link {
    cursor: pointer;
    color: #EE343F;
    font-weight: bold;
    text-decoration: underline;
    font-size: 14px;
}


    .notif-link:hover {
        color: #EE343F;
        font-weight: bold;
        text-decoration: underline;
        font-size: 14px;
    }

.ListBlock {
    max-width: 250px;
    display: flex;
    flex-wrap: nowrap;
    min-height: 30px;
    margin-bottom: 5px;
    font-size: 12px;
}

.ListBlockIcon {
    color: #898989;
    font-size: 13px;
}

.ListBlock > .ListBlockContent {
    border: solid 1px #D6D6D6;
    border-right: none;
    width: 80%;
    display: flex;
}

    .ListBlock > .ListBlockContent > *:first-child {
        margin-left: 10px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .ListBlock > .ListBlockContent > *:last-child {
        margin-right: 10px;
        margin-left: auto;
        margin-top: auto;
        margin-bottom: auto;
    }

.ListBlock > .ListBlockControl {
    border: solid 1px #D6D6D6;
    width: 20%;
    display: flex;
}

    .ListBlock > .ListBlockControl > * {
        margin: auto;
    }

.ListBlockContentAdditional {
    display: flex;
    margin-right: 0 !important;
    margin-left: 5px !important;
    width: 100%;
}

    .ListBlockContentAdditional > * {
        margin: auto;
    }


.ImagePreviewBorder {
    border: 1px solid silver;
}


.dooperbtn-fit{
    transition: 0.2s ease-in-out;
}

.dooperbtn-fit:disabled {
    border: solid 1px #1059ad !important;
    background-color: #1059adaf;
    color: #8e8e8ee6;
}

.BtnQtyContainer {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.BtnQtyDisplay {
    /*min-width: fit-content;*/
    /*min-width: fit-content;*/
    width: 30%;
}

.BtnQtyEditor {
    flex-grow: 1;
    min-width: 10%;
}


.TextHorizontalCenter {
    display: flex;
}

    .TextHorizontalCenter > p {
        margin-top: auto;
        margin-bottom: auto;
    }

    .TextHorizontalCenter > button {
        margin-top: auto;
        margin-bottom: auto;
    }



.TwoCols {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

    .TwoCols > .Left {
        width: calc(50% - 10px);
        margin-left: 0;
        margin-right: 20px;
    }

    .TwoCols > .Right {
        width: calc(50% - 10px);
        margin-right: auto;
        margin-left: auto;
    }

        .TwoCols > .Right.Snap {
            margin-right: 0;
            margin-left: auto;
        }

    .TwoCols.Fill {
        max-width: 100%;
    }

@media only screen and (max-width: 1350px) {

    .TwoCols {
        flex-direction: column;
    }

        .TwoCols > .Left {
            width: 100%;
        }

        .TwoCols > .Right {
            margin-top: 20px;
            margin-left: 0;
            margin-right: auto;
            width: 100%;
        }

        .TwoCols.Invert {
            flex-direction: column-reverse;
        }

            .TwoCols.Invert > .Right {
                margin-top: 0px;
            }

            .TwoCols.Invert > .Left {
                margin-top: 20px;
            }


        .TwoCols > .Right.Snap {
            margin-left: 0;
            margin-right: auto;
            width: 100%;
        }
}


.TwoCols.Underline > * {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #afafaf;
}

.Inline {
    display: flex;
    flex-direction: row;
}

    .Inline > * {
        margin-top: auto;
        margin-bottom: auto;
        margin-right: 5px;
    }
