a:focus {
    outline: none;
    text-decoration: none;
    color: inherit;
}

.filled-icon {
    font-variation-settings: 'FILL' 1 !important
}

/**COLORS**/

.bg-transparent {
    background-color: transparent;
}
.text-blend-white {
    color: var(--blend-white);
}

.pink-50 {
    color: var(--pink-50);
}
.pink-100 {
    color: var(--pink-100);
}
.pink-200 {
    color: var(--pink-200);
}
.pink-300 {
    color: var(--pink-300);
}
.pink-400 {
    color: var(--pink-400);
}
.pink-500 {
    color: var(--pink-500);
}
.pink-600 {
    color: var(--pink-600);
}
.pink-700 {
    color: var(--pink-700);
}
.pink-800 {
    color: var(--pink-800);
}
.pink-900 {
    color: var(--pink-900);
}
.iwc-pink{
    color: var(--iwc-pink)!important;
}

.blue-50 {
    color: var(--blue-50);
}
.blue-100 {
    color: var(--blue-100);
}
.blue-200 {
    color: var(--blue-200);
}
.blue-300 {
    color: var(--blue-300);
}
.blue-400 {
    color: var(--blue-400);
}
.blue-500 {
    color: var(--blue-500);
}
.blue-600 {
    color: var(--blue-600);
}
.blue-700 {
    color: var(--blue-700);
}
.blue-800 {
    color: var(--blue-800);
}
.blue-900 {
    color: var(--blue-900);
}
.bg-pink-50 {
    background-color: var(--pink-50);
}
.bg-pink-100 {
    background-color: var(--pink-100);
}
.bg-pink-200 {
    background-color: var(--pink-200);
}
.bg-pink-300 {
    background-color: var(--pink-300);
}
.bg-pink-400 {
   background-color: var(--pink-400);
}
.bg-pink-500 {
    background-color: var(--pink-500);
}
.bg-pink-600 {
   background-color: var(--pink-600);
}
.bg-pink-700 {
    background-color: var(--pink-700);
}
.bg-pink-800 {
    background-color: var(--pink-800);
}
.bg-pink-900 {
    background-color: var(--pink-900);
}
.bg-iwc-pink{
    background-color: var(--iwc-pink);
}

