@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Nunito+Sans:wght@400;600;700&display=swap');

* {
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    line-height: normal;
    font-family: 'Plus Jakarta Sans';
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

a {
    color: #6160F9;
    text-decoration: none;
}

.selvi-container{
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

.section-title {
    font-size: 20px;
    margin: 40px 0 10px;
    font-weight: bold;
    color: #7B61FF;
}

.selvi-row {
    display: flex;
    flex-wrap: wrap;
}
.d-flex{
    display: flex;
}

.selvi-grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.t-center{
    text-align: center;
}
.x-center {
    align-items: center;
}

.y-center {
    justify-content: center;
}

.y-space {
    justify-content: space-between;
}


.selvi-col-1 {
    width: 10%;
}

.selvi-col-2 {
    width: 20%;
}

.selvi-col-3 {
    width: 30%;
}

.selvi-col-4 {
    width: 40%;
}

.selvi-col-5 {
    width: 50%;
}

.selvi-col-6 {
    width: 60%;
}

.selvi-col-7 {
    width: 70%;
}

.selvi-col-8 {
    width: 80%;
}

.selvi-col-9 {
    width: 90%;
}

.selvi-col-10 {
    width: 100%;
}

.h-100vh{
    height: 100vh;
}


.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}

.mt-10 {
    margin-top: 10px;
}
.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}


.form-fields {
    display: grid;
    gap: 20px;
}

