.sell-menu #values {
    padding: 20px 30px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.50);
    width: 340px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-content: flex-start;
    max-width: 100%;
    box-sizing: border-box;
    max-height: 80vh;
    overflow: auto;
}

.sell-menu #values.full-width {
    flex-grow: 1;
}

.sell-menu .value-item {
    padding: 20px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.20);
    border-radius: 20px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    width: 130px;
    height: 90px;
    cursor: pointer;
    box-sizing: border-box;
    border: 3px solid transparent !important;
    animation: fade 0.5s ease;
    transition: opacity 0.5s ease;
}

.sell-menu .value-item.small-text {
    font-size: 12px;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.sell-menu .value-item:hover {
    background: #F6921E;
    color: #FFF;
}

.sell-menu .value-item.selected {
    border-color: #f6921e!important;
}

.sell-menu .value-item.fade-out {
    opacity: 0;
    pointer-events: none;
}

.sell-menu {
    display: flex;
    width: min(100%, 90vw);
    justify-content: flex-end;
    min-height: 735px;
}

.sell-menu #menu-items {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 22px;
    gap: 5px;
    width: 180px;
    margin-bottom: 20px;
}

.sell-menu .menu-item {
    background: #F6921E;
    color: transparent;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 5px 20px 5px 5px;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.sell-menu .menu-item.white {
    color: #ffffff;
}

.sell-menu .menu-item .selected-icon {
    display: none;
}

.sell-menu .menu-item.selected .selected-icon {
    display: inline-block;
}

.sell-menu .menu-item:not(.expanded) {
    width: 20px;
    color: transparent;
}

.sell-menu .selected i {
    color: #00cc4c;
    margin-left: 5px;
}

.sell-menu .next-button {
    background: #3FB06B!important;
    color: #ffffff!important;
    border: none;
}


@media (max-width: 767px) {
    .sell-menu #menu-items {
        width: 31vw;
        font-size: 3.5vmin;
    }

    .sell-menu .menu-item {
        height: 35px;
        padding-right: 10px;
    }
}

.sell-menu .final {
    display: none;
}

.sell-menu #values.final-menu {
    width: 600px;
    position: relative;
    padding: 20px 10px 80px;
}

.sell-menu .final-menu .final {
    display: block;
    width: 100%;
}

.sell-menu .pill {
    background: #F6921E;
    color: white;
    height: 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 10px 0;
    width: 130px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.sell-menu .name-pill {
    padding: 5px 0;
}

.sell-menu .proposed-items {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: 5px;
}

.sell-menu .proposed-header {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.10);
    padding: 10px 2vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sell-menu #proposed-name {
    white-space: nowrap;
}

.sell-menu.final-sell {
    width: 700px;
    margin-left: calc(-500px + 20vw);
}

.sell-menu #proposed-body {
    padding: 0 5px;
    max-height: 0;
    overflow: hidden;
    transition: all 1s ease;
}

.sell-menu .proposed-value {
    width: 80%;
    padding: 15px 0;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto 20px;
}

.sell-menu #final-value {
    background: #3FB06B;
    color: white;
    border-radius: 15px;
    padding: 0 10px;
    font-style: italic;
}

.sell-menu #proposed-body.expanded {
    max-height: 100vmax;
    padding: 10px 5px;
    margin-bottom: 40px;
}

.sell-menu .proposed-item {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    font-size: 1vw;
}

.sell-menu .proposed-icon {
    background-color: #3FB06B;
    color:white;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sell-menu .proposed-logo {
    max-width: 50%;
    min-width: 80px;
    height: 50px;
}

.sell-menu .proposed-footer {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 15px;
    width: 95%;
}

.sell-menu .proposed-footer-right{
    display: flex;
    flex-direction: column;
}

@media (min-width: 1366px) {
    .sell-menu .menu-item {
        padding: 0 20px 0 0;
        font-size: 20px;
    }
}

.sell-menu #proposed-header-items {
    cursor: pointer;
}

.sell-menu .pill-button {
    font-size: 0.7rem;
    white-space: nowrap;
    width: 160px;
    cursor: pointer;
}

@media (max-width: 1366px) {
    .sell-menu.final-sell {
        width: 600px;
    }

}

@media (max-width: 1040px) {
    .sell-menu.final-sell {
        width: 90vw;
        margin-left: 0;
    }
}

.sell-modal {
    width: 90vw;
    max-width: 1200px;
    max-height: 80vh;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: linear-gradient(#fff, #ccc);
    box-shadow: 0 0 10px #000;
    display: flex;
    flex-direction: column;
    transition: transform 1s ease;
}

.sell-modal .modal-close {
    position: absolute;
    top: 10px;
    right: 35px;
    font-size: 18px;
    color: white;
    background: #606061;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sell-modal .modal-inner {
    flex-grow: 1;
    width: 100%;
    overflow: auto;
}

.sell-modal.closed {
    transform: translateX(-50%) translateY(-100%);
}

.sell-modal p {
    margin-bottom: 10px;
}

#sell-button {
    background: #F7931E;
    color: #FFFFFF;
}

.sell-menu .sell-form {
    width: 100%;
    padding: 10px;
    margin-bottom: -80px;
}

.sell-menu .sell-form-header {
    width: 100%;
    background: #F6921E;
    color: white;
    padding-left: 20px;
    font-size: 14px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.20);
    margin: 10px 0 10px 0;
}

.sell-menu .sell-form-title {
    text-align: center;
}

.sell-menu .sell-form-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.sell-menu .sell-form-item {
    margin-bottom: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sell-menu .sell-form-item label {
    font-size: 13px;
}

.sell-menu .sell-form-item.big {
    width: 63%;
}

.sell-menu .sell-form-item input, .sell-menu .sell-form-item select {
    width: 100%;
    border: 1px solid #707070;
    height: 30px;
    font-size: 12px;
    padding-left: 10px;
    border-radius: 5px;
}

.sell-menu .sell-form-item select {
    padding: 0 0 0 10px
}

.sell-menu .sell-form-alert {
    background: #dc3545;
    color: #ffffff;
    width: 100%;
    padding: 10px;
    animation: fade-in 0.5s ease;
    display: none;
}

.sell-menu .sell-form-alert.visible {
    display: block;
}

.sell-menu .sell-form-check {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sell-menu .sell-form-check-input {
    width: 10px;
    height: 10px;
    border: 1px solid #707070;
}

.sell-menu .sell-form-check-input::after {
    top: -7px !important;
    left: 3px !important;
}

.sell-menu .sell-form-check-label {
    display: inline-block;
    padding-left: 10px;
    vertical-align: top;
    font-size: 13px;
    margin: 0;
}

.sell-menu #form-show-terms {
    color: #639BD9;
}

.sell-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.sell-menu .sell-form-logo {
    max-width: 50%;
    min-width: 80px;
    height: 50px;
}

.sell-menu .sell-form-button {
    white-space: break-spaces;
}