:root {
    --primaryColor: #F12B2B;
    --secondaryColor: #F2F2F2;
    --secondaryColorLight: #eaf4fc;
    --whiteColor: #ffffff;
    --font-family: "Montserrat", sans-serif;
    --textColor: #000;
    --border-color: #b6b6b6;
    --light-gray: #f7f8fa;
}

body {
    background: transparent;
    font-family: var(--font-family);
    color: var(--textColor);
    font-size: 16px;
    margin: 0;
    padding: 0;
}

a:hover {
    color: var(--primaryColor);
}

.container {
    max-width: 90%;
}


/* .navbar-light {
    background-color: var(--primaryColor);
} */

.navbar-nav .nav-item {
    margin: 0 20px;
}

.navbar-light .navbar-nav .nav-item .nav-link {
    font-size: 20px;
    font-weight: 500;
    color: var(--textColor);
}

.navbar-collapse .button:not(:last-child) {
    margin-right: 20px;
}

.banner-section {
    background: url("../images/main-img.jpg") no-repeat top center / cover;
}

.inner-wrapper {
    padding: 10rem 0;
    min-height: calc(100vh - 3rem);
}

.banner-content {
    max-width: 640px;
}

.banner-title {
    font-size: 50px;
    margin-bottom: 20px;
}

.text-brown {
    color: var(--primaryColor);
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border: 0;
    border-radius: 70px;
    font-family: var(--font-family);
    font-weight: 500;
}

.button-blue {
    background-color: var(--secondaryColor);
    color: var(--textColor);
}

.button-red {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.button-white {
    background-color: var(--whiteColor);
    color: var(--textColor);
}

.copyright-wrapper {
    padding: 30px 0;
    background-color: var(--secondaryColor);
}

.copyright-text {
    display: block;
    font-size: 20px;
    color: var(--textColor);
}


/* Popup Container */

.modal {
    background-color: rgba(35, 55, 69, 0.79);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-content-header {
    margin-bottom: 30px;
}

.popup-content-header h2 {
    font-size: 40px;
    font-weight: 500;
}

.popup-content-header>p {
    margin: 0;
    font-size: 16px;
}


/* Popup Content */

.popup-content-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    width: 100%;
    height: 100%;
    max-width: 874px;
    margin-left: auto;
    margin-right: auto;
}

.popup-content {
    background-color: var(--whiteColor);
    padding: 24px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    max-height: 100%;
    overflow-y: auto;
}


/* Close Button */

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 25px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--textColor);
}


/* Form Elements */

.input-group,
.form-control.hasDatepicker {
    margin-bottom: 24px;
}

.input-group>label {
    display: block;
    font-size: 14px;
    color: var(--textColor);
}

.form-control.hasDatepicker,
.input-group .form-control,
.input-group .form-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    box-shadow: none;
    border-radius: 0px;
    font-size: 12px;
    color: var(--textColor);
}

.input-group .form-control::placeholder {
    color: var(--textColor);
}

.additional-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.additional-options label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 6px;
    border: 1px solid var(--border-color);
}

.additional-options a {
    color: var(--primaryColor);
    text-decoration: none;
}

.additional-options a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    border-radius: 0;
    padding: 12px;
}


/* Social login buttons */

.continue-with-social>p {
    margin: 20px 0;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-login button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background-color: var(--whiteColor);
    font-size: 14px;
}


/* Box Style */

.section-contain {
    padding: 60px 0;
}

.title-main-box {
    margin-bottom: 40px;
}

.image-with-text {
    position: relative;
    border-radius: 12px;
    height: 100%;
}

.image-with-text button {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.image-with-text figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 270px;
    max-height: 270px;
}

.image-with-text .img-fluid {
    display: block;
    width: 100%;
    height: 100%;
}

