#vue-sepet {
    margin-top: 50px;
    font-size: 0.8rem;
    height: fit-content;
}

.btn-grad {
    background-image: linear-gradient(to right, #da22ff 0%, #9733ee 51%, #da22ff 100%);
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 7px;
    display: block;
}

.btn-grad:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.btn-grad:focus {
    color: #fff;
}

.custom-scrollbar {
    &::-webkit-scrollbar {
        width: 8px;
    }

    &::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb {
        background: #9733ee;
        border-radius: 10px;
        border: 3px solid #f1f1f1;
    }

    &::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    scrollbar-width: thin;
    scrollbar-color: #9733ee #f1f1f1;
}

.step-container {
    padding: 10px;
    overflow: hidden;
}

.gradient-progress .el-progress-bar__inner {
    background: linear-gradient(to right, #da22ff, #9733ee);
}

.step-card {
    min-height: calc(100vh - 200px);
}

.step-card .el-card__header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.step-card .el-card__header .header-button {
    position: absolute;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.step-card .el-card__header .header-button span {
    font-size: 20px;
}

.step-card .el-card__header .previous {
    left: 10px;
}

.step-card .el-card__header .next {
    right: 10px;
}

.step-card .el-card__header p {
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
}

.step-card .el-card__body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    align-items: space-between;
    height: calc(100% - 70px);
}

.step-card .el-card__body .item-detail {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.5px solid #641eee;
    padding: 0 7px;
    font-size: 1rem;
}

.step-card .el-card__body .coupon-area {
    display: flex;
    justify-content: space-between;
    border-radius: 7px;
    width: 100%;
    margin-bottom: 10px;
}

.step-card .el-card__body .coupon-area .el-input__inner {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.step-card .el-card__body .coupon-area .el-input__inner:focus {
    border-color: #641eee;
    border-right: none;
}

.step-card .el-card__body .coupon-area .el-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.step-card .el-card-footer {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
    height: 70px;
    border-top: 0.5px solid #641eee;
}

.step-card .el-card-footer .el-button:focus {
    outline: none;
}

.domain-search {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.domain-search .el-input {
    width: 50%;
}

.domain-search .el-input__inner {
    border-radius: 7px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.domain-search .el-input__inner:focus {
    border-color: #641eee;
    border-right: none;
}

.domain-search .el-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border: none;
    outline: none;
}

.domain-search .el-button:active,
.domain-search .el-button:focus {
    border: none;
    color: white;
    box-shadow: none;
}

.question-container {
    text-align: center;
}

.question-container b {
    color: #641eee;
    cursor: pointer;
}

.domain-result {
    margin-top: 20px;
}

.domain-result .not-exist {
    display: flex;
    justify-content: center;
    font-size: 20px;
    align-items: center;
    gap: 30px;
    width: fit-content;
    margin: auto;
    border: 1px solid #69c145;
    border-radius: 15px;
    padding: 15px 0;
}

.domain-result .not-exist p {
    margin: 0;
}

.domain-result .not-exist i:nth-child(1) {
    font-size: 60px;
    color: green;
    font-weight: bold;
}

.domain-result .not-exist i:nth-child(4) {
    font-size: 40px;
    border: 1px solid #641eee;
    border-radius: 10%;
    padding: 0 10px;
}

.domain-result .not-exist i:nth-child(4):hover {
    background-color: #641eee;
    color: white;
}

.domain-result .not-exist .domain-price {
    font-size: 30px;
    color: red;
    font-weight: bold;
}

.domain-result .exist {
    display: flex;
    justify-content: center;
    font-size: 20px;
    align-items: center;
    gap: 20px;
    width: fit-content;
    margin: auto;
    border: 1px solid #f46f6c;
    border-radius: 15px;
    padding: 20px 10px;
}

.domain-result .exist p {
    margin: 0;
}

.domain-result .exist i:nth-child(1) {
    font-size: 60px;
    color: red;
    font-weight: bold;
}

.add-cart-icon {
    font-size: 2rem;
    color: #641eee;
    cursor: pointer;
    border: 1px solid #641eee;
    border-radius: 7px;
    padding: 0 10px;
}

.radio-group-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    height: calc(100% - 70px);
}

.radio-group-container .el-radio__label {
    margin: 0;
    font-size: 1.5rem;
}

.service-category-explanation {
    padding: 20px;
}

.service-category-explanation p {
    font-size: 0.9rem;
    font-weight: 400;
}

.service-category-explanation h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-category-explanation h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.service-category-explanation h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.services-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.services-container .service-item {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #641eee;
    border-radius: 7px;
    padding: 10px;
}

.services-container .service-item .el-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 7px;
}

.services-container .service-item .title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
    text-align: center;
}

.services-container .service-item i {
    font-size: 2rem;
    color: #641eee;
    cursor: pointer;
    margin-top: 10px;
}

.cart {
    padding: 10px;
    margin-top: 10px;
}

.cart .el-card__header {
    display: flex;
    justify-content: space-between;
}

.cart .el-card__header .header-button {
    font-size: 30px;
}

.cart .el-card__header .header-button span {
    font-size: 15px;
}

.cart .el-card__header p {
    font-size: 2rem;
    font-weight: 400;
}

.cart .el-card__body .cart-content {
    display: flex;
    flex-direction: column;
}

.cart .el-card__body .cart-content .service-detail {
    display: flex;
    justify-content: space-between;
}

.cart .el-card-footer {
    display: flex;
    justify-content: center;
    gap: 50px;
}
