@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mp-header-bg: url("../img/header_bg.png");
    --mp-banner-bg: url("../img/banner_bg.png");
    --font: 'Source Sans 3', sans-serif;
    --primary: #ed1c24;
    --secondary: #9bd7ce;
}

html, body {
    font-family: var(--font);
    font-weight: 400;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
}

nav {
    position: absolute;
    display: flex;
    flex-direction: row;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 30;
}

.nav-relative {
    position: relative !important;
    background-image: url("../img/nav-bg.png");
    padding: 1.5rem;
}

.sticky {
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

nav .container, .nav-relative .container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

nav .logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .logo img {
    width: auto;
    height: 100%;
}

nav .logo-mobile {
    display: none;
    height: 40px;
    align-items: center;
    justify-content: center;
}

nav .logo-mobile img {
    width: auto;
    height: 100%;
}

nav .links {
    display: flex;
    flex-direction: row;
    align-items: center;
}

nav .sign-links.active {
    display: flex;
}

nav .sign-links {
    margin-left: auto;
}

nav .links a {
    border-right: 1px solid #FFF;
    padding: 0 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: .2s ease-in-out;
}

nav .links a:hover span {
    color: var(--primary);
}

nav .links a span {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 500;
    transition: .2s ease-in-out;
}

nav .links a i {
    font-size: 18px;
    margin-right: 1rem;
    color: var(--primary);
    transition: .2s ease-in-out;
}

nav .links a:last-child {
    border-right: none;
}

nav .actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 18px;
    margin: 0 auto;
}

nav .actions a {
    color: #FFF;
    transition: .2s ease-in-out;
}

nav .actions a:hover {
    color: var(--primary);
}

nav .actions .messages {
    position: relative;
    margin: 0 1.5rem;
}

nav .actions .messages .count {
    position: absolute;
    bottom: 0;
    right: -10px;
    background-color: var(--primary);
    color: #FFF;
    font-size: 10px;
    width: 17px;
    min-width: 17px;
    height: 17px;
    min-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

nav .actions .likes {
    position: relative;
    padding-left: 1.5rem;
    border-left: 1px solid #FFF;
}

nav .actions .likes .count {
    position: absolute;
    bottom: 0;
    right: -10px;
    background-color: var(--primary);
    color: #FFF;
    font-size: 10px;
    width: 17px;
    min-width: 17px;
    height: 17px;
    min-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

nav .actions .search {
    position: relative;
}

nav .actions .search > .icon {
    position: relative;
    padding-right: 1.5rem;
    border-right: 1px solid #FFF;
}

nav .actions .search .icon:hover {
    color: var(--primary);
}

nav .actions .search:hover .icon {
    transition: .2s ease-in-out;
    cursor: pointer;
}

nav .actions .search .search-menu {
    position: absolute;
    display: none;
    flex-direction: row;
    transition: .2s ease-in-out;
    border: none;
    right: 0.75rem;
    top: -0.75rem;
    z-index: 30;
    width: max-content;
    padding: 0.75rem;
    background-color: var(--secondary);
}

nav .actions .search .search-menu.active {
    display: flex;
}

nav .actions .search .search-menu .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

nav .actions .search .search-menu .links a:hover {
    color: #fff;
    font-weight: 600;
    transition: .2s ease-in-out;
    position: relative;
}

nav .actions .search .search-menu .links a:hover::before {
    color: #fff;
    font-family: FontAwesome;
    content: '\f054'; /* Downward chevron icon */
    transition: .2s ease-in-out;
    position: absolute;
    left: 0;
}

nav .actions .search .search-menu .links a {
    border: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 20px;
}

nav .profile-menu {
    position: relative;
}

nav .profile-menu .profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

nav .profile-menu .profile .picture {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin-right: 1rem;
}

nav .profile-menu .profile .picture img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

nav .profile-menu .profile .name {
    color: #fff;
    font-size: 20px;
    margin-right: 3rem;
}

nav .profile-menu .profile > .menu {
    font-size: 24px;
    color: #fff;
}

nav .profile-menu > .menu {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    padding: 0.75rem;
    background-color: var(--secondary);
    box-shadow: 0px 0px 6px 0px rgba(255,255,255,0.5);
    display: none;
}

nav .profile-menu > .menu.active {
    display: block;
}

nav .profile-menu > .menu .profile {
    margin-bottom: 1rem;
}

nav .profile-menu > .menu .content {
    padding: 0.75rem;
}

nav .profile-menu > .menu .content .conversations {
    font-size: 12px;
    color: #777777;
}

nav .profile-menu > .menu .content .conversations .count {
    font-weight: 700;
    font-style: italic;
}

nav .profile-menu > .menu .content .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
}

nav .profile-menu > .menu .content .links a {
    padding: 0;
    border: none;
    transition: .2s ease-in-out;
    position: relative;
    margin-bottom: 0.25rem;
    width: max-content;
    font-size: 20px;
}

nav .profile-menu > .menu .content .links a:hover {
    font-weight: 600;
}

nav .profile-menu > .menu .content .links a:hover::before {
    color: #fff;
    font-family: FontAwesome;
    content: '\f054'; /* Downward chevron icon */
    transition: .2s ease-in-out;
    position: absolute;
    left: -1rem;
}

nav .burger-menu {
    display: none;
    margin-left: auto;
    background: none;
    outline: none;
    border: none;
    font-size: 24px;
    color: #FFF;
    cursor: pointer;
}

nav .sign-links .close-menu {
    display: none;
    margin-left: auto;
    background: none;
    outline: none;
    border: none;
    font-size: 24px;
    color: #FFF;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    nav, .nav-relative {
        padding: 2.5rem 2rem;
    }

    nav .logo {
        display: none;
    }

    nav .logo.show-mobile {
        display: flex !important;
        height: 40px;
        align-items: center;
        justify-content: center;
    }

    nav .logo-mobile {
        display: flex;
    }

    nav .logo-mobile.hide-mobile {
        display: none !important;
    }

    nav .sign-links {
        display: none;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        align-items: flex-start;
        background: var(--secondary);
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    nav .sign-links .close-menu {
        display: block;
        position: absolute;
        right: 2rem;
    }

    nav .sign-links a {
        border-right: none;
    }

    nav .links a {
        padding: 0 1rem;
    }

    nav .links a i {
        font-size: 24px;
    }

    nav .burger-menu {
        display: flex;
        align-items: center;
    }

    nav .profile-menu .profile .picture, nav .profile-menu .profile .name {
        display: none;
    }

    nav .profile-menu .menu.active {
        display: flex;
        flex-direction: column;
    }

    nav .profile-menu .menu.active .profile .picture, nav .profile-menu .menu.active .profile .name {
        display: block;
    }

    nav .profile-menu .menu.active .profile .name {
        font-size: 20px;
        margin-right: auto;
    }

    nav .profile-menu .menu.active .profile .picture {
        width: 60px;
        height: 60px;
    }

    nav .profile-menu .menu.active .profile {
        padding: 1rem;
        margin-bottom: 0;
    }

    nav .profile-menu .menu.active .profile .menu {
        font-size: 40px;
    }

    nav .profile-menu > .menu.active .content .conversations {
        font-size: 16px;
    }

    nav .profile-menu > .menu .content .links a {
        font-size: 24px;
    }

    nav .profile-menu > .menu .content .links a:hover::before {
        left: -2rem;
    }

    nav .profile-menu > .menu .content {
        padding: 1rem;
    }

    nav .actions .messages {
        margin: 0 1rem;
    }

    nav .actions .search > .icon {
        padding-right: 1rem;
    }

    nav .actions .likes {
        padding-left: 1rem;
    }

    nav .profile-menu {
        position: static;
    }

    nav .profile-menu > .menu {
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }

    nav .actions .search {
        position: static;
    }

    nav .actions .search .search-menu {
        top: 0;
        left: 0;
        width: 100%;
    }

    nav .actions .search .search-menu {
        padding: 3rem 1rem;
    }

    nav .actions .search .search-menu .icon {
        margin-left: auto;
        font-size: 32px;
    }

    nav .actions .search .search-menu .links a {
        font-size: 24px;
    }

    nav .container, .nav-relative .container {
        padding: 0;
    }
}

header {
    position: relative;
    height: 100vh;
    background-image: var(--mp-header-bg);
    background-size: cover;
    background-position: center center;
    background-color: #FFF;
    box-shadow:
            inset 0 10rem 30rem rgba(0, 0, 0, 0.5),
            inset 0 -10rem 30rem rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

header .title {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: max-content;
    max-width: 55%;
}

header .title h1 {
    color: #FFF;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 52px;
    border-bottom: 1px solid #FFF;
    text-shadow: 1px 1px rgba(0,0,0,0.6);
    padding: 0 2rem 1rem 2rem;
    text-align: center;
}

header .title h1 span {
    color: var(--primary);
}

header .title p {
    margin-top: 2rem;
    color: #FFF;
    font-size: 24px;
    padding: 0 4rem;
}

main section {
    padding: 5.5rem 0;
}

main section > .title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 4rem;
}

main section > .title h3 {
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid var(--primary);
    min-width: 340px;
    padding: 0 3rem 0.5rem 3rem;
}

main section > .title h3 b {
    font-weight: 900;
}

main .cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

main .how-it-works .cards .card {
    display: flex;
    flex-direction: column;
    width: 25%;
    padding: 4rem 3rem;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
    text-align: center;
}

main .how-it-works .cards .card > .icon {
    font-size: 72px;
    color: var(--secondary);
    margin-bottom: 2rem;
}

main .how-it-works .cards .card .content > .title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

main .how-it-works .cards .card .content > .description {
    font-size: 14px;
    color: #777777;
}

main .now-wishing {
    background-color: #f7f7f7;
}

main .now-wishing .cards .card {
    width: calc(25% - 0.5rem);
    border: 2px solid #d8d8d8;
    background: #FFF;
    margin-right: 0.5rem;
}

main .now-wishing .cards .card:last-child {
    margin-right: 0;
}

main .now-wishing .cards .card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main .now-wishing .cards .card > .content {
    padding: 1.25rem 2rem;
    text-align: center;
    border-bottom: 1px solid #d8d8d8;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

main .now-wishing .cards .card .content > .title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 1rem;
}

main .now-wishing .cards .card .content > .price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #777777;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 600;
}