.image-with-text-cont {
    display: flex;
    justify-content: space-between;
    background-color: var(--primaryColor);
    padding: 6px 12px;
    color: var(--whiteColor);
    border-radius: 0px 0px 12px 12px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.image-with-text:hover .image-with-text-cont {
    opacity: 1;
    transform: translateY(0);
}

.user-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.social-icon-wrapper {
    display: inline-flex;
    gap: 12px;
}

.menu-listing {
    position: relative;
    width: 24px;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dropdown-menubox {
    margin: 0;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    background-color: var(--secondaryColor);
    width: 100%;
    min-width: 160px;
    display: none;
    opacity: 0;
    visibility: hidden;
}

.menu-listing:hover .dropdown-menubox {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menubox li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--textColor);
    padding: 8px 12px;
}

.dropdown-menubox li a.active,
.dropdown-menubox li a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.dropdown-menubox li a svg {
    stroke: currentColor;
}

.dropdown-menubox li a svg path {
    fill: currentColor;
    stroke: none;
}

.page-navigation {
    margin: 50px 0 0;
}

.pagination .page-item .page-link {
    width: 25px;
    height: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--whiteColor);
    margin: 0 2px;
    font-size: 14px;
    font-weight: 600;
}

.page-item:not(:first-child,
 :last-child) .page-link {
    background-color: var(--secondaryColor);
}

.popup-btn-wrapper {
    display: grid;
    gap: 24px;
}

.popup-btn-wrapper .button {
    border-radius: 0;
}

.file-upload-wrapper {
    border: 1px dashed var(--border-color);
    border-radius: 10px;
    padding: 50px;
}

.file-upload-wrapper h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 16px 0;
}

.file-upload-wrapper>label {
    display: block;
}

.dropzone-input {
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.dropzone-input::-webkit-file-upload-button {
    display: none;
}

.large-popup {
    max-width: 1360px;
}

.medium-popup {
    max-width: 972px;
}

.inner-popup-wrapper .modal-content {
    padding: 0;
}

.inner-popup-wrapper .popup-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    margin: 0;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.inner-popup-wrapper .close-btn {
    position: static;
}

.upload-images-wrapper {
    display: flex;
}

.upload-images-item {
    flex: 1 1;
}

.share-img-box {
    text-align: center;
}

.share-img-box>img {
    margin-bottom: 10px;
}

.images-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.images-item {
    background-color: var(--primaryColor);
    min-height: 218px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.images-item .img-fluid {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Shared Links Design */

.shared-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding: 4px 10px;
    border: 1px solid var(--border-color);
    background-color: var(--secondaryColorLight);
    position: relative;
}

.shared-link-item a {
    color: var(--textColor);
    text-decoration: none;
    flex-grow: 1;
    font-size: 13px;
    max-width: 100%;
    overflow-x: auto;
}

.shared-link-item a:hover {
    color: var(--primaryColor);
    text-decoration: underline;
}

.shared-link-item :is(.copy-btn,
.options-btn) {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
}

.shared-link-item .options-btn {
    font-size: 18px;
    color: var(--textColor);
}


/* Dropdown Styles */

.shared-link-drop {
    position: relative;
}

.shared-link-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--whiteColor);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 10px;
    width: 280px;
    display: none;
    z-index: 10;
}


/*.shared-link-item .options-btn:hover~.shared-link-dropdown,
.shared-link-dropdown.active {
    display: block;
}*/

.shared-link-dropdown label {
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shared-link-dropdown .delete-share {
    color: var(--primaryColor);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin: 10px 0;
}

.shared-link-dropdown .action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 16px;
}

.shared-link-dropdown :is(.cancel-btn,
.update-btn) {
    background: var(--primaryColor);
    color: var(--whiteColor);
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    flex-grow: 1;
    font-size: 13px;
}

.shared-link-dropdown .cancel-btn {
    background: var(--light-gray);
    color: var(--textColor);
    border: 1px solid var(--border-color);
}


/* ========== Form Step Style ========== */

