@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

.confirm-password-modal {
    animation: zoomIn 1s;
    position: fixed;
    top: 0%;
    right: 30%;
    left: 40%;
    background-color: #ffffff;
    margin-top: 180px;
    padding: 20px;
    border: 1px solid #000000;
    width: 30%;
    height: 50%;
    z-index: 2090;
}

@media only screen and (max-width: 768px) {
    .confirm-password-modal {
        /* Adjust styles for small devices */
        position: fixed;
        top: 0%;
        left: 5%;
        right: 3%;
        background-color: #ffffff;
        margin-top: 160px;
        padding: 10px;
        border: 1px solid #000000;
        width: 90%;
        height: 50%;
        z-index: 2090;
    }
}

.filter-menu-modal {
    position: fixed;
    top: 0%;
    right: 0%;
    background-color: #fff;
    margin-top: 90px;
    z-index: 2090;
    border: 2px solid #1b53c0;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
}

@media only screen and (max-width: 768px) {
    .filter-menu-modal {
        /* Adjust styles for small devices */
        position: fixed;
        margin: 0%;
        top: 0%;
        bottom: 0%;
        left: 0%;
        right: 0%;
        background-color: #fff;
        overflow-y: auto;
        width: 100%;
    }
}

.filter-settings-modal {
    animation: zoomInBig 1s;
    position: fixed;
    top: 0%;
    right: 30%;
    background-color: #ffffff;
    margin-top: 180px;
    padding: 20px;
    border: 1px solid #000000;
    width: 30%;
    height: 50%;
    z-index: 2090;
    border-radius: 10px;
}

@media only screen and (max-width: 768px) {
    .filter-settings-modal {
        position: fixed;
        top: 0%;
        left: 5%;
        right: 3%;
        background-color: #ffffff;
        margin-top: 160px;
        padding: 10px;
        border: 1px solid #000000;
        width: 90%;
        height: 50%;
        z-index: 2090;
    }
}

.modal-close-button {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    border-radius: 10px;
    background-color: #9f0707;
    color: #fff;
    cursor: pointer;
}

.modal-close-button:active {
    transform: scale(0.9);
}

.modal-close-button:hover {
    background-color: rgba(227, 127, 125, 0.915);
    color: #ffffff;

    i {
        background-color: rgba(227, 127, 125, 0.915);
        color: #ffffff;
    }
}

.modal-close-button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(104, 50, 240, 0.2);
    color: #cdcdcd;
}

.range-slider {
    height: 5px;
    position: relative;
    background-color: currentColor;
    border-radius: 2px;
    margin-top: 34px;
}

.range-selected {
    height: 100%;
    left: 30%;
    right: 30%;
    position: absolute;
    border-radius: 5px;
    background-color: currentColor;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -7px;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.range-input input::-webkit-slider-thumb {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 3px solid currentColor;
    background-color: #fff;
    pointer-events: auto;
    -webkit-appearance: none;
}

.range-input input::-moz-range-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 3px solid #1b53c0;
    background-color: #fff;
    pointer-events: auto;
    -moz-appearance: none;
}

