
/*#region btn*/
.btnBox {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn {
    border: none;
    background-color: #ddd;
    border-radius: 7px;
    color: #5f5f5f;
    padding: 8px 12px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    gap: 7px;
    transition: all 100ms;
    justify-content: center;
}

    .btn:active {
        transform: scale(.9);
    }

    .btn tooltip {
        visibility: hidden;
        background-color: #fff;
        text-align: center;
        border-radius: 6px;
        font-size: 0.85rem;
        padding: 0px 5px;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 50%;
        transform: translate(-50%, -135%);
        opacity: 0;
        transition: opacity 0.3s;
        color: #0799b6;
        border: 1px solid #12b1d0;
        box-shadow: 0 1px 5px 0 #66666659;
        line-height: 1.75rem;
    }

        .btn tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #12b1d0 transparent transparent transparent;
        }

    .btn:hover tooltip {
        visibility: visible;
        opacity: 1;
    }

    .btn[disabled] {
        cursor: not-allowed !important;
        pointer-events: none !important;
    }

    .btn.sm {
        padding: 6px 8px;
        font-size: 0.75rem;
        border-radius: 5px;
    }

    .btn .percent {
        margin-right: 15px;
        font-size: 0.9rem;
        width: 110px;
    }

    .btn .progressBox {
        position: absolute;
        content: '';
        right: 0px;
        bottom: 0px;
        height: 4px;
        width: 100%;
        background-color: #c1cac8;
        border-radius: 7px;
    }

        .btn .progressBox .progressBar {
            position: absolute;
            content: "";
            right: 0px;
            bottom: 0px;
            height: 4px;
            width: 30%;
            background-color: #a5a5a5;
            border-radius: 7px;
        }

.btn.outline {
    background-color: transparent;
    outline: 1px solid #777;
}

    .btn.outline:hover {
        background-color: #77777725;
    }

    .btn.outline .loader {
        border-color: #7777772b;
        border-top-color: #777777;
    }

    .btn.outline .progressBox {
        background-color: #d8d8d8;
    }

        .btn.outline .progressBox .progressBar {
            background-color: #777777;
        }

.btn.nobg {
    background-color: unset;
    outline: none !important;
}

    .btn.nobg:hover {
        background-color: #77777725;
    }


/*#region btn danger*/
.btn.danger {
    background-color: #fb5555;
    color: #fff;
}

    .btn.danger.light {
        background-color: #fb555525;
        color: #fb5555;
    }

    .btn.danger .progressBox {
        background-color: #ff8c8c;
    }

        .btn.danger .progressBox .progressBar {
            background-color: #b24949;
        }

.btn.outline-danger {
    background-color: transparent;
    outline: 1px solid #fb5555;
    color: #fb5555;
}

    .btn.outline-danger:hover {
        background-color: #fb555525;
    }

    .btn.outline-danger .loader {
        border-color: #fb55552b;
        border-top-color: #fb5555;
    }

    .btn.outline-danger .progressBox {
        background-color: #ffdcdc;
    }

        .btn.outline-danger .progressBox .progressBar {
            background-color: #fb5555;
        }
/*#endregion*/

/*#region btn info*/
.btn.info {
    background-color: #12b0d0;
    color: #fff;
}

    .btn.info.light {
        background-color: #108aa325;
        color: #12b0d0;
    }

    .btn.info .progressBox {
        background-color: #97d6e3;
    }

        .btn.info .progressBox .progressBar {
            background-color: #2098b0;
        }

.btn.outline-info {
    background-color: transparent;
    outline: 1px solid #12b0d0;
    color: #12b0d0;
}

    .btn.outline-info:hover {
        background-color: #108aa325;
    }

    .btn.outline-info .loader {
        border-color: #108aa32b;
        border-top-color: #108aa3;
    }

    .btn.outline-info .progressBox {
        background-color: #47a0b14d;
    }

        .btn.outline-info .progressBox .progressBar {
            background-color: #2098b0;
        }
/*#endregion*/

/*#region btn success*/
.btn.success {
    background-color: #11e2ae;
    color: #fff;
}

    .btn.success.light {
        background-color: #ddfff7;
        color: #00d39f;
    }

    .btn.success .progressBox {
        background-color: #4fc9ab;
    }

        .btn.success .progressBox .progressBar {
            background-color: #249f81;
        }