.bg-blue-50 {
    background-color: var(--blue-50);
}
.bg-blue-100 {
    background-color: var(--blue-100);
}
.bg-blue-200 {
    background-color: var(--blue-200);
}
.bg-blue-300 {
    background-color: var(--blue-300);
}
.bg-blue-400 {
    background-color: var(--blue-400);
}
.bg-blue-500 {
    background-color: var(--blue-500);
}
.bg-blue-600 {
    background-color: var(--blue-600);
}
.bg-blue-700 {
    background-color: var(--blue-700);
}
.bg-blue-800 {
    background-color: var(--blue-800);
}
.bg-blue-900 {
    background-color: var(--blue-900);
}
.bg-dark {
    background-color: #121212;
}
.bg-dark-01 {
    background: linear-gradient(0deg, #121212, #121212),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
}
.bg-dark-02 {
    background: #232323;
}
.bg-dark-03 {
    background: linear-gradient(0deg, #121212, #121212),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
}
.bg-dark-04 {
    background: linear-gradient(0deg, #121212, #121212),
    linear-gradient(0deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.09));
}
.bg-dark-06 {
    background: linear-gradient(0deg, #121212, #121212),
    linear-gradient(0deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.11));
}
.bg-dark-08 {
    background: linear-gradient(0deg, #121212, #121212),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
}
.bg-dark-12 {
    background: linear-gradient(0deg, #121212, #121212),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14));
}
.bg-dark-16 {
    background: linear-gradient(0deg, #121212, #121212),
    linear-gradient(0deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15));
}
.bg-dark-24 {
    background: linear-gradient(0deg, #121212, #121212),
    linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16));
}
.link-color{
    color: var(--link-color);
}

/**COLORS**/
/**BUTTONS**/
.btn-primary {
    color: var(--black);
    background: var(--pink-200);
}
.btn-primary:hover {
    background: var(--pink-100);
    color: var(--black);
}
.btn-primary:focus {
    background: var(--pink-100) !important;
}
.btn-outline-primary {
    color: var(--pink-200);
    border: 1px solid;
    border-color: var(--outline-btn-border-color);
}
.btn-outline-primary:hover {
    color: var(--pink-200);
    background: var(--primary-outline-btn-hover-bg);
}
.btn-link {
    color: var(--pink-200);
}
.btn-link-secondary {
    color: var(--blue-200);
}
.btn-link-secondary:hover {
    background: var(--secondary-link-btn-hover-bg);
    color: inherit;
}
.btn-link:hover {
    background: var(--primary-link-btn-hover-bg);
}
.btn-primary:disabled {
    color: var(--btn-disabled-color);
    background: var(--btn-disabled-background);
}
.btn-outline-primary:disabled {
    color: var(--btn-disabled-color);
}
.btn-link:disabled {
    color: var(--btn-disabled-color);
}
.btn-secondary {
    color: var(--black);
    background: var(--blue-200);
}
.btn-secondary:hover {
    background: var(--blue-100);
}
.btn-outline-secondary {
    color: var(--blue-200);
    border: 1px solid;
    border-color: var(--outline-btn-border-color);
}
.btn-outline-secondary:hover {
    color: var(--blue-200);
    background: var(--secondary-outline-btn-hover-bg);
}
.btn-secondary:disabled {
    color: var(--btn-disabled-color);
    background: var(--btn-disabled-background);
}
.btn-outline-secondary:disabled {
    color: var(--btn-disabled-color);
}
.btn-link:disabled {
    color: var(--btn-disabled-color);
}
.follow-btn {
    color: var(--white);
    background: var(--follow-btn-background);
    border-radius: 50px;
}
.follow-btn:hover {
    color: var(--white);
    background: var(--follow-btn-background-hover);
}
.content-button {
    border-radius: 50px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.content-button span {
    font-size: 15px;
}

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box .buy-btn .text-white {
    font-size: 12px;
}
/**BUTTONS**/
/**HEADINGS**/
body {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
}
.h1, h1 {
    font-size: 96px;
    font-weight: 300;
}
.h2, h2 {
    font-size: 60px;
    font-weight: 300;
}
.h3, h3 {
    font-size: 48px;
    font-weight: 400;
}
.h4, h4 {
    font-size: 34px;
    font-weight: 400;
}
.h5, h5 {
    font-size: 24px;
    font-weight: 400;
}
.h6, h6 {
    font-size: 20px;
    font-weight: 500;
}
.btn {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}
p {
    font-size: 16px;
    font-weight: 400;
}
.body-2 {
    font-size: 14px;
    font-weight: 400;
}
.body-1 {
    font-size: 16px;
    font-weight: 400;
}
.caption {
    font-size: 12px;
    font-weight: 400;
}
.subtitle-1 {
    font-size: 16px;
    font-weight: 400;
}
.subtitle-2 {
    font-size: 14px;
    font-weight: 500;
}
.overline {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
}
/**HEADINGS**/
/**ICONS**/
.trash-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.trash-icon:before {
    content: url(/design-1/images/icons/trash.svg);
    height: 16px;
    width: 12px;
}

.video-icon {
    display: flex;
}
.video-icon:before {
    content: url(/design-1/images/icons/video.svg);
    width: 13px;
}
.af-icon {
    display: flex;
}
.audio-icon:before {
    content: url(/design-1/images/icons/audio.svg);
    width: 10px;
}
.doc-icon:before {
    content: url(/design-1/images/icons/document.svg);
    width: 12px;
}
.wishlist-icon:before {
    content: url(/design-1/images/icons/wishlist.svg);
    width: 18px;
    height: 21px;
}
.share-icon:before {
    content: url(/design-1/images/icons/share.svg);
    width: 18px;
    height: 20px;
}
.cart-icon:before {
    content: url(/design-1/images/icons/cart-new.svg);
    width: 20px;
    height: 20px;
}
.cart-icon:hover:before {
    content: url(/design-1/images/icons/cart-new-hover.svg);
}
.twitter-icon:before {
    content: url(/design-1/images/icons/twitter.svg);
    width: 14px;
    height: 14px;
}
/**ICONS**/

/** Radio Button **/
/** Radio Button and CheckBox **/
.pink-radio, .pink-checkbox {
    display: block;
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 12px !important;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pink-radio input, .pink-checkbox input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 2px solid #FFFFFF99;
  border-radius: 50%;
}
.pink-checkbox .checkmark {
    height: 18px;
    width: 18px;
    border-radius: 4px;
    margin-top: 3px;
    margin-left: 3px;
}
.pink-radio:hover input ~ .checkmark, .pink-checkbox:hover input ~ .checkmark {
  border-color: #ccc;
}
.pink-radio input:checked ~ .checkmark {
  border-color: var(--pink-200);
}
.pink-checkbox input:checked ~ .checkmark {
  border-color: var(--pink-200);
  background: var(--pink-200);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.pink-radio input:checked ~ .checkmark:after, .pink-checkbox input:checked ~ .checkmark:after{
  display: block;
}
.pink-radio .checkmark:after{
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink-200);
}

.pink-checkbox .checkmark:after{
  left: 4px;
  top: 0px;
  width: 7px;
  height: 12px;
  border: solid #232323;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/** End Radio Button **/
/** Text field outline **/
.dark-input {
    width: 100%;
    height: 48px;
    padding: 12px 12px 12px 16px;
    border-radius: 4px;
    border: 1px solid #FFFFFF61;
    background: transparent;
    color: rgba(255, 255, 255, 0.60);
}
.dark-input:focus-visible{
    outline: none;
}
.dark-input.errorInput {
    border-color: var(--pink-200);
}
select.dark-input {
    appearance: none;
    background-image: url('../images/arrow.svg');
    background-repeat: no-repeat;
    background-position: right 1.7rem top 50%;
}
select.dark-input option {
    background-color: #000;
    color: #fff;
}
.form-group-dark {
    margin-top: 16px;
    margin-bottom: 20px;
    position: relative;
}

.guest-buy-cart .form-group-dark {
    margin-top: 5px;
}

.guest-buy-cart .form-group-dark.cvv-group {
    margin-bottom: 0px;
    margin-top: 5px;
}

.guest-buy-cart .month {
    margin-top: 5px;
}

.guest-buy-cart .link {
    margin-top: 0px;
}

.guest-buy-cart .year {
    margin-top: 4px;
}
.guest-buy-cart .form-group-dark.checkbox-error {
    color: rgba(0, 0, 0, 0.87);
}

.guest-buy-cart .agree .popover {
    display: none !important;
}
.guest-buy-cart .card {
    margin-top: 0px !important;
}
.guest-buy-cart .form-group-dark .popover {
    top: 56px !important;
}
.form-group-dark .popover .arrow {
    display: none;
}

.form-group-dark .popover.popover-error .popover-content {
    background: transparent;
    color: var(--pink-200);
}

.form-group-dark.checkbox-error {
    border-radius: 4px;
    border: 1px solid var(--pink-200);
}

.form-group-dark .popover {
    position: absolute;
    top: 62px !important;
    left: 31px !important;
    z-index: 1060;
    display: none;
    max-width: 100%;
    padding: 0;
    font-style: normal;
    line-break: auto;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
    text-align: left;
    background-color: transparent;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-group-dark .popover-content {
    padding: 0;
}

/* SEARCH BOX */

.ais-SearchBox-form button {
    display: none;
}

.search-button {
    border: unset;
    font-family: FontAwesome, serif;
    color: #121212;
    background-color: transparent;
    border: unset;
}

#searchbox .ais-SearchBox-input {
    display: flex;
    align-items: center;
    width: 100%;
    margin-right: 20px;
    border-radius: 40px;
    padding: 10px 12px;
    background: transparent;
    margin-left: 40px;
    color: #121212;
    border: 1px solid #121212;
    text-indent: 30px;
    max-width: 320px;
}

#searchbox .ais-SearchBox-input::placeholder {
    color: #121212;
    left: 30px;
}

#searchbox .ais-SearchBox-input:focus-visible {
    outline: none !important;
}

.algolia-search.search-button {
    margin-top: 25px;
    position: absolute;
    margin-left: 50px;
}

.ais-Hits.row.ais-Hits--empty {
    text-align: center;
    color: #121212;
}

/* SEARCH BOX */

/* PAGINATION */

.ais-Pagination-list .ais-Pagination-item:hover:not(.ais-Pagination-item--selected) a,
.ais-Pagination-list li.ais-Pagination-item--selected a,
.ais-Pagination-list li.ais-Pagination-item--selected a:hover {
    background-color: transparent !important;
}


.ais-Pagination-list .ais-Pagination-item a {
    text-decoration: none;
}


.ais-Pagination-list li.ais-Pagination-item  {
    display: block;
    float: left;
    text-decoration: none;
    border-radius: 5px;
    font-size: 22px;
    cursor: pointer;
    margin: 4px;
}


/* PAGINATION */

/* DROPDOWN */
.ais-SortBy-select {
    position: relative;
    display: inline-block;
}

.ais-SortBy-select select {
    display: none;
}

.ais-SortBy-select .select-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none; /* Чтобы клики проходили через иконку */
}

.ais-SortBy-select, .ais-MenuSelect-select {

    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
}

.ais-SortBy-select:focus-visible, .ais-MenuSelect-select:focus-visible {
    outline: none !important;
}



#sort-by.no-margin .ais-SortBy-select {
    margin-left: 0;
}

/* DROPDOWN */

/* Icons */
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}
/* Icons */

