:root {
    --actor_form_personal-gap: 20px;
}

body.popup_open {
    overflow: hidden;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overscroll-behavior: none;
}

/* span.select2-dropdown.select2-dropdown--below {
    margin-top: 32px;
} */



/*show hide*/
/*======================================*/

.password_wrapper {
    position: relative;
    
    button.show_hied_pass {
        position: absolute;
        inset-inline-end: 0;
        inset-block: 0;
        margin: auto;
        padding: 10px;
        border: none;
        background: none;
        
        svg.open,svg.close{
            width: 20px;
            height: 20px;
            fill: #fff;
            translate: all .4s;
        }
        
        &.hide_pass svg.close,
        &.show svg.open {
            display:none;
        } 
    }
}

/*actor_form_personal*/
/*======================================*/

form#actor_form_personal {


    display: flex;
    flex-wrap: wrap;
    gap: var(--actor_form_personal-gap);

    .select2-container {
        width: 100% !important;
    }

    /* span.select2-selection {
        border: 1px solid #666;
        border-radius: 3px;
        padding: .5rem 1rem;
        height: unset !important;
    }  */

    .form-group {
        flex: 1 0 calc(33.333% - var(--actor_form_personal-gap));
    }

    .form-group.range.min,
    .form-group.langs.languages {
        min-width: 100%;
    }

    .form-group[ct]:not(.show) {
        display: none;
        opacity: .4;
        /* border: 1px solid red; */
        margin: 20px 0;
        height: 0;
        overflow: hidden;
        margin: 0;
        flex: 0 0 0;
    }

    .form-group[ct].show {
        /* border: 3px solid rgb(17, 0, 255); */
        height: unset;
        overflow: visible;
    }

    .form-group.required .label:before,
    .form-group.required label:not(.drop-container):before {
        content: "*";
        color: red;
    }

    &.loading {
        position: relative;
        pointer-events: none;

        &>* {
            opacity: .8;
            filter: blur(1px) grayscale(.2)
        }

        &:after {
            content: '';
            position: absolute;
            inset: 0;
            margin: auto;
            width: 150px;
            aspect-ratio: 1;
            border-radius: 50%;
            border: 13px solid #00BCD4;
            animation:
                l20-1 0.8s infinite linear alternate,
                l20-2 1.6s infinite linear;

        }
    }


    #actor_form_personal_submit {
        background: #FF5722;
        border: none;
        color: white;
        font-size: 1.2rem;
        padding: 0.6em 1.9em;
        position: sticky;
        bottom: 10px;

        &:hover {
            scale: 1.1;
        }
    }

    &.loading #actor_form_personal_submit {
        display: flex;

        &:after {
            content: '';
            margin: auto;
            width: 1rem;
            aspect-ratio: 1;
            border-radius: 50%;
            border: 4px solid #ffffff;
            animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
            display: inline-block;
            margin-inline-start: 12px;
        }
    }






}

.up_uploader_container {

    margin-top: 40px;
    border-top: 1px solid #0000002b;
    padding-top: 50px;


    button.open_uploader {
        position: sticky;
        bottom: 10px;
        background-color: #d6eaf3;
        border: 2px solid;
        margin-top: 10px;
        color: #000000;
        padding: 5px 10px;
        border-radius: 0;

        &:hover {
            background-color: black;
            color: white;
            border-color: black;
        }
    }

    button.close-up_uploader {
        border: none;
        position: absolute;
        z-index: 99;
        inset-inline-end: 20px;
        inset-block-start: 20px;
        color: black;
        padding: 0;

        svg {
            width: 2.1rem;
            height: 2.1rem;
        }

        &:hover {
            background: none;
            scale: 1.5;
            color: black;
        }
    }


}

.up_uploader_gallery:empty {
    display: none;
}

p.up_uploader_label {
    font-size: 1.7rem;
}

