.__breadcrumb {
    padding-top: 56px;
}

.__breadcrumb-inner {
    max-width: 1440px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.__breadcrumb-list {
    display: flex;
    grid-column-gap: 32px;
    background: var(--v3-accent-1);
    border-radius: 16px;
    padding: 72px 40px 40px 40px;
}

.__breadcrumb-item:first-child a {
    font-weight: 500;
}

.__breadcrumb-item:not(:last-child) a::before {
    content: "/";
    position: absolute;
    top: 0;
    right: -20px;
}

.__breadcrumb-item a {
    position: relative;
    color: var(--v3-dark);
    font-family: var(--ff-satoshi);
    font-size: 18px;
    transition: 300ms ease;
}

.__breadcrumb-item a:hover {
    color: var(--v3-accent);
}


.__item {
    display: flex;
    flex-direction: column;
    grid-row-gap: 18px;
    position: relative;
    background: var(--v3-white-1);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 12px;
}

.__item:hover .__item-title a {
    color: var(--v3-accent);
}

.__item-thumbnail {
    padding-top: 100%;
}

.__item-thumbnail img {
    border-radius: 16px;
}

.__item-inner {
    display: flex;
    flex-direction: column;
    grid-row-gap: 6px;
}

.__item-title {
    font-family: var(--ff-satoshi);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
}

.__item-title a {
    color: var(--v3-dark-1);
    transition: color 300ms ease;
}

.__item-detail {
    display: flex;
    grid-column-gap: 4px;
    margin-top: auto;
}

.__item-info {
    display: flex;
    flex-direction: column;
    grid-row-gap: 8px;
    width: 100%;
    background: var(--v3-accent-1);
    border-radius: 8px;
    padding: 8px;
}

.__item-info h5 {
    font-weight: 400;
    font-size: 14px;
}

.__item-info p {
    color: var(--v3-accent);
    font-family: var(--ff-satoshi);
    font-weight: 500;
    font-size: 13px;
}


.__particle {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--v3-white);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--v3-accent);
    border-radius: 12px;
    text-align: center;
    padding: 24px 18px;
}

.__particle-detail {
    display: flex;
    flex-direction: column;
    grid-row-gap: 12px;
    margin-top: 20px;
}

.__particle h3 {
    color: var(--v3-dark-1);
    font-family: var(--ff-satoshi);
    font-weight: 500;
    font-size: clamp(18px, 2.5vw, 20px);
    line-height: 1.3;
}


.__thumbnail {
    width: max-content;
    border-radius: var(--radius);
}

.__thumbnail img {
    border: 1px solid var(--v3-accent);
    border-radius: 24px;
    padding: clamp(8px, 2.5vw, 24px);
    object-fit: cover;
}


.__hover-effect {
    position: relative;
    transition: color 300ms ease;
}

.__hover-effect:hover {
    color: var(--v3-accent);
}

.__hover-effect::after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -4px;
    right: 0;
    background-color: var(--v3-accent);
    transition: all 0.6s ease;
}

.__hover-effect:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}


.__accordion {
    background: var(--v3-white);
    border-left: 4px solid var(--v3-accent);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
}
.__accordion-slot {
    position: relative;
    padding: 16px 48px 16px 24px;
    cursor: pointer;
    user-select: none;
}
.__accordion-slot h3 {
    font-weight: 500;
    font-family: var(--ff-satoshi);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.3;
    margin: 0;
}
.__accordion-slot img {
    position: absolute;
    top: 16px;
    right: 16px;
    transition: transform 0.4s ease;
}
.__accordion-slot-active img {
    transform: rotate(180deg);
}
.__accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    padding: 0 24px;
}
.__accordion-panel-active {
    opacity: 1;
}
.__accordion-panel p,
.__accordion-panel li {
    color: var(--v3-dark-1);
    font-size: 16px;
}
.__accordion-panel p {
    margin-bottom: 10px;
}
.__accordion-panel ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 0 16px 16px;
    list-style: disc;
}


.__btn {
    display: block;
    width: max-content;
    font-weight: 500;
    font-family: var(--ff-satoshi);
    font-size: 16px;
    line-height: 1;
    border-radius: 100px;
    padding: clamp(14px, 1.5vw, 17px) 24px;
    transition: color 300ms ease, background 300ms ease, border 300ms ease;
}

