@charset "UTF-8";

.cast-container {
    width: 100%;
}

.cast-container #step2,
#step3,
#step4,
#step5,
#step6,
#step7 {
    display: none;
}

#step1,
#step2,
#step3,
#step4,
#step5,
#step6,
#step7 {
    width: 87%;

    @media (max-width: 768px) {
        width: 100% !important;
    }
}

#step3
 {
    width: 100%;

    @media (max-width: 768px) {
        width: 100% !important;
    }
}
button,
input,
optgroup,
select,
textarea {
    font-family: "Baloo Bhaijaan 2", cursive;
}

.cast-container .top-content .span-1 {
    font-size: clamp(30px, 5vw, 36px);
    font-weight: bold;
    margin-right: 10px;
}

.cast-container .top-content .span-2 {
    color: #f05271;
    font-weight: 500;
    font-size: 24px;
}

.cast-container .center-col {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
}

.cast-container .col-1 {
    width: 28%;
    margin: 0;
}

.cast-container .col-1 span {
    background-color: rgba(128, 128, 128, 0.1019607843);
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #808080;
    width: 40px;
    height: 40px;
    border: #808080 2px solid;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}

.cast-container .col-1 .number::after {
    content: "";
    display: block;
    height: 80px;
    width: 2px;
    background-color: #d3d3d3;
    position: absolute;
    top: 100%;
}

.cast-container .col-1 .row {
    cursor: pointer;
    display: flex;
    margin-left: 5px;
    height: 118px;
}

.cast-container .row div h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 0px;
}

.cast-container .row div p {
    margin-top: 5px;
    color: #808080;
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
}

.cast-container .col-1 .row div {
    margin-left: 20px;
    width: 70%;
}

.cast-container .row.active h3 {
    color: #f05271;
}

.cast-container .row.active span {
    background-color: #f05271;
    color: white;
    border: none;
    /* شيلي البوردر */
    outline: 2px solid #f05271;
    /* الخط الخارجي */
    outline-offset: 5px;
}

.cast-container .row.active1 span {
    background-color: #44bda4;
    color: white;
    border: none;
    /* شيلي البوردر */
    outline: 2px solid #44bda4;
    /* الخط الخارجي */
    outline-offset: 5px;
}

.cast-container .row.active1 h3 {
    color: #44bda4;
}

.cast-container .col-2 {
    width: 72%;
}

.cast-container .col-2 .content .top-content-2 {
    font-weight: 700;
    font-size: clamp(30px, 5vw, 36px);
    margin-bottom: 5px;
}

.cast-container input[type="radio"] {
    accent-color: #f05271;
}

.cast-container .content label {
    font-size: 24px;
    font-weight: 500;
}

.cast-container .col-2 .content .exprience {
    font-weight: 700;
    font-size: clamp(18px, 5vw, 36px);
    margin-top: 5%;
    margin-bottom: 8px;
}

.cast-container .col-2 #client {
    margin-left: 7%;
}

.cast-container .radio-group {
    display: flex;
    gap: 40px;
}

.cast-container .radio-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    gap: 10px;
}

.cast-container .radio-container input {
    display: none;
}

.cast-container .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    /* الأسود */
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

.cast-container .radio-container input:checked + .checkmark::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #f05271;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cast-container .custom-dropdown {
    width: 200px;
    position: relative;
    font-family: sans-serif;
    user-select: none;
}

.cast-container .custom-dropdown .selected {
    padding: 10px 15px;
    border-radius: 100px;
    /* border-radius للـ select */
    background-color: #ffffff;
    box-shadow: 0px 16px 88px 0px rgba(0, 0, 0, 0.1019607843);
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content:center;
 color: #808080;
    font-size: 16px;
    font-weight: 700;
}