/** Form Text Inputs - fti-1 **/
.fti-1-wrap {
    position: relative;
    display: flex;
}
.fti-1-input {
    flex-grow: 1;
    line-height: 24px;
    letter-spacing: 0.15px;
    border-radius: 4px;
    border-width: 2px;
    outline: none;
    padding: 16px 48px 16px 16px;
}
.fti-1-icon {
    position: absolute;
    height: 24px;
    width: 24px;
}
/* Adds padding to input so that icons do not overlap with text/placeholders */
.fti-1-space-for-icons {
    padding: 16px 48px;
}
.fti-1-icon-right {
    right: 12px;
    top: 16px;
}
.fti-1-icon-left {
    left: 12px;
    top: 16px;
}
.fti-1-errors-wrap {
    margin: 0px;
    padding-left: 16px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
}
.fti-1-fieldset {
    border-radius: 4px;
}
.fti-1-fieldset input {
    /* Prevent border of the input from appearing between fieldset border and input */
    border: none;
    border-radius: 0px;
}
.fti-1-legend {
    border: none;
    width: auto;
    margin-left: 10px;
    margin-bottom: 0px;
    line-height: 0px;
    padding-inline-start: 3px;
    padding-inline-end: 3px;

    font-size: 12px;
    letter-spacing: 0.4px;
}

/** Form Text Inputs - fti-1 **/

/**Flex**/
.d-flex {
    display: flex;
}
.d-inline-flex {
    display: inline-flex;
}
.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.justify-content-center {
    justify-content: center;
}
.align-items-center {
    align-items: center;
}
.justify-content-space-between {
    justify-content: space-between;
}
.justify-content-space-around {
    justify-content: space-around;
}
.justify-content-end {
    justify-content: end;
}
.d-block {
    display: block;
}
.w-100 {
    width: 100%;
}
.w-75 {
    width: 75%;
}
.w-50 {
    width: 50%;
}
.w-25 {
    width: 25%;
}
.border-bottom {
    border-bottom: solid 1px var(--border-color);
}
.align-items-end {
    align-items: end;
}

/**Flex**/

/**LOADER**/
.loader {
    width: 30px;
    height: 16px;
    border: 5px solid #FFF;
    border-bottom-color: #f48fb1;
    border-radius: 50%;
    display: flex;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    align-items: center;
    justify-content: center;
}