.inner-card-box {
    background-color: var(--light-gray);
    padding: 30px;
    width: 100%;
    height: 100%;
}

.progressbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
    font-size: 15px;
    color: var(--secondaryColor);
    font-weight: 600;
    margin-top: 30px;
}

.step:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--secondaryColor);
    position: absolute;
    bottom: calc(100% + 12px);
    left: -50%;
    z-index: 0;
}

.step::after {
    content: "✔";
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
    border-radius: 50%;
    padding: 1px;
    position: absolute;
    top: -24px;
    min-width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    font-size: 12px;
    font-weight: 500;
}

.step.active {
    color: var(--primaryColor);
}

.step.active::before,
.step.active::after {
    background-color: var(--primaryColor);
}

.button-box .button {
    min-width: 110px;
    display: inline-flex;
}

.flex-box {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.aside {
    flex: 1;
    max-width: 220px;
}

.main-content-box {
    flex: 1;
}

.sidebar {
    max-width: 230px;
    width: 100%;
    padding: 26px 0;
    background-color: var(--secondaryColor);
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.sidebar>div {
    width: 100%;
}

.user-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.user-img .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile .user-title {
    color: var(--textColor);
    font-size: 20px;
    margin: 10px 0;
}

.followers-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 20px 0;
}

.follower-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--textColor);
    padding: 0 10px;
}

.follower-item+.follower-item {
    border-left: 1px solid var(--textColor);
}

.heading-wrapper,
.tabs-wrapper {
    margin-bottom: 30px;
}

.sidebar-menu-box {
    margin-top: 34px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 26px;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: var(--textColor);
    border-bottom: 1px solid var(--border-color);
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.dropdown-arrow {
    margin-left: auto;
    transition: 0.3s ease-in;
    transform: rotate(180deg);
}

.submenu-item.open .dropdown-arrow {
    transform: rotate(0deg);
}

.sidebar-submenu {
    display: none;
    transition: 0.5s ease-in;
    overflow: hidden;
}

.submenu-item.open .sidebar-submenu {
    display: block;
}

.sidebar-submenu-list {
    padding-left: 20px;
    margin-bottom: 14px;
}

.sidebar-submenu li a {
    font-size: 13px;
    border: 0;
    padding: 8px 14px;
}

.sidebar svg path,
.button svg path,
.album-card svg path {
    fill: currentColor;
}

.sidebar-submenu li a svg {
    width: 6px;
    height: 6px;
}

.user_logout {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto auto 0;
    max-width: 80%;
    width: 100%;
    color: var(--textColor);
}

.facts-bar-wrapper {
    align-items: center;
    gap: 12px;
}

.layout-view,
.short {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 20px;
    background-color: var(--whiteColor);
    border: 1px solid var(--secondaryColor);
    border-radius: 70px;
}

.layout-view .layout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--textColor);
    opacity: 0.5;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
}

.layout-view .layout-btn svg {
    width: 16px;
    height: 16px;
}

.layout-view .layout-btn:hover,
.layout-view .layout-btn.active {
    opacity: 1;
}

.short-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.short-wrapper .form-select {
    border: 1px solid var(--secondaryColor);
    border-radius: 60px;
    box-shadow: none;
}

.short-main-wrapper .short {
    width: 110px;
    padding-right: 30px;
    box-shadow: none;
    background: var(--whiteColor) url('../images/short.svg') no-repeat 85% center / 14px;
    border-color: var(--secondaryColor);
}

.short-main-wrapper .folder {
    width: 150px;
    padding-right: 30px;
    box-shadow: none;
    background: var(--whiteColor) url('../images/folder_dropdown.svg') no-repeat 85% center / 14px;
    border-color: var(--secondaryColor);
}

.short-main-wrapper .album {
    width: 150px;
    padding-right: 30px;
    box-shadow: none;
    background: var(--whiteColor) url('../images/album.svg') no-repeat 85% center / 14px;
    border-color: var(--secondaryColor);
}