.__btn-accent {
    color: var(--v3-dark);
    background: var(--v3-accent-1);
    border: 1px solid var(--v3-accent-1);
}

.__btn-accent:hover {
    color: var(--v3-white);
    background: var(--v3-accent);
    border: 1px solid var(--v3-accent);
}

.__btn-success {
    color: var(--v3-white);
    background: var(--v3-accent);
    border: 1px solid var(--v3-accent);
}

.__btn-success:hover {
    color: var(--v3-dark-1);
    background: var(--v3-accent-2);
    border: 1px solid var(--v3-accent-2);
}


.__label {
    display: block;
}

.__form-control {
    width: 100%;
    color: var(--v3-dark-1);
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--v3-dark-1);
    border-radius: 0;
    padding: 30px 10px 10px 10px;
    transition: border-bottom 300ms ease;
    outline: none;
}

.__form-control::placeholder {
    color: var(--v3-dark-1);
    font-size: 16px;
    transition: color 300ms ease;
}

.__form-control:focus {
    border: none;
    border-bottom: 1px solid var(--v3-accent);
}

.__form-control:focus::placeholder {
    color: var(--v3-accent);
}

.__form-control::-webkit-outer-spin-button,
.__form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.__form-control[type=number] {
    -moz-appearance: textfield;
}

.__form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--v3-white-1) inset;
}

textarea {
    height: 160px;
    min-height: 160px;
    max-height: 160px;
}

.__custom-select {
    display: block;
    position: relative;
    /* z-index: 3; */
    width: 100%;
}

.__custom-select select {
    display: none;
}

.__selected {
    display: block;
    position: relative;
    width: 100%;
    color: var(--v3-dark-1);
    font-size: 16px;
    font-weight: 400;
    background: var(--v3-white);
    border-bottom: 1px solid var(--v3-dark-1);
    padding: 30px 10px 10px 10px;
    transition: border-bottom 300ms ease;
    cursor: pointer;
}

.__selected::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 70%;
    right: 10px;
    background: url('../icons/arrow-down.svg');
    transform: translateY(-50%);
    transition: transform 300ms;
}

.__arrow-anim.selected::after {
    transform: translateY(-50%) rotate(180deg);
}

.__options {
    width: 100%;
    max-height: 236px;
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    z-index: 10 !important;
    background-color: var(--v3-white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.__options::-webkit-scrollbar {
    width: 0;
}

.__options-hide {
    display: none;
}

.__option {
    padding: 10px;
    cursor: pointer;
    border-top: 1px solid var(--v3-white-2);
}

.__option:first-child {
    border-top: none;
}

.__option:hover {
    color: var(--v3-white);
    background-color: var(--v3-accent);
}

.__option-disabled {
    color: #9aa0a6;
    cursor: not-allowed;
}

.__selected.__arrow-anim::after {
    transform: translateY(-50%) rotate(180deg);
}


.__checkmark {
    display: block;
    position: relative;
    line-height: 1.2;
    padding-left: 26px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.__checkmark .__radio {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--v3-white-1);
    border: 1px solid #777;
    border-radius: 50%;
}

.__checkmark .__radio:after {
    content: "";
    display: none;
    width: 11px;
    height: 11px;
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    background: var(--v3-white);
    border-radius: 50%;
}

.__checkmark input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.__checkmark input:checked ~ .__radio {
    background: var(--v3-accent);
    border: 1px solid var(--v3-accent);
}

.__checkmark input:checked ~ .__radio:after {
    display: block;
}

@media only screen and (max-width: 991px) {
    .__options {
        position: static;
        top: unset;
        left: unset;
        margin: 18px 0;
    }
}

@media only screen and (max-width: 565px) {
    .__thumbnail,
    .__thumbnail img {
        width: 100%;
    }

    .__accordion {
        border-left: 2px solid var(--v3-accent);
        border-radius: 4px;
    }

    .__accordion-slot {
        padding: 10px 48px 10px 24px;
    }

    .__accordion-slot img {
        top: 11px;
    }
}