label {
    font-weight: 400;
    color: #000;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

/* Base button */
.sv-btn {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #1F1F1F;
    background: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 40px;
    line-height: 100%;
}

.sv-text:hover,
.sv-text:target,
.sv-text:active,
.sv-text:focus-within,
.sv-text:focus {
    background: #F0F0F0;
}

.btn-sm {
    padding: 4px 8px;
    height: 32px;
}

.btn-lg {
    padding: 12px 16px;
    font-size: 16px;
    height: 46px;
}


/*btn-dark*/

.btn-dark-primary {
    background: #010101;
    color: #fff;
}

.btn-dark-secondary {
    color: #010101;
    border: 1px solid #000000;
}

.btn-dark-dashed {
    color: #010101;
    border: 1px dashed #000000;
}

.sv-primary {
    background: linear-gradient(90deg, #D54993 0%, #615FF9 100%);
    color: #fff;
    border: 0;
    z-index: 1;
}

.sv-primary:after {
    content: '';
    position: absolute;
    border-radius: 8px;
    z-index: -1;
}

.sv-primary:hover:after {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1.2px;
    background: linear-gradient(90deg, #e17bb1 0%, #8c8cfb 100%);
}



.sv-primary:target,
.sv-primary:active,
.sv-primary:focus-within,
.sv-primary:focus {
    background: linear-gradient(90deg, #A63973 0%, #4948C9 100%);
}



.sv-secondary {
    background: none;
    border: 1px solid #CDCDCD;
    color: #1F1F1F;
}

.sv-secondary:before {
    border-radius: 8px;
    content: " ";
    z-index: -1;
/*    background-image: linear-gradient(90deg, #D64893 0%, #605FF9 100%);*/
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    position: absolute;
}
.sv-secondary:hover:before {
    background-image: linear-gradient(90deg, #D64893 0%, #605FF9 100%);
}

.sv-secondary:after {
    content: " ";
    position: absolute;
    border-radius: 8px;
    z-index: -1; 
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
}

.sv-secondary:hover:after {
    background: #fff;
}

.sv-secondary:hover {
    border-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #D64893 0%, #605FF9 100%);
    -webkit-text-fill-color: transparent;
}
.sv-secondary:hover:after{
    background: #fff;
}
.sv-secondary:target,
.sv-secondary:active,
.sv-secondary:focus-within,
.sv-secondary:focus {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #A43C77 0%, #4D49C8 100%);
    -webkit-text-fill-color: transparent;
}

.sv-secondary:target:before,
.sv-secondary:active:before,
.sv-secondary:focus-within:before,
.sv-secondary:focus:before {
    background-image: linear-gradient(90deg, #A43B76 0%, #4C49C8 100%);
}



.sv-dashed {
    background: #fff;
    border: 1px dashed #CDCDCD;
    color: #1F1F1F;
}

.sv-dashed:hover {
    border-color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #D64893 0%, #605FF9 100%);
    -webkit-text-fill-color: transparent;

    /*    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #D54993, #615FF9) border-box;*/
}

.sv-dashed:before {
    border-radius: 8px;
    content: " ";
    z-index: -1;
    background-image: linear-gradient(90deg, #D64893 0%, #605FF9 100%);
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    position: absolute;
}

.sv-dashed:after {
    content: " ";
    position: absolute;
    border-radius: 7px;
    z-index: -1;
    background: #fff;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
}

.sv-dashed:target,
.sv-dashed:active,
.sv-dashed:focus-within,
.sv-dashed:focus {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #A43C77 0%, #4D49C8 100%);
    -webkit-text-fill-color: transparent;
}

.sv-dashed:target:before,
.sv-dashed:active:before,
.sv-dashed:focus-within:before,
.sv-dashed:focus:before {
    background-image: linear-gradient(90deg, #A43B76 0%, #4C49C8 100%);
}





.hover.text {
    background: #f0f0f0;
}

/* Pressed style simulated */
.pressed.sv-primary {
    background: linear-gradient(90deg, #A63973 0%, #4948C9 100%);
    color: #fff;
}

.pressed.sv-secondary {
    background: #f0f0f0;
}

.pressed.sv-dashed {
    background: #f9f9f9;
}

.pressed.text {
    background: #e0e0e0;
}

/* Disabled */
.sv-btn:disabled {
    background: #F5F5F5;
    border: 1px solid #CDCDCD;
    color: #939399;
    cursor: not-allowed;
}

.sv-btn:disabled:hover,
.sv-btn:disabled:target,
.sv-btn:disabled:active,
.sv-btn:disabled:focus-within,
.sv-btn:disabled:focus {
    -webkit-text-fill-color: unset;
}

.sv-btn:disabled:before,
.sv-btn:disabled:after {
    display: none;
}

/* --------------------------------------------------------------- */

.selvi-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 14px;
    color: #999;
}

.selvi-breadcrumb li {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.selvi-breadcrumb li::after {
    content: "/";
    margin-left: 8px;
    color: #ccc;
}

.selvi-breadcrumb li:last-child::after {
    content: "";
    margin: 0;
}

.selvi-breadcrumb li:last-child {
    color: #000000D9;
    font-weight: 500;
}

.selvi-breadcrumb a {
    color: #00000073;
    text-decoration: none;
}


/* input  */
.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: sans-serif;
}

.input-field {
    padding: 7px 12px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 8px;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid #CDCDCD;
    outline: none;
    width: 100%;
    color: #1F1F1F;
    height: 40px;
    background: none;
}

.input-field[disabled] {
    border: 1px solid #CDCDCD;
    background: #F5F5F5;
    color: #B8B8B8;
}

.input-field::placeholder {
    color: #BFBFBF;
}

.icon-group.active .input-field,
.input-field:active,
.input-field:focus,
.input-field:hover {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(to right, #D54993, #615FF9) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
}

/* textarea */
.area-field {
    height: 56px;
    border: 1px solid #CDCDCD;
    padding: 8px 12px;
    color: #1F1F1F;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    background: none;
}

.area-field:disabled {
    border: 1px solid #CDCDCD;
    background: #F5F5F5;
    color: #B8B8B8;
}

.area-field:focus,
.area-field:active,
.area-field:hover {
    outline: none;
}

.area-md {
    height: 76px;
}

.area-lg {
    height: 96px;
}
.area-xl {
    height: 246px;
}

/* password */
.icon-group {
    position: relative;
}

.icon-group span {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background-image: url(../images/eyeInvisible.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    cursor: pointer;
}

.icon-group.active span {
    background-image: url(../images/eye.svg);
}

/* search  */
.search-group {
    display: flex;
}

.btn-serach {
    border: 1px solid #CDCDCD;
    background: none;
    position: relative;
    border-radius: 0 4px 4px 0;
    padding: 10px 12px;
    height: 40px;
    cursor: pointer;
}

.btn-serach:before {
    content: " ";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../images/search.svg);
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.search-field {
    border: 1px solid #CDCDCD;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    padding: 4px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #1F1F1F;
    width: 100%;
}

.search-field:focus {
    outline: none;
}

.search-field::placeholder {
    color: #00000040;
}

.btn-serach.serach-gradient {
    display: flex;
    align-items: center;
    gap: 8px;
}

.serach-gradient {
    background: linear-gradient(90deg, #D54993 0%, #615FF9 100%);
    color: #fff;
    font-size: 14px;
    border: 0;
}

.serach-gradient:before {
    filter: invert(1);
}

.lg-input:before,
.md-input:before {
    background-position: 0px 1px;
}

.md-input {
    height: 48px;
}

.lg-input {
    height: 56px;
}


/*or*/
.or {
    position: relative;
    display: block;
    text-align: center;
    margin: 20px 0;
}
.or span {
    background: #fff;
    padding: 0 25px;
    color: #787E87;
    z-index: 1;
}
.or:after {
    content: " ";
    width: 100%;
    display: block;
    height: 1px;
    background: #E8ECEB;
    position: absolute;
    top: 50%;
    z-index: -1;
}

.error-message {
    color: red;
    font-size: 14px;
}

@media only screen and (min-width: 1430px) and (max-width: 1630px) {
    .sv-secondary:after {
        top: 2px;
    }
}



@media only screen and (max-width: 767px) {
    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}