.btn .loader {
    width: 16px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/**LOADER**/

/** Form Text Inputs - fti-1 **/

/** DROPDOWN with text like about-me **/
.common-custom-toggle {
    .btn-dropdown-custom {
        background-color: #121212;
        color: #FFFFFF;
        width: 100%;
        border: 1px solid #2E2E2E;
        border-radius: 4px;
        padding: 5px 15px;
        font-family: Roboto, serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.15000000596046448px;
        text-align: left;
    }

    .caret-container {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
    }

    .open .caret-container {
        top: 5%;
    }

    .dropdown {
        padding-left: 5px;
        padding-right: 5px;
    }
    .dropdown-menu {
        position: relative;
    }
    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-toggle .custom-caret {
        background-image: url('../images/arrow.svg');
        background-size: contain; /* Adjust this property as needed */
        width: 10px; /* Adjust the width and height of the custom caret */
        height: 10px;
        display: inline-block;
        vertical-align: middle;
        appearance: none;
        background-repeat: no-repeat;
    }

    .open>.dropdown-menu {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #2E2E2E;
        background: #000;
        color: #fff;
    }

    .about-me.open>.dropdown-menu {
        z-index: 1;
    }

    .about-me.open .caret-container {
        top: 50%;
    }

    .about-me {
        padding: 0 4px;
    }
}

.side-bar-algolia .open .caret-container {
    top: 16%;
}
/** DROPDOWN with text like about-me **/
/** scrollbar **/
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2e2e2e;

}

::-webkit-scrollbar-thumb {
    background: #ababab;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF99;
}

/** scrollbar **/

#direct-modal-heading {
    top: unset;
}
@media (max-width: 767px) {
    .container.recent-active-container{
        margin-top: 25px;
    }
    .head-list .recent-active {
        flex-direction: column;
    }
    .modelSort {
        padding-right: 0;
    }
    .head-list .allModels {
        margin: 10px auto;
        text-align: center;
    }
    .guest-buy-cart .month {
        margin-top: 25px;
    }
    .guest-buy-cart .card {
        margin-top: 20px !important;
    }

    .form-group-dark {
        margin-bottom: 19px;
    }
}

.redesign-select {
    cursor: pointer;
    position: relative;
    font-size: 14px;
}

.redesign-select select {
    display: none; /*hide original SELECT element: */
}

.pink-radio .tip-value {
    font-weight: 500;
}

.redesign-select-selected {
    border-radius: 4px;
    padding: 6px 16px;
}

.redesign-select-selected.select-arrow-active {
    border-radius: 4px 4px 0px 0px;
    border-bottom: 0;
}

/* Style the arrow inside the select element: */
.redesign-select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 18px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: #FFFFFF99 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.redesign-select-selected.select-arrow-active:after {
  top: 7px;
}

/* style the items (options), including the selected item: */
.redesign-select-items div,.select-selected {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  text-align: left;
  padding: 8px 16px;
  cursor: pointer;
}

/* Style items (options): */
.redesign-select-items {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* Hide the items when the select box is closed: */
.redesign-select-hide {
  display: none;
}

.no-style {
    font-size: inherit;
    font-weight: inherit;
    display: inline;
    margin: 0;
}

.custom-h4 {
    font-size: 34px;
    font-weight: 400;
    color: #000000BD;
    display: inline;
    margin: 10px 0;
}

.custom-h5 {
    font-size: 24px;
    color: rgb(33, 33, 33);
    line-height: 26.4px;
    font-weight: 400;
}

.back-button-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}

.back-button-wrapper a {
    color: inherit;
}

.back-button-artists {
    padding-left: 20px;
}

#payout-container .fti-1-legend {
    display: none;
    position: absolute;
}

#payout-container .form-group {
    position: relative;
}

/*#accordion .form-group {*/
/*    flex-direction: column;*/
/*}*/

#payout-container {
    .custom-select,
    .note-editor {
        position: unset;
    }
}

#payout-container,
.orderSummaryBlock {

    .form-control {
        box-shadow: none;
    }

    .popover-error {
        display: contents !important;
    }

    .popover > .arrow {
        display: none;
    }
}

#accordion {

    .form-control {
        box-shadow: none;
        z-index: 900;
    }

    .popover-error {
        top: 0 !important;
        left: 0 !important;
        background-color: unset;
        box-shadow: none;
        z-index: 910;
    }

    .popover > .arrow {
        display: none;
    }
}

#payout-container .form-group:has(.popover-error) {
    img {
        top: 30%;
    }
}

#payout-container .form-group:has(.popover-error) {
    margin-bottom: 0;
}

#payout-container .emailContainer:has(.popover-error),
#accordion .emailContainer:has(.popover-error) {
    height: 81px;
}

#accordion .popover-content {
    padding: 0;
    margin-top: 55px;
    background: inherit;
}
.buorg {
    border-bottom: none !important;
}
#buorgul, #buorgpermanent {
    box-shadow: none !important;
}
#buorgig {
    background-color: #03A9F4 !important;
    box-shadow: none !important;
}
.buorg-moremsg{
    font-size: 16px;
    font-weight: 700;
}
@media (max-width: 450px) {
    memberTipForm .amountSection > .radioChoice:last-child {
        width: 100%;
    }
}



/*Content box*/
.model-content-box-name-color {
    letter-spacing: 0.1px;
}
.content-extended .model-content-box-name-color{
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: max-content;
    pointer-events: auto;
}
.content-title-name {
    letter-spacing: 0.15px;
}

.content-title {
    padding-top: 6px;
}

.content-title a {
    max-height: 24px;
    line-height: 24px;
    overflow: hidden;
    font-weight: 700;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 260px;
}
.content-price {
    padding-top: 6px;
    gap: 5px;
}
.visible-xs .content-price {
    padding: 0;
}
.visible-xs .tittle-price {
    margin-top: 4px;

    .content-title {
        padding: 0;

        .content-title-name {
            font-size: 14px;
            letter-spacing: 0.1px;
        }
    }
}
.visible-xs .footer-btns {
    height: 22px;
    align-items: center;
    padding: 0;
    margin-top: 8px;

    .material-symbols-outlined {
        font-size: 18px;
    }
    span:not(.material-symbols-outlined) {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.4px;
    }
    .addToCart {
        padding: 0;
    }
}
.content-extended {
    padding: 16px;
    border: solid 1px var(--iwc-pink);
    opacity: 0;
    position: absolute;
    background: var(--content-background);
    right: -17px;
    left: -17px;
    border-radius: 6px;
    top: -17px;
    z-index: -1;
    pointer-events: none;
}