.up_uploader {
    /* position: fixed; */
    position: relative;
    display: none;
    z-index: 999;
    inset: 0;
    margin: 20px 0 0;
    width: 590px;
    height: 554px;
    max-width: 100%;
    /*transition: all .4s;
    opacity: 1;
    pointer-events: none;
    transform: translateY(100%); */

    &.on {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
}

.up_uploader_gallery {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    padding: 10px;
    border: 1px dashed #0000001a;
    background-color: #00000008;


    button.remove_image {
        flex: 0 0 150px;
        max-width: 150px;
        padding: 0;
        transition: all .4s;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: none;

        &.image {
            background-color: #323232;
        }

        p {
            margin: 0;
            font-size: 0.7rem;
            color: #000000;
        }

        &[data-type="palms_videos"] {
            border: none;
            background: none;
        }

        img.up_uploader_gallery_img {
            height: 100%;
            object-fit: contain;
            transition: all .4s;
        }

        .hover {
            opacity: 0;
            width: 20px;
            height: 20px;
            filter: invert(1);
            position: absolute;
            inset: 0;
            margin: auto;
            transition: all .4s;
            scale: 0;
        }

        &:hover {

            .hover {
                opacity: 1;
                scale: 1;
            }

            img.up_uploader_gallery_img {
                filter: grayscale(0.5) brightness(0.5);
            }

        }

        /*&:hover*/


        &.loading {
            position: relative;
            pointer-events: none;

            &:after {
                content: '';
                position: absolute;
                inset: 0;
                margin: auto;
                width: 20px;
                aspect-ratio: 1;
                border-radius: 50%;
                border: 3px solid #ffffff;
                animation:
                    l20-1 0.8s infinite linear alternate,
                    l20-2 1.6s infinite linear;
            }

        }







    }

    /*button.remove_image*/
}

@media only screen and (max-width: 767px) {

    .up_uploader_gallery {
        & button.remove_image {
            .hover {
                opacity: 1;
                scale: 1;
                margin-block-end: 10px;
                margin-inline-start: 10px;
                filter: invert(1) drop-shadow(1px 1px 1px black);
            }
            
        }
    }
    
}

/*.up_uploader_gallery*/


.up_uploader {

    .uppy-c-btn {
        border: none;
        text-align: center;
        display: inline-flex;
        padding: 0;
        font-size: 1.4rem;
        background: none !important;
        border: none !important;
        color: #1b6aaa !important;
    }

    button.uppy-u-reset.uppy-c-btn.uppy-StatusBar-actionBtn.uppy-StatusBar-actionBtn--upload.uppy-c-btn-primary {
        background: #FF5722 !important;
        color: white !important;
        border-radius: 0;
    }

}
.ql-editor {
    direction: rtl;
    text-align: right;
}


/*actors_search page*/
/*======================================*/


.actor_profile_image_wp {
    .actor_profile_title {
        color: var(--e-global-color-secondary);
        font-family: "Rubik", Sans-serif;
        font-size: 2rem;
        font-weight: 300;
        line-height: 1em;
    }
}


button.add_actor_to_list_btn {
    display: flex;
    align-items: center;
    padding: 11px 10px;
    background-color: transparent;
    color: #607D8B;
    border-color: inherit;
    border: 2px solid;
    
    svg {
        width: 50px;
        margin-inline-end: 10px;
        opacity: .5;
    }

    span.text {
        /* max-width: 80px; */ white-space: normal;
        text-align: right;
        line-height: 1.1;
    }

    span.text_remove {
        display: none;
    }

    &.on, &:hover, &:focus {

        opacity: 1;
        background-color: #607d8b2e;
        color: #305465;

        svg {
            opacity: 1;
        }
    
        .check {
            stroke-dashoffset: 0;
        }
    }

    &.on {
        color: #305465;
        border-color: #607D8B;
        
        span.text_remove {
            display: block;
        }

        span.text_add {
            display: none;
        }

        svg .background {
            fill: #ff5722c9;
        }

        svg .stroke {
            stroke-dashoffset: 0;
        }

        svg .check {
            stroke-dashoffset: 0;
        }
    }

    .background {
        fill: #00000094;
        transition: ease all 0.6s;
        -webkit-transition: ease all 0.6s;
    }

    .stroke {
        fill: none;
        stroke: #fff;
        stroke-miterlimit: 10;
        stroke-width: 2px;
        stroke-dashoffset: 100;
        stroke-dasharray: 100;
        transition: ease all 0.6s;
        -webkit-transition: ease all 0.6s;
    }

    .check {
        fill: none;
        stroke: #fff;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2px;
        stroke-dashoffset: 22;
        stroke-dasharray: 22;
        transition: ease all 0.6s;
        -webkit-transition: ease all 0.6s;
    }
}
.masonry_grid {

    /* background: #DDD; */

    &:after {
        content: '';
        display: block;
        clear: both;
    }

    .grid-sizer,
    .grid-item {
        width: calc(33.333% - 10px);
        min-width: 200px;
        margin-bottom: 10px;
    }

    .grid-item {

        float: right;

        img {
            display: block;
            width: 100%;
        }
    }

}

/*actors_search page*/
/*======================================*/
#actor_search_tags {

    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 10px;

    a.tag_link {
        border: 1px solid;
        padding: 5px 10px;
        font-size: 1.2rem;
        color: black;
        transition: all .4s;

        &.reset {
            background-color: #0a0a0a40;
        }

        &:hover {
            background-color: black;
            color: white;
            border-color: black;
        }
    }
}

