.preloader-center {
    display: flex;
}

.preloader-back {
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation-name: backdiv;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    z-index: 999999999999999999999;
}

.preloader-heart {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: pink;
    height: 50px;
    width: 50px;
    transform: rotate(-45deg);
    animation-name: beat;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    z-index: 999999999999999999999;
}

.preloader-heart:after {
    background-color: pink;
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0px;
    left: 25px;
}

.preloader-heart:before {
    background-color: pink;
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: -25px;
    left: 0px;
}

@keyframes backdiv {
    50% {
        background: #ffe6f2;
    }
}

@keyframes beat {
    0% {
        transform: scale(1) rotate(-45deg);
    }
    50% {
        transform: scale(0.6) rotate(-45deg);
    }
}

.icon-cancel {
    display: block; /* Mặc định hiển thị */
    transition: opacity 0.3s ease; /* Thêm hiệu ứng mượt */
}

.audio-toggle {
    position: relative;
    transition: transform 0.2s ease;
}

.audio-toggle:hover {
    transform: scale(1.1);
}

/* Hiệu ứng khi nhạc đang phát */
.audio-toggle.playing .music-icon {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Popup container */
.popup {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Không chặn tương tác khi ẩn */
    z-index: 1000;
}

/* Overlay mờ */
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Nội dung popup */
.popup-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%); /* Ẩn ở dưới */
    width: 100%;
    max-width: 408px;
    background-color: white;
    border-radius: 15px 15px 0 0;
    padding: 30px 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Khi popup hiển thị */
.popup.show {
    pointer-events: auto;
}

.popup.show .popup-overlay {
    opacity: 1;
}

.popup.show .popup-content {
    transform: translateX(-50%) translateY(0); /* Trượt lên */
}

/* Nút đóng */
.close {
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #666;
    transition: color 0.2s;
}

.close:hover {
    color: #333;
}

/* Nút trong popup */
.popup-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.2s;
}

.popup-btn:hover {
    background-color: #0056b3;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .popup-content {
        width: 100%;
        border-radius: 15px 15px 0 0;
        padding: 30px 20px;
    }
}