.buy-btn-block .addToCart .cart-icon-material {
    font-size: 15px;
}

.buy-btn-block .addToCart {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    width: 100%;
}
@media (max-width: 767px) {
    .buy-btn-block .addToCart {
        padding-right: 0;
    }
}


.buy-btn-block {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

.content-button {
    padding: 10px;
}

.content-categories .filled-icon {
    font-size: 8px;
}
.content-title-extended {
    padding-top: 6px;
}

.content-title-extended a {
    font-weight: 700;
    overflow: visible;
    white-space: normal;
    max-height: fit-content;
}

.preview img, .preview video {
    border-radius: 6px 6px 0 0!important;
}
.content-buttons-ext {
    margin-top: 10px;
}

.badge-content-item {
    border-radius: 4px;
    padding: 2px 4px;
}

.content-delimeter hr{
    margin-top: 10px;
    margin-bottom: 10px;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    min-height: 30px;
    padding-bottom: 12px;
    padding-top: 4px;
}
.content-footer.visible-xs {
    padding: 4px 16px;
}

.footer-btns {
    padding-top: 6px;
    display: flex;
    justify-content: space-between;
}

.footer-btns .buy-btn-block {
    min-width: 50%;
    margin: 0;
}
.modal-mobile-item .buy-btn-block {
    min-width: 50%;
}
.footer-btns .buy-btn-block .addToCart {
    border: none;
}
.content-footer.visible-xs .footer-btns .buy-btn-block .addToCart {
    justify-content: end;
}
.content-footer.visible-xs .footer-btns .buy-btn-block .addToCart:hover {
    background: none;
}
.content-footer.visible-xs .footer-btns .buy-btn-block .addToCart:active {
    box-shadow: none;
    -webkit-box-shadow: none;
}
.modal-mobile-item .footer-btns .buy-btn-block .addToCart {
    background: var(--iwc-pink);
    opacity: 1;
    border: 1px solid var(--iwc-pink);
}
@media (max-width: 480px) {
    .modal-mobile-item .footer-btns {
        .redesign-btn, .addToCart {
            font-size: 12px;
        }
        .addToCart.pop-button .loader {
            width: 17.15px;
            height: 17.15px;
        }
        .addToCart {
            gap: 4px;
        }
    }
}
.modal-mobile-item .modal-content {
    padding: 16px;
}

.modal-mobile-item .modal-body {
    padding: 0;
}

.modal-mobile-item .content-description {
    padding-top: 10px;
    padding-bottom: 10px;
    p {
        -webkit-line-clamp: 10;
    }
}

.modal-mobile-item .category-block {
    padding-top: 10px;
}

.modal-mobile-item {
    .content-title-name {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .content-title {
        a {
            max-height: none;
            white-space: normal;
        }
    }

    .content-buttons-ext {
        margin-bottom: 10px;
    }
    .redesign-btn.primary {
        width: 100%;
        border-color: var(--iwc-pink);
    }
    .buy-btn-block a {
        background: var(--iwc-pink);
        padding: 10px 16px 10px 12px;
    }
    .buy-btn-block span {
        color: #fff!important;
    }
    .footer-btns {
        padding: 0;
        gap: 10px;
}
    .content-buttons-ext a {
        flex-grow: 1;
    }
    .content-button .icon {
        font-size: 18px;
    }
    .content-button {
        padding: 6px 10px;
    }
    a.addToCart:hover {
        background: var(--iwc-pink)!important;
        box-shadow: none;
        --webkit-box-shadow: none;
    }
    a.body-2 {
        font-weight: 500;
    }
}

.content-description p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.left-text {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: max-content;
    pointer-events: auto;
}
/* Fix slider item */
.splide__slide .footer-btns {
    .caption.d-flex {
        display: none;
    }
    .addToCart:hover {
        all: unset;
    }
}
.splide__slide .footer-btns.artist-view {
    justify-content: center;
}

.splide__slide .footer-btns:not(.artist-view) {
    min-height: 34px;
    margin-top: 6px;
    border-radius: 4px;
    border: solid 1px rgba(0, 0, 0, 0.12);
    padding: 0;
    justify-content: center;
}

.splide__slide .footer-btns:hover{
    background: transparent;
}
/* END Fix slider item */

.right-text {
    flex-shrink: 0;
}
.color-black {
    color: #000;
}

.black-60 {
    color: rgba(0, 0, 0, 0.6);
}

.black-87 {
    color: rgba(0, 0, 0, 0.87);
}

.model-name:hover {
    text-decoration: underline!important;
    color: inherit;
}

.price-color {
    color: rgba(0, 0, 0, 0.87);
}

.content-extended .content-info .price-color {
    white-space: nowrap;
}
.content-description p {
    color: rgba(0, 0, 0, 0.6) !important;
}

.content-buttons-ext a:hover > span {
    color: var(--iwc-pink) !important;
}

.buy-btn-block a:hover {
    background: rgba(255, 65, 180, 0.04);
}

.content-title-name {
    color: #000;
}

.content-footer {
    .addToCart.disabled {
        opacity: 1;
        background: none;
    }
}

.price-color svg {
    fill: rgba(0, 0, 0, 0.87) !important;
}
.content-title a:hover {
    color: #000!important;
}

.content-title-name:hover {
    color: #000!important;
}

.content-extended {
    box-shadow: 0px 11px 15px 0px rgba(0, 0, 0, 0.14);

}

.content-extended .content-title a {
    max-width: inherit!important;
}

.ct-artist-name {
    line-height: 23px;
    max-width: 151px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.addToCart.pop-button .loader{
    width: 20px;
    height: 20px;
}
.addToCart:not(.btn).loader {
    width: 24px;
    height: 24px;
}
/**Content box/
/** Homepage reusable blocks **/

.main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 16px;
    width: 100%;
}
.main #top-selling, .main #newest_content {
    .clip {
        min-height: 150px;
    }
}
.main section {
    margin-top: 24px;
}
.main section:first-child {
    margin: 0;
}
.main section h5 {
    margin: 0;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.18px;
}
.main section h5 a {
    position: relative;
    display: inline-block;
    padding-right: 24px;
}
.main section h5 a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s ease;
}
.main section#featured-stores {
    background: transparent;
}
.main section h5 a:hover::after {
    transform: translate(4px, -50%) rotate(-45deg);
}
.main .section-description {
    margin-top: 4px;
}
.main .section-description p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
}
.main .with-switcher {
    display: flex;
    justify-content: space-between;
}
.main .switcher {
    display: flex;
    align-items: end;
    gap: 4px;
}
.main .switcher span {
    border-radius: 4px;
    padding: 5px 9px;
    font-weight: 500;
    cursor: pointer;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.main .with-switcher {
    .view-switcher {
        display: flex;
    }
    .mob-view-switcher {
        display: none;
    }
    .control-wrap {
        display: flex;
        align-items: center;
        gap: 24px;
    }
}
.main {
    /* Search */
    .search-wrapper {
        display: flex;
        gap: 8px;
        align-items: center;
        background-color: #DCDCDC;
        border-radius: 9999px;
        padding: 10px 12px;
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;

        svg {
            fill: #393939;
        }
      }      
      .extended-search {
        border: none;
        background: transparent;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.1px;
        font-weight: 500;
        width: 100%;
        outline: none;
        color: #393939;
      }
      .extended-search::placeholder {
        color: #393939;
        opacity: 1;
      }
}
.main .grid-container, .main .clips-container {
    margin-top: 15px;
}
.main .videoSection {
    padding: 0;
    margin-bottom: 24px;
}
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 12px; 
    margin: 0 auto;
    transition: width 0.3s ease;
}
.grid-item {
    transition: transform 0.3s ease;
    transform-origin: top left;
    flex: 0 0 calc((100% - 48px) / 5);
    aspect-ratio: 304 / 233;
    width: 100%;
    max-width: calc((1600px - 4 * 12px) / 5);
}
.grid-item.skeleton {
    .scalable-contnet {
        height: 100%;
    }
}
.artists-section .grid-container {
    gap: 32px 12px;
}
.artists-section .grid-item {
    aspect-ratio: 304 / 68;
}
.banners-section {
    padding: 0 8px;
}
.banners-section .grid-container {
    gap: 24px;
}
.banners-section .grid-item {
    aspect-ratio: 501.33 / 164;
    flex: 0 0 calc((100% - 2 * 24px) / 3);
    max-width: calc((1600px - 2 * 24px) / 3);
}
.categories-section .grid-item {
    aspect-ratio: 304 / 251;
}
.followed-section .grid-item {
    flex: 0 0 calc((100% - 2 * 12px) / 3);
    width: 100%;
    max-width: calc((1600px - 2 * 12px) / 3);
    aspect-ratio: 514.67 / 182;
}
.main .show-more-container, .main .show-all-container {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.main .show-more-divider {
    height: 1px;
    width: 100%;
}
.main .show-more, .main .show-all {
    position: relative;
    min-width: 149px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    padding: 10px 16px;
}
.main .show-all {
    min-width: 134px;
}
.main .show-more:after, .main .show-all:after {
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    right:12px;
    transform: translateY(-50%);
    display: inline-block;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s ease;
}
.main .show-all:hover::after {
    transform: translate(4px, -50%) rotate(-45deg);
}
.main .show-all:after {
    top: calc(50% - 1px);
}
.main .show-more:hover::after {
    transform: translate(0px, 0.1px) rotate(-45deg);
}
.trending-scroll-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.trending-items {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 12px;
    margin: 8px 0px 0px 0;
    scrollbar-width: none; /* Firefox */
}
.trending-items::-webkit-scrollbar {
    display: none; /* Chrome */
}
.trending-items a {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.1px;
    font-weight: 500;
    padding: 8px 16px 8px 30px;
    border-radius: 24px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.trending-items a:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    left: 16px;
}
.trending-scroll-wrapper .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 2;
    display: none;
    box-shadow: -15px 4px 10px 1px rgba(0, 0, 0, 0.6);
  }
  .trending-scroll-wrapper .scroll-btn.left {
    left: 0;
    box-shadow: 15px 4px 10px 1px rgba(0, 0, 0, 0.6);
  }
  .trending-scroll-wrapper .scroll-btn.right {
    right: 0;
  }
  .trending-scroll-wrapper .scroll-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(50% - 3px);
    transform: translateY(-50%);
    display: inline-block;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s ease;
}
.trending-scroll-wrapper .left.scroll-btn:after {
    right: calc(50% - 6px);
}