div#actor_search_tags_w {
    width: 800px;
    max-width: 100%;
    margin: auto;
}

div#actor_search_tags_w h2 {
    color: #fff;
    font-size: 1rem;
}

#search-actors-container {

    .search_w {
        width: 800px;
        margin: auto;
        max-width: 100%;
        position: relative;
    
    
        input#fas {
            border-radius: 20px;
            padding: 10px 20px;
        }
        
        button.submit_button {
            position: absolute;
            width: 46px;
            left: 5px;
            padding: 8px;
            box-sizing: border-box;
            border: none;
            display: flex;
            top: 0;
            align-items: center;
            justify-content: center;
            align-content: center;
            height: 100%;
    
            svg {
                fill: #bfbfbf;
                width: 25px;
                transition: all .4s;
            }
        
            &:hover {
                background: none;
        
                svg {
                    fill: #575656;
                }
            }
            
        }
    
    }


    form#free_actors_search {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;

        button.advance_search_button {

            color: white;
            fill: white;
            border: 1px solid white;
            width: 800px;
            margin: auto;
            max-width: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;

            svg.svg {
                width: 20px;
                height: 20px;
                fill: #fff;
                margin-inline-start: 10px;
            }

        }

        button.advance_search_button,
        input.submit_button {
            color: white;
            fill: white;
            border: 1px solid white;
        }

        button.advance_search_button svg {
            fill: #ffff;
            width: 30px;
            margin-inline-start: 10px;
        }
    }

    #advance_actors_search_overlay {
        position: fixed;
        min-width: 100vh;
        min-height: 100vw;
        inset: 0;
        margin: auto;
        background-color: #0000005e;
        z-index: 9;
        opacity: 0;
        transition: all .4s;
        pointer-events: none;

        &.on {
            opacity: 1;
            pointer-events: all;
        }
    }

    #advance_actors_search-container {

        position: fixed;
        overflow: hidden;
        border: 1px solid rgb(216 216 216 / 85%);
        border-radius: 12px;
        box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
        z-index: 150;
        background-color: white;
        inset: 0;
        margin: auto;
        width: 800px;
        height: 550px;
        max-width: 100%;
        max-height: 100%;
        transition: all .4s;
        pointer-events: none;
        opacity: 0;
        transform: translateY(200%);
        pointer-events: none;

        div#advance_actors_search-header,
        div#advance_actors_search-footer {
            padding: 10px 22px;
            display: flex;
            justify-content: space-between;
        }

        div#advance_actors_search-footer {
            border-top: 1px solid gainsboro;

            button.advance_actors_search-submit {
                background: black;
                color: white;
                border: 0;

                &:hover {
                    background: #464141;
                }
            }

            button.advance_actors_search-reset {
                border: 0;
                color: gray;
                text-decoration: underline;

                &:hover {
                    background: none;
                    color: black;
                    text-decoration: underline;
                }
            }
        }

        div#advance_actors_search-header {
            justify-content: center;
            border-bottom: 1px solid gainsboro;

            button.close-advance_actors_search {

                position: absolute;
                left: 30px;
                top: 25px;
                padding: 0;
                height: unset;
                border: 0;
                display: flex;

                svg {
                    width: 30px;
                    height: 30px;
                    color: black;
                }

                &:hover {
                    background: none;
                    scale: 1.5;
                }
            }


        }

        form#advance_actors_search {
            max-height: 400px;
            overflow: hidden;
            overflow-y: auto;
            padding: 20px;
        }
    }

    #advance_actors_search_overlay.on+#advance_actors_search-container {
        opacity: 1;
        transform: translateY(0%);
        pointer-events: all;
    }

    button.advance_search_button svg circle {
        animation: move1 1s ease-in-out infinite alternate;
      }
      button.advance_search_button svg circle:nth-child(4) {
        animation: move2 1s ease-in-out infinite alternate;
      }

}