main .now-wishing .cards .card .content > .price i {
    color: var(--primary);
    margin-right: 0.5rem;
}

main .now-wishing .cards .card .content > .buy {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.btn-primary {
    cursor: pointer;
    display: block;
    width: fit-content;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    background: linear-gradient(#0000, rgb(0 0 0/40%)) top/100% 800%;
    background-color: var(--primary);
    padding: 1rem 2rem;
    transition: .2s ease-in-out;
    outline: none;
    border: none;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
    font-family: var(--font);
}

.btn-primary:hover {
    background-position: bottom;
}

.btn-wide {
    padding: 0.75rem 4rem !important;
}

.full-w {
    width: 100% !important;
}

.mb-050 {
    margin-bottom: 0.50rem;
}

.btn-small {
    padding: 0.25rem 1rem !important;
}

.btn-outline-secondary {
    cursor: pointer;
    display: block;
    width: fit-content;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    border: 2px solid var(--secondary);
    padding: 0.5rem 1.5rem;
    transition: .2s ease-in-out;
    outline: none;
    font-family: var(--font);
    background-color: #fff;
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    color: #FFF;
}

.btn-link-secondary {
    text-decoration: none;
    color: var(--secondary);
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.btn-link-secondary i {
    margin-right: 0.25rem;
}

main .now-wishing .cards .card .content > .responses {
    color: var(--secondary);
    margin-top: 0.5rem;
    font-size: 14px;
}

main .now-wishing .cards .card .user {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
}

main .now-wishing .cards .card .user > .photo {
    min-width: 64px;
    min-height: 64px;
    margin-right: 2rem;
}

main .now-wishing .cards .card .user > .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

main .now-wishing .cards .card .user > .content .name {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

main .now-wishing .cards .card .user > .content .message {
    color: #777777;
    font-size: 12px;
}

main .now-wishing .show-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

main .banner {
    display: flex;
    align-items: center;
    background-image: var(--mp-banner-bg);
    background-size: cover;
    min-height: 470px;
}

main .banner .title {
    font-size: 50px;
    text-transform: uppercase;
    color: var(--primary);
    text-shadow: 1px 1px rgba(0,0,0,0.6);
    font-weight: 900;
    width: 50%;
}

main .banner p {
    width: 50%;
    color: #FFF;
    font-size: 18px;
}

main .why-register .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

main .why-register .grid > .item {
    width: calc(100% / 3);
    text-align: center;
    padding: 5rem;
    border-right: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
}

main .why-register .grid > .item .icon {
    font-size: 72px;
    color: var(--secondary);
}

main .why-register .grid > .item .title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

footer .contact {
    padding: 2rem 0;
    background: #f7f7f7;
}

footer .contact .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

footer .contact .links {
    display: flex;
    flex-direction: row;
    height: fit-content;
}

footer .contact .links a {
    text-decoration: none;
    color: var(--primary);
    border-right: 1px solid #555555;
    padding: 0 0.5rem;
    transition: .2s ease-in-out;
}

footer .contact .links a:last-child {
    border-right: none;
}

footer .contact .links a:hover {
    filter: brightness(85%);
}

footer .contact .socials {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

footer .contact .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    font-size: 24px;
    text-decoration: none;
    background: #d8d8d8;
    border-radius: 50%;
    transition: .2s ease-in-out;
}

footer .contact .socials a:hover {
    background: var(--primary);
    color: #FFF;
}

footer .contact .copy {
    color: var(--primary);
}

footer {
    background: #d8d8d8;
}

footer .content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

footer .content a {
    display: block;
    text-decoration: none;
}

footer .content .logo img {
    width: max-content;
    padding: 1rem;
}

@media screen and (min-width: 970px) {
    main .why-register .grid > .item:nth-child(n + 4) {
        border-bottom: none;
    }

    main .why-register .grid > .item:nth-child(3n) {
        border-right: none;
    }
}

@media screen and (min-width: 1920px) {
    header .title h1 {
        font-size: 72px;
    }

    header .title p {
        font-size: 30px;
    }

    main section > .title h3 {
        font-size: 32px;
        min-width: 360px;
    }

    main .how-it-works .cards .card .content > .title {
        font-size: 22px;
    }

    main .how-it-works .cards .card .content > .description {
        font-size: 18px;
    }

    main .now-wishing .cards .card .content > .title {
        font-size: 20px;
    }

    main .now-wishing .cards .card .content > .price {
        font-size: 18px;
    }

    main .banner .title {
        font-size: 72px;
    }

    main .banner p {
        font-size: 28px;
    }
}

@media screen and (max-width: 1199px) {
    .container {
        padding: 0 2rem;
        max-width: 100%;
    }
}

@media screen and (max-width: 970px) {
    header .title {
        bottom: 10rem;
        max-width: 90%;
        width: 90%;
    }

    header .title h1 {
        font-size: 32px;
        padding: 0 1rem 1rem 0;
    }

    header .title p {
        font-size: 16px;
        padding: 0 0.5rem;
        margin-top: 1rem;
    }

    main section {
        padding: 2rem 0;
    }

    main section > .title h3 {
        font-size: 24px;
        min-width: 260px;
    }

    main .cards {
        flex-direction: column;
    }

    main .how-it-works .cards .card {
        padding: 2rem 1rem;
        width: 100%;
        flex-direction: row;
        align-items: center;
        text-align: left;
        min-height: 190px;
    }

    main .how-it-works .cards .card > .icon {
        display: flex;
        justify-content: center;
        margin-bottom: 0;
        margin-right: 1rem;
        min-width: 35%;
    }

    main .now-wishing .cards .card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    main .now-wishing .cards .card > .photo {
        height: 220px;
    }

    main .now-wishing .cards .card .content > .price {
        margin-bottom: 0.5rem;
    }

    main .banner {
        min-height: 280px;
        background-position: 60% -20px;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 1rem 0;
    }

    main .banner .title {
        font-size: 28px;
        width: 50%;
        margin-bottom: 1rem;
    }

    main .banner p {
        font-size: 14px;
        width: 100%;
    }

    main .why-register .grid > .item {
        width: 50%;
        padding: 1rem;
        border-right: 2px solid #efefef;
        border-bottom: 2px solid #efefef;
    }

    main .why-register .grid > .item:nth-child(n + 5) {
        border-bottom: none;
    }

    main .why-register .grid > .item:nth-child(2n) {
        border-right: none;
    }

    main .why-register .grid > .item .icon {
        font-size: 48px;
        color: var(--secondary);
    }

    main .why-register .grid > .item .title {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    footer .contact .content {
        flex-direction: column;
        justify-content: center;
    }

    footer .contact .socials {
        order: 1;
        justify-content: center;
        margin-bottom: 1rem;
    }

    footer .contact .links {
        order: 2;
    }

    footer .contact .copy {
        order: 3;
        text-align: center;
    }

    footer .contact .links {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    footer .contact .links a {
        border: none;
    }
}

@media screen and (max-width: 460px) {
    main .banner {
        min-height: 340px;
        background-position: 68% -20px;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 1rem 0;
    }
}

.deactivation .window {
    margin-bottom: 4rem;
    padding: 2rem;
    border: 1px solid #cbcbcb;
    background-color: #FFF;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
    text-align: center;
}

.deactivation .action {
    display: flex;
    justify-content: center;
    margin-bottom: 16rem;
}

.deactivation .window > .title {
    font-size: 28px;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 2rem;
}

.deactivation .window > p {
    color: #777;
    font-size: 16px;
}

@media screen and (max-width: 970px) {
    .deactivation .window > .title {
        font-size: 20px;
    }

    .deactivation .window > p {
        font-size: 14px;
    }
}

.conversation-detail .content {
    display: flex;
    flex-direction: row;
}

.conversation-detail .content .user {
    width: 25%;
    margin-right: 2rem;
}

.conversation-detail .content > .user .info {
    padding: 1rem 0.5rem;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.conversation-detail .content > .user .info > .picture {
    min-width: 100px;
    width: 100px;
    min-height: 100px;
    height: 100px;
    border-radius: 50%;
}

.conversation-detail .content > .user .info > .picture img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.conversation-detail .content > .user .info > .content {
    display: block;
    width: 100%;
    margin-left: 2rem;
}

.conversation-detail .content > .user .info > .content .name {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.conversation-detail .content > .user .info > .content .wish {
    font-size: 14px;
    line-height: 16px;
    font-style: italic;
    color: #777;
}

.conversation-detail .content .user .product {
    position: relative;
    margin-bottom: 0.75rem;
}

.conversation-detail .content .user .product img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.conversation-detail .content .user .product .tag {
    position: absolute;
    bottom: 2rem;
    left: 0;
    padding: 0.75rem;
    background-color: #FFF;
}

.conversation-detail .content .user .product .tag .name {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 0.25rem;
}

.conversation-detail .content .user .product .tag .link {
    font-size: 14px;
    color: #777;
}

.conversation-detail .content .user .product .tag .link a {
    color: #000;
}

.conversation-detail .content .user .product .tag .price {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.25rem;
}

.conversation-detail .content .user .product .tag .price span {
    color: #777;
    font-weight: 500;
    line-height: 18px;
}

.conversation-detail .content .user .product .tag .price i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 18px;
}

.conversation-detail .messaging {
    width: 75%;
}

.conversation-detail .messaging .input {
    margin-bottom: 4rem;
}

.conversation-detail .messaging .input textarea {
    width: 100%;
    resize: none;
    padding: 1rem;
    background-color: #f7f7f7;
    border: 2px solid #bbbbbb;
    margin-bottom: 0.25rem;
    font-family: var(--font);
}

.conversation-detail .messaging .input .actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.conversation-detail .messaging .input .actions input[type="file"] {
    display: none;
}

.conversation-detail .messaging .chat .message {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-top: 1px solid #dcdcdc;
    padding: 2rem 1rem;
}

.conversation-detail .messaging .chat .message:last-child {
    border-bottom: 1px solid #dcdcdc;
}

.conversation-detail .messaging .chat .message .user {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.conversation-detail .messaging .chat .message .user .profile-pic {
    min-width: 100px;
    width: 100px;
    min-height: 100px;
    height: 100px;
}

.conversation-detail .messaging .chat .message .user .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.conversation-detail .messaging .chat .message .user .info {
    padding: 0 1rem;
    margin-left: 0.5rem;
}

.conversation-detail .messaging .chat .message .user .info .name {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 900;
    width: max-content;
    text-decoration: none;
    color: #000000;
    display: block;
}

.conversation-detail .messaging .chat .message .user .info .date {
    color: var(--secondary);
    font-weight: 500;
    font-size: 16px;
}

.conversation-detail .messaging .chat .message .text {
    padding: 1rem 0;
    color: #828282;
    font-size: 16px;
}

.conversation-detail .messaging .chat .message .check {
    margin: auto 0 auto 2rem;
    color: #cbcbcb;
    font-size: 32px;
}

.conversation-detail .messaging .chat .message .check-secondary {
    margin: auto 0 auto 2rem;
    color: var(--secondary);
    font-size: 32px;
}

.conversation-detail .messaging .chat .message .check-secondary i, .conversation-detail .messaging .chat .message .check i {
    margin-bottom: 2rem;
}

@media screen and (max-width: 970px) {
    .conversation-detail .content {
        flex-direction: column;
    }

    .conversation-detail .content .user {
        margin-right: 0;
        width: 100%;
        margin-bottom: 1rem;
    }

    .conversation-detail .messaging {
        width: 100%;
    }

    .conversation-detail .messaging .input .actions {
        flex-direction: column;
    }

    .conversation-detail .messaging .input .actions .btn-link-secondary {
        margin-bottom: 0.5rem;
    }

    .conversation-detail .messaging .chat .message {
        flex-direction: column;
    }

    .conversation-detail .messaging .chat .message .check-secondary, .conversation-detail .messaging .chat .message .check {
        margin: 0;
    }
}

.offer-detail .box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 1px solid #d8d8d8;
    padding: 3rem 6rem;
}

.offer-detail .box .user, .offer-detail .box .product {
    max-width: 33.3%;
}

.offer-detail .box .user .profile-pic {
    display: block;
    width: 330px;
    min-width: 330px;
    height: 330px;
    min-height: 330px;
}

.offer-detail .box .user .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.offer-detail .box .user .info {
    text-align: center;
}

.offer-detail .box .user .info .name {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
}

.offer-detail .box .user .info .name div {
    margin-top: 2px;
    margin-left: 0.5rem;
}

.offer-detail .box .user .info .name b {
    font-weight: 900;
}

.offer-detail .box .user .info .name i {
    color: var(--secondary)
}

.offer-detail .box .user .message {
    text-align: left;
    color: #777777;
    font-size: 18px;
    line-height: 18px;
}

.offer-detail .box .price {
    margin: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.3%;
}

.offer-detail .box .price {
    margin: auto 3rem;
    font-size: 24px;
    font-weight: 700;
}

.offer-detail .box .price .icon {
    font-size: 32px;
    color: var(--secondary);
}

.offer-detail .box .product .image {
    width: 330px;
    min-width: 330px;
    height: 330px;
    min-height: 330px;
}

.offer-detail .box .product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.offer-detail .box .product .name {
    margin-top: 3rem;
}

.offer-detail .box .product .name, .offer-detail .box .product .link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.offer-detail .box .product .name div {
    font-weight: 600;
}

.offer-detail .box .product .name div, .offer-detail .box .product .link div {
    margin-top: 2px;
    margin-left: 0.5rem;
    color: #777777;
}

.offer-detail .box .product .name i, .offer-detail .box .product .link i {
    color: var(--primary);
}

.offer-detail .box .product .link a {
    text-transform: uppercase;
    font-weight: 900;
    color: #777777;
}

.offer-detail .box .product .expiration {
    text-align: center;
    color: #777777;
}

.offer-detail .send-message {
    margin-top: 4rem;
    padding: 0 6rem;
}

.offer-detail .send-message .title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 2rem;
}

.offer-detail .send-message .title b {
    font-weight: 900;
}

.offer-detail .send-message textarea {
    resize: none;
    height: 200px;
    width: 100%;
    padding: 2rem;
    font-size: 18px;
    font-family: var(--font);
    background-color: #f7f7f7;
    border: 2px solid #bbbbbb;
}

.offer-detail .send-message .info {
    margin-top: 1rem;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 2rem;
}

.offer-detail .send-message .btn {
    display: flex;
    justify-content: center;
    margin-bottom: 6rem;
}

@media screen and (max-width: 1024px) {
    .offer-detail .box .user .profile-pic, .offer-detail .box .product .image {
        width: 250px;
        min-width: 250px;
        height: 250px;
        min-height: 250px;
    }

    .offer-detail .box .price {
        margin: auto 1rem;
    }
}

@media screen and (max-width: 970px) {
    .offer-detail .box {
        padding: 1rem;
        flex-direction: column;
    }

    .offer-detail .box .user .profile-pic, .offer-detail .box .product .image {
        width: 100%;
        min-width: 100%;
        height: 100%;
        min-height: 100%;
    }

    .offer-detail .box .user, .offer-detail .box .product {
        width: 100%;
        max-width: 100%;
    }

    .offer-detail .box .price {
        width: 100%;
        margin: 1rem 0;
    }

    .offer-detail .box .product .name, .offer-detail .box .product .link {
        flex-direction: column;
    }

    .offer-detail .send-message {
        padding: 0;
    }
}

.contact-us .help {
    padding: 2rem 18rem;
    border: 1px solid #cbcbcb;
    background-color: #FFF;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
    margin-bottom: 6rem;
}

.contact-us .help .title {
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 900;
    text-align: center;
    font-size: 24px;
    margin-bottom: 1rem;
}

.contact-us .help p {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #777777;
}

.contact-us .options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-us .options .option {
    width: calc(50% - 1rem);
    background-color: #FFF;
    border: 1px solid var(--secondary);
    padding: 8rem 2rem;
    font-family: var(--font);
    height: 630px;
    text-align: center;
    transition: .2s ease-in-out;
}

.contact-us .options .option .desc {
    margin-bottom: 2rem;
    color: #777777;
    font-size: 30px;
    font-weight: 400;
    transition: .2s ease-in-out;
}

.contact-us .options .option .title {
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
    transition: .2s ease-in-out;
}

.contact-us .options .option:hover {
    background-color: var(--secondary);
    cursor: pointer;
}

.contact-us .options .option:hover .title, .contact-us .options .option:hover .desc {
    color: #FFF;
}

@media screen and (max-width: 970px) {
    .contact-us .help {
        padding: 2rem;
    }

    .contact-us .options {
        flex-direction: column;
    }

    .contact-us .options .option {
        width: 100%;
        height: 300px;
        padding: 2rem;
    }

    .contact-us .options .option .desc {
        font-size: 16px;
    }

    .contact-us .options .option .title {
        font-size: 20px;
    }
}

.contact-form .dropdown-info {
    background-color: #f7f7f7;
    margin-bottom: 1rem;
}

.contact-form .dropdown-info .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.contact-form .dropdown-info .title div {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary);
    font-size: 20px;
    padding: 1.5rem 0 1.5rem 1.5rem;
    margin-right: auto;
}

.contact-form .dropdown-info .title i {
    color: var(--primary);
    font-size: 32px;
    margin-right: 0.5rem;
}

.contact-form .dropdown-info .content {
    display: none;
    transition: .2s ease-in-out;
    padding: 1.5rem 6rem 3rem 1.5rem;
    color: #777;
    font-weight: 300;
}

.contact-form .dropdown-info.open .content {
    display: block;
}

.contact-form .dropdown-info .content textarea {
    width: 100%;
    height: 160px;
    resize: none;
    font-family: var(--font);
    font-size: 18px;
    color: #777;
    font-weight: 400;
    border-radius: 0;
    border: 1px solid #777777;
    padding: 1rem;
}

.contact-form .dropdown-info .content .btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

@media screen and (max-width: 970px) {
    .contact-form .dropdown-info .content {
        padding: 1.5rem;
    }

    .contact-form .dropdown-info .content .btn button {
        width: 100%;
    }
}

.change-password .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.change-password .title {
    margin-bottom: 1rem;
}

.change-password .subtitle-error {
    font-size: 18px;
    color: #ed1c24;
    text-align: center;
    margin-bottom: 4rem;
}

.change-password .inputs {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 1rem;
    width: 380px;
    margin-bottom: 4rem;
}

.change-password .inputs .error {
    border: 1px solid #ed1c24;
}

.change-password .inputs .password-wrapper {
    width: 100%;
}

.change-password .inputs label {
    margin: auto 0;
}

.change-password .inputs input {
    height: 40px;
    font-family: var(--font);
    padding: 0.5rem;
    border-radius: 0;
    border: 1px solid #cbcbcb;
}

.change-password .inputs input:focus-visible {
    border-radius: 0;
    outline: none;
    border: 1px solid #777777;
}

@media screen and (max-width: 970px) {
    .change-password .inputs {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: initial;
    }

    .change-password .inputs .password-wrapper {
        width: 100%;
    }

    .change-password .inputs label {
        margin-bottom: -0.5rem;
    }
}

.dreams-and-wishes .items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 10rem;
    border-top: 1px solid #dcdcdc;
    gap: 6rem;
}

.dreams-and-wishes .items .item .name-pic {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 40%;
}

.dreams-and-wishes .items .item .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.dreams-and-wishes .items .item:last-child {
    border-bottom: 1px solid #dcdcdc;
}

.dreams-and-wishes .items .item .picture {
    min-width: 110px;
    width: 110px;
    min-height: 110px;
    height: 110px;
}

.dreams-and-wishes .items .item .picture img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.dreams-and-wishes .items .item .name {
    font-size: 18px;
    font-weight: 600;
    color: #777;
}

.dreams-and-wishes .items .item .name i {
    font-size: 20px;
    color: var(--primary);
    margin-right: 0.25rem;
}

.dreams-and-wishes .items .item .price {
    font-size: 18px;
    font-weight: 700;
    color: #777;
}

.dreams-and-wishes .items .item .price i {
    font-size: 20px;
    color: var(--primary);
    margin-right: 0.25rem;
}

.dreams-and-wishes .items .item .validity {
    font-size: 16px;
    color: #777;
    text-align: center;
    margin-left: auto;
    margin-right: 4rem;
}

.dreams-and-wishes .items .item .validity b {
    font-weight: 700;
}

.dreams-and-wishes .items .item .actions a {
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);
    text-decoration: none;
    font-weight: 700;
}

@media screen and (max-width: 970px) {
    .dreams-and-wishes .items .item {
        padding: 1.5rem 0.5rem;
        gap: 1rem;
    }

    .dreams-and-wishes .items .item .name-pic {
        flex-direction: column;
        width: 50%;
    }

    .dreams-and-wishes .items .item .info {
        flex-direction: column;
        width: 50%;
    }

    .dreams-and-wishes .items .item .name {
        margin-bottom: 1rem;
        order: 1;
    }

    .dreams-and-wishes .items .item .picture {
        order: 2;
    }

    .dreams-and-wishes .items .item .price {
        margin-bottom: 1rem;
    }

    .dreams-and-wishes .items .item .actions {
        margin-top: 1rem;
    }

    .dreams-and-wishes .items .item .validity {
        margin-left: 0;
        margin-right: 0;
    }
}

.sympathies .category {
    margin-bottom: 4rem;
}

.sympathies .category .title {
    font-size: 28px;
    background-color: var(--secondary);
    font-weight: 300;
    color: #FFF;
    padding: 1rem 2rem;
}

.sympathies .category .suggest {
    display: flex;
    flex-direction: row;
    padding: 2rem;
    border-bottom: 1px solid #dcdcdc;
    position: relative;
}

.sympathies .category .suggest .profile-pic {
    width: 120px;
    min-width: 120px;
    height: 120px;
    min-height: 120px;
    margin-right: 2rem;
}

.sympathies .category .suggest .profile-pic img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.sympathies .category .suggest .profile-info {
    margin-top: 0.25rem;
    margin-right: auto;
}

.sympathies .category .suggest .profile-info .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
}

.sympathies .category .suggest .profile-info .info .name {
    font-size: 22px;
    font-weight: 900;
    margin-right: 1rem;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
}

.sympathies .category .suggest .profile-info .info .date {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
}

.sympathies .category .suggest .profile-info .info .new-msg {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #ed1c24;
    text-transform: uppercase;
    font-weight: 900;
    margin-left: 4rem;
}

.sympathies .category .suggest .profile-info .info .new-msg .count {
    background-color: #ed1c24;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    margin-right: 0.5rem;
    font-weight: 500;
}

.sympathies .category .suggest .profile-info .msg {
    color: #777;
}

.sympathies .category .suggest .actions {
    margin-top: auto;
    margin-bottom: 1.5rem;
    margin-right: 3rem;
}

.sympathies .category .suggest .delete {
    position: absolute;
    top: 5px;
    right: 10px;
}

.sympathies .category .suggest .delete a {
    color: #777;
    font-size: 32px;
}

@media screen and (max-width: 970px) {
    .sympathies .category .suggest {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sympathies .category .suggest .profile-info .info {
        flex-direction: column;
        text-align: center;
    }

    .sympathies .category .suggest .profile-info .info .name,
    .sympathies .category .suggest .profile-pic,
    .sympathies .category .suggest .actions {
        margin-right: 0;
    }

    .sympathies .category .suggest .profile-info .info .new-msg {
        margin-left: 0;
        margin-top: 1rem;
    }

    .sympathies .category .suggest .profile-info .msg {
        text-align: center;
        margin-bottom: 1rem;
    }

    .sympathies .category .title {
        font-size: 20px;
    }
}

.dropdown {
    position: relative;
    width: 300px;
}

.dropdown-select {
    display: none;
}

.dropdown-button {
    display: block;
    width: 100%;
    background-color: white;
    border: 1px solid #cbcbcb;
    cursor: pointer;
    border-radius: 0;
    text-align: left;
    position: relative;
    padding: 0.5rem;
    height: 40px;
    color: #777777;
    user-select: none;
}

.dropdown-button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: FontAwesome;
    content: '\f077'; /* Downward chevron icon */
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 10px;
    color: #000;
    width: 40px;
    height: 38px;
    background-color: #f5f5f5; /* Black background */
}

.dropdown-options {
    display: none;
    position: absolute;
    width: 100%;
    background-color: white;
    border: 1px solid #dcdcdc;
    margin-top: 0.25rem;
    z-index: 1;
    max-height: 300px; /* výška, která odpovídá cca 15 položkám */
    overflow-y: auto; /* zobrazí scroll */
}

.dropdown-options.active {
    display: block;
}

.dropdown-options div {
    padding: 0.5rem;
    cursor: pointer;
    background-color: #fff;
    color: #777777;
}

.dropdown-options div:hover {
    color: #fff;
    background-color: var(--secondary);
}

.dropdown-options div:last-child {
    border-bottom: none;
}

.dropdown-button.open::after {
    font-family: FontAwesome;
    content: '\f078'; /* Upward chevron icon */
}

.registered-users .filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.registered-users .filters .dropdown {
    width: calc(25% - 1rem);
}

.registered-users .filters-sort {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 3rem;
}

.registered-users .filters-sort .dropdown {
    width: 300px;
}

.registered-users .filters-sort .dropdown .dropdown-button {
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.registered-users .filters-sort .dropdown .dropdown-button:hover {
    text-decoration: underline;
}

.registered-users .filters-sort .dropdown .dropdown-button::after {
    display: none;
}

.registered-users .users {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 2rem;
}

.registered-users .users .user {
    width: calc(25% - 1.5rem);
    position: relative;
    transition: .2s ease-in-out;
    aspect-ratio: 1;
}

.registered-users .users .user:nth-of-type(4n) {
    margin-right: 0;
}

.registered-users .users .user .picture img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.registered-users .users .user .name {
    position: absolute;
    max-width: 70%;
    width: fit-content;
    bottom: 20px;
    padding: 0.25rem 1rem;
    text-align: right;
    right: 0;
    background-color: var(--secondary);
    text-transform: uppercase;
    color: #FFF;
    font-size: 16px;
    transition: .2s ease-in-out;
}

.registered-users .users .user .name b {
    font-weight: 900;
}

.registered-users .users .user:hover .name {
    background-color: #FFF;
    color: var(--secondary);
}

.registered-users .users .user .view {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: .2s ease-in-out;
    color: var(--secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #FFF;
    text-decoration: none;
}

.registered-users .users .user:hover .view {
    background-color: var(--secondary);
    color: #FFF;
}

.registered-users .more-btn {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

@media screen and (max-width: 970px) {
    .registered-users .filters {
        flex-direction: column;
    }

    .registered-users .users {
        column-gap: 0.5rem;
    }

    .registered-users .users .user .name {
        max-width: 90%;
        width: fit-content;
        font-size: 3.2vw;
        padding: 0.2rem 0.5rem;
    }

    .registered-users .users .user .view {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .registered-users .users .user .view i {
        margin-left: 1px;
    }

    .registered-users .users .user {
        width: calc(50% - 0.25rem);
    }

    .registered-users .filters .dropdown {
        width: 100%;
    }

    .registered-users .users .user {
        margin-right: 0;
    }

    .registered-users .filters-sort .dropdown {
        width: 100%;
    }
}

.user-registration .title {
    margin-bottom: 1rem;
}

.user-registration .subtitle {
    text-align: center;
    font-size: 18px;
    color: #777777;
    margin-bottom: 3rem;
}

.radio-switch {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 14rem;
    margin-bottom: 2rem;
}

.radio-switch .radio {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
}

.radio-switch .radio.active {
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
}

.radio-switch .radio label,
.radio-switch .radio input {
    display: block;
}

.radio-switch input[type="radio"] {
    opacity: 0.01;
}

.radio-switch .radio input[type="radio"]:checked+label,
.checked+label {
    background: var(--secondary);
    color: #FFF;
}

.radio-switch .radio label {
    padding: 0.50rem 2rem;
    border: 1px solid var(--secondary);
    cursor: pointer;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: fit-content;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
}

.radio-switch .radio label:hover {
    background: #f5f5f5;
}

.radio-switch .radio .info {
    text-align: center;
}

.radio-switch .radio .info .title {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.radio-switch .radio .info p {
    color: #777777;
    margin-bottom: 1rem;
    height: 100px;
}

.user-registration .form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-registration .title {
    margin-bottom: 1rem;
}

.user-registration .subtitle-error {
    font-size: 18px;
    color: #ed1c24;
    text-align: center;
    margin-bottom: 4rem;
}

.user-registration .form .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 1rem;
    padding: 0 24rem;
    align-items: center;
    margin-bottom: 3rem;
}

.user-registration .form .grid .error {
    border: 1px solid #ed1c24
}

.user-registration .form .grid .radio-classic {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 1rem;
    grid-column: span 2;
}

.user-registration .form .grid input {
    grid-column: span 2;
    padding: 0.5rem 0.75rem;
    border: 1px solid #bbbbbb;
    font-size: 16px;
    color: #979797;
    font-family: var(--font);
}

.user-registration .form .grid .password-wrapper {
    grid-column: span 2;
    width: 100%;
}

.user-registration .form .grid input:focus {
    background-color: #f7f7f7;
}

.user-registration .form .grid input:focus-visible {
    border: 1px solid #bbbbbb;
    outline: none;
}

.user-registration .form .grid label {
    text-align: right;
    margin-right: 1rem;
    font-size: 18px;
}

.user-registration .form .grid .with-dropdown {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
}


.user-registration .form .grid .with-dropdown .dropdown {
    width: 40%;
    margin-right: 0.5rem;
}

.user-registration .form .grid .with-dropdown input {
    width: 60%;
}

.user-registration .form .terms {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10rem;
}

.user-registration .form .terms .form-check {
    color: #777777;
}

.user-registration .form .terms .form-check a {
    color: var(--primary);
    display: inline-block;
}

.user-registration .form .terms .gdpr {
    color: #777777;
    text-align: center;
    margin: 2rem 0;
}

.user-registration .form .btn-primary {
    margin-top: 4rem;
}

@media screen and (max-width: 1024px) {
    .user-registration .form .grid {
        padding: 0;
    }

    .radio-switch {
        padding: 0;
    }
}

@media screen and (max-width: 970px) {
    .radio-switch {
        flex-direction: column;
    }

    .radio-switch .radio {
        width: 100%;
        padding: 2rem;
    }

    .user-registration .form .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .user-registration .form .grid .radio-classic {
        flex-direction: column;
    }

    .user-registration .form .grid .radio-classic label {
        margin-bottom: 0;
    }

    .user-registration .form .terms {
        padding: 0;
    }

    .user-registration .form .grid label {
        text-align: left;
        margin-bottom: -0.75rem;
    }
}

.user-registration-step-2 .title {
    margin-bottom: 1rem;
}

.user-registration-step-2 .subtitle-error {
    font-size: 18px;
    color: #ed1c24;
    text-align: center;
    margin-bottom: 4rem;
}

.user-registration-step-2 .form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 1rem;
    padding: 0 12rem;
    margin-bottom: 3rem;
}

.user-registration-step-2 .form .label {
    font-size: 24px;
    font-weight: 700;
}
.user-registration-step-2 .form .label i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.user-registration-step-2 .form .inputs {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 2rem;
    grid-column: span 2;
    margin-bottom: 4rem;
}

.user-registration-step-2 .form .inputs .dropdown {
    width: calc(50% - 1rem);
}

.user-registration-step-2 .form .inputs-checks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: 4rem;
    grid-column: span 2;
    margin-bottom: 4rem;
}

.user-registration-step-2 .form .inputs-checks .form-check {
    width: calc(33.3% - 4rem);
    font-size: 18px;
    color: #777777;
}

.user-registration-step-2 .form .inputs-checks .form-check .checkmark {
    height: 20px;
    width: 20px;
    margin-top: 3px;
}

.user-registration-step-2 .form .inputs-checks .form-check .checkmark:after {
    width: 4px;
    height: 8px;
}

.user-registration-step-2 .form .inputs-checks .form-check input:checked ~ .checkmark:after {
    left: 6px;
    top: 10px;
}

.user-registration-step-2 .form .inputs textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font);
    font-size: 18px;
    resize: none;
    outline: none;
    height: 200px;
}

.user-registration-step-2 .form .error {
    border: 1px solid #ed1c24;
}

.user-registration-step-2 .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 4rem;
}

@media screen and (max-width: 970px) {
    .user-registration-step-2 .form {
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
    }

    .user-registration-step-2 .form .inputs-checks .form-check {
        width: calc(50% - 4rem);
    }

    .user-registration-step-2 .form .inputs .dropdown {
        width: 100%;
    }
}

.wishes-detail .filters {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.wishes-detail .filters .dropdown {
    width: 25%;
}

.wishes-detail .filters-sort {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 3rem;
}

.wishes-detail .filters-sort .dropdown {
    width: 300px;
}

.wishes-detail .filters-sort .dropdown .dropdown-button {
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.wishes-detail .filters-sort .dropdown .dropdown-button:hover {
    text-decoration: underline;
}

.wishes-detail .filters-sort .dropdown .dropdown-button::after {
    display: none;
}

.wishes-detail .cards {
    justify-content: flex-start;
    gap: 0.5rem;
}

.wishes-detail .cards .card {
    width: calc(25% - 0.5rem);
    border: 2px solid #d8d8d8;
    background: #FFF;
    margin-bottom: 1rem;
}

.wishes-detail .cards .card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishes-detail .cards .card > .content {
    padding: 1.25rem 2rem;
    text-align: center;
    border-bottom: 1px solid #d8d8d8;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.wishes-detail .cards .card .content > .title {
    font-weight: 700;
    font-size: 18px;
}

.wishes-detail .cards .card .content > .price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #777777;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 600;
}

.wishes-detail .cards .card .content > .price i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.wishes-detail .cards .card .content > .buy {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.wishes-detail .cards .card .content > .responses {
    color: var(--secondary);
    margin-top: 0.5rem;
    font-size: 14px;
}

.wishes-detail .cards .card .user {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
}

.wishes-detail .cards .card .user > .photo {
    min-width: 64px;
    min-height: 64px;
    margin-right: 2rem;
}

.wishes-detail .cards .card .user > .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wishes-detail .cards .card .user > .content .name {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

.wishes-detail .cards .card .user > .content .message {
    color: #777777;
    font-size: 12px;
}

.wishes-detail .show-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

@media screen and (max-width: 970px) {
    .wishes-detail .filters {
        gap: 0.5rem;
        flex-direction: column;
    }

    .wishes-detail .filters .dropdown {
        width: 100%;
    }

    .wishes-detail .filters-sort .dropdown {
        width: 100%;
    }

    .wishes-detail .cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .wishes-detail .cards .card {
        margin-right: 0;
        width: 49%;
    }
}

@media screen and (max-width: 500px) {
    .wishes-detail .cards .card {
        margin-right: 0;
        width: 100%;
    }
}

.activation .title {
    margin-bottom: 1rem;
}

.activation .subtitle {
    text-align: center;
    color: #777777;
    margin-bottom: 4rem;
}

.activation .options {
    display: flex;
    flex-direction: row;
    margin: 0 6rem;
    padding: 2rem 0;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

.activation .options .label {
    display: flex;
    flex-direction: row;
    font-size: 22px;
    font-weight: 900;
    width: 30%;
}

.activation .options .label i {
    color: var(--secondary);
    margin-right: 1rem;
    font-size: 24px;
    margin-top: 4px;
}

.activation .options .inputs {
    width: 80%;
}

.activation .options .inputs .info {
    font-style: italic;
    color: #777777;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.activation .options .inputs .item {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #f7f7f7;
}

.activation .options .inputs .item:nth-of-type(2n) {
    background-color: #fff;
}

.activation .options .inputs .item .form-radio {
    font-size: 20px;
    padding-left: 30px;
    font-weight: 700;
    color: var(--secondary);
    min-width: 15%;
    margin-right: 4rem;
}

.activation .options .inputs .item .radiomark {
    margin-top: 4px;
}

.activation .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

@media screen and (max-width: 970px) {
    .activation .options {
        margin: 0;
        flex-direction: column;
    }

    .activation .options .label {
        width: 100%;
    }

    .activation .options .inputs {
        width: 100%;
        margin-top: 2rem;
    }

    .activation .options .inputs .item {
        flex-direction: column;
    }

    .activation .options .inputs .item .form-radio {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.activation-detail .title {
    margin-bottom: 1rem;
}

.activation-detail .subtitle {
    color: #777777;
    text-align: center;
    margin-bottom: 4rem;
}

.activation-detail .label-items {
    padding: 0 2rem;
}

.activation-detail .label-items .item {
    display: flex;
    flex-direction: row;
    margin-bottom: 2rem;
}

.activation-detail .label-items .item .label {
    font-size: 22px;
    font-weight: 900;
    min-width: 30%;
}

.activation-detail .label-items .item .label i {
    font-size: 24px;
    color: var(--secondary);
    margin-right: 0.5rem;
}

.activation-detail .label-items .item .content {
    min-width: 70%;
}

.activation-detail .label-items .item .current-plan {
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
    padding: 1rem 2rem;
    background-color: #f7f7f7;
    margin-bottom: 1rem;
}

.activation-detail .label-items .item .change-plan .btn-outline-secondary {
    font-size: 14px;
}

.activation-detail .label-items .item .payment-info {
    display: flex;
    flex-direction: row;
}

.activation-detail .label-items .item .qr-code {
    width: 40%;
}

.activation-detail .label-items .item .payment-info .bank {
    width: 60%;
}

.activation-detail .label-items .item .payment-info .bank .pay-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
}

.activation-detail .label-items .item .payment-info .bank .pay-item .pay-label {
    min-width: 30%;
    font-size: 18px;
    margin-right: 1rem;
}

.activation-detail .label-items .item .payment-info .bank .pay-item .pay-content {
    border: 1px solid #cbcbcb;
    padding: 0.5rem 1rem;
    font-size: 18px;
    font-weight: 700;
}

.activation-detail .label-items .item .payment-info .qr-code {
    display: flex;
    margin-top: -4rem;
}

.activation-detail .label-items .item .activate-info {
    font-size: 16px;
    color: #777777;
}

.activation-detail .label-items .item .activate-info p {
    margin-bottom: 2rem;
}

.activation-detail .label-items .item .activate-info p a {
    color: var(--secondary);
}

@media screen and (max-width: 970px) {
    .activation-detail .label-items {
        padding: 0;
    }

    .activation-detail .label-items .item {
        flex-direction: column;
    }

    .activation-detail .label-items .item .label {
        margin-bottom: 1rem;
    }

    .activation-detail .label-items .item .payment-info {
        flex-direction: column;
    }

    .activation-detail .label-items .item .payment-info .bank {
        width: 100%;
    }

    .activation-detail .label-items .item .payment-info .qr-code {
        margin-top: 1rem;
    }

    .activation-detail .label-items .item .payment-info .bank .pay-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .activation-detail .label-items .item .payment-info .bank .pay-item .pay-label {
        margin-right: 0;
    }
}

.insertion-delete .accept-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.insertion-delete .accept-buttons input[type="radio"] {
    display: none;
}

.insertion-delete .accept-buttons .yes {
    min-width: 150px;
    border: 3px solid var(--secondary);
    background-color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0;
    font-size: 24px;
    transition: .2s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.insertion-delete .accept-buttons .yes:hover {
    background-color: var(--secondary);
    color: #fff;
}

.insertion-delete .accept-buttons .yes.active {
    background-color: var(--secondary);
    color: #fff;
}

.insertion-delete .accept-buttons .no {
    min-width: 150px;
    border: 3px solid #ed1c24;
    background-color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0;
    font-size: 24px;
    transition: .2s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.insertion-delete .accept-buttons .no:hover {
    background-color: #ed1c24;
    color: #fff;
}

.insertion-delete .accept-buttons .no.active {
    background-color: #ed1c24;
    color: #fff;
}

.insertion-delete .expiration {
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
}

.insertion-delete .wish-satisfy {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.insertion-delete .wish {
    margin: 0 8rem 4rem 8rem;
    min-height: 430px;
    display: flex;
    flex-direction: row;
}

.insertion-delete .wish .picture {
    width: 45%;
    position: relative;
}

.insertion-delete .wish .picture img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.insertion-delete .wish .picture .source {
    color: #fff;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.insertion-delete .wish .content {
    border: 1px solid #d8d8d8;
    width: 55%;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insertion-delete .wish .content .price {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.insertion-delete .wish .content .price i {
    color: var(--secondary);
    margin-right: 0.5rem;
    font-size: 28px;
}

.insertion-delete .wish .content .product {
    color: #777777;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 6rem;
}

.insertion-delete .wish .content .product i {
    color: var(--primary);
    font-size: 20px;
    margin-right: 0.5rem;
}

.insertion-delete .wish .content .desc {
    text-align: center;
    font-size: 18px;
}

.insertion-delete .review {
    margin: 0 8rem;
}

.insertion-delete .review textarea {
    width: 100%;
    height: 150px;
    outline: none;
    background-color: #f7f7f7;
    padding: 1rem;
    border: 1px solid #bbbbbb;
    resize: none;
    font-family: var(--font);
    font-size: 16px;
}

.insertion-delete .review textarea::placeholder {
    color: #000;
}

.insertion-delete .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

@media screen and (max-width: 970px) {
    .insertion-delete .accept-buttons {
        flex-direction: column;
    }

    .insertion-delete .wish {
        flex-direction: column;
        margin: 0;
    }

    .insertion-delete .wish .picture, .insertion-delete .wish .content {
        width: 100%;
    }

    .insertion-delete .wish .content {
        padding: 2rem;
    }

    .insertion-delete .wish .content .price, .insertion-delete .wish .content .product {
        flex-direction: column;
    }

    .insertion-delete .review {
        margin: 1rem 0 0 0;
    }

    .insertion-delete .btn {
        margin-top: 1rem;
    }

    .insertion-delete .wish-satisfy {
        margin-bottom: 1rem;
    }

    .insertion-delete .expiration {
        margin-bottom: 1rem;
    }

    .insertion-delete .accept-buttons {
        margin-bottom: 1rem;
    }
}

.private-wish-offer .title {
    margin-bottom: 1rem;
}

.private-wish-offer .error-title {
    margin-bottom: 4rem;
    color: #ed1c24;
    text-align: center;
}

.private-wish-offer .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 8rem;
}

.private-wish-offer .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.private-wish-offer .item-center {
    align-items: center;
}

.private-wish-offer .item .label {
    width: 40%;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    margin-top: -0.5rem;
}

.private-wish-offer .item .label-start {
    margin-top: 0;
}

.private-wish-offer .item .content {
    width: 60%;
}

.private-wish-offer .item .label-icon {
    color: var(--secondary);
    font-size: 24px;
    margin-top: 0;
}

.private-wish-offer .item .content .terms-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.private-wish-offer .item .content .terms {
    color: var(--secondary);
    margin-bottom: 4rem;
}

.private-wish-offer .item .content .profile {
    display: flex;
    flex-direction: row;
    width: 50%;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.private-wish-offer .item .content .profile .picture {
    width: 50%;
    aspect-ratio: 1 / 1;
}

.private-wish-offer .item .content .profile .picture img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.private-wish-offer .item .content .dropdown {
    width: 50%;
    margin-bottom: 0.5rem;
}

.private-wish-offer .item .content input {
    padding: 0.5rem;
    border: 1px solid #bbbbbb;
    font-size: 16px;
    color: #979797;
    outline: none;
    width: 50%;
    margin-bottom: 0.5rem;
    font-family: var(--font);
}

.private-wish-offer .item .content .profile .name {
    text-align: center;
    font-size: 18px;
}

.private-wish-offer .item .content .profile .name b {
    font-weight: 900;
}

.private-wish-offer .item .content .with-dropdown {
    display: flex;
    flex-direction: row;
    width: 50%;
    gap: 0.5rem;
}

.private-wish-offer .item .content .with-dropdown .dropdown {
    width: 40% !important;
}

.private-wish-offer .item .content .with-dropdown input {
    width: 60% !important;
}

.private-wish-offer .item .content .error {
    border: 1px solid #ed1c24;
}

.private-wish-offer .item .content input[type="file"] {
    display: none;
}

.private-wish-offer .item .content .btn-outline-secondary {
    font-size: 14px;
    margin: 1rem 0 1.5rem 0;
}

.private-wish-offer .item .content textarea {
    width: 100%;
    height: 200px;
    resize: none;
    padding: 1rem;
    font-size: 18px;
    background-color: #f7f7f7;
    border: 1px solid #bbbbbb;
    font-family: var(--font);
    outline: none;
}

.private-wish-offer .items .btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 5rem 0;
}

.private-wish-offer .item .content .btn-primary {
    margin: 5rem 0;
}

@media screen and (max-width: 970px) {
    .private-wish-offer .items {
        margin: 0;
    }

    .private-wish-offer .item {
        flex-direction: column;
        align-items: center;
    }

    .private-wish-offer .item .content, .private-wish-offer .item .label {
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .private-wish-offer .item .content .profile {
        justify-content: center;
    }

    .private-wish-offer .item .content .profile .picture {
        max-height: 200px;
        max-width: 200px;
    }

    .private-wish-offer .item .content .profile,
    .private-wish-offer .item .content > .dropdown,
    .private-wish-offer .item .content .with-dropdown,
    .private-wish-offer .item .content input,
    .private-wish-offer .item .content .btn-outline-secondary {
        width: 100%;
        margin-bottom: 2rem;
    }
}

.conversation .chats .chat {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 2rem;
    border-top: 1px solid #dcdcdc;
}

.conversation .chats .chat:last-child {
    border-bottom: 1px solid #dcdcdc;
}

.conversation .chats .chat .profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 55%;
}

.conversation .chats .chat .profile .picture {
    min-height: 100px;
    height: 100px;
    min-width: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 3rem;
}

.conversation .chats .chat .profile .picture img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.conversation .chats .chat .profile .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.conversation .chats .chat .profile .info .first-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
}

.conversation .chats .chat .profile .info .message {
    color: #777777;
    font-size: 18px;
}

.conversation .chats .chat .profile .info .first-line .name {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 18px;
    margin-right: 1rem;
    text-decoration: none;
    color: #000;
}

.conversation .chats .chat .profile .info .first-line .date {
    color: var(--secondary);
    font-weight: 500;
}

.conversation .chats .chat .profile .info .first-line .new-msg {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #ed1c24;
    text-transform: uppercase;
    font-weight: 900;
    margin-left: 4rem;
}

.conversation .chats .chat .profile .info .first-line .new-msg .count {
    background-color: #ed1c24;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    margin-right: 0.5rem;
    font-weight: 500;
}

.conversation .chats .chat .product {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 4rem;
    width: 20%;
}

.conversation .chats .chat .product .picture {
    height: 115px;
}

.conversation .chats .chat .product .picture img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.conversation .chats .chat .product .info {
    margin-left: 1rem;
}

.conversation .chats .chat .product .info .name {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 1rem;
}

.conversation .chats .chat .product .info .price {
    font-size: 16px;
    color: #777777;
    font-weight: 500;
}

.conversation .chats .chat .detail-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 15%;
}

.conversation .chats .chat .detail-btn .btn-outline-secondary {
    padding: 0.5rem 3rem;
}

@media screen and (max-width: 1024px) {
    .conversation .chats .chat {
        flex-direction: column;
        padding: 1rem;
    }

    .conversation .chats .chat .profile {
        flex-direction: column;
        width: 100%;
    }

    .conversation .chats .chat .profile .picture {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .conversation .chats .chat .profile .info .first-line {
        flex-direction: column;
        text-align: center;
    }

    .conversation .chats .chat .profile .info .first-line .new-msg {
        margin-left: 0;
    }

    .conversation .chats .chat .profile .info .first-line .name {
        margin-right: 0;
    }

    .conversation .chats .chat .profile .info .first-line .date {
        margin-bottom: 1rem;
    }

    .conversation .chats .chat .profile .info .message {
        text-align: center;
    }

    .conversation .chats .chat .product {
        width: 100%;
        margin: 1rem 0;
    }

    .conversation .chats .chat .detail-btn {
        width: 100%;
        justify-content: center;
    }
}

.notification-settings .notifications {
    padding: 0 16rem;
    display: flex;
    flex-direction: row;
    margin-bottom: 4rem;
}

.notification-settings .notifications .label {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    width: 50%;
}

.notification-settings .notifications .label i {
    margin-right: 1rem;
}

.notification-settings .notifications .settings .form-check {
    font-size: 18px;
    margin-bottom: 1rem;
    color: #777777;
}

.notification-settings .notifications .settings .form-check .checkmark {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.notification-settings .notifications .settings .form-check .checkmark:after {
    width: 4px;
    height: 8px;
}

.notification-settings .btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media screen and (max-width: 970px) {
    .notification-settings .notifications {
        padding: 0;
        flex-direction: column;
    }

    .notification-settings .notifications .label {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.profile-verification .cards {
    display: flex;
    flex-direction: column;
}

.profile-verification .cards .card-instructions {
    height: 550px;
    padding: 4rem;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-bottom: 4rem;
}

.profile-verification .cards .card-instructions .text {
    font-size: 28px;
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    color: #777777;
    font-weight: 300;
}

.profile-verification .cards .card-instructions .text .icon {
    color: var(--secondary);
    font-size: 32px;
}

.profile-verification .cards .card-instructions .photo {
    position: absolute;
    bottom: -10px;
    right: 8%;
    width: 40%;
}

.profile-verification .cards .card-instructions .photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.profile-verification .cards .card-instructions .photo .info {
    position: absolute;
    top: 28%;
    left: 20%;
    font-weight: 700;
    color: #777777;
    text-align: center;
    font-size: 20px;
}

.profile-verification .cards .card-instructions .step {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: var(--primary);
    font-weight: 700;
}

.profile-verification .cards .card-upload {
    padding: 4rem;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    margin-bottom: 4rem;
}

.profile-verification .cards .card-upload .text {
    font-size: 28px;
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    color: #777777;
    font-weight: 300;
}

.profile-verification .cards .card-upload .text .icon {
    color: var(--secondary);
    font-size: 32px;
}

.profile-verification .cards .card-upload .upload {
    max-width: 90%;
}

.profile-verification .cards .card-upload .upload input[type="file"] {
    display: none;
}

.profile-verification .cards .card-upload .upload .photo {
    margin-bottom: 0.5rem;
    max-width: 90%;
}

.profile-verification .cards .card-upload .upload .photo img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.profile-verification .cards .card-upload .upload .btn {
    display: flex;
    justify-content: flex-end;
    max-width: 90%;
}

.profile-verification .cards .card-upload .upload .delete {
    border: none;
    outline: none;
    color: #ed1c24;
    border-bottom: 1px solid #ed1c24;
    font-weight: 500;
    cursor: pointer;
}

.profile-verification .cards .card-upload .step {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: var(--primary);
    font-weight: 700;
}

@media screen and (max-width: 970px) {
    .profile-verification .cards .card-instructions {
        flex-direction: column;
        height: max-content;
        width: 100%;
        padding: 1rem;
    }

    .profile-verification .cards .card-instructions .text {
        flex-direction: column;
        width: 100%;
        font-size: 18px;
        align-items: flex-start;
    }

    .profile-verification .cards .card-instructions .photo {
        position: relative;
        bottom: 0;
        top: 0;
        right: 0;
        width: 100%;
    }

    .profile-verification .cards .card-instructions .photo .info {
        font-size: 5vw;
        top: 24%;
        left: 14%;
    }

    .profile-verification .cards .card-instructions .step, .profile-verification .cards .card-upload .step {
        font-size: 40px;
    }

    .profile-verification .cards .card-upload {
        padding: 1rem;
        flex-direction: column;
    }

    .profile-verification .cards .card-upload .text {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem;
        font-size: 20px;
        width: 100%;
    }

    .profile-verification .cards .card-upload .upload,
    .profile-verification .cards .card-upload .upload .photo,
    .profile-verification .cards .card-upload .upload .btn {
        max-width: 100%;
        width: 100%;
    }
}

.registration-success .how-to-continue {
    padding: 3rem 12rem;
    background-color: #f7f7f7;
    margin-bottom: 6rem;
}

.registration-success .how-to-continue .title-how {
    color: var(--primary);
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 1rem;
}

.registration-success .how-to-continue .content {
    text-align: center;
    color: #777777;
}

@media screen and (max-width: 970px) {
    .registration-success .how-to-continue {
        padding: 3rem;
    }
}

.login .title {
    margin-bottom: 1rem;
}

.login .subtitle-error {
    font-size: 18px;
    color: #ed1c24;
    text-align: center;
}

.login .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
}

.login .form .error {
    border: 1px solid #ed1c24 !important;
}

.login .form .input {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.login .form .input label {
    width: 20%;
    margin-right: 3rem;
    font-weight: 500;
}

.login .form .input input {
    padding: 0.5rem;
    border: 1px solid #bbbbbb;
    font-size: 16px;
    color: #979797;
    outline: none;
}

.login .form .input input[type="email"], .password-wrapper {
    width: 80%;
}

.login .form .btn-primary {
    margin-top: 4rem;
}

@media screen and (max-width: 970px) {
    .login .form .input {
        width: 100%;
    }

    .login .form .input label {
        width: 24%;
    }
}

.profile .profile-container {
    display: flex;
    flex-direction: row;
    gap: 4rem;
}

.profile .profile-container .photo {
    max-width: 40%;
}

.profile .profile-container .photo-main {
    width: 100%;
    position: relative;
    margin-bottom: 0.25rem;
    display: flex;
}

.profile .profile-container .photo-main .view {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    border: none;
}

.profile .profile-container .photo-main img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

.profile .profile-container .photo-side {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.25rem;
}

.profile .profile-container .photo-side .item {
    width: calc(100% / 3);
    display: block;
}

.profile .profile-container .photo-side .item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.profile .profile-container .report-user {
    outline: none;
    background: none;
    border: none;
    font-family: var(--font);
    color: var(--secondary);
    margin-top: 2rem;
    border-bottom: 1px solid var(--secondary);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.profile .profile-container .user-info {
    width: 60%;
}

.profile .profile-container .user-info .actions {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile .profile-container .user-info .actions button {
    font-size: 16px;
    padding: 0.5rem 2rem;
    width: 50%;
}

.profile .profile-container .user-info .name-and-desc {
    padding: 3rem 2rem;
    background-color: #f7f7f7;
    margin-bottom: 3rem;
}

.profile .profile-container .user-info .name-and-desc .name {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.profile .profile-container .user-info .name-and-desc .name b {
    font-weight: 900;
}

.profile .profile-container .user-info .name-and-desc .desc {
    font-weight: 500;
}

.profile .profile-container .user-info .name-and-desc .desc .comma {
    font-weight: 900;
    font-size: 18px;
}

.profile .profile-container .user-info .current-wishes {
    margin-bottom: 4rem;
}

.profile .profile-container .user-info .current-wishes .wish-title {
    font-size: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 700;
    margin-bottom: 1rem;
}


.profile .profile-container .user-info .current-wishes .wish-title i {
    color: var(--secondary);
    margin-right: 0.75rem;
    margin-bottom: 2px;
}


.profile .profile-container .user-info .current-wishes .wishes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.profile .profile-container .user-info .current-wishes .wishes .wish {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 3rem;
    background-color: #f7f7f7;
    width: 100%;
}

.profile .profile-container .user-info .current-wishes .wishes .wish:nth-child(2n) {
    background-color: #fff;
}

.profile .profile-container .user-info .current-wishes .wishes .wish .name {
    font-weight: 600;
    color: #777777;
    width: 50%;
    margin-left: -20px;
}

.profile .profile-container .user-info .current-wishes .wishes .wish .name i {
    color: var(--primary);
    margin-right: 0.25rem;
}

.profile .profile-container .user-info .current-wishes .wishes .wish .price {
    font-weight: 700;
    color: #777777;
    min-width: 20%;
}

.profile .profile-container .user-info .current-wishes .wishes .wish .btn {
    width: 50%;
    display: flex;
    margin-left: 20px;
}

.profile .profile-container .user-info .current-wishes .wishes .wish .btn .detail-btn {
    font-size: 16px;
    color: var(--secondary);
    text-transform: uppercase;
    border: none;
    background: none;
    border-bottom: 1px solid var(--secondary);
    cursor: pointer;
}

.profile .profile-container .user-info .basic-info {
    margin-bottom: 6rem;
}

.profile .profile-container .user-info .basic-info .basic-title {
    font-size: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 700;
    margin-bottom: 1rem;
}


.profile .profile-container .user-info .basic-info .basic-title i {
    color: var(--secondary);
    margin-right: 0.75rem;
    margin-bottom: 2px;
}

.profile .profile-container .user-info .basic-info .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.profile .profile-container .user-info .basic-info .items .item  {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 100%;
    background-color: #f7f7f7;
    padding: 0.5rem 3rem;
    font-size: 16px;
    color: #777777;
}

.profile .profile-container .user-info .basic-info .items .item .label-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    min-width: 50%;
    text-align: left;
}

.profile .profile-container .user-info .basic-info .items .item .label-item .label {
    min-width: 50%;
    width: 50%;
    font-weight: 700;
}

.profile .profile-container .user-info .basic-info .items .item .label-item .content {
    min-width: 50%;
    width: 50%;
}

.profile .profile-container .user-info .basic-info .items .item:nth-child(2n) {
    background-color: #fff;
}

@media screen and (max-width: 970px) {
    .profile .profile-container .user-info .basic-info .items .item {
        background-color: #fff;
    }

    .profile .profile-container .report-user {
        font-size: 16px;
    }

    .profile .profile-container .photo {
        max-width: 100%;
    }

    .profile .profile-container .user-info .basic-info .items .item:nth-child(2n) {
        background-color: #fff;
    }

    .profile .profile-container {
        flex-direction: column;
    }

    .profile .profile-container .user-info .actions {
        flex-direction: column;
    }

    .profile .profile-container .user-info, .profile .profile-container .user-info .actions button {
        width: 100%;
    }

    .profile .profile-container .user-info .basic-info .items .item .label-item {
        width: 100%;
        padding: 0.5rem;
        background-color: #fff;
    }

    .profile .profile-container .user-info .basic-info .items .item .label-item:nth-of-type(2n) {
        background-color: #f7f7f7;
    }

    .profile .profile-container .user-info .basic-info .items .item .label {
        min-width: 50%;
    }

    .profile .profile-container .user-info .basic-info .items .item {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .profile .profile-container .user-info .current-wishes .wishes .wish {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        padding: 0.5rem;
    }

    .profile .profile-container .user-info .name-and-desc {
        margin-top: 1rem;
    }

    .profile .profile-container .user-info .current-wishes .wishes .wish .name {
        margin-right: auto;
        margin-left: 0;
    }

    .profile .profile-container .user-info .current-wishes .wishes .wish .btn {
        margin-left: 0;
    }

    .profile .profile-container .user-info .current-wishes .wishes .wish .name,
    .profile .profile-container .user-info .current-wishes .wishes .wish .price,
    .profile .profile-container .user-info .current-wishes .wishes .wish .btn{
        text-align: left;
    }

    .profile .profile-container .user-info .current-wishes .wishes .wish .btn {
        justify-content: flex-start;
        min-width: initial;
    }
}

.registration-step-3 .photos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.registration-step-3 .add-photo {
    min-width: calc((100% / 3) - 2rem);
    height: calc(100% - 22px);
    aspect-ratio: 1;
}

.registration-step-3 .add-photo {
    border: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    background: #fff;
    outline: none;
    transition: .2s ease-in-out;
    cursor: pointer;
}

.registration-step-3 .add-photo .icon {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.registration-step-3 .add-photo input[type="file"] {
    display: none;
}

.registration-step-3 .add-photo:hover {
    border: 1px solid var(--primary);
}

.registration-step-3 .photo {
    min-width: calc((100% / 3) - 2rem);
}

.registration-step-3 .photo .pic {
    position: relative;
    display: flex;
}

.registration-step-3 .photo .pic .delete-mobile {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #ed1c24;
    border: none;
    font-size: 28px;
    background: none;
    cursor: pointer;
    display: none;
}

.registration-step-3 .photo .pic img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

.registration-step-3 .photo .actions {
    margin-top: 0.5rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.registration-step-3 .photo .actions .form-radio {
    padding-left: 30px;
    color: #777777;
    margin-right: auto;
}

.registration-step-3 .photo .actions .delete {
    border: none;
    outline: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #ed1c24;
    background: none;
    cursor: pointer;
    font-size: 16px;
}

.registration-step-3 .rules-settings {
    display: flex;
    flex-direction: row;
    margin-top: 4rem;
}

.registration-step-3 .rules-settings .rules {
    min-width: calc((100% / 3) - 2rem);
    width: calc((100% / 3) - 2rem);
}

.registration-step-3 .rules-settings .rules .card {
    display: flex;
    flex-direction: row;
    box-shadow: 0px 0px 14px 1px rgba(0,0,0,0.15);
    width: 100%;
    padding: 2rem;
}

.registration-step-3 .rules-settings .rules .card .icon {
    font-size: 32px;
    color: var(--secondary);
    padding-right: 1rem;
}

.registration-step-3 .rules-settings .rules .card .content .title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
}

.registration-step-3 .rules-settings .rules .card .content .info {
    color: #777777;
}

.registration-step-3 .rules-settings .rules .card .content .info div {
    margin-bottom: 0.25rem;
}

.registration-step-3 .rules-settings .settings {
    padding-left: 4rem;
}

.registration-step-3 .rules-settings .settings .dropdown {
    min-width: 400px;
}

.registration-step-3 .btn {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

@media screen and (max-width: 970px) {
    .registration-step-3 .add-photo {
        margin-bottom: 1rem;
        font-size: 20px;
        width: calc((100% / 2) - 1rem);
    }

    .registration-step-3 .photo {
        width: calc((100% / 2) - 1rem);
        min-width: calc((100% / 2) - 1rem);
        overflow: hidden;
    }

    .registration-step-3 .photo .actions .delete {
        display: none;
    }

    .registration-step-3 .photo .pic .delete-mobile {
        display: block;
    }

    .registration-step-3 .photo .actions {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .registration-step-3 .photo .actions .form-radio {
        width: 100%;
    }

    .registration-step-3 .photos {
        gap: 1rem;
    }

    .registration-step-3 .rules-settings {
        flex-direction: column;
    }

    .registration-step-3 .rules-settings .rules {
        min-width: 100%;
        width: 100%;
    }

    .registration-step-3 .rules-settings .settings {
        padding: 0;
        width: 100%;
        margin-top: 1rem;
    }

    .registration-step-3 .rules-settings .settings .dropdown {
        min-width: 100%;
        width: 100%;
    }

    .registration-step-3 .rules-settings .settings .dropdown .dropdown-button {
        width: 100%;
        height: max-content;
    }
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 3rem !important;
}

.show-password-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--secondary);
}

.char-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #666;
}

.form-radio {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f7f7f7;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.form-radio:hover input ~ .radiomark {
    background-color: #dadada;
}

.form-radio input:checked ~ .radiomark {
    background-color: #fff;
}

.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-radio input:checked ~ .radiomark:after {
    display: block;
}

.form-radio .radiomark:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ed1c24;
}

.form-check {
    display: flex;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #f7f7f7;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
}

.form-check:hover input ~ .checkmark {
    background-color: #dadada;
}

.form-check input:checked ~ .checkmark {
    background-color: var(--primary);
    border: none;
}

.form-check input:checked ~ .checkmark:after {
    left: 30%;
    top: 50%;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-check input:checked ~ .checkmark:after {
    display: block;
}

.form-check .checkmark:after {
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg) translate(-50%, -50%);
}

.no-scroll {
    overflow: hidden;
}


