.market-page .game-items {
    padding: 50px;
}

.market-page .filter-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 60px;
}

.market-page .filter-item a {
    display: flex;
    align-items: center;
    font-size: 16px;
    opacity: 0.6;
    transition: 0.3s;
}

.market-page .filter-item a img {
    margin-right: 5px;
}

.market-page .filter-item.active a,
.market-page .filter-item:hover a {
    opacity: 1;
}

.market-page .search-block {
    margin-top: 50px;
}

.market-page .search-block .left {
    width: 70%;
}

.market-page .search-block .right {
    width: 25%;
}

.market-page .search-block .left,
.market-page .search-block .current-item {
    flex-wrap: nowrap;
}

.market-page .search-block .current-item-label {
    color: #f7c130;
    text-transform: uppercase;
    margin-left: 15px;
}

.market-page .search-block .input-wrap {
    width: 100%;
    margin-left: 30px;
    margin-right: auto;
}

.market-page .search-block .sort-by {
    flex-wrap: nowrap;
}

.market-page .search-block .sort-by p {
    font-size: 16px;
    margin-right: 40px;
    white-space: nowrap;
}

.market-page .search-block .sort-by .select {
    width: 100%;
}

.market-page .search-block .sort-by .select,
.market-page .search-block .sort-by .select a {
    font-size: 16px;
    color: #889cad;
}

.market-page .items-content {
    padding: 0 80px;
    gap: 55px 50px;
}

.market-page .items-content .item:hover {
    transform: translateY(-10px);
}

.market-page .items-content .item-content {
    padding: 0 35px 30px 35px;
}

.market-page .items-content .title-item {
    font-size: 16px;
    padding-bottom: 35px;
    margin: 0 auto;
    color: #fff;
}

.market-page .items-content .price {
    font-family: 'Open Sans', sans-serif;
    color: #fbc430;
}

.market-page .items-content button {
    margin-top: 22px;
}

.market-page .deposit-plan-block {
    padding: 40px 70px 60px;
    border-bottom: 1px solid #2e404c;
}

.market-page .deposit-plan-block h2 {
    color: #f7c130;
    text-transform: uppercase;
    margin-left: 15px;
}

.market-page .plan-items {
    cursor: pointer;
    display: flex;
    gap: 50px;
    padding: 0 15px;
    margin-top: 60px;
}

.market-page .plan-item {
    width: 270px;
    height: 325px;
    position: relative;
    padding: 8px;
    background: #16262f;
    transition: 0.3s;
}

.market-page .plan-item:hover {
    box-shadow: 0 0 30px 5px #316b7d;
}

.market-page .plan-item.selected .selected-elem {
    display: block;
}

.market-page .plan-item.selected button {
    box-shadow: 0 10px 20px 0 rgba(98, 223, 234, 0.4);
    background: url("../images/blue-button-bg.jpg") center no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.market-page .plan-item-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    border: 1px solid rgba(109, 251, 195, 0.15);
}

.market-page .plan-item-content-bottom {
    position: absolute;
    bottom: 35px;
}

.market-page .plan-item .plan-amount {
    text-align: center;
    color: #fbc430;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}

.market-page .plan-item button {
    margin-top: 20px;
}

.market-page .payment-method-block {
    padding: 40px 50px;
}

.market-page .confirm-block {
    background: #111c24;
    padding: 40px 50px 30px;
}

.market-page .confirm-block .content {
    margin-top: 50px;
}

.market-page .confirm-block .content > div {
    width: 25%;
}

.market-page .confirm-block .key {
    font-size: 16px;
    color: #889cad;
    font-weight: bold;
    margin-bottom: 8px;
}

.market-page .confirm-block .value {
    font-size: 24px;
}

.market-page .confirm-block .value span {
    font-size: 24px;
    display: inline;
    font-family: 'Open Sans', sans-serif;
}

.market-page .market-deposit-page .container {
    padding-bottom: 80px;
}

.market-page .pagination {
    padding: 80px 0;
}


.value-button:hover {
  cursor: pointer;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-button {
 display: inline-block;
  margin: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  padding: 11px 0;
  background: #1e303a;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.value-button:focus {
    outline: none;
}

.value-button:active {
    background-color: #e0a800; /* Darker color when button is pressed */
}

input[type="number"] {
    width: 100px; /* Adjust the width to your preference */
    text-align: center;
    margin: 0 5px;
}
.icon-item {
    width: 174px; /* Set the desired width */
    height: 174px; /* Set the desired height */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    margin-top: 10px; /* Adjust this value to set the desired space */
    display: block;
}
.items-content .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust gap as needed */
}

.bordered-item {
    margin-bottom: 20px; /* Adjust bottom margin as needed */
}
            .search-block {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 0;
            }

            .left {
                display: flex;
                align-items: center;
            }

            .current-item {
                display: flex;
                align-items: center;
            }

            .input-wrap {
                display: flex;
                align-items: center;
                margin-left: 10px;
            }

            .input-wrap .form-control {
                height: 40px;
                margin-right: 10px;
            }

            .btn {
                height: 40px;
                line-height: 40px;
                padding: 0 20px;
            }

            .right {
                display: flex;
                align-items: center;
            }

            .sort-by p {
                margin: 0;
                margin-right: 10px;
            }

            .custom-select select {
                height: 40px;
            }
			