/* NEW ARTIST CARD */
.artist-card-horisontal {
    height: 68px;
    width: 100%;
    display: flex;
    gap: 8px;
    justify-content: left;
    align-items: center;
}
.artist-card-horisontal img{
    max-width: 68px;
    max-height: 68px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 100%;
}
.artist-info h6 {
    margin-top: 0;
    margin-bottom: 4px;
}
.artist-info h6 .artist-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-width: 228px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.15px;
}
.artist-info .primary-category {
    padding: 2px 6px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    border-radius: 16px
}
/* END NEW ARTIST CARD */
/* ITEM CARD */
.shimmer-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    background-color: #f0f0f0;
    margin-bottom: 0.25rem;
}
.shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    animation: shimmer-blink 1.2s ease-in-out infinite;
    border-radius: inherit;
}
@keyframes shimmer-blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.4;
    }
}
.grid-item {
    .col-lg-3, .col-md-4, .col-sm-6, .col-xs-12 {
        all: unset;
    }
    .content-box {
        width: 100%;
        margin: 0;
    }
}
/* Followed Card */
.followed-card {
    padding: 16px;
    background: #FFF;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;

    .artist-area {
        width: 100%;
        a {
            display: flex;
            gap: 8px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 100%;
            svg {
                position: absolute;
                top: 0;
                left: 0;
            }
            path {
                fill: #FF40B6;
            }
            img {
                width: 100px;
                height: 100px;
                border-radius: 100%;
            }
            h6 {
                font-weight: 500;
                font-size: 20px;
                line-height: 24px;
                letter-spacing: 0.15px;
                color: #212121;
            }
        }
    }
    .controls-area-inner{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .controls-area {
        display: flex;
        gap: 8px;
        flex-direction: column;
        border-left: 1px solid #E0E0E0;
        padding-left: 16px;

        a:not(.f-remove) {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 130px;
            height: 36px;
            border-radius: 4px;
            border: 1px solid #E0E0E0;
            text-transform: uppercase;
            line-height: 16px;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1.25px;
            gap: 8px;
        }

        a:not(.f-remove) i {
            display: block;
            width: 18px;
            height: 18px;
            background-repeat: no-repeat;
            background-position: center;
            content: '';
        }

        a.f-tip {
            color: #FFF;
            background: #03A9F4;
            border: 1px solid #03A9F4;
        }
        a.f-tip:hover {
            background: #36B9F5;
            border: 1px solid #36B9F5;
        }
        a.f-tip i{
            background-image: url('/images/dollar-attachment-white.svg');
        }
        a.f-message {
            color: #03A9F4;
        }
        a.f-message:hover {
            background: #F5F5F5;
            border: 1px solid #EBEBEB;
        }
        a.f-message i {
            background-image: url('/images/message-blue-500.svg');
        }
        a.f-subscribe {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.4px;
            color: #FF40B6;
        }
        a.f-subscribe:hover {
            background: #FFF8FC;
            border: 1px solid #FFF0F9;
        }
        a:not(.home-unsubscribe).f-subscribe i {
            background-image: url('/images/subscribe-pink-500.svg');
        }

        a.home-unsubscribe.f-subscribe i {
            background-image: url('/images/unsubscribe-pink-500.svg');
        }

        a.f-remove {
            line-height: 16px;
            font-weight: 400;
            font-size: 12px;
            letter-spacing: 0.4px;
            text-transform: capitalize;
            color: #03A9F4;
            text-align: center;
        }

        a.f-remove:hover {
            color: #8BD7FA;
        }
    }
}
.main .banners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    .banner {
        a:hover .banner-action {
            line-height: 36px;
        }
        
        a:hover .banner-action:after  {
            right: 20px;
        }

        aspect-ratio: 501.33 / 164;
        max-width: 501.33px;
        border-radius: 12px;
        position: relative;
        img {
            width: 100%;
            aspect-ratio: 501.33 / 164;
        }

        .banner-link {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            border-bottom-left-radius: 12px;
            margin-right: 0.5px;

            .banner-text {
                line-height: 24px;
            }

            .banner-action {
                padding: 8px 8px 8px 16px;
                margin-right: 0.5px;
                border-bottom-right-radius: 12px;
                position: relative;
                font-size: 14px;
                line-height: 34px;
                letter-spacing: 1.25px;
                text-transform: uppercase;
                transition: line-height 0.3s ease;
                padding-right: 42px;
            }
            .banner-action:after {
                content: '';
                position: absolute;
                top: calc(50% - 1px);
                right: 24px;
                transform: translateY(-50%);
                display: inline-block;
                transform: translateY(-50%) rotate(-45deg);
                transition: right 0.3s ease;
                padding: 3px;
            }
        }
    }

    .banner-link {
        position: absolute;
        
    }
}