.btn.outline-success {
    background-color: transparent;
    outline: 1px solid #11e2ae;
    color: #11e2ae;
}

    .btn.outline-success:hover {
        background-color: #11e2ae25;
    }

    .btn.outline-success .loader {
        border-color: #11e2ae2b;
        border-top-color: #11e2ae;
    }

    .btn.outline-success .progressBox {
        background-color: #11e2ae35;
    }

        .btn.outline-success .progressBox .progressBar {
            background-color: #11e2ae;
        }
/*#endregion*/

/*#region btn warning*/
.btn.warning {
    background-color: #f2c94c;
    color: #fff;
}

    .btn.warning.light {
        background-color: #f2c94c25;
        color: #f2c94c;
    }

    .btn.warning .progressBox {
        background-color: #f8e7b5;
    }

        .btn.warning .progressBox .progressBar {
            background-color: #c9a842;
        }

.btn.outline-warning {
    background-color: transparent;
    outline: 1px solid #f2c94c;
    color: #f2c94c;
}

    .btn.outline-warning:hover {
        background-color: #f2c94c25;
    }

    .btn.outline-warning .loader {
        border-color: #f2c94c2b;
        border-top-color: #f2c94c;
    }

    .btn.outline-warning .progressBox {
        background-color: #f2c94c35;
    }

        .btn.outline-warning .progressBox .progressBar {
            background-color: #f2c94c;
        }
/*#endregion*/

/*#region btn primary*/
.btn.primary {
    background-color: #00a3ff;
    color: #fff;
}

    .btn.primary.light {
        background-color: #00a3ff25;
        color: #00a3ff;
    }

    .btn.primary .progressBox {
        background-color: #75adff;
    }

        .btn.primary .progressBox .progressBar {
            background-color: #225bb0;
        }

.btn.outline-primary {
    background-color: transparent;
    outline: 1px solid #00a3ff;
    color: #00a3ff;
}

    .btn.outline-primary:hover {
        background-color: #00a3ff25;
    }

    .btn.outline-primary .loader {
        border-color: #00a3ff2b;
        border-top-color: #00a3ff;
    }

    .btn.outline-primary .progressBox {
        background-color: #00a3ff35;
    }

        .btn.outline-primary .progressBox .progressBar {
            background-color: #00a3ff;
        }
/*#endregion*/


.btn.addItem {
    padding: 2px;
    padding-left: 3px;
    padding-right: 3px;
    background-color: #00a3ff;
    border-radius: 4px;
    color: #fff;
    margin-left: 5px;
}
/*#endregion*/