.cast-container .custom-dropdown .selected i {
    pointer-events: none;
    transition: transform 0.3s ease;
}
html[lang="en"] .cast-container .custom-dropdown .selected i {
    margin-left: 37px;
}
html[lang="ar"] .cast-container .custom-dropdown .selected i {
    margin-right: 37px;
}
/* أيقونة تدور لما dropdown مفتوح */
.cast-container .custom-dropdown.open .selected i {
    transform: rotate(180deg);
}

.crew-container .col-2 .step-3.content .custom-select .options.open-option {
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 3px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 5;
    cursor: pointer;
    opacity: 1;
    /* تظهر */
    transform: translateY(0);
    /* تتحرك لأسفل */
    pointer-events: auto;
    display: block !important;
}
.cast-container .custom-select .options div {
    padding: 10px 15px;
    cursor: pointer;
}

.cast-container .custom-select .options div:hover {
    background-color: #e0e0e0;
}


.cast-container .custom-dropdown .options div {
    padding: 10px 15px;
    cursor: pointer;
}

.cast-container .custom-dropdown .options div:hover {
    background-color: #e0e0e0;
}

/* عند الفتح */
.cast-container .custom-dropdown.open .options {
    max-height: 200px;
    /* ارتفاع كافي للخيارات */
}

.cast-container .dob-container {
    display: flex;
    border-radius: 100px;
    background: #ffffff;
    box-shadow: 0px 16px 88px 0px rgba(0, 0, 0, 0.1019607843);
    height: 45px;
    width: 40%;
    padding: 0px 10px;
    font-weight: 700;
    font-size: 16px;
    color: #808080;
}

.cast-container .dob-drop {
    flex: 1;
    position: relative;
}

.cast-container .dob-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    height: 45px;
    cursor: pointer;
    font-size: 14px;
    background: transparent;
}

.cast-container .dob-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 900;
    height: 153px;
    overflow-y: scroll;
}

.cast-container .dob-options div {
    padding: 8px 10px;
    cursor: pointer;
}

.cast-container .dob-options div:hover {
    background: #eee;
}

.cast-container .dob-drop.open .dob-options {
    display: block;
}

.cast-container .intro p {
    font-size: clamp(30px, 5vw, 36px);
    font-weight: bold;
    margin-top: 70px;
    letter-spacing: 0%;
}

.cast-container .intro textarea {
    width: 100%;
    resize: none;
    height: 250px;
    outline: none;
    border: none;
    border-radius: 0px 50px 50px 50px;
    padding: 30px;
}

.cast-container textarea::placeholder {
    color: #808080;
    font-size: 20px;
    font-weight: 500;
}

.cast-container .col-2 .row-3 {
    width: 100%;
    display: flex;
    margin-top: 8%;
    align-items: flex-start;
    justify-content: space-between;
}

.cast-container .back {
    width: 20%;
    background-color: #808080;
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border: none;
    outline: none;
    height: 40px;
    border-radius: 168px;
    margin-left: 2%;
    transition: background-color 0.3s ease;
}

.cast-container .back:hover {
    background-color: #f05271;
}

.cast-container .back-btn {
    width: 80%;
}

.cast-container .skip {
    display: flex;
    align-items: start;
    justify-content: flex-end;
    gap: 20px;
    width: 20%;
    height: 80px;
}
.icon-s {
    font-size: 36px;
}