.main #pagination {
    margin-top: 16px;
}
  
@keyframes shimmer {
    0% {
      left: -50%;
    }
    100% {
      left: 100%;
    }
}

.content-item-card {
    padding: 8px;
    width: 100%;
    height: 100%;
    border: 1px solid #6C6C6C;
    border-radius: 12px;
}
/* END ITEM CARD */
/* CATEGORY CARD */
.category-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    position: relative;

    img {
        width: 100%;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        object-fit: cover;
        aspect-ratio: 304 / 171;
    }

    h6 {
        margin: 8px 0 0 0;
        padding: 8px 4px 4px 4px;
        text-align: center;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0.15px;
    }
    p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.25px;
        font-weight: 400;
    }

    p.category-count {
        margin: 0;
        padding: 0 16px 16px 16px;
        text-align: center;
    }

    p.category-description {
        position: absolute;
        border: 1px solid var(--border-color);
        padding: 8px 16px 4px;
        border-top: 0;
        border-radius: 0px 0px 12px 12px;
        top: calc(100% - 12px);
        width: calc(100% + 2px);
        left: -1px;
        display: none;
        z-index: 2;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .category-list-view {
        display: none;
        justify-content: space-between;
        align-items: center;

        h6 {
            margin: 0;
            padding: 0;
            text-align: left;
            font-weight: 400;
            font-size: 16px;
        }

        p.category-count {
            padding: 0;
        }
    }
}