.tabs-wrapper .nav-item .nav-link {
    min-width: 100px;
    text-align: center;
    border-radius: 0;
    background-color: var(--secondaryColor);
    color: var(--textColor);
}

.tabs-wrapper .nav-item .nav-link.active,
.tabs-wrapper .nav-item .nav-link:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.album-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 270px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--whiteColor);
    color: var(--primaryColor);
    padding: 12px;
    position: relative;
}

.album-total {
    background-color: var(--primaryColor);
    display: inline-flex;
    line-height: normal;
    gap: 4px;
    padding: 4px 6px;
    color: var(--whiteColor);
    font-weight: 500;
    font-size: 12px;
    border-radius: 4px;
}

.album-card:not(.album-select-card) .add-album-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.card-padding {
    padding: 30px;
    text-align: left;
}

.add-album-box .img-fluid {
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--border-color);
}

.album-select-card .add-album-box .img-fluid {
    max-width: 190px;
    margin-right: 8px;
}

.select-folder-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 22px;
}

.select-folder-item {
    position: relative;
}

.select-folder-item>label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    background-color: var(--secondaryColorLight);
    border: 1px solid var(--secondaryColor);
    padding: 18px 18px 28px;
    cursor: pointer;
}

.select-folder-item:hover .select-folder-check,
.select-folder-check[type="checkbox"]:checked {
    opacity: 1;
}

.form-checkbox input[type="checkbox"]:checked:before,
.select-folder-check[type="checkbox"]:checked:before {
    opacity: 1;
}

.select-folder-check[type="checkbox"] {
    position: absolute;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--secondaryColor);
    border-radius: 0;
    background: none;
    cursor: pointer;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    background-color: var(--secondaryColorLight);
    opacity: 0;
}

.form-checkbox input[type="checkbox"]:before,
.select-folder-check[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 11px;
    border: solid var(--primaryColor);
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
}

.form-checkbox>input[type="checkbox"] {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: none;
    cursor: pointer;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    background-color: var(--secondaryColorLight);
    margin-right: 14px;
}

.album-upload-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--whiteColor);
    border: 1px solid var(--border-color);
    padding: 8px;
    width: 100%;
}

.album-icon-text {
    margin-right: 20px;
    flex: 1;
    text-align: left;
    padding: 0 12px;
}

.upload-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondaryColorLight);
    border: 2px dashed #b3d3e8;
    border-radius: 0;
    padding: 8px 12px;
    text-align: center;
}

.upload-icon img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.upload-area span {
    font-size: 12px;
}

.album-select-card {
    position: relative;
    display: inline-flex;
}

.album-select-card::before {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 20px;
    height: 20px;
    border: 1px solid;
    background-color: var(--secondaryColorLight);
}

.album-select-card:hover:after,
.album-select-card.selected::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 6px;
    height: 11px;
    border: solid var(--secondaryColor);
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.share-img-box .img-fluid {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.checkbox-wrapper .checkbox-title {
    margin-bottom: 0px;
    margin-right: 20px;
    flex: 1;
}

.checkbox-options {
    display: flex;
    gap: 10px;
}

.checkbox-options .custom-checkbox {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--textColor);
    cursor: pointer;
    position: relative;
    padding: 8px;
    background-color: var(--whiteColor);
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.custom-checkbox input {
    display: none;
}

.checkbox-options .checkbox-dot {
    min-width: 20px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    margin-right: 6px;
    display: inline-block;
    position: relative;
}

.checkbox-options .checkbox-dot::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primaryColor);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.custom-checkbox input:checked+.checkbox-dot {
    border-color: var(--primaryColor);
}

.custom-checkbox input:checked+.checkbox-dot::after {
    display: block;
}

#folder_link_share {
    max-width: calc(100% - 40px);
}

#copy_code {
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    border: 1px solid var(--border-color);
}