.cast-container .skip span {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cast-container .skip span:hover {
    color: #f05271;
}

.cast-container .skip button {
    outline: none;
    border: none;
    height: 48px;
    width: 48px;
    /* display:flex;
  align-items: center;
  justify-content: center; */
    border-radius: 35px;
    background-color: #f05271;
    transition: background-color 0.3s ease;
}

html[lang="ar"] .cast-container .skip button {
    transform: rotate(180deg);
}

.modal {
    z-index: 1055 !important;
}

.modal-backdrop {
    z-index: 1040 !important;
}

.cast-container .skip button i {
    color: white;
    font-size: 25px;
}

.cast-container .skip button:hover {
    background-color: #808080;
}

.cast-container .col-2 .content.step-2 .top-content-step-2 {
    font-weight: 700;
    font-size: clamp(30px, 5vw, 36px);
    margin-bottom: 0px;
    width: 80%;
    line-height: 38px;
}

.cast-container .col-2 .content.step-2 .sub-content-2 {
    font-weight: 700;
    font-size: clamp(12px, 5vw, 36px);
    margin-top: 0px;
    margin-bottom: 5px;
}

.cast-container .col-2 .step-2.content .input-with-btn {
    position: relative;
    width: 100%;
    margin-top: 35px;
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.crew-container .col-2 .step-7.content .input-with-btn {
    position: relative;
    width: 90%;
    margin-top: 35px;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 50px;
}

.crew-container .col-2 .step-7.content .input-with-btn input {
    width: 70%;
    padding: 15px 15px 15px 15px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}
/* .cast-container .skip button {
  position: relative;
}

.cast-container .skip button i {
  position: absolute;
  top: 50%;
  left: 50%;

} */
.cast-container .col-2 .step-2.content .input-with-btn input {
    width: 70%;
    padding: 0;
    /* مساحة للزرار */
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.cast-container .col-2 .step-2.content .input-with-btn input::placeholder {
    color: #f05271;
    font-weight: 500;
    font-size: 20px;
}

.cast-container .col-2 .step-2.content .input-with-btn .add-btn {
    position: unset;
    right: 28px;
    top: 50%;
    transform: translateY(-0%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 6px;
    background: #f05271;
    color: white;
    border-radius: 50px;
    font-size: 25px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cast-container .col-2 .step-2.content .followers {
    font-size: clamp(30px, 5vw, 36px);
    font-weight: 700;
    margin-left: 15px;
    margin-top: 95px;
}

.cast-container .col-2 .step-2.content .result .result-1 {
    background-color: #ffffff;
    width: 100%;
    height: 60px;
    border-radius: 50px;
    display: flex;

    align-items: center;
    /* padding-left: 2%;
   padding-right: 2%; */
    margin-top: 20px;
    position: relative;
}

.cast-container .result-1 {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    /* ممكن تعدلي على حسب الحاجة */
    background-color: #44bda4;
    border-radius: 8px;
    padding: 10px 40px;
    margin-bottom: 10px;
}

.cast-container .result-1 input.text-item {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: black;
    font-size: 16px;
    padding-left: 60px;
    /* مساحة للأيقونة اليسار */
    padding-right: 70px;
    /* مساحة للأيقونات اليمين */
}

.cast-container .result-1 .glob.icon-left {
    position: absolute;
    left: 35px;
}

.cast-container .result-1 .icon-1 {
    position: absolute;
    right: 50px;
    top: 50%;
    cursor: pointer;
    background-color: #808080;
    transform: translateY(-50%);
    border-radius: 50px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff !important;

    i {
        font-size: 18px !important;
    }
}

.cast-container .result-1 .icon-2 {
    position: absolute;
    right: 10px;
    top: 50%;
    background-color: 808080;
    transform: translateY(-50%);
    border-radius: 50px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff !important;

    i {
        font-size: 18px !important;
    }
}

.cast-container .col-2 .step-2.content .social .youtube {
    position: relative;
    width: 80%;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.cast-container .col-2 .step-2.content .social div input {
    width: 100%;
    padding-left: 90px;
    padding-right: 70px;
    height: 60px;
    border-radius: 50px;
    outline: none;
    border: none;
}

.cast-container .col-2 .step-2.content .social div .icon-left {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 30px;
}

.cast-container .col-2 .step-2.content .social div .icon-3 {
    position: absolute;
    right: 50px;
    top: 50%;
    background-color: #808080;
    transform: translateY(-50%);
    border-radius: 50px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cast-container .col-2 .step-2.content .social div .icon-4 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #808080;
    border-radius: 50px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cast-container .col-2 .step-3.content .top-content-3 {
    font-weight: 700;
    font-size: clamp(30px, 5vw, 36px);
    line-height: 57px;
    margin-top: -5px;
    z-index: -1;
}

.cast-container .col-2 .step-3.content .sub-content-3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #f05271;
}

.title-of-work {
    background-color: #ffffff;
    height: 66px;
    border-radius: 50px;
    padding-top: 15px;
    width: 100%;
    position: relative;
}

.title-of-work input {
    /* border: none;
  outline: none;
  height: auto;
  min-height: 40px;
  padding: 10px 0px 10px 5px;
  width: 90%;
  margin-left: 10px;
  position: absolute; */
    width: 70%;
    padding: 5px 60px 15px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.title-of-work input::placeholder {
    color: #808080;
    font-size: clamp(14px, 5vw, 10px);
    font-weight: 500;
}

.title-of-work button {
    background-color: #f05271;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    border: none;
    font-size: 25px;
    font-weight: 300;
    color: #ffffff;
    position: absolute;
    right: 10px;
}

.work-result {
    min-height: 165px;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0px 16px 88px 0px rgba(0, 0, 0, 0.1019607843);
    border-radius: 30px;
    margin-top: 10px;
    width: 100%;
}

.result-row {
    border-bottom: 1px solid rgba(128, 128, 128, 0.5019607843);
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4px;
    padding-top: 4px;
    color: #808080;
}

.aword-row {
    border-bottom: 1px solid rgba(128, 128, 128, 0.5019607843);
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4px;
    padding-top: 4px;
    color: #808080;
}

.aword-title {
    font-weight: 700;
    font-size: clamp(30px, 5vw, 36px);
    margin-top: 30px;
    margin-bottom: 6px;
}

.cast-container .col-2 .step-3.content .sub-content-3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
}

/* Standardized Premium Custom Select */
.custom-select {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.cast-container {
    /* Glassmorphism Filter Dropdown Style */
    .filter-dropdown {
        position: relative;
        flex-shrink: 0;
        width: 100%;
        margin-bottom: 15px;
        z-index: auto;
    }

    .custom-select-search-input {
        margin-bottom: 10px !important;
    }

    .filter-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        background-color: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 100px;
        height: 55px;
        width: 100%;
        padding: 0 24px;
        cursor: pointer;
        transition: none; /* Instant */
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .filter-dropdown-toggle:hover {
        border-color: #f05271;
    }

    .filter-dropdown.show .filter-dropdown-toggle {
        border-color: #f05271;
    }

    .filter-icon {
        display: none !important; /* Hide icons as requested */
    }

    .filter-text {
        font-size: 15px;
        font-weight: 500;
        color: #444;
        white-space: nowrap;
        flex: 1;
        text-align: start;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    [dir="rtl"] .filter-text {
        text-align: right;
    }

    .filter-arrow-svg {
        flex-shrink: 0;
        margin-left: auto;
        width: 10px;
        height: 7px;
        opacity: 0.5;
        transition: none;
    }

    [dir="rtl"] .filter-arrow-svg {
        margin-left: 0;
        margin-right: auto;
    }

    .filter-dropdown.show .filter-arrow-svg {
        transform: rotate(180deg);
        opacity: 1;
    }

    .filter-dropdown-menu {
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        width: 100%;
        min-width: 200px;
        background-color: #ffffff;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        display: none; /* Use display for speed */
        max-height: 350px;
        overflow-y: auto;
        z-index: 9999;
        border: 1px solid rgba(240, 82, 113, 0.1);
    }

    .filter-dropdown.show .filter-dropdown-menu {
        display: block;
    }

    [dir="rtl"] .filter-dropdown-menu {
        left: auto;
        right: 0;
    }

    .filter-dropdown-list {
        list-style: none;
        padding: 12px 0;
        margin: 0;
        max-height: 300px;
        overflow-y: auto;
    }

    /* Scrollbar Styling */
    .filter-dropdown-list::-webkit-scrollbar {
        width: 6px;
    }
    .filter-dropdown-list::-webkit-scrollbar-track {
        background: transparent;
    }
    .filter-dropdown-list::-webkit-scrollbar-thumb {
        background: #eee;
        border-radius: 10px;
    }
    .filter-dropdown-list::-webkit-scrollbar-thumb:hover {
        background: #ddd;
    }

    .filter-dropdown-item {
        display: block;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 500;
        color: #555;
        text-decoration: none;
        transition: all 0.2s ease;
        text-align: start;
        cursor: pointer;
    }

    [dir="rtl"] .filter-dropdown-item {
        text-align: right;
    }

    .filter-dropdown-item:hover {
        background-color: rgba(240, 82, 113, 0.05);
        color: #f05271;
        padding-left: 30px;
    }

    [dir="rtl"] .filter-dropdown-item:hover {
        padding-left: 24px;
        padding-right: 30px;
    }

    .filter-dropdown-item.active {
        background-color: #f05271;
        color: #ffffff !important;
    }

    .filter-dropdown-item.active:hover {
        background-color: #d13d5a;
    }
}

.custom-select .selected {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    /* height: 55px; */
    background: #fff;
    /* border: 1px solid #e2e2e2; */
    padding: 0 0px !important;
    border-radius: 50px;
    cursor: pointer;
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    position: relative;
}

.custom-select .selected:hover {
    border-color: #f05271;
}

.custom-select .selected span {
    font-weight: 500;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.836); /* Placeholder color */
    transition: color 0.3s ease;
    position: static !important; /* Reset any absolute positioning */
}

.custom-select .selected span.has-value {
    color: #000;
}

.custom-select .selected i.arrow {
    font-size: 14px !important;
    color: #888;
    transition: transform 0.3s ease;
    position: static !important; /* Reset any absolute positioning */
}

.custom-select .selected i.arrow.open {
    transform: rotate(180deg);
}

.custom-select .options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #f1f1f1;
}

.custom-select .options.open-option {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.custom-select .options div,
.custom-select .options .option-item {
    padding: 12px 25px !important;
    font-size: 15px;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff !important;
    border-bottom: 1px solid #fafafa;
    text-align: inherit;
    visibility: visible !important;
}

.custom-select .options div:hover,
.custom-select .options .option-item:hover {
    background-color: #f05271 !important;
    color: #fff !important;
}

/* Specific step overrides if needed */
.cast-container .col-2 #step5 .custom-select .selected {
    height: 50px;
}
.cast-container
    .col-2
    .step-3.content
    .custom-select
    .options
    .option-item:hover {
    background-color: rgba(240, 82, 113, 0.1019607843);
    border-radius: 10px;
    height: 45px;
    color: #f05271;
}

.cast-container .col-2 .container-content .row-2 {
    display: flex;
    width: 88%;
}

.cast-container .col-2 .container-content .row-2 .level-exprience {
    width: 50%;
}

.cast-container .col-2 .container-content .row-2 .level-exprience p {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 24px;
}

.cast-container .col-2 .container-content .row-2 .team-size {
    width: 50%;
    margin-top: 3px;
}

.cast-container .col-2 .container-content .row-2 .team-size div {
    margin-left: 26px;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 15px;
}

.cast-container .col-2 .container-content .row-2 .team-size div span {
    margin-left: 5px;
    font-size: 14px;
    line-height: 15px;
    font-weight: 500px;
    color: #f05271;
}

.cast-container .col-2 .Available-equipment .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 8px;
    margin-left: 5px;
}

.cast-container .col-2 .container-content .row-2 .team-size input {
    width: 95%;
    padding: 0px 30px;
    border-radius: 30px;
    height: 55px;
    outline: none;
    border: none;
    margin-left: 20px;
}

.cast-container .col-2 .Available-equipment {
    margin-bottom: 20px;
}

.cast-container .col-2 .equipment-tags {
    background-color: white;
    border-radius: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: flex-start;
}

.cast-container .col-2 .equipment-tags.skills {
    min-height: 156px;
}

.cast-container .col-2 .equipment-tags.equipments {
    min-height: 156px;
}

.cast-container .col-2 .equipment-tags.languages {
    min-height: 237px;
    width: 100%;
}

.cast-container .col-2 .equipment-tags .tags {
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 5px;
}

.cast-container .col-2 .equipment-tags .tag-item {
    border: 1px solid #808080;
    border-radius: 100px;
    padding: 5px 15px 5px 15px;
    margin-left: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.cast-container .col-2 .equipment-tags .tag-item span {
    margin-right: 8px;
}

.cast-container .col-2 .tag-item .delete-icon {
    cursor: pointer;
    font-size: 14px;
}

.cast-container .col-2 .equipment-tags input {
    border: none;
    outline: none;
    height: 26px;
    padding-left: 15px;
    margin-top: 20px;
    border-radius: 30px;
    min-width: 120px;
}

html[lang="ar"] .cast-container .col-2 .equipment-tags input {
    border: none;
    outline: none;
    height: 26px;
    padding-right: 15px;
    margin-top: 20px;
    border-radius: 30px;
    min-width: 120px;
}
.cast-container .col-2 .suggestions {
    list-style: none;
    width: 100%;
    position: absolute;
    padding: 0px;
    top: 100%;
    border-radius: 10px;
    background-color: white;
    z-index: 999;
}

.cast-container .suggestions.hidden {
    opacity: 0;
    pointer-events: none;
    /* أهم حاجة */
}

.cast-container .suggestions.show {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
    max-height: 361px;
    overflow-y: scroll;
    margin-top: 10px;
    border-radius: 26px;
}

.cast-container .col-2 .suggestions li {
    padding: 10px 0px 10px 15px;
}

.cast-container .col-2 .suggestions li:hover {
    background-color: rgba(240, 82, 113, 0.1019607843);
    width: 100%;
    display: block;
    border-radius: 10px;
    cursor: pointer;
}

.cast-container .Available-equipment.languages {
    min-height: 237px;
}
.cast-container .col-1 .row.active1 .number::after {
    height: 64px;
    top: 116%;
}
.cast-container .col-1 .row.active .number::after {
    height: 72px;
    top: 116%;
}
.cast-container .upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 50px;
    width: 100%;
}

.cast-container .upload.Showreel {
    height: 60px;
    border-radius: 50px;
    padding: 5px 30px;
}

.cast-container .upload.profile {
    padding: 18px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.cast-container .Showreel-file {
    margin-top: 10px;
}

.cast-container .Showreel-file span {
    padding-left: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
}

.cast-container .top-content-6 {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 25px;
    font-weight: 600;
}

.cast-container .Showreel-file img {
    width: 29px;
    height: 23px;
}

.cast-container .upload.work {
    border-radius: 50px;
    min-height: 156px;
    padding: 5px 30px;
    margin-bottom: 3%;
}

.cast-container .work-title {
    font-size: 30px;
    line-height: 25px;
    font-weight: 600px;
    margin-bottom: 15px;
}

.cast-container .work-subtitle {
    font-size: 18px;
    line-height: 15px;
    color: #f05271;
    margin-bottom: 20px;
    font-weight: 500;
}

.cast-container .upload.work .upload-btn {
    background-color: transparent;
    width: 25%;
    display: block;
    color: #808080;
    font-size: 11px;
}

.cast-container .upload.work .upload-btn img {
    height: 16px;
    width: 19px;
    margin-bottom: 5px;
}

.cast-container .upload.work .upload-btn span {
    color: #808080;
    font-weight: 600;
    font-size: 14px;
}

.cast-container .upload .previous-work {
    min-height: 112px;
    width: 100%;
    border: 1px dashed #cdcdcd;
    border-radius: 15px;
    display: flex;
    /* نخليها Flex */
    flex-direction: column;
    /* العناصر فوق بعض */
    justify-content: center;
    /* في النص عموديًا */
    align-items: center;
    margin: 10px 0px;
}

.cast-container .upload .preview {
    width: 59px;
    height: 59px;
    object-fit: cover;
    border-radius: 50%;
}

.cast-container .upload .upload-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: clamp(10px, 5vw, 20px);
    background-color: #f05271;
    height: 59px;
    border-radius: 35px;
    width: 40%;
}

.cast-container .upload .upload-btn span {
    font-size: clamp(10px, 5vw, 20px);
    color: #ffffff;
    line-height: 14px;
    font-weight: 700;
    margin-left: 10px;
    margin-right: 10px;
}

.cast-container .upload .file-input {
    display: none;
    /* نخفي input الفعلي */
}

.cast-container .upload.Showreel .upload-btn {
    width: 36px;
    height: 36px;
    border-radius: 50px;
}

.cast-container .sub-title-7 {
    font-size: 16px;
    line-height: 19px;
    color: #f05271;
    font-weight: 500;
    margin-bottom: 20px;
}

.cast-container .crew-independents {
    line-height: 25px;
    font-size: 30px;
    font-weight: 600;
    margin-top: 45px;
    margin-bottom: 15px;
}

.cast-container .crew-companies {
    line-height: 25px;
    font-size: 30px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 15px;
}

input[disabled] {
    background-color: white !important;
    color: black;
    /* أو أي لون */
}

@media (max-width: 1503px) {
    .cast-container {
        background-image: none;
    }
    .cast-container .center-col {
        flex-direction: column;
        width: 100%;
    }
    .cast-container .col-2 .equipment-tags {
        width: 92%;
    }
    .cast-container .col-2 .step-3.content .custom-select,
    .cast-container .col-2 .step-3.content .filter-dropdown {
        width: 92%;
    }
    .cast-container .input-with-btn {
        width: 97%;
    }
    /* .cast-container .top-content {
    margin-left: 4%;
    margin-top: 15%;
  } */
    .cast-container .center-col .col-1 {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin-left: -1%;
    }
    .cast-container .center-col .col-2 {
        width: 95%;
        margin-left: 0%;
        margin-top: 12%;
    }
    .cast-container .center-col .col-1 .row {
        width: 33%;
    }
}
@media (min-width: 1515px) {
    .center-col {
        width: 85%;
    }
}
@media (max-width: 1403px) {
    .cast-container .col-2 .step-2.content .followers {
        margin-top: 10px;
    }
}
@media (max-width: 1430px) {
    .cast-container .center-col {
        width: 95%;
    }
}
@media (max-width: 1106px) {
    .cast-container .center-col .col-1 .row {
        width: 50%;
    }
    .cast-container .col-2 .step-2.content .result .result-1 {
        width: 100%;
    }
    .cast-container .col-2 .step-2.content .social .youtube {
        width: 90%;
    }
    .cast-container .col-2 .step-2.content .input-with-btn {
        width: 90%;
    }
}
@media (max-width: 770px) {
    .cast-container .center-col .col-1 .row {
        width: 100%;
    }
}
@media (max-width: 770px) {
    .cast-container .center-col .col-2 .top-content-2 {
        margin-bottom: 20px;
    }
    .cast-container .radio-group {
        flex-direction: column;
        gap: 5px;
    }
    .cast-container .skip {
        width: 48%;
        height: 80px;
    }
    .cast-container .col-2 .row-3 {
        width: 100%;
    }
    .title-of-work {
        width: 98%;
    }
    .work-result {
        width: 98%;
    }
    .cast-container .col-2 .equipment-tags {
        width: 98%;
    }
    .cast-container .col-2 .step-3.content .custom-select,
    .cast-container .col-2 .step-3.content .filter-dropdown {
        width: 98%;
    }
    .cast-container .input-with-btn {
        width: 99%;
    }
}
@media (max-width: 1059px) {
    .cast-container .center-col .back {
        width: 38%;
    }
}
@media (max-width: 684px) {
    .cast-container .dob-container {
        width: 90%;
    }
    .cast-container .intro textarea {
        width: 100%;
    }
    .cast-container .col-2 .step-3.content .top-content-3 {
        line-height: 36px;
    }
    .cast-container .col-2 .equipment-tags.languages {
        width: 98%;
    }
    .cast-container .upload.work .upload-btn {
        width: 59%;
    }
    .cast-container .upload.work {
        width: 100%;
    }
    .cast-container .upload.profile {
        width: 100%;
    }
    .cast-container .col-1 .number::after {
        display: inline;
    }
    .cast-container .center-col {
        padding: 0px;
    }
}
@media (max-width: 1070px) {
    .cast-container .col-2 .step-2.content .input-with-btn {
        width: 99%;
    }
    .cast-container .col-2 .step-2.content .social .youtube {
        width: 99%;
    }
}
@media (max-width: 523px) {
    .cast-container .upload-btn img {
        display: none;
    }
    .cast-container .upload .upload-btn {
        width: 51%;
    }
    .cast-container .upload.Showreel {
        width: 100%;
    }
}

/*# sourceMappingURL=castAccount.css.map */
html[dir="rtl"] .cast-container .col-1 .row div {
    margin-left: 0;
    margin-right: 20px;
}
html[dir="rtl"] .cast-container .top-content {
    margin-left: 0;
    margin-right: 3%;
}
@media (max-width: 1503px) {
    .cast-container .center-col {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
}
@media (max-width: 1503px) {
    html[dir="rtl"] .cast-container .center-col,
    .cast-container .center-col {
        flex-direction: column !important;
    }

    .cast-container .col-1,
    .cast-container .col-2 {
        width: 100% !important;
    }
}
[dir="rtl"] .cast-container .col-2 .step-2.content .input-with-btn .add-btn {
    position: unset;
    left: 28px !important;
    right: auto;
    top: 50%;
    transform: translateY(0%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 6px;
    background: #f05271;
    color: white;
    border-radius: 50px;
    font-size: 25px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
[dir="rtl"] .input-with-btn .add-btn {
    position: absolute;
    left: 11px !important;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 6px;
    background: #f05271;
    color: white;
    border-radius: 50px;
    font-size: 25px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .cast-container .result-1 .icon-1 {
    position: absolute;
    left: 50px !important;
    right: auto;
    top: 50%;
    cursor: pointer;
    background-color: #808080;
    transform: translateY(-50%);
    border-radius: 50px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

[dir="rtl"] .cast-container .result-1 .icon-2 {
    position: absolute;
    left: 10px !important;
    right: auto;
    top: 50%;
    background-color: #808080;
    transform: translateY(-50%);
    border-radius: 50px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}
[dir="rtl"] .title-of-work button {
    background-color: #f05271;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    border: none;
    font-size: 25px;
    font-weight: 300;
    color: #ffffff;
    position: absolute;
    left: 10px !important;
    right: auto;
}
.bg-wrapper {
    position: relative;
    min-height: 100vh;
    background: url("../images/bgr.png") no-repeat center center;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.bg-wrapper > * {
    position: relative;
    z-index: 2;
}
html[lang="ar"] .crew-container .back-btn {
    width: 80%;
}

html[lang="ar"] .crew-container .skip {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 20%;
    height: 80px;
}
html[lang="ar"] .cast-container .back-btn {
    width: 80%;
}
.cens {
    display: flex;
    justify-content: center;
    align-items: center;
}