/* Các hình ảnh trong popup */
.popup-images {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

/* Định dạng hình ảnh */
.avatar, .qr-code {
    text-align: center;
}

/* Nút tải xuống */
.download-btn {
    display: block;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.download-btn:hover {
    background-color: #0056b3;
}

.popup-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.2s;
}

.popup-btn:hover {
    background-color: #0056b3;
}

.lozad {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

.lozad.loaded {
    opacity: 1;
    transform: translateY(0);
}

.wild-shake {
    animation: wild-shake-bounce 1.5s ease-in-out;
}

@keyframes wild-shake-bounce {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    10% {
        transform: translateY(-20px) rotate(-10deg) scale(1.1);
    }
    20% {
        transform: translateY(15px) rotate(8deg) scale(0.9);
    }
    30% {
        transform: translateY(-15px) rotate(-6deg) scale(1.05);
    }
    40% {
        transform: translateY(10px) rotate(5deg) scale(0.95);
    }
    50% {
        transform: translateY(-8px) rotate(-4deg) scale(1.02);
    }
    60% {
        transform: translateY(6px) rotate(3deg) scale(0.98);
    }
    70% {
        transform: translateY(-4px) rotate(-2deg) scale(1.01);
    }
    80% {
        transform: translateY(2px) rotate(1deg) scale(0.99);
    }
    90% {
        transform: translateY(-1px) rotate(-0.5deg) scale(1.005);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

.crazy-shake {
    animation: crazyShake 0.8s ease-in-out infinite;
}

@keyframes crazyShake {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    10% {
        transform: translate(-2px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.crazy-shake-2 {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    transform-origin: center;
    animation: crazy-shake-2 2.5s ease-in-out infinite;
    will-change: transform;
}

/* Hiệu ứng lắc mạnh trong 35% đầu chu kỳ, sau đó nghỉ */
@keyframes crazy-shake-2 {
    0% {
        transform: translate(0, 0) rotate(0);
    }
    5% {
        transform: translate(-10px, 5px) rotate(-8deg);
    }
    10% {
        transform: translate(8px, -6px) rotate(10deg);
    }
    15% {
        transform: translate(-12px, 4px) rotate(-12deg);
    }
    20% {
        transform: translate(10px, -4px) rotate(10deg);
    }
    25% {
        transform: translate(-8px, 3px) rotate(-8deg);
    }
    30% {
        transform: translate(6px, -2px) rotate(6deg);
    }
    35% {
        transform: translate(0, 0) rotate(0);
    }
    /* nghỉ hoàn toàn */
    100% {
        transform: translate(0, 0) rotate(0);
    }
}

#audio-control-wrapper.jsx-3522513885 {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.audio-toggle.jsx-3522513885 {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(165, 165, 165, 0.2);
    border-radius: 50%;
    overflow: hidden;
}

.audio-toggle.mrotate.jsx-3522513885 {
    -webkit-animation: mrotate-jsx-3522513885 5s linear infinite;
    animation: mrotate-jsx-3522513885 5s linear infinite;
}

.music-icon.jsx-3522513885 {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.icon-cancel.jsx-3522513885 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    padding-top: 15px;
}

.icon-line.jsx-3522513885 {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;
    height: 1px;
    background: #fff;
}

@-webkit-keyframes mrotate-jsx-3522513885 {
    to {
        -webkit-transform: rotate(1turn);
        -ms-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes mrotate-jsx-3522513885 {
    to {
        -webkit-transform: rotate(1turn);
        -ms-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.toolbar-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

#cinelove-gift-button {
    background-image: /*savepage-url=/_next/static/media/gift-box.f417ec86.png*/ var(--savepage-url-85);
    background-size: 100%;
    background-repeat: no-repeat;
    -webkit-animation: 6s ease 0s infinite normal none running bounceGift;
    animation: 6s ease 0s infinite normal none running bounceGift;
    width: 39px;
    height: 39px;
    cursor: pointer;
}

#cinelove-like-button {
    background-image: /*savepage-url=/_next/static/media/like.ea5798c7.png*/ var(--savepage-url-86);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 39px;
    height: 39px;
    position: relative;
    cursor: pointer;
}

#cinelove-like-count {
    opacity: 1;
    border-radius: 17px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    color: white;
    font-size: 8px;
    position: absolute;
    right: -4px;
    top: -4px;
    background: -webkit-linear-gradient(#ff9aa6, #ff4969);
    text-align: center;
}

@-webkit-keyframes bounceGift {
    0% {
        -webkit-transform: translateY(0px);
    }
    8% {
        -webkit-transform: translateY(-10px);
    }
    13% {
        -webkit-transform: translateY(0px);
    }
    16% {
        -webkit-transform: translateY(-5px);
    }
    19% {
        -webkit-transform: translateY(0px);
    }
    22% {
        -webkit-transform: translateY(-2px);
    }
    25% {
        -webkit-transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(0px);
    }
}

#animation-gift-preview-btn {
    background: rgba(0, 0, 0, 0.2);
    padding: 0px 10px;
    box-sizing: border-box;
    color: white;
    border-radius: 30px;
    font-size: 14px;
    height: 39px;
    line-height: 39px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

#animation-gift-preview-btn img {
    height: 30px;
    vertical-align: middle;
}

#animation-gift-preview-btn span {
    display: inline-block;
    font-size: 13px;
    margin-left: 5px;
    white-space: nowrap;
}

.shake {
    -webkit-animation: shake 0.1s 3;
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: scale(1);
    }
    30% {
        -webkit-transform: scale(1.3);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

#cinelove-animation-box.jsx-848010737 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 38rem;
    z-index: 9999998;
    pointer-events: none;
}

#cinelove-canvas.jsx-848010737, #cinelove-canvas-preview.jsx-848010737 {
    position: absolute;
    width: 100%;
    height: auto;
    background-color: transparent;
    top: -15vh;
    left: 0;
    opacity: 1;
    -webkit-transition: visibility 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition: visibility 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

#cinelove-canvas.jsx-848010737 {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-height: 700px) {
    #cinelove-canvas.jsx-848010737, #cinelove-canvas-preview.jsx-848010737 {
        top: -30vh;
    }
}

@media screen and (min-height: 701px) and (max-height: 800px) {
    #cinelove-canvas.jsx-848010737, #cinelove-canvas-preview.jsx-848010737 {
        top: -25vh;
    }
}

.bar-gift-new.jsx-4097818752 {
    width: 100%;
    min-height: 400px;
    background-color: #fff;
    border-radius: 0.5rem 0.5rem 0 0;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9999999;
}

.gift-wrap-backdrop.jsx-4097818752 {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999997;
    background: rgba(0, 0, 0, 0.4);
}

.slideInBtm-enter.jsx-4097818752 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.slideInBtm-enter-active.jsx-4097818752 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.slideInBtm-exit.jsx-4097818752 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.slideInBtm-exit-active.jsx-4097818752 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.fade-enter.jsx-4097818752 {
    opacity: 0;
}

.fade-enter-active.jsx-4097818752 {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.fade-exit.jsx-4097818752 {
    opacity: 1;
}

.fade-exit-active.jsx-4097818752 {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.popup-wrapper.jsx-831600802 {
    width: 100%;
    min-height: 20rem;
    background-color: #fff;
    border-radius: 0.5rem 0.5rem 0 0;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9999999;
}

.popup-backdrop.jsx-831600802 {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999997;
    background: rgba(0, 0, 0, 0.4);
}

.slideInBtm-enter.jsx-831600802 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.slideInBtm-enter-active.jsx-831600802 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.slideInBtm-exit.jsx-831600802 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.slideInBtm-exit-active.jsx-831600802 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.fade-enter.jsx-831600802 {
    opacity: 0;
}

.fade-enter-active.jsx-831600802 {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.fade-exit.jsx-831600802 {
    opacity: 1;
}

.fade-exit-active.jsx-831600802 {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

#app-view-index.hide-toolbar #cinelove-toolbar, #app-view-index.hide-toolbar #cinelove-animation-box, #app-view-index.hide-toolbar .received-gifts-wrapper {
    display: none;
}

#app-view-index.hide-toolbar #blessing-box {
    visibility: hidden;
}

#app-view-index.hide-toolbar .page-container {
    margin-bottom: 0;
}

.toolbar-toggle-button {
    position: absolute;
    right: 8px;
    bottom: 70px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.toolbar-toggle-button:hover {
    background-color: #fff;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

#app-view-index.hide-toolbar .toolbar-toggle-button {
    bottom: 20px;
}

.watermark.jsx-3116023621 {
    position: absolute;
    bottom: 120px;
    right: 7px;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 20px;
    white-space: nowrap;
    height: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

.watermark.hide-toolbar.jsx-3116023621 {
    bottom: 50px;
}

.watermark.hide-toolbar-content.jsx-3116023621 {
    bottom: 70px;
}

.watermark-content.jsx-3116023621 {
    text-align: center;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 300;
}

.watermark-link.jsx-3116023621 {
    color: #414141;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.watermark-link.jsx-3116023621:hover {
    color: #000;
}

#app-view-index {
    height: 100% !important;
}

.pc-container #cinelove-toolbar .message-box-button {
    width: 130px;
}

.pc-container #cinelove-toolbar .message-box-button, .pc-container #cinelove-toolbar #animation-gift-preview-btn, .pc-container #cinelove-toolbar #cinelove-gift-button, .pc-container #cinelove-toolbar #cinelove-like-button {
    font-size: 12px;
    height: 35px;
    line-height: 35px;
    border-radius: 25px;
}

.pc-container #cinelove-toolbar #animation-gift-preview-btn span {
    font-size: 12px;
}

.pc-container #cinelove-toolbar #cinelove-like-button, .pc-container #cinelove-toolbar #cinelove-gift-button {
    width: 35px;
}

.pc-container .bar-messwin * {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.pc-container .bar-gift-new .select-type .option {
    font-size: 17px !important;
    cursor: pointer;
}

.pc-container .bar-gift-new .gift-li .title {
    font-size: 10px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    width: 70px;
}

.pc-container .bar-gift-new .give-tip {
    font-size: 10px !important;
}

.pc-container .bar-gift-new .give-username {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.pc-container .animate-slide-gift.gift-minibar * {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.pc-container #cinelove-canvas-preview, .pc-container #cinelove-canvas {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

a:where(.css-vorumu) {
    color: #1677ff;
    text-decoration: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    transition: color 0.3s;
    -webkit-text-decoration-skip: objects;
}

a:where(.css-vorumu):hover {
    color: #69b1ff;
}

a:where(.css-vorumu):active {
    color: #0958d9;
}

a:where(.css-vorumu):active, a:where(.css-vorumu):hover {
    text-decoration: none;
    outline: 0;
}

a:where(.css-vorumu):focus {
    text-decoration: none;
    outline: 0;
}

a:where(.css-vorumu)[disabled] {
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}

:where(.css-vorumu) a {
    color: #1677ff;
    text-decoration: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    transition: color 0.3s;
    -webkit-text-decoration-skip: objects;
}

:where(.css-vorumu) a:hover {
    color: #69b1ff;
}

:where(.css-vorumu) a:active {
    color: #0958d9;
}

:where(.css-vorumu) a:active, :where(.css-vorumu) a:hover {
    text-decoration: none;
    outline: 0;
}

:where(.css-vorumu) a:focus {
    text-decoration: none;
    outline: 0;
}

:where(.css-vorumu) a[disabled] {
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}

:where(.css-vorumu).anticon {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:where(.css-vorumu).anticon > * {
    line-height: 1;
}

:where(.css-vorumu).anticon svg {
    display: inline-block;
}

:where(.css-vorumu).anticon .anticon .anticon-icon {
    display: block;
}

:where(.css-vorumu).ant-spin {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 16px;
    box-sizing: border-box;
}

:where(.css-vorumu).ant-spin::before, :where(.css-vorumu).ant-spin::after {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-spin [class^="ant-spin"], :where(.css-vorumu).ant-spin [class*=" ant-spin"] {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-spin [class^="ant-spin"]::before, :where(.css-vorumu).ant-spin [class*=" ant-spin"]::before, :where(.css-vorumu).ant-spin [class^="ant-spin"]::after, :where(.css-vorumu).ant-spin [class*=" ant-spin"]::after {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-spin {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #3a9bff;
    font-size: 0;
    line-height: 1.5;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    position: absolute;
    display: none;
    text-align: center;
    vertical-align: middle;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

:where(.css-vorumu).ant-spin-spinning {
    position: relative;
    display: inline-block;
    opacity: 1;
}

:where(.css-vorumu).ant-spin .ant-spin-text {
    font-size: 16px;
    padding-top: 4px;
}

:where(.css-vorumu).ant-spin-fullscreen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    inset: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

:where(.css-vorumu).ant-spin-fullscreen-show {
    opacity: 1;
    visibility: visible;
}

:where(.css-vorumu).ant-spin-fullscreen .ant-spin .ant-spin-dot-holder {
    color: #fff;
}

:where(.css-vorumu).ant-spin-fullscreen .ant-spin .ant-spin-text {
    color: #fff;
}

:where(.css-vorumu).ant-spin-nested-loading {
    position: relative;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: 4;
    display: block;
    width: 100%;
    height: 100%;
    max-height: 400px;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    margin: -10px;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
    position: absolute;
    top: 50%;
    width: 100%;
    text-shadow: 0 1px 2px #ffffff;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
    margin-top: -20px;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
    margin: -7px;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
    padding-top: 1px;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
    margin-top: -17px;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
    margin: -16px;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
    padding-top: 10px;
}

:where(.css-vorumu).ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
    margin-top: -26px;
}

:where(.css-vorumu).ant-spin-nested-loading .ant-spin-container {
    position: relative;
    transition: opacity 0.3s;
}

:where(.css-vorumu).ant-spin-nested-loading .ant-spin-container::after {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 0;
    transition: all 0.3s;
    content: "";
    pointer-events: none;
}

:where(.css-vorumu).ant-spin-nested-loading .ant-spin-blur {
    clear: both;
    opacity: 0.5;
    user-select: none;
    pointer-events: none;
}

:where(.css-vorumu).ant-spin-nested-loading .ant-spin-blur::after {
    opacity: 0.4;
    pointer-events: auto;
}

:where(.css-vorumu).ant-spin-tip {
    color: rgba(0, 0, 0, 0.45);
}

:where(.css-vorumu).ant-spin .ant-spin-dot-holder {
    width: 1em;
    height: 1em;
    font-size: 20px;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: 50% 50%;
    line-height: 1;
    color: #3a9bff;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-holder-hidden {
    transform: scale(0.3);
    opacity: 0;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-progress {
    position: absolute;
    inset: 0;
}

:where(.css-vorumu).ant-spin .ant-spin-dot {
    position: relative;
    display: inline-block;
    font-size: 20px;
    width: 1em;
    height: 1em;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-item {
    position: absolute;
    display: block;
    width: 9px;
    height: 9px;
    background: currentColor;
    border-radius: 100%;
    transform: scale(0.75);
    transform-origin: 50% 50%;
    opacity: 0.3;
    animation-name: css-vorumu-antSpinMove;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-item:nth-child(1) {
    top: 0;
    inset-inline-start: 0;
    animation-delay: 0s;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-item:nth-child(2) {
    top: 0;
    inset-inline-end: 0;
    animation-delay: 0.4s;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-item:nth-child(3) {
    inset-inline-end: 0;
    bottom: 0;
    animation-delay: 0.8s;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-item:nth-child(4) {
    bottom: 0;
    inset-inline-start: 0;
    animation-delay: 1.2s;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-spin {
    transform: rotate(45deg);
    animation-name: css-vorumu-antRotate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-circle {
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease, opacity 0.3s ease;
    fill-opacity: 0;
    stroke: currentcolor;
}

:where(.css-vorumu).ant-spin .ant-spin-dot-circle-bg {
    stroke: rgba(0, 0, 0, 0.06);
}

:where(.css-vorumu).ant-spin-sm .ant-spin-dot, :where(.css-vorumu).ant-spin-sm .ant-spin-dot-holder {
    font-size: 14px;
}

:where(.css-vorumu).ant-spin-sm .ant-spin-dot-holder i {
    width: 6px;
    height: 6px;
}

:where(.css-vorumu).ant-spin-lg .ant-spin-dot, :where(.css-vorumu).ant-spin-lg .ant-spin-dot-holder {
    font-size: 32px;
}

:where(.css-vorumu).ant-spin-lg .ant-spin-dot-holder i {
    width: 14px;
    height: 14px;
}

:where(.css-vorumu).ant-spin.ant-spin-show-text .ant-spin-text {
    display: block;
}

@keyframes css-vorumu-antSpinMove {
    to {
        opacity: 1;
    }
}

@keyframes css-vorumu-antRotate {
    to {
        transform: rotate(405deg);
    }
}

:where(.css-vorumu)[class^="ant-radio"], :where(.css-vorumu)[class*=" ant-radio"] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 16px;
    box-sizing: border-box;
}

:where(.css-vorumu)[class^="ant-radio"]::before, :where(.css-vorumu)[class*=" ant-radio"]::before, :where(.css-vorumu)[class^="ant-radio"]::after, :where(.css-vorumu)[class*=" ant-radio"]::after {
    box-sizing: border-box;
}

:where(.css-vorumu)[class^="ant-radio"] [class^="ant-radio"], :where(.css-vorumu)[class*=" ant-radio"] [class^="ant-radio"], :where(.css-vorumu)[class^="ant-radio"] [class*=" ant-radio"], :where(.css-vorumu)[class*=" ant-radio"] [class*=" ant-radio"] {
    box-sizing: border-box;
}

:where(.css-vorumu)[class^="ant-radio"] [class^="ant-radio"]::before, :where(.css-vorumu)[class*=" ant-radio"] [class^="ant-radio"]::before, :where(.css-vorumu)[class^="ant-radio"] [class*=" ant-radio"]::before, :where(.css-vorumu)[class*=" ant-radio"] [class*=" ant-radio"]::before, :where(.css-vorumu)[class^="ant-radio"] [class^="ant-radio"]::after, :where(.css-vorumu)[class*=" ant-radio"] [class^="ant-radio"]::after, :where(.css-vorumu)[class^="ant-radio"] [class*=" ant-radio"]::after, :where(.css-vorumu)[class*=" ant-radio"] [class*=" ant-radio"]::after {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-radio-group {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.88);
    font-size: 0;
    line-height: 1.5;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    display: inline-block;
}

:where(.css-vorumu).ant-radio-group.ant-radio-group-rtl {
    direction: rtl;
}

:where(.css-vorumu).ant-radio-group.ant-radio-group-block {
    display: flex;
}

:where(.css-vorumu).ant-radio-group .ant-badge .ant-badge-count {
    z-index: 1;
}

:where(.css-vorumu).ant-radio-group > .ant-badge:not(:first-child) > .ant-button-wrapper {
    border-inline-start: none;
}

:where(.css-vorumu).ant-radio-wrapper {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.88);
    font-size: 16px;
    line-height: 1.5;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    display: inline-flex;
    align-items: baseline;
    margin-inline-start: 0;
    margin-inline-end: 8px;
    cursor: pointer;
}

:where(.css-vorumu).ant-radio-wrapper:last-child {
    margin-inline-end: 0;
}

:where(.css-vorumu).ant-radio-wrapper.ant-radio-wrapper-rtl {
    direction: rtl;
}

:where(.css-vorumu).ant-radio-wrapper-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-radio-wrapper::after {
    display: inline-block;
    width: 0;
    overflow: hidden;
    content: "\a0";
}

:where(.css-vorumu).ant-radio-wrapper-block {
    flex: 1;
    justify-content: center;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-checked::after {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #3a9bff;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    content: "";
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.88);
    font-size: 16px;
    line-height: 1.5;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    position: relative;
    display: inline-block;
    outline: none;
    cursor: pointer;
    align-self: center;
    border-radius: 50%;
}

.ant-radio-wrapper:hover :where(.css-vorumu).ant-radio-wrapper, :where(.css-vorumu).ant-radio-wrapper:hover .ant-radio-inner {
    border-color: #3a9bff;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-input:focus-visible + .ant-radio-inner {
    outline: 3px solid #b5e1ff;
    outline-offset: 1px;
    transition: outline-offset 0s, outline 0s;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio:hover::after, .ant-radio-wrapper:hover :where(.css-vorumu).ant-radio-wrapper::after {
    visibility: visible;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-inner {
    box-sizing: border-box;
    position: relative;
    inset-block-start: 0;
    inset-inline-start: 0;
    display: block;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-color: #d9d9d9;
    border-style: solid;
    border-width: 1px;
    border-radius: 50%;
    transition: all 0.2s;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-inner::after {
    box-sizing: border-box;
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    display: block;
    width: 18px;
    height: 18px;
    margin-block-start: -9px;
    margin-inline-start: -9px;
    background-color: #fff;
    border-block-start: 0;
    border-inline-start: 0;
    border-radius: 18px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    content: "";
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-input {
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-checked .ant-radio-inner {
    border-color: #3a9bff;
    background-color: #3a9bff;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-checked .ant-radio-inner::after {
    transform: scale(0.4444444444444444);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-disabled {
    cursor: not-allowed;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-disabled .ant-radio-inner {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: #d9d9d9;
    cursor: not-allowed;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-disabled .ant-radio-inner::after {
    background-color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-disabled .ant-radio-input {
    cursor: not-allowed;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-disabled .ant-radio-disabled + span {
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}

:where(.css-vorumu).ant-radio-wrapper .ant-radio-disabled.ant-radio-checked .ant-radio-inner::after {
    transform: scale(0.5555555555555556);
}

:where(.css-vorumu).ant-radio-wrapper span.ant-radio + * {
    padding-inline-start: 8px;
    padding-inline-end: 8px;
}

:where(.css-vorumu).ant-radio-button-wrapper {
    position: relative;
    display: inline-block;
    height: 32px;
    margin: 0;
    padding-inline: 15px;
    padding-block: 0;
    color: rgba(0, 0, 0, 0.88);
    font-size: 16px;
    line-height: 30px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-block-start-width: 1.02px;
    border-inline-start-width: 0;
    border-inline-end-width: 1px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

:where(.css-vorumu).ant-radio-button-wrapper a {
    color: rgba(0, 0, 0, 0.88);
}

:where(.css-vorumu).ant-radio-button-wrapper > .ant-radio-button {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

:where(.css-vorumu).ant-radio-button-wrapper:not(:first-child)::before {
    position: absolute;
    inset-block-start: -1px;
    inset-inline-start: -1px;
    display: block;
    box-sizing: content-box;
    width: 1px;
    height: 100%;
    padding-block: 1px;
    padding-inline: 0;
    background-color: #d9d9d9;
    transition: background-color 0.3s;
    content: "";
}

:where(.css-vorumu).ant-radio-button-wrapper:first-child {
    border-inline-start: 1px solid #d9d9d9;
    border-start-start-radius: 6px;
    border-end-start-radius: 6px;
}

:where(.css-vorumu).ant-radio-button-wrapper:last-child {
    border-start-end-radius: 6px;
    border-end-end-radius: 6px;
}

:where(.css-vorumu).ant-radio-button-wrapper:first-child:last-child {
    border-radius: 6px;
}

.ant-radio-group-large :where(.css-vorumu).ant-radio-button-wrapper {
    height: 40px;
    font-size: 18px;
    line-height: 38px;
}

.ant-radio-group-large :where(.css-vorumu).ant-radio-button-wrapper:first-child {
    border-start-start-radius: 8px;
    border-end-start-radius: 8px;
}

.ant-radio-group-large :where(.css-vorumu).ant-radio-button-wrapper:last-child {
    border-start-end-radius: 8px;
    border-end-end-radius: 8px;
}

.ant-radio-group-small :where(.css-vorumu).ant-radio-button-wrapper {
    height: 24px;
    padding-inline: 7px;
    padding-block: 0;
    line-height: 22px;
}

.ant-radio-group-small :where(.css-vorumu).ant-radio-button-wrapper:first-child {
    border-start-start-radius: 4px;
    border-end-start-radius: 4px;
}

.ant-radio-group-small :where(.css-vorumu).ant-radio-button-wrapper:last-child {
    border-start-end-radius: 4px;
    border-end-end-radius: 4px;
}

:where(.css-vorumu).ant-radio-button-wrapper:hover {
    position: relative;
    color: #3a9bff;
}

:where(.css-vorumu).ant-radio-button-wrapper:has(:focus-visible) {
    outline: 3px solid #b5e1ff;
    outline-offset: 1px;
    transition: outline-offset 0s, outline 0s;
}

:where(.css-vorumu).ant-radio-button-wrapper .ant-radio-inner, :where(.css-vorumu).ant-radio-button-wrapper input[type='checkbox'], :where(.css-vorumu).ant-radio-button-wrapper input[type='radio'] {
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

:where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
    z-index: 1;
    color: #3a9bff;
    background: #ffffff;
    border-color: #3a9bff;
}

:where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
    background-color: #3a9bff;
}

:where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
    border-color: #3a9bff;
}

:where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
    color: #63b6ff;
    border-color: #63b6ff;
}

:where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before {
    background-color: #63b6ff;
}

:where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
    color: #277ad9;
    border-color: #277ad9;
}

:where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before {
    background-color: #277ad9;
}

.ant-radio-group-solid :where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
    color: #fff;
    background: #3a9bff;
    border-color: #3a9bff;
}

.ant-radio-group-solid :where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
    color: #fff;
    background: #63b6ff;
    border-color: #63b6ff;
}

.ant-radio-group-solid :where(.css-vorumu).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
    color: #fff;
    background: #277ad9;
    border-color: #277ad9;
}

:where(.css-vorumu).ant-radio-button-wrapper-disabled {
    color: rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 0, 0, 0.04);
    border-color: #d9d9d9;
    cursor: not-allowed;
}

:where(.css-vorumu).ant-radio-button-wrapper-disabled:first-child, :where(.css-vorumu).ant-radio-button-wrapper-disabled:hover {
    color: rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 0, 0, 0.04);
    border-color: #d9d9d9;
}

:where(.css-vorumu).ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
    color: rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 0, 0, 0.15);
    border-color: #d9d9d9;
    box-shadow: none;
}

:where(.css-vorumu).ant-radio-button-wrapper-block {
    flex: 1;
    text-align: center;
}

:where(.css-vorumu).ant-wave {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 16px;
    box-sizing: border-box;
}

:where(.css-vorumu).ant-wave::before, :where(.css-vorumu).ant-wave::after {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-wave [class^="ant-wave"], :where(.css-vorumu).ant-wave [class*=" ant-wave"] {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-wave [class^="ant-wave"]::before, :where(.css-vorumu).ant-wave [class*=" ant-wave"]::before, :where(.css-vorumu).ant-wave [class^="ant-wave"]::after, :where(.css-vorumu).ant-wave [class*=" ant-wave"]::after {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-wave {
    position: absolute;
    background: transparent;
    pointer-events: none;
    box-sizing: border-box;
    color: var(--wave-color, #3a9bff);
    box-shadow: 0 0 0 0 currentcolor;
    opacity: 0.2;
}

:where(.css-vorumu).ant-wave.wave-motion-appear {
    transition: box-shadow 0.4s cubic-bezier(0.08, 0.82, 0.17, 1), opacity 2s cubic-bezier(0.08, 0.82, 0.17, 1);
}

:where(.css-vorumu).ant-wave.wave-motion-appear-active {
    box-shadow: 0 0 0 6px currentcolor;
    opacity: 0;
}

:where(.css-vorumu).ant-wave.wave-motion-appear.wave-quick {
    transition: box-shadow 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

:where(.css-vorumu).ant-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 16px;
    box-sizing: border-box;
}

:where(.css-vorumu).ant-btn::before, :where(.css-vorumu).ant-btn::after {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-btn [class^="ant-btn"], :where(.css-vorumu).ant-btn [class*=" ant-btn"] {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-btn [class^="ant-btn"]::before, :where(.css-vorumu).ant-btn [class*=" ant-btn"]::before, :where(.css-vorumu).ant-btn [class^="ant-btn"]::after, :where(.css-vorumu).ant-btn [class*=" ant-btn"]::after {
    box-sizing: border-box;
}

:where(.css-vorumu).ant-btn {
    outline: none;
    position: relative;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    user-select: none;
    touch-action: manipulation;
    color: rgba(0, 0, 0, 0.88);
}

:where(.css-vorumu).ant-btn:disabled > * {
    pointer-events: none;
}

:where(.css-vorumu).ant-btn .ant-btn-icon > svg {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:where(.css-vorumu).ant-btn .ant-btn-icon > svg > * {
    line-height: 1;
}

:where(.css-vorumu).ant-btn .ant-btn-icon > svg svg {
    display: inline-block;
}

:where(.css-vorumu).ant-btn > a {
    color: currentColor;
}

:where(.css-vorumu).ant-btn:not(:disabled):focus-visible {
    outline: 3px solid #b5e1ff;
    outline-offset: 1px;
    transition: outline-offset 0s, outline 0s;
}

:where(.css-vorumu).ant-btn.ant-btn-two-chinese-chars::first-letter {
    letter-spacing: 0.34em;
}

:where(.css-vorumu).ant-btn.ant-btn-two-chinese-chars > *:not(.anticon) {
    margin-inline-end: -0.34em;
    letter-spacing: 0.34em;
}

:where(.css-vorumu).ant-btn.ant-btn-icon-only {
    padding-inline: 0;
}

:where(.css-vorumu).ant-btn.ant-btn-icon-only.ant-btn-compact-item {
    flex: none;
}

:where(.css-vorumu).ant-btn.ant-btn-icon-only.ant-btn-round {
    width: auto;
}

:where(.css-vorumu).ant-btn.ant-btn-loading {
    opacity: 0.65;
    cursor: default;
}

:where(.css-vorumu).ant-btn .ant-btn-loading-icon {
    transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

:where(.css-vorumu).ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-appear-start, :where(.css-vorumu).ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-enter-start {
    margin-inline-end: -8px;
}

:where(.css-vorumu).ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-appear-active, :where(.css-vorumu).ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-enter-active {
    margin-inline-end: 0;
}

:where(.css-vorumu).ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-leave-start {
    margin-inline-end: 0;
}

:where(.css-vorumu).ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-leave-active {
    margin-inline-end: -8px;
}

:where(.css-vorumu).ant-btn-icon-end {
    flex-direction: row-reverse;
}

:where(.css-vorumu).ant-btn-icon-end .ant-btn-loading-icon-motion-appear-start, :where(.css-vorumu).ant-btn-icon-end .ant-btn-loading-icon-motion-enter-start {
    margin-inline-start: -8px;
}

:where(.css-vorumu).ant-btn-icon-end .ant-btn-loading-icon-motion-appear-active, :where(.css-vorumu).ant-btn-icon-end .ant-btn-loading-icon-motion-enter-active {
    margin-inline-start: 0;
}

:where(.css-vorumu).ant-btn-icon-end .ant-btn-loading-icon-motion-leave-start {
    margin-inline-start: 0;
}

:where(.css-vorumu).ant-btn-icon-end .ant-btn-loading-icon-motion-leave-active {
    margin-inline-start: -8px;
}

:where(.css-vorumu).ant-btn {
    font-size: 16px;
    height: 32px;
    padding: 0px 15px;
    border-radius: 6px;
}

:where(.css-vorumu).ant-btn.ant-btn-icon-only {
    width: 32px;
}

:where(.css-vorumu).ant-btn.ant-btn-icon-only .anticon {
    font-size: inherit;
}

:where(.css-vorumu).ant-btn.ant-btn-circle.ant-btn {
    min-width: 32px;
    padding-inline-start: 0;
    padding-inline-end: 0;
    border-radius: 50%;
}

:where(.css-vorumu).ant-btn.ant-btn-round.ant-btn {
    border-radius: 32px;
    padding-inline-start: 16px;
    padding-inline-end: 16px;
}

:where(.css-vorumu).ant-btn-sm {
    font-size: 16px;
    height: 24px;
    padding: 0px 7px;
    border-radius: 4px;
}

:where(.css-vorumu).ant-btn-sm.ant-btn-icon-only {
    width: 24px;
}

:where(.css-vorumu).ant-btn-sm.ant-btn-icon-only .anticon {
    font-size: inherit;
}

:where(.css-vorumu).ant-btn.ant-btn-circle.ant-btn-sm {
    min-width: 24px;
    padding-inline-start: 0;
    padding-inline-end: 0;
    border-radius: 50%;
}

:where(.css-vorumu).ant-btn.ant-btn-round.ant-btn-sm {
    border-radius: 24px;
    padding-inline-start: 12px;
    padding-inline-end: 12px;
}

:where(.css-vorumu).ant-btn-lg {
    font-size: 18px;
    height: 40px;
    padding: 0px 15px;
    border-radius: 8px;
}

:where(.css-vorumu).ant-btn-lg.ant-btn-icon-only {
    width: 40px;
}

:where(.css-vorumu).ant-btn-lg.ant-btn-icon-only .anticon {
    font-size: inherit;
}

:where(.css-vorumu).ant-btn.ant-btn-circle.ant-btn-lg {
    min-width: 40px;
    padding-inline-start: 0;
    padding-inline-end: 0;
    border-radius: 50%;
}

:where(.css-vorumu).ant-btn.ant-btn-round.ant-btn-lg {
    border-radius: 40px;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}

:where(.css-vorumu).ant-btn.ant-btn-block {
    width: 100%;
}

:where(.css-vorumu).ant-btn-color-default {
    color: rgba(0, 0, 0, 0.88);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-solid {
    color: #fff;
    background: rgb(0, 0, 0);
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-default.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    color: #fff;
    background: rgba(0, 0, 0, 0.95);
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-filled {
    box-shadow: none;
    background: rgba(0, 0, 0, 0.04);
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-default.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: rgba(0, 0, 0, 0.06);
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: rgba(0, 0, 0, 0.15);
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-background-ghost {
    color: #ffffff;
    background: transparent;
    border-color: #ffffff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-background-ghost:not(:disabled):not(.ant-btn-disabled):hover {
    background: transparent;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-background-ghost:not(:disabled):not(.ant-btn-disabled):active {
    background: transparent;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-background-ghost:disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
    border-color: #d9d9d9;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-link {
    color: rgba(0, 0, 0, 0.88);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-default.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #69b1ff;
    background: transparent;
}

:where(.css-vorumu).ant-btn-color-default.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #0958d9;
}

:where(.css-vorumu).ant-btn-color-primary {
    color: #3a9bff;
    box-shadow: 0 2px 0 rgba(5, 172, 255, 0.06);
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-dashed {
    border-color: #3a9bff;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #63b6ff;
    border-color: #63b6ff;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #277ad9;
    border-color: #277ad9;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-filled {
    box-shadow: none;
    background: #f0faff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #def3ff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #b5e1ff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-text {
    color: #3a9bff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #63b6ff;
    background: #f0faff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #277ad9;
    background: #b5e1ff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-link {
    color: #3a9bff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #63b6ff;
    background: transparent;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #277ad9;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-background-ghost {
    color: #3a9bff;
    background: transparent;
    border-color: #3a9bff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-background-ghost:not(:disabled):not(.ant-btn-disabled):hover {
    background: transparent;
    color: #63b6ff;
    border-color: #63b6ff;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-background-ghost:not(:disabled):not(.ant-btn-disabled):active {
    background: transparent;
    color: #277ad9;
    border-color: #277ad9;
}

:where(.css-vorumu).ant-btn-color-primary.ant-btn-background-ghost:disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
    border-color: #d9d9d9;
}

:where(.css-vorumu).ant-btn-color-dangerous {
    color: #ff4d4f;
    box-shadow: 0 2px 0 rgba(255, 38, 5, 0.06);
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-solid {
    color: #fff;
    background: #ff4d4f;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ff7875;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #d9363e;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-dashed {
    border-color: #ff4d4f;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff7875;
    border-color: #ffa39e;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #d9363e;
    border-color: #d9363e;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-filled {
    box-shadow: none;
    background: #fff2f0;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffdfdc;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #ffccc7;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-text {
    color: #ff4d4f;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff7875;
    background: #fff2f0;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #ff7875;
    background: #ffccc7;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-link {
    color: #ff4d4f;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff7875;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #d9363e;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-background-ghost {
    color: #ff4d4f;
    background: transparent;
    border-color: #ff4d4f;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-background-ghost:not(:disabled):not(.ant-btn-disabled):hover {
    background: transparent;
    color: #ff7875;
    border-color: #ff7875;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-background-ghost:not(:disabled):not(.ant-btn-disabled):active {
    background: transparent;
    color: #d9363e;
    border-color: #d9363e;
}

:where(.css-vorumu).ant-btn-color-dangerous.ant-btn-background-ghost:disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
    border-color: #d9d9d9;
}

:where(.css-vorumu).ant-btn-color-link.ant-btn-variant-link {
    color: #1677ff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-link.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-link.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-link.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #69b1ff;
}

:where(.css-vorumu).ant-btn-color-link.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #0958d9;
}

:where(.css-vorumu).ant-btn-color-link.ant-btn-background-ghost {
    color: #1677ff;
    background: transparent;
    border-color: #1677ff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-link.ant-btn-background-ghost:not(:disabled):not(.ant-btn-disabled):hover {
    background: transparent;
    color: #69b1ff;
    border-color: #69b1ff;
}

:where(.css-vorumu).ant-btn-color-link.ant-btn-background-ghost:not(:disabled):not(.ant-btn-disabled):active {
    background: transparent;
    color: #0958d9;
    border-color: #0958d9;
}

:where(.css-vorumu).ant-btn-color-link.ant-btn-background-ghost:disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
    border-color: #d9d9d9;
}

:where(.css-vorumu).ant-btn-color-blue {
    color: #1677ff;
    box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-solid {
    color: #fff;
    background: #1677ff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #4096ff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #0958d9;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-dashed {
    border-color: #1677ff;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #4096ff;
    border-color: #4096ff;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #0958d9;
    border-color: #0958d9;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-filled {
    box-shadow: none;
    background: #e6f4ff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #bae0ff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #91caff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-link {
    color: #1677ff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #4096ff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #0958d9;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-text {
    color: #1677ff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #4096ff;
    background: #e6f4ff;
}

:where(.css-vorumu).ant-btn-color-blue.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #0958d9;
    background: #91caff;
}

:where(.css-vorumu).ant-btn-color-purple {
    color: #722ed1;
    box-shadow: 0 2px 0 rgba(155, 5, 255, 0.06);
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-solid {
    color: #fff;
    background: #722ed1;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #9254de;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #531dab;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-dashed {
    border-color: #722ed1;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #9254de;
    border-color: #9254de;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #531dab;
    border-color: #531dab;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-filled {
    box-shadow: none;
    background: #f9f0ff;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #efdbff;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #d3adf7;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-link {
    color: #722ed1;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #9254de;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #531dab;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-text {
    color: #722ed1;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #9254de;
    background: #f9f0ff;
}

:where(.css-vorumu).ant-btn-color-purple.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #531dab;
    background: #d3adf7;
}

:where(.css-vorumu).ant-btn-color-cyan {
    color: #13c2c2;
    box-shadow: 0 2px 0 rgba(5, 255, 215, 0.1);
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-solid {
    color: #fff;
    background: #13c2c2;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #36cfc9;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #08979c;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-dashed {
    border-color: #13c2c2;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #36cfc9;
    border-color: #36cfc9;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #08979c;
    border-color: #08979c;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-filled {
    box-shadow: none;
    background: #e6fffb;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #b5f5ec;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #87e8de;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-link {
    color: #13c2c2;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #36cfc9;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #08979c;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-text {
    color: #13c2c2;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #36cfc9;
    background: #e6fffb;
}

:where(.css-vorumu).ant-btn-color-cyan.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #08979c;
    background: #87e8de;
}

:where(.css-vorumu).ant-btn-color-green {
    color: #52c41a;
    box-shadow: 0 2px 0 rgba(142, 255, 30, 0.08);
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-solid {
    color: #fff;
    background: #52c41a;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #73d13d;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #389e0d;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-dashed {
    border-color: #52c41a;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #73d13d;
    border-color: #73d13d;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #389e0d;
    border-color: #389e0d;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-filled {
    box-shadow: none;
    background: #f6ffed;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #d9f7be;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #b7eb8f;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-link {
    color: #52c41a;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #73d13d;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #389e0d;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-text {
    color: #52c41a;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-green.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #73d13d;
    background: #f6ffed;
}

:where(.css-vorumu).ant-btn-color-green.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #389e0d;
    background: #b7eb8f;
}

:where(.css-vorumu).ant-btn-color-magenta {
    color: #eb2f96;
    box-shadow: 0 2px 0 rgba(255, 5, 105, 0.06);
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-solid {
    color: #fff;
    background: #eb2f96;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #f759ab;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #c41d7f;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-dashed {
    border-color: #eb2f96;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #f759ab;
    border-color: #f759ab;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #c41d7f;
    border-color: #c41d7f;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-filled {
    box-shadow: none;
    background: #fff0f6;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffd6e7;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #ffadd2;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-link {
    color: #eb2f96;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #f759ab;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #c41d7f;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-text {
    color: #eb2f96;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #f759ab;
    background: #fff0f6;
}

:where(.css-vorumu).ant-btn-color-magenta.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #c41d7f;
    background: #ffadd2;
}

:where(.css-vorumu).ant-btn-color-pink {
    color: #eb2f96;
    box-shadow: 0 2px 0 rgba(255, 5, 105, 0.06);
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-solid {
    color: #fff;
    background: #eb2f96;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #f759ab;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #c41d7f;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-dashed {
    border-color: #eb2f96;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #f759ab;
    border-color: #f759ab;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #c41d7f;
    border-color: #c41d7f;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-filled {
    box-shadow: none;
    background: #fff0f6;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffd6e7;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #ffadd2;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-link {
    color: #eb2f96;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #f759ab;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #c41d7f;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-text {
    color: #eb2f96;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #f759ab;
    background: #fff0f6;
}

:where(.css-vorumu).ant-btn-color-pink.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #c41d7f;
    background: #ffadd2;
}

:where(.css-vorumu).ant-btn-color-red {
    color: #f5222d;
    box-shadow: 0 2px 0 rgba(255, 22, 5, 0.06);
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-solid {
    color: #fff;
    background: #f5222d;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ff4d4f;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #cf1322;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-dashed {
    border-color: #f5222d;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff4d4f;
    border-color: #ff4d4f;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #cf1322;
    border-color: #cf1322;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-filled {
    box-shadow: none;
    background: #fff1f0;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffccc7;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #ffa39e;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-link {
    color: #f5222d;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff4d4f;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #cf1322;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-text {
    color: #f5222d;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-red.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff4d4f;
    background: #fff1f0;
}

:where(.css-vorumu).ant-btn-color-red.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #cf1322;
    background: #ffa39e;
}

:where(.css-vorumu).ant-btn-color-orange {
    color: #fa8c16;
    box-shadow: 0 2px 0 rgba(255, 175, 5, 0.1);
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-solid {
    color: #fff;
    background: #fa8c16;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffa940;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #d46b08;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-dashed {
    border-color: #fa8c16;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffa940;
    border-color: #ffa940;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #d46b08;
    border-color: #d46b08;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-filled {
    box-shadow: none;
    background: #fff7e6;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffe7ba;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #ffd591;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-link {
    color: #fa8c16;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffa940;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #d46b08;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-text {
    color: #fa8c16;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffa940;
    background: #fff7e6;
}

:where(.css-vorumu).ant-btn-color-orange.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #d46b08;
    background: #ffd591;
}

:where(.css-vorumu).ant-btn-color-yellow {
    color: #fadb14;
    box-shadow: 0 2px 0 rgba(245, 255, 5, 0.1);
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-solid {
    color: #fff;
    background: #fadb14;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffec3d;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #d4b106;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-dashed {
    border-color: #fadb14;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffec3d;
    border-color: #ffec3d;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #d4b106;
    border-color: #d4b106;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-filled {
    box-shadow: none;
    background: #feffe6;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffffb8;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #fffb8f;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-link {
    color: #fadb14;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffec3d;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #d4b106;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-text {
    color: #fadb14;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffec3d;
    background: #feffe6;
}

:where(.css-vorumu).ant-btn-color-yellow.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #d4b106;
    background: #fffb8f;
}

:where(.css-vorumu).ant-btn-color-volcano {
    color: #fa541c;
    box-shadow: 0 2px 0 rgba(255, 125, 25, 0.1);
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-solid {
    color: #fff;
    background: #fa541c;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ff7a45;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #d4380d;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-dashed {
    border-color: #fa541c;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff7a45;
    border-color: #ff7a45;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #d4380d;
    border-color: #d4380d;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-filled {
    box-shadow: none;
    background: #fff2e8;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffd8bf;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #ffbb96;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-link {
    color: #fa541c;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff7a45;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #d4380d;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-text {
    color: #fa541c;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ff7a45;
    background: #fff2e8;
}

:where(.css-vorumu).ant-btn-color-volcano.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #d4380d;
    background: #ffbb96;
}

:where(.css-vorumu).ant-btn-color-geekblue {
    color: #2f54eb;
    box-shadow: 0 2px 0 rgba(5, 88, 255, 0.06);
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-solid {
    color: #fff;
    background: #2f54eb;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #597ef7;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #1d39c4;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-dashed {
    border-color: #2f54eb;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #597ef7;
    border-color: #597ef7;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #1d39c4;
    border-color: #1d39c4;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-filled {
    box-shadow: none;
    background: #f0f5ff;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #d6e4ff;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #adc6ff;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-link {
    color: #2f54eb;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #597ef7;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #1d39c4;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-text {
    color: #2f54eb;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #597ef7;
    background: #f0f5ff;
}

:where(.css-vorumu).ant-btn-color-geekblue.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #1d39c4;
    background: #adc6ff;
}

:where(.css-vorumu).ant-btn-color-lime {
    color: #a0d911;
    box-shadow: 0 2px 0 rgba(225, 255, 5, 0.1);
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-solid {
    color: #fff;
    background: #a0d911;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #bae637;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #7cb305;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-dashed {
    border-color: #a0d911;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #bae637;
    border-color: #bae637;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #7cb305;
    border-color: #7cb305;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-filled {
    box-shadow: none;
    background: #fcffe6;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #f4ffb8;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #eaff8f;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-link {
    color: #a0d911;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #bae637;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #7cb305;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-text {
    color: #a0d911;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #bae637;
    background: #fcffe6;
}

:where(.css-vorumu).ant-btn-color-lime.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #7cb305;
    background: #eaff8f;
}

:where(.css-vorumu).ant-btn-color-gold {
    color: #faad14;
    box-shadow: 0 2px 0 rgba(255, 215, 5, 0.1);
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-solid {
    color: #fff;
    background: #faad14;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #ffc53d;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #d48806;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-dashed {
    border-color: #faad14;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffc53d;
    border-color: #ffc53d;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #d48806;
    border-color: #d48806;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-dashed {
    border-style: dashed;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-filled {
    box-shadow: none;
    background: #fffbe6;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-filled:disabled, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-filled.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
    background: #fff1b8;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):active {
    background: #ffe58f;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-link {
    color: #faad14;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffc53d;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #d48806;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-text {
    color: #faad14;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: #ffc53d;
    background: #fffbe6;
}

:where(.css-vorumu).ant-btn-color-gold.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: #d48806;
    background: #ffe58f;
}

:where(.css-vorumu).ant-btn-variant-outlined, :where(.css-vorumu).ant-btn-variant-dashed {
    border-color: #d9d9d9;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-variant-outlined:disabled, :where(.css-vorumu).ant-btn-variant-dashed:disabled, :where(.css-vorumu).ant-btn-variant-outlined.ant-btn-disabled, :where(.css-vorumu).ant-btn-variant-dashed.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover, :where(.css-vorumu).ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):hover {
    color: #63b6ff;
    border-color: #63b6ff;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):active, :where(.css-vorumu).ant-btn-variant-dashed:not(:disabled):not(.ant-btn-disabled):active {
    color: #277ad9;
    border-color: #277ad9;
    background: #ffffff;
}

:where(.css-vorumu).ant-btn-variant-text {
    color: rgba(0, 0, 0, 0.88);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-variant-text:disabled, :where(.css-vorumu).ant-btn-variant-text.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
    color: rgba(0, 0, 0, 0.88);
    background: rgba(0, 0, 0, 0.04);
}

:where(.css-vorumu).ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):active {
    color: rgba(0, 0, 0, 0.88);
    background: rgba(0, 0, 0, 0.15);
}

:where(.css-vorumu).ant-btn-variant-solid {
    color: #fff;
    background: #3a9bff;
}

:where(.css-vorumu).ant-btn-variant-solid:disabled, :where(.css-vorumu).ant-btn-variant-solid.ant-btn-disabled {
    cursor: not-allowed;
    border-color: #d9d9d9;
    color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
    background: #63b6ff;
    color: #fff;
}

:where(.css-vorumu).ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):active {
    background: #277ad9;
    color: #fff;
}

:where(.css-vorumu).ant-btn-variant-link {
    color: #1677ff;
    box-shadow: none;
}

:where(.css-vorumu).ant-btn-variant-link:disabled, :where(.css-vorumu).ant-btn-variant-link.ant-btn-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
}

:where(.css-vorumu).ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):hover {
    color: #69b1ff;
    background: transparent;
}

:where(.css-vorumu).ant-btn-variant-link:not(:disabled):not(.ant-btn-disabled):active {
    color: #0958d9;
}

:where(.css-vorumu).ant-btn-group {
    position: relative;
    display: inline-flex;
}

:where(.css-vorumu).ant-btn-group > span:not(:last-child), :where(.css-vorumu).ant-btn-group > .ant-btn:not(:last-child), :where(.css-vorumu).ant-btn-group > span:not(:last-child) > .ant-btn, :where(.css-vorumu).ant-btn-group > .ant-btn:not(:last-child) > .ant-btn {
    border-start-end-radius: 0;
    border-end-end-radius: 0;
}

:where(.css-vorumu).ant-btn-group > span:not(:first-child), :where(.css-vorumu).ant-btn-group > .ant-btn:not(:first-child) {
    margin-inline-start: -1px;
}

:where(.css-vorumu).ant-btn-group > span:not(:first-child), :where(.css-vorumu).ant-btn-group > .ant-btn:not(:first-child), :where(.css-vorumu).ant-btn-group > span:not(:first-child) > .ant-btn, :where(.css-vorumu).ant-btn-group > .ant-btn:not(:first-child) > .ant-btn {
    border-start-start-radius: 0;
    border-end-start-radius: 0;
}

:where(.css-vorumu).ant-btn-group .ant-btn {
    position: relative;
    z-index: 1;
}

:where(.css-vorumu).ant-btn-group .ant-btn:hover, :where(.css-vorumu).ant-btn-group .ant-btn:focus, :where(.css-vorumu).ant-btn-group .ant-btn:active {
    z-index: 2;
}

:where(.css-vorumu).ant-btn-group .ant-btn[disabled] {
    z-index: 0;
}

:where(.css-vorumu).ant-btn-group .ant-btn-icon-only {
    font-size: 16px;
}

:where(.css-vorumu).ant-btn-group > span:not(:last-child):not(:disabled), :where(.css-vorumu).ant-btn-group > .ant-btn-primary:not(:last-child):not(:disabled), :where(.css-vorumu).ant-btn-group > span:not(:last-child) > .ant-btn-primary:not(:disabled), :where(.css-vorumu).ant-btn-group > .ant-btn-primary:not(:last-child) > .ant-btn-primary:not(:disabled) {
    border-inline-end-color: #63b6ff;
}

:where(.css-vorumu).ant-btn-group > span:not(:first-child):not(:disabled), :where(.css-vorumu).ant-btn-group > .ant-btn-primary:not(:first-child):not(:disabled), :where(.css-vorumu).ant-btn-group > span:not(:first-child) > .ant-btn-primary:not(:disabled), :where(.css-vorumu).ant-btn-group > .ant-btn-primary:not(:first-child) > .ant-btn-primary:not(:disabled) {
    border-inline-start-color: #63b6ff;
}

:where(.css-vorumu).ant-btn-group > span:not(:last-child):not(:disabled), :where(.css-vorumu).ant-btn-group > .ant-btn-danger:not(:last-child):not(:disabled), :where(.css-vorumu).ant-btn-group > span:not(:last-child) > .ant-btn-danger:not(:disabled), :where(.css-vorumu).ant-btn-group > .ant-btn-danger:not(:last-child) > .ant-btn-danger:not(:disabled) {
    border-inline-end-color: #ff7875;
}

:where(.css-vorumu).ant-btn-group > span:not(:first-child):not(:disabled), :where(.css-vorumu).ant-btn-group > .ant-btn-danger:not(:first-child):not(:disabled), :where(.css-vorumu).ant-btn-group > span:not(:first-child) > .ant-btn-danger:not(:disabled), :where(.css-vorumu).ant-btn-group > .ant-btn-danger:not(:first-child) > .ant-btn-danger:not(:disabled) {
    border-inline-start-color: #ff7875;
}

.anticon {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.anticon > * {
    line-height: 1;
}

.anticon svg {
    display: inline-block;
}

.anticon .anticon .anticon-icon {
    display: block;
}

.data-ant-cssinjs-cache-path {
    content: "24yfv9|ant-design-icons|anticon:1sfodcy;mt3vdf|Shared|ant:mfez0h;mt3vdf|Spin-Spin|ant-spin|anticon:apupsv;mt3vdf|Radio-Radio|ant-radio|anticon:1tovpw5;mt3vdf|Wave-Wave|ant-wave|anticon:z6wgzq;mt3vdf|Button-Button|ant-btn|anticon:2nl52m";
}

.text-box-component.jsx-1828971989 {
    height: auto !important;
    position: relative;
}

.text-box-editing.jsx-1828971989::after {
    content: " ";
    box-sizing: content-box;
    border: 1px solid var(--color-primary);
    position: absolute;
    pointer-events: none;
    display: block;
    inset: 0px;
    z-index: 1;
}

.text-box-component.component-hovered.jsx-1828971989::after {
    content: " ";
    box-sizing: content-box;
    border: 1px dashed var(--color-primary);
    position: absolute;
    pointer-events: none;
    inset: 0px;
    display: block;
}

.photo-component.jsx-1944329802 {
    width: 100%;
    height: 100%;
}

.photo-component.jsx-1944329802 img.jsx-1944329802 {
    width: 100%;
    height: 100%;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

.photo-component.jsx-1944329802 .photo-bg-wrap.jsx-1944329802 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-clip: border-box;
}

.material-component.jsx-3557960200 {
    width: 100%;
    height: 100%;
}

.material-component.jsx-3557960200 img.jsx-3557960200 {
    width: 100%;
    height: 100%;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

.material-component.jsx-3557960200 .photo-bg-wrap.jsx-3557960200 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-clip: border-box;
}

.text-box-component.jsx-17337941 {
    height: auto !important;
    position: relative;
}

.text-box-editing.jsx-17337941::after {
    content: " ";
    box-sizing: content-box;
    border: 1px solid var(--color-primary);
    position: absolute;
    pointer-events: none;
    display: block;
    inset: -2px;
    z-index: 1;
}

.text-box-component.component-hovered.jsx-17337941::after {
    content: " ";
    box-sizing: content-box;
    border: 1px dashed var(--color-primary);
    position: absolute;
    pointer-events: none;
    inset: -2px;
    display: block;
}

.rsvp-form-container:hover {
    z-index: 9999999 !important;
}

.simple-map-container.jsx-1691086756 {
    position: relative;
    overflow: hidden;
}

#main-scroll-container #root-page-container::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    transition: 0.2s;
}

#main-scroll-container #root-page-container:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.view-map {
    display: inline-block;
    background-color: rgb(96, 2, 2);
    line-height: 1.6;
    color: rgb(255, 255, 255);
    font-family: "Maven Pro", sans-serif !important;
    font-size: 12px;
    border-radius: 100px;
    padding: 3px 10px;
    margin-top: 5px;
}

.view-map:hover {
    color: rgb(255, 255, 255);
}

.view-map svg {
    width: 15px;
    display: inline-block;
}

.view-map span {
    display: inline-block;
}

.strong {
    font-weight: bold;
}

.map-box {
    height: auto;
    width: 100%;
    min-width: 20px;
    color: rgb(145, 54, 54);
    font-size: 14px;
    text-shadow: rgba(0, 0, 0, 0) 0px 0px 2px;
    font-family: Quicksand;
    text-align: center;
    line-height: 1.48;
    letter-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    font-style: normal;
    overflow: hidden;
    word-break: break-word;
}

.form-box {
    padding: 10px 35px;
    color: rgb(180, 63, 63);
    font-size: 16px;
    text-shadow: rgba(0, 0, 0, 0) 0px 0px 2px;
    font-weight: bold;
    font-family: Quicksand;
    text-align: center;
    line-height: normal;
    letter-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    font-style: normal;
    overflow: hidden;
    word-break: break-word;
    margin-top: 15px;
}

.form-link:hover {
    text-decoration: underline;
}

.hand-point {
    height: 50px;
    width: 58px;
    position: absolute;
    top: 132px;
    left: 190px;
    z-index: 9999999999;
    background-size: cover;
    animation-name: pulse;
    animation-delay: 0s;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) rotate(1deg);
    }

    100% {
        transform: scale(1) rotate(-1deg);
    }
}

.open-popup-btn {
    width: 180px;
}

.qrcode-boxes {
    display: flex; /* Makes the container a flex container */
    justify-content: space-around; /* Distributes space around the items */
    align-items: center; /* Vertically centers the items */
}

.qrcode-box {
    width: 50%;
    margin: 5px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 5px;
}

.download-btn {
    display: inline-block;
    background-color: rgb(96, 2, 2);
    line-height: 1.6;
    color: rgb(255, 255, 255);
    font-family: "Maven Pro", sans-serif !important;
    font-size: 12px;
    border-radius: 100px;
    padding: 3px 10px;
    margin-top: 5px;
}

.download-btn:hover {
    color: rgb(255, 255, 255);
}

.popup-title {
    height: auto;
    width: 100%;
    min-width: 20px;
    color: rgb(180, 63, 63);
    font-size: 30px;
    text-shadow: rgba(0, 0, 0, 0) 0px 0px 2px;
    font-weight: bold;
    font-family: Summerfun;
    text-align: center;
    line-height: normal;
    letter-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    font-style: normal;
    overflow: hidden;
    word-break: break-word;
}

.popup-desc {
    height: auto;
    width: 100%;
    min-width: 20px;
    color: rgb(180, 63, 63);
    font-size: 18px;
    text-shadow: rgba(0, 0, 0, 0) 0px 0px 2px;
    font-weight: bold;
    font-family: Signora;
    text-align: center;
    line-height: normal;
    letter-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    font-style: normal;
    overflow: hidden;
    word-break: break-word;
}

.qr-title {
    height: auto;
    width: 100%;
    min-width: 20px;
    color: rgb(180, 63, 63);
    font-size: 20px;
    text-shadow: rgba(0, 0, 0, 0) 0px 0px 2px;
    font-weight: bold;
    font-family: Signora;
    text-align: center;
    line-height: normal;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    overflow: hidden;
    word-break: break-word;
    text-decoration: underline;
    margin-bottom: 5px;
}

.qr-code img {
    margin-bottom: 15px;
}
