﻿a {
    text-decoration: none;
    color: initial;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}


/*#region btn*/
.btnBox {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    justify-content: flex-end;
    flex-direction: row !important;
}

.btn {
    border: none;
    outline: none;
    background-color: #ddd;
    border-radius: 0.6rem;
    color: #5f5f5f;
    padding: 7px 12px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    gap: 7px;
    transition: all 100ms;
}

    .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 {
        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: #0073b5;
        color: #fff;
    }

        .btn.info.light {
            background-color: #108aa325;
            color: #0073b5;
        }

        .btn.info .progressBox {
            background-color: #97d6e3;
        }

            .btn.info .progressBox .progressBar {
                background-color: #2098b0;
            }

    .btn.outline-info {
        background-color: transparent;
        outline: 1px solid #0073b5;
        color: #0073b5;
    }

        .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*/



/*#region helper*/
.captchaBox {
    position: relative;
    width: 100%;
}

    .captchaBox .img-captcha {
        height: 47.27px;
        border-radius: 8px 0 0 8px;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer;
    }

    .captchaBox input {
        padding-left: 145px !important;
        text-align: center;
    }

.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;
}

.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;
    }

    .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;
    }

    .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;
}
/*#endregion*/


/*#region form*/
.frmBox {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.formItem {
    display: flex;
    flex-direction: column;
    padding: 0px 12px;
    min-width: 200px;
    position: relative;
}

    .formItem .formLabel {
        margin-bottom: 5px;
        color: #374151;
        font-size: 0.85rem;
        font-weight: 600;
    }


    .formItem.invalid {
        color: #ffadad;
    }

        .formItem.invalid label {
            color: #ffb1b1;
        }

        .formItem.invalid .inpt {
            outline: 2px solid #ffadad;
        }

        .formItem.invalid .validError {
            font-size: 0.8rem;
            line-height: 15px;
            margin-top: 7px;
        }

.inpt {
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
    font-weight: 500;
}

textarea.inpt {
    resize: vertical;
    min-height: 120px;
}

.inpt:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}



.inpt[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;
}

    .inpt[type=checkbox]:checked {
        background-color: #7BC4CA;
        border: 2px solid #7BC4CA;
        opacity: 1;
        -webkit-transition: all .2s;
        transition: all .2s;
    }

    .inpt[type=checkbox]:before {
        content: '';
        position: absolute;
        right: 50%;
        top: 50%;
        width: 3px;
        height: 8px;
        border: none;
        z-index: 2;
    }

    .inpt[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;
    }

.inpt[type="checkbox"].switch {
    position: relative;
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #bdc2c8;
}

    .inpt[type="checkbox"].switch:checked {
        background-color: #20c997;
    }

    .inpt[type="checkbox"].switch:before {
        content: attr(data-unchecked);
        position: absolute;
        width: 50%;
        height: calc(100% - 10px);
        background-color: #fff;
        top: 5px;
        right: initial;
        left: 5px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #6f757c;
        transition: all 300ms;
        border: none;
        margin: 0 !important;
    }

.inpt[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;
}

.inpt[type="checkbox"].switch:checked:before {
    content: attr(data-checked);
    transform: translate(calc(100% - 10px), 0);
    color: #20c997;
    border: none;
}

.inpt[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: #fff;
}

.inpt[type="checkbox"].switch:checked:after {
    content: attr(data-unchecked);
    left: 2px;
    right: unset;
}

.inpt[type=file] {
    padding: 0px;
    height: 47px;
    position: relative;
    outline: none;
    cursor: pointer;
}

    .inpt[type=file][remove] {
        background-size: 23px;
        background-repeat: no-repeat;
        background-position: 5px center;
        background-image: url(/assets/icons/delete.png);
    }


    .inpt[type=file]:before {
        border-radius: 8px;
        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;
    }

    .inpt[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;
    }





.form-actions {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid #f3f4f6;
    justify-content: flex-end;
}

.secTabs {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 35px;
    gap: 10px;
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 16px;
    overflow: auto;
}

    .secTabs .tabItem {
        padding: 8px 12px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 12px;
        background-color: #fff0;
        transition: all 300ms ease-in;
        cursor: pointer;
        white-space: nowrap;
    }

        .secTabs .tabItem.active {
            background-color: #fff;
        }

.tabPage {
    display: none;
}

    .tabPage.active {
        display: block;
    }

/*#endregion*/