@keyframes move1 {
    from {transform: translateX(0);}
    to { transform: translateX(40%);}
}
@keyframes move2 {
    from {transform: translateX(0);}
    to { transform: translateX(-40%);}
}
@media only screen and (max-width: 767px) {

    #actor_search_tags {
        zoom: 0.8;
    }

    form#free_actors_search {
        flex-wrap: wrap;
    }

    button.advance_search_button,
    input.submit_button {
        flex-grow: 1;
    }

    input.submit_button {
        flex-grow: 10;
    }

}

form#advance_actors_search {



    .search_field {

        border-bottom: 1px solid #eaeaea;
        margin-bottom: 10px;
        padding-bottom: 20px;

        select option {
            color: black;
        }

        select option[value=""],
        select:has(option[value=""]:checked) {
            color: #bcbcbc;
        }


        label {
            margin-inline-start: 5px;
            margin-block-end: 10px;
        }


        .age_wrapper {
            display: flex;
            gap: 30px;
        }
    }

    &::-webkit-scrollbar {
        width: 12px;
    }

    &::-webkit-scrollbar-track {
        background: #e6e6e6;
        width: 8px;
    }

    &::-webkit-scrollbar-thumb {
        background: #afaeae;
        border: 3px solid #e6e6e6;
        border-radius: 8px;
        min-height: 40px;
    }


}

.actors_container_inner {


    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

    &:has(.empty_div) {
        display: flex;
        justify-content: center;

        .empty_div {
            width: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 100%;
        }

    }
}

div#actors_cb {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));

    p.actors_item_name {
        font-size: 0.8rem;
        padding: 4px;
    }
}

#actors_cb,
.actors_container_inner {

    .actors_item_wrapper {


        position: relative;
        
        &:has(input[type=checkbox]:checked) {
            & [aria-label][class*=cooltipz]:after,
            & [aria-label][data-cooltipz-dir]:after {
                content: attr(aria-label2);
            }
        }

        .actors_item {

            position: relative;
            overflow: hidden;
            display: block;
            height: 100%;

            img.actors_item_image {
                display: block;
                height: 100%;
                object-fit: cover;
                transition: all .5s ease;
            }

            p.actors_item_name {
                margin: 0;
                position: absolute;
                bottom: 0;
                width: 100%;
                background: rgb(0, 0, 0);
                background: linear-gradient(270deg, rgb(0 0 0 / 66%) 0%, rgba(0, 0, 0, 0) 100%);
                padding: 10px;
                color: white;
            }
        }

        &:hover {
            img.actors_item_image {
                scale: 1.1;
            }
        }

        .checkbox-actors_item {


            position: absolute;
            display: inline-block;
            width: 30px;
            height: 30px;
            top: 0;
            inset-block-start: 10px;
            inset-inline-start: 10px;
            opacity: .4;
            transition: all .4s;
        
            &:has(input[type=checkbox]:checked),
            &:hover {
            opacity: 1;
            .check {
                stroke-dashoffset: 0;
            }
            }
        
            input[type=checkbox] {
        
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            margin: 0;
            opacity: 0;
            -appearance: none;
            -webkit-appearance: none;
            
            &:hover {
                cursor: pointer;
            }
            &:checked + svg .background {
                fill: #ff5722c9;
            }
            &:checked + svg .stroke {
                stroke-dashoffset: 0;
            }
            &:checked + svg .check {
                stroke-dashoffset: 0;
            }
            }
        
            .background {
            fill: #00000094;
            transition: ease all 0.6s;
            -webkit-transition: ease all 0.6s;
            }
            .stroke {
            fill: none;
            stroke: #fff;
            stroke-miterlimit: 10;
            stroke-width: 2px;
            stroke-dashoffset: 100;
            stroke-dasharray: 100;
            transition: ease all 0.6s;
            -webkit-transition: ease all 0.6s;
            }
            .check {
            fill: none;
            stroke: #fff;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 2px;
            stroke-dashoffset: 22;
            stroke-dasharray: 22;
            transition: ease all 0.6s;
            -webkit-transition: ease all 0.6s;
            }
        }

    }

}

