@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
    min-height: 100vh;
    object-fit: fill;
    background-image: url('/frontend/assets/images/bg-image.png');
    background-position: center;
    background-repeat: no-repeat;
    overflow-y: auto;

    /* Fonts */
    font-family: "Inter", sans-serif !important;
}

body.zoomed-in {
    background-size: 120%;
}

a {
    text-decoration: none;
    color: #0B1727;
}

h1 {
    color: #fff !important;
    font-size: 3.75rem !important;
    /* 76px */
    font-weight: bold !important;
}

.w-10 {
    width: 10% !important;
}

p {
    color: #ececec !important;
    font-size: 1.175rem !important;
    /* 22px */
}

input,
.dropdown-btn,
.search-btn,
.dropdown-box ul li {
    font-size: 0.9rem !important;
    /* 22px */
}

/* ------------------- Text Box ------------------- */
.text-container {
    font-size: 1.3rem;
    margin-top: 7rem;
    margin-bottom: 2rem;
}

.text-heading-container {
    margin-top: 10rem;
    margin-bottom: 5rem;
}


/* ------------------------------ Search ------------------------------ */

.search-container {
    position: relative;
}

.search-box {
    width: 100%;
    background-color: #fff;
    padding: 0.625rem 0.625rem 0.625rem 30px;
}

.search-box-border {
    background-color: #ffffff4b;
    padding: 0.625rem;
}

.search-box input,
.search-box input:focus,
.search-box input:active,
.search-box input:focus-visible {
    /* Disable defaults */
    border: none !important;
    outline: none !important;
}

/* ---- Dropdowns */

.dropdown-btn {
    background-color: transparent;
    border: none;
}

.dropdown-btn svg {
    height: 1.2rem;
    width: 1.2rem;
}

.dropdown-box {
    width: 23.5rem;
    /* 400px */
    height: fit-content;
    background-color: #fff;

    position: absolute;

    border: 2px solid transparent;
    border-bottom-right-radius: 1.438rem;
    border-bottom-left-radius: 1.438rem;

    right: 2.8rem;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#platform-dropdown-btn {
    visibility: hidden;
    /* Initially hidden */
    opacity: 0;
    /* Fully transparent */
    transition: visibility 0s 0.3s, opacity 0.3s ease-in-out;
    /* Wait 0.3s for visibility, then transition opacity */
}

#platform-dropdown-btn.show {
    visibility: visible;
    /* Become visible */
    opacity: 1;
    /* Fully opaque */
    transition-delay: 0s;
    /* Instantly visible when the transition starts */
}

#search-dropdown-btn {
    transition: transform 0.3s ease-in-out;
    transform: translateX(85px);
    margin-right: 12px;
}

#search-dropdown-btn.animate {
    transform: translateX(0px);
}

#search-dropdown-btn-icon,
#platform-dropdown-btn-icon {
    transition: transform 0.3s ease;
}

#search-dropdown-btn-icon.rotate,
#platform-dropdown-btn-icon.rotate {
    transform: rotate(180deg);
    /* Rotate the icon */
}

.dropdown-box.show {
    opacity: 1;
    display: block;
    visibility: visible;
}

.dropdown-box ul {
    list-style: none;

    /* Disable defaults */
    padding: 0px !important;
    margin-bottom: 0px !important;
}

.dropdown-box ul li {
    cursor: pointer;
    padding: 8px 14px;
}

.dropdown-box ul li.selected {
    font-weight: bold;
    background-color: #faf6e8;
}

/* ---- Search Button */

.search-btn {
    color: #000;
    font-weight: bold;
    border: transparent;
    background-color: #ffce00;
    padding: 0.625rem 2.188rem;
    /* 10px 35px */

    transition: background-color 0.3s ease, color 0.3s ease;
}

.search-btn:hover {
    color: #ffce00;
    background-color: #000;
}

/* ------------------------------ Search Results ------------------------------ */

.search-result-box-border {
    height: fit-content;
    background-color: #ffffffb0;
    padding: 0.75rem;
    width: 95%;
}

.search-result-box {
    background-color: #fff;
    height: fit-content;
    overflow-y: auto
}

#search-results {
    display: block;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#search-results.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
}


.table {
    width: 100% !important;
}

.table > :not(caption) > * > * {
    vertical-align: middle;
}

.table thead th {
    color: #aaaaaa !important;
    font-size: 0.75rem !important;
}

.table tbody tr {
    font-size: 1rem !important;
}

.table tbody {
    height: 100%;
    overflow-y: auto;
}


/* ------------------------------ Top Rated Artist ------------------------------ */
.top-rated-box-border {
    height: fit-content;
    background-color: #ffffffb0;
    padding: 0.75rem;
    width: 95%;
}

.top-rated-box {
    background-color: #fff;
    height: fit-content;
    overflow-y: auto
}

.profile-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #c9c9c9;
}

.verified-box {
    width: 90px;
    border: 1px solid #d2d2d2;
    font-size: 12px;
    padding-right: 10px;
    padding-left: 5px;
    border-radius: 100px;
}

.profile-card-text {
    padding-left: 20px;
}

.profile-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d4af37;
    margin-right: 15px;
}

.verified-badge {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.verified-badge span {
    margin-left: 5px;
}

.verified-badge i {
    width: 20px;
    height: 20px;
}

/* ------------------------------ Trust Pilot ------------------------------ */

.trustpilot-section {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 100%;
    margin: 70px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
}

.trustpilot-section img.logo {
    height: 50px;
}

.trustpilot-img {
    width: 250px;
}

.trustpilot-rating-img {
    height: 40px;
    width: 220px;
}

.rating-text {
    font-weight: 400;
    font-size: small;
}

.humantek-art-logo {
    height: 60px;
    width: 180px;
}

.top-rated-heading {
    color: #000000;
}

.top-rated-heading h2 {
    font-size: 1.95rem;
    font-weight: bold;
}

.top-rated-hr {
    background: #ffce00 !important;
    border: 2px solid #ffce00 !important;
    opacity: 1;
}

.dmca-img {
    height: 20px;
}

.icon {
    background-color: black;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ------------------------------ Footer------------------------------ */


hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

.list-inline-item .social-icons path:hover {
    fill: #ffce00;
}

.verified-icon{
    background: #09E331;
    color: #ffffff;
    border-radius: 50%;
    font-size: 15px;
    padding: 1px;
}

.not-verified{
    background: #fd3e3e;
    color: #ffffff;
    border-radius: 50%;
    font-size: 15px;
    padding: 1px;
}