.main.categories-list{
    .categories-section .grid-item {
        aspect-ratio: 304 / 56;
    }

    .category-card {
        border: 2px solid #E0E0E0;
        transition: border-color 0.3s ease;
        border-radius: 0px;
        padding: 0 14px;
        height: 56px;
        display: flex;
        align-items: center;
        overflow: hidden;

        h6 {
            transition: color 0.3s ease;
        }

        .category-list-view {
            display: flex;
            justify-content: space-between;
            width: 100%;
            gap: 4px;
        }

        .category-grid-view {
            display: none;
        }
    }
    .category-card:hover {
        border: 2px solid #FF40B6;

        h6 {
            color: #FF40B6;
        }
    }
}
.category-card:hover .category-description {
    display: -webkit-box;
}
/*END CATEGORY CARD */

@media (max-width: 992px) {
    .main.categories-list .categories-section .grid-item {
        aspect-ratio: unset;
    }
         
    .main {
        padding-left: 0;
        padding-right: 0;

        section:not(.clips-section),
        .clips-section .with-switcher,
        .clips-section .show-more-container,
        .clips-section .show-all-container,
        .clips-section h5:not(.inner)
        {
            padding-left: 16px;
            padding-right: 16px;
        }
        .content-box {
            .content-header .clip-16-9, 
            .content-header .preview img, 
            .content-header .preview video,
            .clips-section .shimmer-wrapper {
                border-radius: unset !important;
                width: 100%;
            }
        }

        .with-switcher {
            .search-wrapper {
                margin-top: 12px;
                padding: 9px 12px;
            }
            .switcher {
                justify-content: space-around;
                width: 100%;
    
                span {
                    width: 100%;
                    text-align: center;
                }
            }
            .view-switcher {
                display: none;
            }

            .with-mob-swtcher {
                display: flex;
                justify-content: space-between;
                align-items: center;

                .mob-view-switcher {
                    display: block;

                    .switch-button {
                        display: flex;
                        background: #FF41B4;
                        padding: 4px;
                        gap: 2px;
                        align-items: center;
                        border-radius: 4px;

                        span {
                            font-weight: 400;
                            line-height: 16px;
                            font-size: 12px;
                            text-transform: uppercase;
                            color: #fff;
                            letter-spacing: 0.4px;
                        }

                        svg {
                            path {
                                fill: #fff;
                                stroke-opacity: 1;
                                fill-opacity: 1;
                            }
                        }
                        
                    }

                    #list-view-mob {
                        display: flex;
                    }
                    #grid-view-mob {
                        display: none;
                    }
                }
            }
        }

        .categories {
            padding: 0 16px;
        }
    }
    
    .main.categories-list .with-switcher .with-mob-swtcher .mob-view-switcher {
        #list-view-mob {
            display: none;
        }
        #grid-view-mob {
            display: flex;
        }
    }
    
    .main .with-switcher {
        display: block;
    }
    .main section h5 {
        font-size: 20px;
    }
    .main .switcher, .main .grid-container, .main .clips-container {
        margin-top: 12px;
    }
    .trending-items {
        margin: 0;
    }
    .grid-item, .categories-section .grid-item, .followed-section .grid-item, .banners-section .grid-item {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .grid-item:not(.skeleton), .categories-section .grid-item, .followed-section .grid-item, .banners-section .grid-item {
        aspect-ratio: unset;
    }

    .artists-section {
        .grid-item {
            transition: transform 0.3s ease;
            transform-origin: top left;
            flex: 0 0 calc((100% - 12px) / 2); 
            width: 100%;
            max-width: calc((1024px - 12px) / 2);
        }

        .grid-item:not(.skeleton) {
            aspect-ratio: unset;
        }
    }
    .main .banners {
         .banner {
            /* aspect-ratio: unset; */
            margin: 0 auto;
            img {
                width: 100%;
                border-radius: 12px;
            }
            .banner-link {
                .banner-text {
                    font-size: 14px;
                }
            }
         }
         .banner.blog {
            img {
                object-fit: cover;
            }
         }
    }
  }
@media (max-width: 480px) {
    .artists-section {
        .grid-container {
            gap: 16px 12px;
        }
        .grid-item {
            max-width: 100%;
            flex: 0 0 100%;
        }
    }

    .followed-card {
        display: block;
        

        .artist-area {
            a {
                h6 {
                    font-size: 16px;
                    font-weight: 400;
                    margin-top: 8px;
                    margin-bottom: 0;
                }
            }
        }
        .controls-area {
            margin-top: 16px;
            border-left: unset;
            padding-left: unset;
            align-items: center;

            a:not(.f-remove) {
                width: 100%;
            }
            a.f-message span, a.f-subscribe span {
                display: none;
            }
            a.f-remove {
                display: none;
            }
        }

        .controls-area-inner{
            flex-direction: row-reverse;
            gap: 8px;
            width: 100%;
        }
    }
    .main .banners  .banner {
        .banner-link {
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;

            .banner-action {
                line-height: 26px;
            }
        }
        
   }
}
/** End Homepage blocks **/