form#actors_form_query_form {

    position: fixed;
    z-index: 9999;
    inset: 0;
    margin: auto;
    width: 600px;
    max-width: 90%;
    height: fit-content;
    background: #b2d4e7d4;
    padding: 50px 20px;
    backdrop-filter: blur(16px);
    border: 2px solid #00000061;
    box-shadow: 13px 16px 13px -9px #10354d80;
    opacity: 0;
    transform: translateY(30%);
    pointer-events: none;
    transition: all .4s;

    &.on{
        opacity: 1;
        transform: translateY(0%);
        pointer-events: all;
    }

    &.loading {

    }

    button.close {

        position: absolute;
        top: 20px;
        left: 20px;
        padding:0;
        border:0;
        background: none;
        
        svg {
            width: 30px
        }
    
        &:hover {
            background: none;
            scale: 1.07;
    
        }
    }
    

    .form-group {
        &.required {
            label {
                &:before{
                    content:"*";
                }
            }
        }
    }

    input[type="submit"] {
        width: 100%;
        background-color: #366b8a;
        border: none;
        margin-top: 17px;
        color: #fff;
        transition: all .4s;
        
        &:hover {
            background-color: #1c4862;
            scale: 0.95;
        }
    }


    div#actors_cb {
        margin-bottom: 20px;
        border-bottom: 1px solid;
        padding-bottom: 20px;
        max-height: 300px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px;
    }
}

button#show_actors_form_query_btn {
    position: fixed;
    z-index: 99;
    align-items: center;
    padding: 5px 20px;
    rotate: -90deg;
    font-size: 1.3rem;
    color: whitesmoke;
    transform-origin: bottom right;
    inset: 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
    background: #366b8a;
    margin-inline-start: 0;
    border: none;
    translate: 50px 0;

    svg {
        width: 26px;
        fill: #fff;
        rotate: 90deg;
        margin-inline-end: 7px;
    }

    &:hover {
        background-color: #1c4862;
    }
    
}

div#actors_form_query.active {
    button#show_actors_form_query_btn {
        translate: 0;
    }
}


@media only screen and (max-width: 767px) {

    form#actors_form_query_form {
        max-height: 90vh;
        top: 0 !important;
        overflow: auto;
        
    }

    button#show_actors_form_query_btn {
        zoom: 0.6;
    }

    .actors_container_inner {
        gap: 8px;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        overflow-x: hidden;
    }

}


form#actors_form_query_form,
form#update-user-form {


    &.loading {

        pointer-events: none;

        & >* {
            opacity: .8;
            filter: grayscale(1) blur(1px);
        }

        &:after {
            content: '';
            position: absolute;
            inset: 0;
            margin: auto;
            width: 100px;
            aspect-ratio: 1;
            border-radius: 50%;
            border: 15px solid #009688;
            animation:
                l20-1 0.8s infinite linear alternate,
                l20-2 1.6s infinite linear;
        }

    }

}



button.f-thumbs__slide__button {
    width: var(--f-thumb-width);
    border: none;
    padding: 0;
}


@media only screen and (max-width: 767px) {

    .masonry_grid {

        .grid-sizer,
        .grid-item {
            width: calc(50% - 10px);
            min-width: unset;
            margin-bottom: 10px;
        }
    }


}