/* Image Gallery Detail Changes */

.gallery-image-banner {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
}

.gallery-image-banner .carousel-item {
    max-height: 700px;
}

.gallery-image-banner .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 6px;
    overflow: hidden;
}

.gallery-image-banner .carousel-indicators img {
    height: 100%;
    object-fit: cover;
}

.carousel-control {
    width: 40px;
    height: 40px;
    margin: auto 20px;
    background-color: var(--textColor);
    opacity: 1;
}

.carousel-control>span {
    background-size: 100% 60%;
}

.gallery-actions {
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: absolute;
    top: 12px;
    right: 12px;
    gap: 9px;
}

.gallery-actions button {
    border: 0;
    background-color: var(--whiteColor);
    width: 34px;
    height: 34px;
    border-radius: 6px;
}

.gallery-image-banner .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-sidebar-card {
    min-width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--whiteColor);
}

.photo-header figure {
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
}

.photo-header figure .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-header div p {
    margin: 0;
    font-size: 13px;
}

.slider-destails-box :is(p,
li,
span,
a) {
    font-size: 13px;
}

.photo-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin: 0 5px 8px 0;
    position: relative;
    transition: all .15s ease-in-out;
    padding: 3px 10px;
    cursor: pointer;
    font-weight: 500;
}

.photo-tag:hover {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--whiteColor);
}

.image-information .table tr td {
    font-size: 12px;
    min-width: 90px;
    font-weight: 500;
    color: var(--textColor);
}

.comment-wrapper {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 0;
}

.photo-groups-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--whiteColor);
    border-radius: 6px;
    font-size: 13px;
    min-width: 166px;
}

.photo-header .button {
    padding: 8px 20px;
    font-size: 13px;
}

.photo-groups-item p {
    margin: 10px 0 3px;
}