input,
select,
textarea {
    border: none;
    outline: 1px solid #e7e8f3;
    color: #5f5f5f;
    padding: 8px 10px;
    font-size: 0.9rem;
    border-radius: 0.25rem;
    background-color: #fbfbfe;
}

    input::placeholder,
    textarea::placeholder {
        color: #5f5f5f90;
    }

    input:disabled,
    select:disabled,
    textarea:disabled {
        opacity: 0.85 !important;
        pointer-events: none;
        filter: contrast(0.85);
    }

    input[type=file] {
        padding: 0px;
        height: 38px;
        position: relative;
        outline: none;
        background-color: #fbfbfe;
        cursor: pointer;
        outline: 1px solid #e7e8f3;
    }

        input[type=file][remove] {
            background-size: 23px;
            background-repeat: no-repeat;
            background-position: 5px center;
            background-image: url(../asset/icon/delete.png);
        }


        input[type=file]:before {
            border-radius: 4px;
            content: 'انتخاب';
            width: 64px;
            height: calc(100% - 9px);
            max-width: 100px;
            background-color: #e7e8f3;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 0.8rem;
            margin: 5px;
        }

        input[type=file]:after {
            content: attr(text);
            display: block;
            position: absolute;
            top: 50%;
            right: 83px;
            left: 25px;
            transform: translate(0, -50%);
            color: #888;
            text-overflow: ellipsis;
            overflow: hidden;
            font-size: 0.8rem;
        }


    input.sm,
    select.sm,
    textarea.sm {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    input[type=checkbox] {
        position: relative;
        border: 2px solid #8a8989;
        border-radius: 6px;
        background: none;
        cursor: pointer;
        line-height: 0;
        margin: 0 0 0 0;
        outline: 0;
        padding: 0 !important;
        vertical-align: text-top;
        height: 18px;
        width: 18px;
        -webkit-appearance: none;
        opacity: 0.95;
        margin-left: 0px;
    }

        input[type=checkbox]:checked {
            background-color: #7BC4CA;
            border: 2px solid #7BC4CA;
            opacity: 1;
            -webkit-transition: all .2s;
            transition: all .2s;
        }

        input[type=checkbox]:before {
            content: '';
            position: absolute;
            right: 50%;
            top: 50%;
            width: 3px;
            height: 8px;
            border: none;
            z-index: 2;
        }

        input[type=checkbox]:checked:before {
            border: solid #FFF;
            transform: rotate(45deg) translate(-50%, -50%);
            border-width: 0 2px 2px 0;
            -webkit-transition: all .2s;
            transition: all .2s;
            margin: -1px -1px 0 -1px;
        }

    input[type="checkbox"].switch {
        position: relative;
        width: 100%;
        height: 38px;
        border: none;
        border-radius: 5px;
        font-size: 0.875rem;
        font-weight: 500;
        background-color: #bdc2c8;
    }

        input[type="checkbox"].switch:checked {
            background-color: #20c997;
        }

        input[type="checkbox"].switch:before {
            content: attr(data-unchecked);
            position: absolute;
            width: 50%;
            height: calc(100% - 4px);
            background-color: #fff;
            top: 2px;
            border-radius: 3px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #6f757c;
            transform: translate(2px, 0);
            transition: all 300ms;
            margin: 0px;
            border: none;
        }

        input[type="checkbox"].switch:checked:before {
            content: attr(data-checked);
            transform: translate(calc(100% - 2px), 0);
            color: #20c997;
        }

        input[type="checkbox"].switch:after {
            content: attr(data-checked);
            position: absolute;
            width: 50%;
            height: calc(100% - 4px);
            top: 2px;
            right: 2px;
            left: unset;
            border-radius: 3px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ffffff7a;
        }

        input[type="checkbox"].switch:checked:after {
            content: attr(data-unchecked);
            left: 2px;
            right: unset;
        }


    input[type=radio] {
        position: relative;
        border: 2px solid #8a8989;
        border-radius: 15px;
        background: none;
        cursor: pointer;
        line-height: 0;
        margin: 0 0 0 0;
        outline: 0;
        padding: 0 !important;
        vertical-align: text-top;
        height: 18px;
        width: 18px;
        -webkit-appearance: none;
        opacity: 0.95;
        margin-left: 0px;
    }

        input[type=radio]:checked {
            background-color: #7BC4CA;
            border: 2px solid #7BC4CA;
            opacity: 1;
            -webkit-transition: all .2s;
            transition: all .2s;
        }

        input[type=radio]:before {
            content: '';
            position: absolute;
            right: 50%;
            top: 50%;
            width: 3px;
            height: 7px;
            border: none;
            z-index: 2;
        }

        input[type=radio]:checked:before {
            border: solid #FFF;
            transform: rotate(45deg) translate(-50%, -50%);
            border-width: 0 2px 2px 0;
            -webkit-transition: all .2s;
            transition: all .2s;
            margin: 0px -1px 0 0px;
        }


    input[type="color"] {
        width: 100%;
        height: 39px;
        padding: 2px;
        border: 0;
        position: relative;
        cursor: pointer;
        border-radius: 7px;
    }

        input[type="color"]:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 7px solid #fbfbfe;
            border-radius: 15px;
        }


    /* Chrome, Safari, Edge, Opera */
    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type="number"] {
        -moz-appearance: textfield;
    }


.capchaBox {
    position: relative;
}

    .capchaBox input {
        border-radius: 7px;
        text-align: center;
        padding-left: 175px;
    }

    .capchaBox img {
        border-radius: 7px 0px 0px 7px;
        cursor: pointer;
        position: absolute;
        top: 0;
        left: 0;
        height: 37px;
        max-height: 100%;
        max-width: 50%;
    }


.secloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 3px solid #ffffff2b;
    width: 1.5em;
    height: 1.5em;
    min-width: 1em;
    min-height: 1em;
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: RotateAnime 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin: auto;
}

@keyframes RotateAnime {
    0% {
        transform: rotate(45deg);
    }

    50% {
        transform: rotate(405deg);
    }

    100% {
        transform: rotate(765deg);
    }
}


.hidden {
    display: none !important;
}

.m-0 {
    margin: 0rem !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 0.75rem !important;
}

.m-4 {
    margin: 1rem !important;
}

.m-5 {
    margin: 1.25rem !important;
}