/*********** Baseline, reset styles ***********/
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    display: block;
    margin: 30px 0;
    min-width: 350px;
}

/* Removes default focus */
input[type="range"]:focus {
    outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
    background-color: #c7c7c7;
    border-radius: 5px;
    height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    margin-top: -12px;
    /* Centers thumb on the track */
    background-color: #000000;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
}

input[type="range"]:focus::-webkit-slider-thumb {
    outline: 3px solid #000000;
    outline-offset: 0.125rem;
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
    background-color: #c7c7c7;
    border-radius: 5px;
    height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
    background-color: #000000;
    border: none;
    /*Removes extra border that FF applies*/
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
}

input[type="range"]:focus::-moz-range-thumb {
    outline: 3px solid #000000;
    outline-offset: 0.125rem;
}



/*=========================

checkboxs

==========================*/

.checkbox-wrapper-30 .checkbox {
    --bg: #fff;
    --brdr: #d1d6ee;
    --brdr-actv: #1e2235;
    --brdr-hovr: #bbc1e1;
    --dur: calc((var(--size, 2)/2) * 0.6s);
    display: inline-block;
    width: calc(var(--size, 1) * 22px);
    position: relative;
}

.checkbox-wrapper-30 .checkbox:after {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}

.checkbox-wrapper-30 .checkbox>* {
    position: absolute;
}

.checkbox-wrapper-30 .checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    background-color: var(--bg);
    border-radius: calc(var(--size, 1) * 4px);
    border: calc(var(--newBrdr, var(--size, 1)) * 1px) solid;
    color: var(--newBrdrClr, var(--brdr));
    outline: none;
    margin: 0;
    padding: 0;
    transition: all calc(var(--dur) / 3) linear;
}

.checkbox-wrapper-30 .checkbox input:hover,
.checkbox-wrapper-30 .checkbox input:checked {
    --newBrdr: calc(var(--size, 1) * 2);
}

.checkbox-wrapper-30 .checkbox input:hover {
    --newBrdrClr: var(--brdr-hovr);
}

.checkbox-wrapper-30 .checkbox input:checked {
    --newBrdrClr: var(--brdr-actv);
    transition-delay: calc(var(--dur) /1.3);
}

.checkbox-wrapper-30 .checkbox input:checked+svg {
    --dashArray: 16 93;
    --dashOffset: 109;
}

.checkbox-wrapper-30 .checkbox svg {
    fill: none;
    left: 0;
    pointer-events: none;
    stroke: var(--stroke, var(--border-active));
    stroke-dasharray: var(--dashArray, 93);
    stroke-dashoffset: var(--dashOffset, 94);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    top: 0;
    transition: stroke-dasharray var(--dur), stroke-dashoffset var(--dur);
}

.checkbox-wrapper-30 .checkbox svg,
.checkbox-wrapper-30 .checkbox input {
    display: block;
    height: 100%;
    width: 100%;
}

.multi-checkbox-continer {
    display: flex;
    align-items: flex-start;
    margin: 0 0 7px 10px;
}

.multi-checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 21px;
}

form#actor_form_personal .form-group.multi-checkbox {
    flex: 1 0 100%;
}

.checkbox-wrapper-30 {
    margin-inline-end: 5px;
}

.form-group.multi-checkbox {}


@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}






/*

#drop_zone {
    border: 5px dashed #cdcdcd;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    border-radius: 15px;
}


.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 190px;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
    transition: background .6s ease-in-out, border .2s ease-in-out;
    background: rgba(255, 255, 255, 0.55);
    border: 2px dashed rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.17);
    margin: 20px 0;
}

.drop-container input[type=file] {

    max-width: 90%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #555;

    transform-origin: top center;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0.1px solid transparent;
}

svg.drop-img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0px auto 0;
    fill: #c4c4c4;
}


.selected_c {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.selected_c div {
    display: flex;
    align-content: center;
    align-items: center;
}

label {
    margin-inline: 4px 15px;
}

.cpa-field {
    display: flex;
    margin: 20px 0;
    border-bottom: 1px solid;
    padding-bottom: 20px;
}

p.label {
    margin: 0;
}

*/