.range-price {
    margin: 30px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.range-price label {
    margin-right: 5px;
}

.range-price input {
    width: 40px;
    padding: 5px;
}

.range-price input:first-of-type {
    margin-right: 15px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

@media only screen and (max-width: 768px) {
    .new-product {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .color-form {
        display: block;
    }
}

.custom-check {
    display: flex;
    position: relative;
    padding: 10px;
    padding-right: 50px;
    margin-right: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    flex-wrap: nowrap;
    /* Add this property */
    white-space: nowrap;
    /* Add this property */
}

.custom-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-wrapper {
    position: relative;
    display: inline-block;
    height: 25px;
    width: 25px;
    margin-left: 10px;
}

.checkmark {
    position: absolute;
    margin-right: 10px;
    top: 10px;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
}

.custom-check input:checked ~ .checkmark {
    color: #b43403;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-check input:checked ~ .checkmark:after {
    display: block;
}

.custom-check .checkmark:after {
    left: 9px;
    top: 2px;
    width: 9px;
    height: 16px;
    border: solid #b43403;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.size-container {
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow-x: auto;
}

.zijdebar::-webkit-scrollbar {
    display: none;
}

.zijdebar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.color-label :active {
    border: 2px solid #b43403;
}

.fa.fa-circle {
    width: 40px;
    /* adjust the width to increase the label size */
    height: 40px;
    /* adjust the height to increase the label size */
    border: 3px solid transparent;
    border-radius: 50%;
    transition: border-color 0.2s ease-in-out;
    display: inline-block;
    /* add display: inline-block to make the width and height work */
}

input[type="radio"]:checked + label.fa.fa-circle {
    border: 2px solid currentColor;
    border-radius: 50%;
}

.dropdown-user {
    position: absolute;
    top: 110px;
    right: 80px;
    width: 260px;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0 0.1);
    z-index: 2090;
}

.dropdown-user a {
    padding: 10px;
    border-radius: 0.25rem;
}

.dropdown-user form {
    padding: 10px;
    border-radius: 0.25rem;
}

.dropdown-user form:hover {
    background-color: #868686;
    color: #fff;
}

.dropdown-user a:hover {
    background-color: #868686;
    color: #fff;
}

@media (max-width: 768px) {
    .dropdown-user {
        top: 70px;
        right: 50px;
    }
}

.cart-button {
    background-color: #ffffff;
    color: #b43403;
    border: 2px solid #b43403;
    border-radius: 5px;
    padding: 10px;
}

.cart-button:active {
    transform: scale(0.9);
}

.cart-button:hover {
    background-color: #b43403;
    color: #ffffff;

    i {
        color: #ffffff;
    }
}

.cart-button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(104, 50, 240, 0.2);
    color: #faf6f6;
}

.option-button {
    background-color: transparent;
    color: #b43403;
    border: 2px solid #b43403;
    border-radius: 5px;
    padding: 10px;
}

.option-button:active {
    transform: scale(0.9);
}

.option-button:hover {
    background-color: #b43403;
    color: #ffffff;

    i {
        color: #ffffff;
    }
}

.option-button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(104, 50, 240, 0.2);
    color: #faf6f6;
}

.count-button {
    background-color: #ffffff;
    color: #b43403;
    border: 2px solid #b43403;
    border-radius: 35px;
    padding: 4px;
}

.count-button:active {
    transform: scale(0.9);
}

.count-button:hover {
    background-color: #b43403;
    color: #ffffff;

    i {
        color: #ffffff;
    }
}

.count-button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(104, 50, 240, 0.2);
    color: #faf6f6;
}

.delete-button {
    background-color: #ffffff;
    color: rgba(224, 24, 27, 0.915);
}

.delete-button:active {
    transform: scale(0.9);
}

.delete-button:hover {
    background-color: #dd2828;
    color: #ffffff;

    i {
        color: #ffffff;
    }
}

.delete-button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(104, 50, 240, 0.2);
    color: #cdcdcd;
}

.save-button {
    background-color: #ffffff;
    color: rgba(97, 175, 79, 0.915);
}

.save-button:active {
    transform: scale(0.9);
}

.save-button:hover {
    background-color: rgba(135, 239, 111, 0.915);
    color: #ffffff;

    i {
        background-color: rgba(135, 239, 111, 0.915);
        color: #ffffff;
    }
}

.save-button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(104, 50, 240, 0.2);
    color: #cdcdcd;
}

.social-share-instagram {
    background: linear-gradient(
        to right,
        #780000,
        #ffa500,
        #bebe06,
        #07b107,
        #4040f2,
        #8d02ef
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bid-btn {
    position: absolute;
    left: 333px;
}

@media (max-width: 768px) {
    .bid-btn {
        left: 250px;
    }
}
