.profile-header {
    background-color: #f5f5f5;
    background-image: url("../../images/vector/bgvector.svg");
    background-size: cover;
}

/* commendted out for addStoryModal */

/* .profile-header::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: "";
    position: absolute;
    background-size: 100%;
    background-position: center;
    background-image: url("../../images/vector/bgvector.svg");
}

.profile-header .container {
    z-index: 2;
    position: relative;
} */

.profile-header h1 {
    font-size: 25px;
}

.Routing-modal iframe {
    margin: 0;
    width: 100%;
    height: 150px;
    display: flex;
    border-radius: 20px;
}

.Routing-modal .communication-card {
    border-width: 1px;
    border-style: solid;
    transition: 0.25s ease-in-out;
    border-color: rgba(0, 0, 0, 0.175);
}

.Routing-modal .communication-card:hover {
    border-color: var(--third);
    color: var(--third);
}

.story .btn-story {
    padding: 5px;
}

.story .btn-story.unopened {
    background: linear-gradient(
        50deg,
        rgba(255, 170, 1, 1) 0%,
        rgba(244, 93, 166, 1) 50%,
        rgba(46, 169, 166, 1) 100%
    );
}

.story .btn-story.opened {
    background: #e6e6e6;
}

.story .btn-story img {
    border: 4px solid #f5f5f5;
}

.view-story-modal .story-control {
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: 20px;
    position: absolute;
    height: max-content;
    border: 0.5px solid #ddd;
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 0px 10px 2.5px rgba(0, 0, 0, 0.25);
}

.view-story-modal .story-control i {
    color: #fff;
    font-size: 20px;
}

.view-story-modal .story-control-prev {
    left: 0;
    border-left: 0px;
    padding: 10px 10px 10px 5px;
    border-radius: 0 15px 15px 0;
}

.view-story-modal .story-control-next {
    right: 0;
    border-right: 0px;
    padding: 10px 5px 10px 10px;
    border-radius: 15px 0 0 15px;
}

.nav-pills-profile .nav-link {
    background-color: transparent;
    color: #6b6b6b;
}

.nav-pills-profile .nav-link.active {
    background-color: rgba(var(--primary-rgb), 0.15);
    color: rgba(var(--primary-rgb), 1);
}

.nav-pills-profile .nav-link.active img {
    filter: var(--filter-primary);
}

.card-link.website-card-link img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(6548%)
        hue-rotate(179deg) brightness(97%) contrast(80%);
}

.card-link.telegram-card-link img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(6548%)
        hue-rotate(179deg) brightness(97%) contrast(80%);
}

.card-link.phone-card-link img {
    filter: brightness(0) saturate(100%) invert(95%) sepia(79%) saturate(915%)
        hue-rotate(325deg) brightness(89%) contrast(96%);
}

.card-link.twitter-card-link img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7445%)
        hue-rotate(249deg) brightness(87%) contrast(113%);
}

.card-link.instagram-card-link img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(62%) saturate(2347%)
        hue-rotate(304deg) brightness(92%) contrast(87%);
}

.card-link.whatsapp-card-link img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(55%) saturate(504%)
        hue-rotate(130deg) brightness(90%) contrast(92%);
}

@media (max-width: 576px) {
    .view-story-modal .modal-content {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .view-story-modal .modal-content {
        width: 450px;
    }
}

@media (min-width: 768px) {
    .view-story-modal .modal-content {
        width: 400px;
    }
}

/* story container */

.story-container {
    width: 100%;
    display: flex;
}

.storySwiper {
    width: 100%;
}

.story-container .swiper-slide {
    text-align: center;
    gap: 0;
    margin: 0;
    display: inline !important;
}

.swiper-slide-w100px {
    width: 100px !important;
}

.story-container .swiper-slide span {
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 14px;
}

.story-container .fixed-circle {
    width: 83px;
    height: 83px;
    aspect-ratio: 1/1;
    background: linear-gradient(
        50deg,
        rgba(255, 170, 1, 1) 0%,
        rgba(244, 93, 166, 1) 50%,
        rgba(46, 169, 166, 1) 100%
    );
    border-radius: 50%;
    text-align: center;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;

    color: white;
}

.story-container .fixed-circle::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 38px;
    color: white;
}

.story-container .fixed-circle + span {
    font-size: 12px;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.addModal .modal-content {
    background-color: #f5f5f5;
}

/* file upload container */

.file-upload-container {
    width: 100%;
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease-in-out;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.upload-icon {
    font-size: 50px;
    color: #888;
    margin-bottom: 10px;
}

.file-upload-container:hover {
    background: #f9f9f9;
}

.bootstrap-select .dropdown-menu {
    margin-left: -36px !important;
}

.text-success {
    font-size: 20px;
    font-weight: bold;
}

/* selected badge */

.selected-badge {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    background-color: #f5f5f5;
    color: #5a5a5a;
    padding: 6px 15px;
    border-radius: 20px;
    margin: 5px 2px;
    font-size: 16px;
    font-family: var(--ffm-thin);
}

.selected-badge .remove-btn {
    cursor: pointer;
    font-weight: bold;
    margin-right: 15px;
    font-size: 35px;
    display: flex;
    height: 10px;
    line-height: 8px;
}

/* addModal clas */

.addModal .btn-close {
    font-size: 12px !important;
}

.addModal form input[type="number"] {
    direction: rtl !important;
}

/* add story modal */

#addStoryModal .bootstrap-select .dropdown-menu {
    transform: none !important;
    top: auto !important;
    right: 0 !important;
    left: auto !important;
    bottom: 110% !important;
    border-radius: 15px;
    border: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    max-height: 15rem;
}

#addStoryModal .bootstrap-select .dropdown-menu.inner {
    box-shadow: none !important;
    border-radius: 0;
}

#addStoryModal .bootstrap-select .dropdown-menu .text {
    margin-right: 25px !important;
}

#addStoryModal .bootstrap-select .dropdown-menu li {
    border-bottom: 1px solid #eee;
}

#addStoryModal .bootstrap-select .dropdown-menu li:last-child {
    border-bottom: none;
}

#addStoryModal .bootstrap-select .dropdown-menu li a {
    padding: 10px;
}

#addStoryModal
    .bootstrap-select.show-tick
    .dropdown-menu
    .selected
    span.check-mark {
    display: flex;
    top: 0;
    bottom: 5px;
    align-items: center;
    justify-content: center;
}

.selected-options {
    max-height: 8rem;
    overflow-y: scroll;
}

/* add product modal */

.nav-edit-information .nav-item {
    border-bottom: 2px solid rgba(0, 0, 0, 20%);
}

.nav-edit-information .nav-link {
    color: rgba(107, 107, 107, 0.57);
    border-radius: 0px;
    border: 0px;
    position: relative;
}

.nav-edit-information .nav-link.active {
    color: #000;
    background-color: transparent;
}

.nav-edit-information .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
}

.nav-edit-information .nav-link.active::after {
    background-color: #f45da6;
}

@media (max-width: 992px) {
    .nav-edit-information {
        display: block ruby;
        overflow: auto;
        width: 100%;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .nav-edit-information .nav-link::after {
        top: 80%;
    }

    .nav-edit-information::-webkit-scrollbar {
        display: none;
    }

    .nav-edit-information .nav-item {
        margin: -3px;
    }
}

.custom-marker li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsl(331, 87%, 66%);
    margin-right: 8px;
    vertical-align: middle;
}

.delete-story-btn{
    top: 16px !important;
}