.m-6 {
    margin: 1.5rem !important;
}

.m-7 {
    margin: 1.75rem !important;
}

.m-8 {
    margin: 2rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-0 {
    margin-top: 0rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 1.25rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

.mt-7 {
    margin-top: 1.75rem !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mb-0 {
    margin-bottom: 0rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.mb-7 {
    margin-bottom: 1.75rem !important;
}

.mb-8 {
    margin-bottom: 2rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.mr-0 {
    margin-right: 0rem !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 0.75rem !important;
}

.mr-4 {
    margin-right: 1rem !important;
}

.mr-5 {
    margin-right: 1.25rem !important;
}

.mr-6 {
    margin-right: 1.5rem !important;
}

.mr-7 {
    margin-right: 1.75rem !important;
}

.mr-8 {
    margin-right: 2rem !important;
}

.mr-auto {
    margin-right: auto !important;
}

.ml-0 {
    margin-left: 0rem !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 0.75rem !important;
}

.ml-4 {
    margin-left: 1rem !important;
}

.ml-5 {
    margin-left: 1.25rem !important;
}

.ml-6 {
    margin-left: 1.5rem !important;
}

.ml-7 {
    margin-left: 1.75rem !important;
}

.ml-8 {
    margin-left: 2rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0.00rem;
    margin-bottom: 0.00rem;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.50rem;
    margin-bottom: 0.50rem;
}

.my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.my-4 {
    margin-top: 1.00rem;
    margin-bottom: 1.00rem;
}

.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.my-5 {
    margin-top: 1.50rem;
    margin-bottom: 1.50rem;
}

.my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
}

.my-8 {
    margin-top: 2.00rem;
    margin-bottom: 2.00rem;
}

.mx-0 {
    margin-left: 0.00rem;
    margin-right: 0.00rem;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.50rem;
    margin-right: 0.50rem;
}

.mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.mx-4 {
    margin-left: 1.00rem;
    margin-right: 1.00rem;
}

.mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.mx-5 {
    margin-left: 1.50rem;
    margin-right: 1.50rem;
}

.mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
}

.mx-8 {
    margin-left: 2.00rem;
    margin-right: 2.00rem;
}







.p-0 {
    padding: 0.00rem !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.50rem !important;
}

.p-3 {
    padding: 0.75rem !important;
}

.p-4 {
    padding: 1.00rem !important;
}

.p-5 {
    padding: 1.25rem !important;
}

.p-5 {
    padding: 1.50rem !important;
}

.p-7 {
    padding: 1.75rem !important;
}

.p-8 {
    padding: 2.00rem !important;
}

.pt-0 {
    padding-top: 0.00rem !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.50rem !important;
}

.pt-3 {
    padding-top: 0.75rem !important;
}

.pt-4 {
    padding-top: 1.00rem !important;
}

.pt-5 {
    padding-top: 1.25rem !important;
}

.pt-5 {
    padding-top: 1.50rem !important;
}

.pt-7 {
    padding-top: 1.75rem !important;
}

.pt-8 {
    padding-top: 2.00rem !important;
}

.pr-0 {
    padding-right: 0.00rem !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.pr-2 {
    padding-right: 0.50rem !important;
}

.pr-3 {
    padding-right: 0.75rem !important;
}

.pr-4 {
    padding-right: 1.00rem !important;
}

.pr-5 {
    padding-right: 1.25rem !important;
}

.pr-5 {
    padding-right: 1.50rem !important;
}

.pr-7 {
    padding-right: 1.75rem !important;
}

.pr-8 {
    padding-right: 2.00rem !important;
}

.pl-0 {
    padding-left: 0.00rem !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.pl-2 {
    padding-left: 0.50rem !important;
}

.pl-3 {
    padding-left: 0.75rem !important;
}

.pl-4 {
    padding-left: 1.00rem !important;
}

.pl-5 {
    padding-left: 1.25rem !important;
}

.pl-5 {
    padding-left: 1.50rem !important;
}

.pl-7 {
    padding-left: 1.75rem !important;
}

.pl-8 {
    padding-left: 2.00rem !important;
}

.pb-0 {
    padding-bottom: 0.00rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.50rem !important;
}

.pb-3 {
    padding-bottom: 0.75rem !important;
}

.pb-4 {
    padding-bottom: 1.00rem !important;
}

.pb-5 {
    padding-bottom: 1.25rem !important;
}

.pb-5 {
    padding-bottom: 1.50rem !important;
}

.pb-7 {
    padding-bottom: 1.75rem !important;
}

.pb-8 {
    padding-bottom: 2.00rem !important;
}

.py-0 {
    padding-top: 0.00rem !important;
    padding-bottom: 0.00rem !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.50rem !important;
    padding-bottom: 0.50rem !important;
}

.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.py-4 {
    padding-top: 1.00rem !important;
    padding-bottom: 1.00rem !important;
}

.py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.py-5 {
    padding-top: 1.50rem !important;
    padding-bottom: 1.50rem !important;
}

.py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
}

.py-8 {
    padding-top: 2.00rem !important;
    padding-bottom: 2.00rem !important;
}

.px-0 {
    padding-left: 0.00rem !important;
    padding-right: 0.00rem !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.50rem !important;
    padding-right: 0.50rem !important;
}

.px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.px-4 {
    padding-left: 1.00rem !important;
    padding-right: 1.00rem !important;
}

.px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.px-5 {
    padding-left: 1.50rem !important;
    padding-right: 1.50rem !important;
}

.px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
}

.px-8 {
    padding-left: 2.00rem !important;
    padding-right: 2.00rem !important;
}

.w-0 {
    width: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}

.w-40 {
    width: 40% !important;
}

.w-50 {
    width: 50% !important;
}

.w-60 {
    width: 60% !important;
}

.w-70 {
    width: 70% !important;
}

.w-80 {
    width: 80% !important;
}

.w-90 {
    width: 90% !important;
}

.w-100 {
    width: 100% !important;
}

.w-31 {
    width: 31% !important;
}

.w-32 {
    width: 32% !important;
}

.w-23 {
    width: 23% !important;
}

.w-24 {
    width: 24% !important;
}

.w-25 {
    width: 25% !important;
}

.w-33 {
    width: 33.333% !important;
}

.w-75 {
    width: 75% !important;
}

.minw-none {
    min-width: initial !important;
}


@media (max-width: 930px) {
    .w-md-0 {
        width: 0 !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    .w-md-10 {
        width: 10% !important;
    }

    .w-md-20 {
        width: 20% !important;
    }

    .w-md-25 {
        width: 25% !important;
    }

    .w-md-30 {
        width: 30% !important;
    }

    .w-md-33 {
        width: 33.333% !important;
    }

    .w-md-40 {
        width: 40% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-60 {
        width: 60% !important;
    }

    .w-md-70 {
        width: 70% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

    .w-md-80 {
        width: 80% !important;
    }

    .w-md-90 {
        width: 90% !important;
    }

    .w-md-100 {
        width: 100% !important;
    }
}

@media (max-width: 550px) {
    .w-sm-0 {
        width: 0 !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    .w-sm-10 {
        width: 10% !important;
    }

    .w-sm-20 {
        width: 20% !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }

    .w-sm-30 {
        width: 30% !important;
    }

    .w-sm-33 {
        width: 33.333% !important;
    }

    .w-sm-40 {
        width: 40% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-60 {
        width: 60% !important;
    }

    .w-sm-70 {
        width: 70% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-80 {
        width: 80% !important;
    }

    .w-sm-90 {
        width: 90% !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }
}




.text-center {
    text-align: center;
    justify-content: center
}

.fic {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.frmBox {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    padding-bottom: 20px;
}

.formItem {
    display: flex;
    flex-direction: column;
    padding: 0px 12px;
    min-width: 120px;
}

    .formItem .formLabel {
        color: #505050;
        font-weight: 600;
        font-size: 0.88rem;
        margin-bottom: 10px;
    }


    .formItem.invalid {
        color: #fb5555;
    }

        .formItem.invalid input,
        .formItem.invalid select,
        .formItem.invalid textarea {
            outline-color: #fb5555;
        }

        .formItem.invalid .validError {
            font-size: 0.8rem;
            line-height: 15px;
            margin-top: 7px;
        }


.group-box {
    display: flex;
}

    .group-box .group-item {
        width: 100%;
    }

        .group-box .group-item input,
        .group-box .group-item select {
            border-radius: 0;
            border-left-width: 0px;
        }

        .group-box .group-item:first-child input,
        .group-box .group-item:first-child select {
            border-radius: 5px 0px 0px 5px;
            border-left-width: 1px;
        }

        .group-box .group-item:last-child input,
        .group-box .group-item:last-child select {
            border-radius: 0px 5px 5px 0px;
        }