.groups-img {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.total-comments {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    font-size: 12px;
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
    border-radius: 50px;
    vertical-align: middle;
}

.comment-box {
    max-width: 80%;
}

.customer-comment {
    margin: 10px 0 0 auto;
    align-items: flex-start;
    justify-content: flex-end;
}

.comment-user-img {
    width: 40px;
    min-width: 40px;
}

.comment-cont {
    background-color: var(--whiteColor);
    border: 1px solid var(--border-color);
    padding: 13px;
    border-radius: 10px;
    font-size: 13px;
}

.comment-cont>p {
    font-size: 12px;
    margin-bottom: 8px;
}

.comment-button-wrapper button {
    border: 0;
    background: transparent;
    font-size: 12px;
}

.comment-box-area {
    margin: 30px auto;
    max-width: 90%;
}

.comment-box-area .comment-form {
    padding: 16px;
    font-size: 14px;
    width: 100%;
    display: block;
    min-height: 140px;
    border-radius: 10px;
    margin-bottom: 16px;
}


/* Galley End Css */


/* My Folders Start */

.card--main,
.my-folder-main-wrapper {
    padding: 20px;
    background-color: var(--whiteColor);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
}

.folder-tab-content:not(.active) {
    display: none;
}

.layout-grid-wrapper .select-folder-item>label {
    flex-direction: column;
    padding: 30px 18px;
}

.layout-grid-wrapper .select-folder-check[type="checkbox"] {
    top: 10px;
    left: 10px;
    right: unset;
    bottom: unset;
}

.list-table-wrapper {
    margin: 0;
}

.list-table-wrapper tr th,
.list-table-wrapper tr td {
    font-size: 13px;
    vertical-align: middle;
    padding: 14px 12px;
    color: var(--textColor);
}

.folder-checkbox {
    width: 18px;
    display: block;
    height: 18px;
    accent-color: var(--primaryColor);
    cursor: pointer;
}

.menu-listing-wrapper {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-listing-wrapper>span svg {
    width: 16px;
    height: 16px;
}

.shared-link {
    font-size: 12px;
    font-weight: 600;
}


/* My Folders Start */


/* 25-01-2024 */

.select-folder-item .image-with-text figure {
    min-height: auto;
}


/* 06-12-2024 */

.breadcrumb-outer .breadcrumb-item {
    font-size: 13px;
}

.breadcrumb-outer .breadcrumb-item>a {
    color: inherit;
}

.layout-content-box:not(.active) {
    display: none;
}


/* 10-12-2024 */

.layout-content-box .select-folder-item {
    height: 100%;
}

.layout-content-box .select-folder-item .select-folder-check[type="checkbox"] {
    top: 6px;
    left: 6px;
    bottom: unset;
    right: unset;
}

.layout-content-box .select-folder-item>label {
    height: 100%;
    flex-direction: column;
}

.hyperlink-color {
    color: #F12B2B;
}



@media (max-width: 1199px) {
    .gallery-image-banner {
        height: 280px;
    }
    body {
        font-size: 14px;
    }
    .flex-box {
        gap: 30px;
    }
}

@media screen and (min-width: 992px) {
    .layout-grid-wrapper .select-folder-box {
        display: flex;
        flex-wrap: wrap;
    }
    .layout-grid-wrapper .select-folder-item {
        width: calc(17% - 23px);
    }
    .popup-content-header>p {
        font-size: 23px;
    }
    .popup-content {
        padding: 60px;
        font-size: 16px;
    }
    .input-group .form-control,
    .input-group .form-select {
        font-size: 16px;
        padding: 12px 20px;
    }
    .additional-options label input[type="checkbox"] {
        width: 50px;
        height: 50px;
        margin-right: 16px;
    }
    .social-login button {
        min-width: 130px;
    }
    /* New Css */
    .photo-sidebar-card {
        min-width: 360px;
        max-width: 360px;
    }
    .comment-wrapper {
        padding: 20px;
    }
    .layout-content-box>.table-responsive {
        overflow: unset;
    }
}

@media screen and (max-width: 991px) {
    .aside,
    .sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .upload-images-item:last-child {
        flex: 0 0 467px;
    }
    .checkbox-options .custom-checkbox {
        font-size: 16px;
    }
    .form-control.hasDatepicker,
    .input-group .form-control,
    .input-group .form-select {
        padding: 16px 20px;
        font-size: 14px;
    }
    .button-box .button {
        min-width: 150px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 96%;
    }
    .section-contain {
        padding: 30px 0;
    }
    .upload-images-wrapper {
        flex-wrap: wrap;
    }
    .upload-images-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .gallery-image-banner {
        margin-bottom: 18px;
    }
    .user_logout {
        max-width: 100%;
        padding: 0 30px;
    }
    .copyright-wrapper {
        padding: 10px 0;
    }
    .copyright-text {
        font-size: 12px;
    }
    .folder-checkbox {
        width: 14px;
        height: 14px;
    }
    .list-table-wrapper tr th,
    .list-table-wrapper tr td {
        font-size: 12px;
        padding: 10px 8px;
    }
    .list-table-wrapper .button {
        padding: 6px 12px;
        font-size: 10px;
    }
    .button {
        padding: 7px 14px;
        font-size: 12px;
    }
    .tabs-wrapper .nav-item .nav-link {
        min-width: 80px;
        font-size: 12px;
    }
    .short-main-wrapper .short {
        width: 90px;
        font-size: 12px;
    }
    .short-wrapper .form-select {
        font-size: 12px;
    }
    .card-padding,
    .inner-card-box {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 96%;
    }
    .navbar-light .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }
    .share-text-with-icon {
        padding: 5px 10px;
    }
    .select-folder-item>label {
        font-size: 12px;
    }
    .dropdown-menubox li a {
        font-size: 12px;
        padding: 5px 12px;
    }
}

@media screen and (max-width: 375px) {
    .checkbox-options {
        flex-wrap: wrap;
    }
}