@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

#effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 1, 30, 0.48);
    z-index: 450;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

#effect.active {
    opacity: 1;
    visibility: visible;
}

#pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 70%;
    background-color: #ebebeb;
    border-radius: 1pc;
    z-index: 1000;
    overflow: hidden !important;
    transition: .7s ease;
}

#pop-up.active {
    width: 60%;
}

@media only screen and (max-width: 1000px) {
    #pop-up.active {
        width: 80%;
        height: 90%;
    }
}

@media only screen and (max-width: 600px) {
    #pop-up.active {
        width: 90%;
    }
}

#pop-up .cnt {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5pc;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    transition-delay: 0s;
    overflow: hidden !important;
}

#pop-up.active .cnt {
    transition-delay: .2s;
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .close {
    position: absolute;
    top: 1.5pc;
    right: 1.5pc;
    display: flex;
    padding: .5pc;
    border-radius: 50%;
    transition: .2s ease;
    cursor: pointer;
    z-index: 5;
}

#pop-up .cnt .close:hover {
    background-color: var(--error);
}

#pop-up .cnt .close:active {
    transition: .1s ease;
    background-color: var(--error-bold);
    transform: scale(.95);
}

#pop-up .cnt .close svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: var(--main-color);
}

#pop-up .cnt .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1pc;
    height: calc(100% - 2.3pc);
}

#pop-up .cnt .text .h {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: .2pc;
    width: 100%;
    max-height: max-content;
}

#pop-up .cnt .text .h .b-h p {
    font-family: 'kollektif-bold', serif;
    font-size: 1.8rem;
    color: var(--main-color);
}

#pop-up .cnt .text .h .s-h p {
    font-family: "Quicksand", serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--main-color);
}

#pop-up .cnt .text .p {
    width: 100%;
    height: 100%;
    padding-right: .5pc;
    overflow-y: auto;
}

#pop-up .cnt .text .p p {
    font-family: "Quicksand", serif;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    color: var(--main-color);
}

#pop-up .cnt .text .response {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    transition: .4s ease;
    cursor: pointer;
}

#pop-up.response .cnt .text .response {
    transform: translateY(-100%);
    opacity: 1;
}

#pop-up.responseHid .cnt .text .response {
    transform: translateY(-30%);
    border-top-left-radius: 1pc;
    border-top-right-radius: 1pc;
    opacity: 1;
}

#pop-up.response .cnt .text .response::before {
    content: 'Talep';
    position: absolute;
    top: 12.5%;
    left: 50%;
    transform: translate(-50%, -12.5%);
    font-family: "Quicksand", serif;
    font-size: 2rem;
    font-weight: 900;
    text-align: justify;
    color: white;
}

#pop-up.responseHid .cnt .text .response::before {
    content: 'Cevap';
    position: absolute;
    top: 12.5%;
    left: 50%;
    transform: translate(-50%, -12.5%);
    font-family: "Quicksand", serif;
    font-size: 2rem;
    font-weight: 900;
    text-align: justify;
    color: white;
}

#pop-up .cnt .text .response .text {
    opacity: 0;
    visibility: hidden;
}

#pop-up.response .cnt .text .response .text {
    position: relative;
    width: 100%;
    height: 70%;
    background-color: white;
    border-top-left-radius: 1pc;
    border-top-right-radius: 1pc;
    padding: 1.5pc;
    opacity: 1;
    visibility: visible;
    cursor: default;
}

#pop-up.response .cnt .text .response .text p {
    font-family: "Quicksand", serif;
    font-size: 1rem;
    font-weight: 400;
    padding-right: .5pc;
    overflow-y: auto;
    text-align: justify;
    color: var(--main-color);
}

#pop-up .cnt .text .domain {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70%;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    opacity: 0;
    transition: .4s ease;
    padding: 2pc;
    border-top-left-radius: 1pc;
    border-top-right-radius: 1pc;
}

#pop-up.domain .cnt .text .domain {
    opacity: 1;
    transform: translateY(-100%);
}

#pop-up .cnt .text .domain .options {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5pc;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: .4s ease;
}

#pop-up.domain-options .cnt .text .domain .options {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .domain .options .option {
    width: 50%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 0 6px #e9e9e9;
    padding: 1pc;
    border-radius: .5pc;
    cursor: pointer;
    transition: .2s ease;
}

@media only screen and (max-width: 700px) {
    #pop-up .cnt .text .domain .options .option {
        width: 70%;
    }
}

@media only screen and (max-width: 450px) {
    #pop-up .cnt .text .domain .options .option {
        width: 80%;
    }
}

#pop-up .cnt .text .domain .options .option:hover {
    background-color: rgb(250, 250, 250);
    padding: 1pc 1.2pc;
}

#pop-up .cnt .text .domain .options .option:active {
    transition: .1s ease;
    background-color: rgb(250, 250, 250);
    padding: 1pc 1pc;
}

#pop-up .cnt .text .domain .options .option p {
    font-family: 'Quicksand', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: black;
}

#pop-up .cnt .text .domain .options .option svg {
    width: 1.1rem;
    height: 1.1rem;
    color: black;
}

#pop-up .cnt .text .domain .option-output {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(166, 166, 166, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

#pop-up.domain-option-output .cnt .text .domain .option-output {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .domain .option-output #change {
    position: absolute;
    top: 1pc;
    left: 1pc;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .7pc;
    cursor: pointer;
    transition: .2s ease;
    border-bottom: 1px solid transparent;
}

#pop-up .cnt .text .domain .option-output #change:hover {
    border-color: #5393e7;
}

#pop-up .cnt .text .domain .option-output #change:active {
    transition: .1s ease;
    transform: scale(.98);
}

#pop-up .cnt .text .domain .option-output #change p {
    font-family: "Quicksand", serif;
    font-size: 1rem;
    font-weight: 900;
    text-wrap: nowrap;
    color: #5393e7;
}

#pop-up .cnt .text .domain .option-output #change svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: #5393e7;
}

#pop-up .cnt .text .domain .option-output>div {
    position: relative;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .7pc;
    border: 1px solid transparent;
    transition: .2s ease;
}

@media only screen and (max-width: 550px) {
    #pop-up .cnt .text .domain .option-output>div {
        flex-direction: column !important;
        width: 80% !important;
    }

    #pop-up .cnt .text .domain .option-output>div .input {
        flex-direction: column !important;
        gap: .5pc !important;
        width: 100% !important;
        padding: .7pc !important;
        flex-direction: column !important;
    }

    #pop-up .cnt .text .domain .option-output>div .input p,
    #pop-up .cnt .text .domain .option-output>div .input input {
        width: 100%;
        flex: 1;
    }

    #pop-up .cnt .text .domain .option-output>div .button {
        flex: 1 !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

#pop-up .cnt .text .domain .option-output>div .loader-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: .4s ease;
    opacity: 0;
    visibility: hidden;
    border-radius: .2pc;
}

#pop-up .cnt .text .domain .option-output>div.load .loader-area {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .domain .option-output>div .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2pc;
    aspect-ratio: 1;
    display: grid;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

#pop-up .cnt .text .domain .option-output>div.load .loader {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

#pop-up .cnt .text .domain .option-output>div .loader:before,
#pop-up .cnt .text .domain .option-output>div .loader:after {
    content: "";
    grid-area: 1/1;
    margin: 0 0 15px 15px;
    --c: #0000 calc(100%/3), var(--main-color) 0 calc(2*100%/3), #0000 0;
    --c1: linear-gradient(90deg, var(--c));
    --c2: linear-gradient(0deg, var(--c));
    background: var(--c1), var(--c2), var(--c1), var(--c2);
    background-size: 300% 4px, 4px 300%;
    background-repeat: no-repeat;
    animation: l12 1s infinite linear;
}

#pop-up .cnt .text .domain .option-output>div .loader:after {
    margin: 15px 15px 0 0;
    transform: scale(-1, -1);
}

@keyframes l12 {
    0% {
        background-position: 50% 0, 100% 100%, 0 100%, 0 0
    }

    25% {
        background-position: 0 0, 100% 50%, 0 100%, 0 0
    }

    50% {
        background-position: 0 0, 100% 0, 50% 100%, 0 0
    }

    75% {
        background-position: 0 0, 100% 0, 100% 100%, 0 50%
    }

    75.01% {
        background-position: 100% 0, 100% 0, 100% 100%, 0 50%
    }

    100% {
        background-position: 50% 0, 100% 0, 100% 100%, 0 100%
    }
}

#pop-up .cnt .text .domain .option-output[statu="liriandev"]>div[type="liriandev"] {
    display: flex;
}

#pop-up .cnt .text .domain .option-output[statu="www"]>div[type="www"] {
    display: flex;
}

#pop-up .cnt .text .domain .option-output>div::before {
    content: 'Alan adını düzenle';
    position: absolute;
    top: 0;
    left: .5pc;
    transform: translateY(calc(-100% - .2pc));
    font-family: "Quicksand", serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: black;
}

#pop-up .cnt .text .domain .option-output>div::after {
    content: '';
    position: absolute;
    top: calc(100% + .7pc);
    left: .5pc;
    font-family: "Quicksand", serif;
    font-size: .8rem;
    font-weight: 500;
    transition: .2s ease;
}

#pop-up .cnt .text .domain .option-output>div.false::after {
    content: 'Bu alan adı kullanılamaz';
    color: rgb(255, 87, 87);
}

#pop-up .cnt .text .domain .option-output>div .input {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: .7pc 1.5pc;
    border-radius: .2pc;
    background-color: white;
    border: 1px solid transparent;
    transition: .2s ease;
}

#pop-up .cnt .text .domain .option-output>div.true .input {
    border-color: rgb(44, 252, 44);
}

#pop-up .cnt .text .domain .option-output>div.false .input {
    border-color: rgb(255, 87, 87);
}

#pop-up .cnt .text .domain .option-output>div .input p {
    font-family: "Quicksand", serif;
    font-size: 1rem;
    color: black;
}

#pop-up .cnt .text .domain .option-output>div .input input {
    border: none;
    outline: none;
    border-bottom: 1px dashed black;
    font-family: "Quicksand", serif;
    font-size: 1rem;
    color: black;
}

#pop-up .cnt .text .domain .option-output>div .button {
    display: flex;
    background-color: #5718dd;
    padding: .8pc;
    border-radius: .2pc;
    cursor: pointer;
    transition: .2s ease;
}

#pop-up .cnt .text .domain .option-output>div .button:hover {
    background-color: #6f34ee;
}

#pop-up .cnt .text .domain .option-output>div .button:active {
    transition: .1s ease;
    transform: scale(.97);
}

#pop-up .cnt .text .domain .option-output>div .button svg {
    width: 1rem;
    height: 1rem;
    fill: white;
}

#pop-up .cnt .text .domain .request {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 1pc;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    border: 2px solid white;
}

#pop-up .cnt .text .domain .request.completed {
    border-color: rgb(44, 252, 44);
}

#pop-up .cnt .text .domain .request.active {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .domain .request>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

#pop-up .cnt .text .domain .request[statu="options-output-liriandev"] {
    opacity: 0;
    visibility: hidden;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: .5pc;
    opacity: 1;
    visibility: visible;
    font-family: "Quicksand", serif;
    color: black;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .domain-output {
    padding: .7pc 1.5pc;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .domain-output p {
    font-weight: 900;
    font-size: 1.4rem;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .domain-info p {
    font-size: .9rem;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: .5pc 0 1pc 0;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form>div {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 60%;
    gap: .2pc;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .together {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1pc;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .together .input {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .2pc;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .together .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    height: 100%;
    background-color: var(--main-color);
    border-radius: .5pc;
    cursor: pointer;
    transition: .2s ease;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .together .icon:hover {
    transform: translateY(-5%);
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .together .icon:active {
    transition: .1s ease;
    transform: translateY(0%);
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .together .icon svg {
    width: 1rem;
    height: 1rem;
    fill: white;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .together .button {
    width: 100%;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .input p {
    font-size: .8rem;
    font-weight: 900;
    opacity: .5;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .input input {
    border: none;
    outline: none;
    background-color: #f7f7f7;
    border-radius: .2pc;
    padding: .7pc .5pc;
    width: 100%;
    border: 1px solid rgb(255, 183, 183);
    transition: .2s ease;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .input input.err {
    border: 2px solid rgb(247, 109, 109);
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .input input:disabled {
    background-color: transparent;
    border: 1px solid #ebebeb;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .tel {
    position: relative;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .tel .form-info {
    position: absolute;
    top: 0%;
    left: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: .5pc;
    background-color: var(--main-color);
    border-radius: .2pc;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .tel.info .form-info {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .tel .form-info p {
    text-align: center;
    font-size: .8rem;
    font-weight: 900;
    opacity: 1;
    color: white;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .7pc 0;
    background-color: #5718dd;
    border-radius: .5pc;
    cursor: pointer;
    transition: .2s ease;
    border: 2px solid transparent;
}

#pop-up .cnt .text .domain .request.load .options-output-www .form .button {
    background-color: white;
    border-color: #5718dd;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .button:hover {
    transform: translateY(-5%);
    background-color: #6f34ee;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .button:active {
    transition: .1s ease;
    transform: translateY(0%);
}

#pop-up .cnt .text .domain .request.load .options-output-www .form .button:hover {
    background-color: white;
}

#pop-up .cnt .text .domain .request.load .options-output-www .form .button:active {
    transition: .2s ease;
    transform: none;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .button .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2pc;
    aspect-ratio: 1;
    display: grid;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

#pop-up .cnt .text .domain .request.load .options-output-www .form .button .loader {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .button .loader:before,
#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .button .loader:after {
    content: "";
    grid-area: 1/1;
    margin: 0 0 15px 15px;
    --c: #0000 calc(100%/3), var(--main-color) 0 calc(2*100%/3), #0000 0;
    --c1: linear-gradient(90deg, var(--c));
    --c2: linear-gradient(0deg, var(--c));
    background: var(--c1), var(--c2), var(--c1), var(--c2);
    background-size: 300% 4px, 4px 300%;
    background-repeat: no-repeat;
    animation: l12 1s infinite linear;
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .button .loader:after {
    margin: 15px 15px 0 0;
    transform: scale(-1, -1);
}

@keyframes l12 {
    0% {
        background-position: 50% 0, 100% 100%, 0 100%, 0 0
    }

    25% {
        background-position: 0 0, 100% 50%, 0 100%, 0 0
    }

    50% {
        background-position: 0 0, 100% 0, 50% 100%, 0 0
    }

    75% {
        background-position: 0 0, 100% 0, 100% 100%, 0 50%
    }

    75.01% {
        background-position: 100% 0, 100% 0, 100% 100%, 0 50%
    }

    100% {
        background-position: 50% 0, 100% 0, 100% 100%, 0 100%
    }
}

#pop-up .cnt .text .domain .request[statu="options-output-www"] .options-output-www .form .button p {
    font-size: .9rem;
    font-weight: 900;
    color: white;
}

#pop-up .cnt .text .plugins {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70%;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    opacity: 0;
    transition: .4s ease;
    border-top-left-radius: 1pc;
    border-top-right-radius: 1pc;
}

#pop-up.plugins .cnt .text .plugins {
    opacity: 1;
    transform: translateY(-100%);
}

#pop-up .cnt .text .plugins .plugin {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .5pc;
    position: relative;
    width: 100%;
    background-color: white;
    padding: .5pc 1pc;
    transition: .2s ease;
    overflow: hidden;
    font-family: "Quicksand", serif;
}

#pop-up .cnt .text .plugins .plugin:hover {
    background-color: #f7f7f7;
    padding: .5pc 2pc;
}

#pop-up .cnt .text .plugins .plugin .name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1pc;
}

#pop-up .cnt .text .plugins .plugin .name h2 {
    font-size: 1.4rem;
}

#pop-up .cnt .text .plugins .plugin .name svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: black;
}

#pop-up .cnt .text .plugins .plugin .router {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .8pc;
    background-color: #f7f7f7;
    border: 2px solid #5718dd;
    border-radius: .5pc;
    cursor: pointer;
    transition: .2s ease;
}

#pop-up .cnt .text .plugins .plugin:hover .router {
    background-color: white;
}

#pop-up .cnt .text .plugins .plugin .router:active {
    transition: .1s ease;
    transform: scale(.95);
}

#pop-up .cnt .text .plugins .plugin .router svg {
    width: 1.2rem;
    height: 1.2rem;
}

@media only screen and (max-width: 450px) {
    #pop-up .cnt .text .plugins .plugin .name {
        gap: .5pc;
    }

    #pop-up .cnt .text .plugins .plugin .name h2 {
        font-size: 1.2rem;
    }

    #pop-up .cnt .text .plugins .plugin .route {
        padding: .5pc;
    }

    #pop-up .cnt .text .plugins .plugin .router svg {
        width: 1rem;
        height: 1rem;
    }
}

@media only screen and (max-width: 370px) {
    #pop-up .cnt .text .plugins .plugin .name {
        gap: .5pc;
    }

    #pop-up .cnt .text .plugins .plugin .name h2 {
        font-size: 1rem;
    }

    #pop-up .cnt .text .plugins .plugin .route {
        padding: .3pc;
    }

    #pop-up .cnt .text .plugins .plugin .router svg {
        width: .8rem;
        height: .8rem;
    }
}

#pop-up .cnt .text .qr {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70%;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    opacity: 0;
    transition: .4s ease;
    border-top-left-radius: 1pc;
    border-top-right-radius: 1pc;
}

#pop-up.qr .cnt .text .qr {
    opacity: 1;
    transform: translateY(-100%);
}

#pop-up .cnt .text .qr .qr-output {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#pop-up .cnt .text .qr .qr-output img {
    width: 60%;
    aspect-ratio: 1/1;
    max-height: 100%;
}

#pop-up .cnt .text .qr .qr-settings {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5pc;
    height: 100%;
    padding: 1pc 0;
}

#pop-up .cnt .text .qr .qr-settings .settings {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#pop-up .cnt .text .qr .qr-settings .settings .area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1pc;
}

#pop-up .cnt .text .qr .qr-settings .settings .area .setting {
    display: flex;
    flex-direction: column;
    gap: .2pc;
    width: 100%;
    height: max-content;
}

#pop-up .cnt .text .qr .qr-settings .settings .area .setting p {
    font-family: "Quicksand", serif;
    font-weight: 600;
    font-size: 1rem;
    color: black;
}

#pop-up .cnt .text .qr .qr-settings .settings .area .setting input {
    padding: .7pc;
    border: none;
    outline: none;
    box-shadow: 0 0 5px #c8c8c8;
    border-radius: .5pc;
    font-family: "Quicksand", serif;
    font-family: 900;
    font-size: 1.1rem;
    color: black;
    width: 200px;
    height: 40px;
}

#pop-up .cnt .text .qr .qr-settings .settings .area .setting input[type="color"] {
    -webkit-appearance: none;
    padding: 0;
}

#pop-up .cnt .text .qr .qr-settings .settings .area .setting input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: .2pc;
}

#pop-up .cnt .text .qr .qr-settings .settings .area .setting input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

#pop-up .cnt .text .qr .qr-settings .button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: max-content;
    background-color: #5718dd;
    width: 200px;
    min-height: 50px;
    border-radius: 1pc;
    cursor: pointer;
    transition: .2s ease;
}

#pop-up .cnt .text .qr .qr-settings .button:hover {
    background-color: #6f34ee;
    transform: translateY(-5%);
}

#pop-up .cnt .text .qr .qr-settings .button:active {
    transition: .1s ease;
    transform: translateY(0%);
}

#pop-up .cnt .text .qr .qr-settings .button svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: white;
}

@media only screen and (max-width:550px) {
    #pop-up .cnt .text .qr {
        flex-direction: column;
    }

    #pop-up .cnt .text .qr .qr-settings {
        width: 80%;
    }

    #pop-up .cnt .text .qr .qr-settings .settings {
        width: 100%;
        flex-direction: row;
        align-items: start;
        gap: 1pc;
    }

    #pop-up .cnt .text .qr .qr-settings .settings .area .setting input {
        width: 100%;
    }

    #pop-up .cnt .text .qr .qr-settings .button {
        width: 100%;
        min-height: 40px;
    }

    #pop-up .cnt .text .qr .qr-settings .button svg {
        width: 1.1rem;
        height: 1.1rem;
    }
}

#pop-up .cnt .text .team {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70%;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    opacity: 0;
    transition: .4s ease;
    border-top-left-radius: 1pc;
    border-top-right-radius: 1pc;
}

#pop-up.team .cnt .text .team {
    opacity: 1;
    transform: translateY(-100%);
}

#pop-up.team .cnt .text .team::after {
    content: 'Kendini davet edemezsin.';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--error);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Quicksand', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    transition: .4s ease;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
}

#pop-up.team .cnt .text .team.user-err::after {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .team>div {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

#pop-up.team-add-member .cnt .text .team .add-member {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .team .add-member {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pop-up .cnt .text .team .add-member .form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1pc;
    width: 200px;
}

#pop-up .cnt .text .team .add-member .form>div {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: .5pc;
    width: 100%;
}

#pop-up .cnt .text .team .add-member .form>div p {
    font-family: "Quicksand", serif;
    font-size: 1rem;
    font-weight: 900;
    color: black;
}

#pop-up .cnt .text .team .add-member .form>div input {
    width: 100%;
    height: 40px;
    border-radius: .5pc;
    border: none;
    outline: none;
    box-shadow: 0 0 2px #b8b8b8;
    padding: .5pc;
    font-family: "Quicksand", serif;
    font-size: .9rem;
    color: black;
    font-weight: 600;
    transition: .2s ease;
}

#pop-up .cnt .text .team .add-member .form>div input::placeholder {
    opacity: 0.5;
}

#pop-up .cnt .text .team .add-member .form>div input:hover {
    transform: translateY(-5%);
}

#pop-up .cnt .text .team .add-member .form>div input:focus {
    transform: translateY(-5%);
}

#pop-up .cnt .text .team .add-member .form .role {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

#pop-up .cnt .text .team .add-member .form .role select {
    flex: 1;
    min-width: 150px;
    height: 100%;
    border: none;
    outline: none;
    border-radius: .5pc;
    padding: .5pc;
    box-shadow: 0 0 2px #b8b8b8;
    z-index: 2;
    font-family: "Quicksand", serif;
    font-size: .8rem;
    color: black;
    font-weight: 600;
    transition: .2s ease;
}

#pop-up .cnt .text .team .add-member .form .role select option {
    font-weight: 600;
}

#pop-up .cnt .text .team .add-member .form .role .icon {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: #5718dd;
    border-radius: .5pc;
    cursor: pointer;
    transition: .2s ease;
}

#pop-up .cnt .text .team .add-member .form .role .icon:hover {
    transform: translateY(-5%);
}

#pop-up .cnt .text .team .add-member .form .role .icon:active {
    transition: .1s ease;
    transform: translateY(0%);
}

#pop-up .cnt .text .team .add-member .form .role .icon.err {
    border: 2px solid red;
}

#pop-up .cnt .text .team .add-member .form .role .icon::before {
    content: 'Kayıtlı bir E-mail girin.';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Quicksand", serif;
    font-size: .9rem;
    font-weight: 600;
    color: black;
    background-color: white;
    border: 2px solid rgb(247, 109, 109);
    border-radius: .5pc;
    z-index: 2;
    transition: .7s ease;
    opacity: 0;
    visibility: hidden;
}

#pop-up .cnt .text .team .add-member .form .role .icon.err::before {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .team .add-member .form .role .icon.err:hover {
    transform: none;
}

#pop-up .cnt .text .team .add-member .form .role .icon svg {
    width: 1rem;
    height: 1rem;
    fill: white;
}

#pop-up .cnt .text .team .add-member .form .button {
    align-items: center;
    background-color: #5718dd;
    padding: .5pc;
    border-radius: .5pc;
    height: 40px;
    cursor: pointer;
    transition: .2s ease;
}

#pop-up .cnt .text .team .add-member .form .button p {
    color: white;
}

#pop-up .cnt .text .team .add-member .form .button:hover {
    transform: translateY(-5%);
}

#pop-up .cnt .text .team .add-member .form .button:active {
    transition: .1s ease;
    transform: translateY(0%);
}

#pop-up.team-edit-member .cnt .text .team .edit-member {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .team .edit-member {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

#pop-up .cnt .text .team .edit-member .options {
    position: relative;
    width: 100%;
    height: 100%;
}

#pop-up .cnt .text .team .edit-member::after {
    content: "En az birini seçmelisin";
    position: absolute;
    top: -100%;
    left: 50%;
    padding: .5pc 1pc;
    border-radius: .5pc;
    background-color: rgb(247, 109, 109);
    transform: translate(-50%, 0);
    font-family: "Quicksand", serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

#pop-up .cnt .text .team .edit-member.err::after {
    top: 1pc;
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .team .edit-member .options>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1pc;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

#pop-up .cnt .text .team .edit-member.product .options .select-product {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .team .edit-member .options .select-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5pc;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 1pc;
    padding: 0 .5pc;
    overflow-x: auto;
    width: 90%;
    height: 200px;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: 1.5pc 1pc;
    min-width: 30vh;
    width: 30vh;
    max-width: 180px;
    height: 90%;
    border-radius: .5pc;
    background-color: black;
    cursor: pointer;
    transition: .4s ease;
    border: 3px solid none;
    outline: 2px solid transparent;
}

#pop-up .cnt .text .team .edit-member.err .options .select-product .products .product {
    outline-color: rgb(247, 109, 109);
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: .2s ease;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product:hover::after {
    opacity: 1;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product:active {
    transition: .1s ease;
    transform: scale(.99);
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product[membership="premium"] {
    background: linear-gradient(135deg, black, #5718dd);
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product .select-box {
    position: absolute;
    top: 1pc;
    right: 1pc;
    width: 20px;
    height: 20px;
    border-radius: .2pc;
    background-color: transparent;
    border: 2px solid rgba(196, 196, 196, 0.7);
    transition: .2s ease;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product.selected .select-box {
    border: 2px solid #e9e9e9;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product.selected .select-box .select-box-cnt {
    position: relative;
    top: calc(50% + .09pc);
    left: .07pc;
    width: 7px;
    height: 2px;
    background-color: white;
    transform: translate(0, -50%) rotate(225deg);
    border-radius: 2pc;
    animation: loadAns .2s ease;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product.selected .select-box .select-box-cnt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 12px;
    background-color: white;
    border-radius: 2pc;
    animation: loadAn2s .4s ease;
}

@keyframes loadAns {
    0% {
        width: 0;
    }

    100% {
        width: 7px;
    }
}

@keyframes loadAn2s {
    0% {
        height: 0;
    }

    100% {
        height: 12px;
    }
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product .info {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: .5pc;
    font-family: "aristorelica-pro";
    font-weight: 900;
    color: white;
    width: 100%;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product .info .category p {
    font-size: 1.2rem;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product .info .design-name p {
    font-size: .8rem;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product .info .product-statu {
    display: none;
    font-family: "betm-rounded", sans-serif;
    font-weight: 600;
    font-size: .8rem;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product[statu="200"] .info .product-statu[statu="200"] {
    display: block;
    color: #9bcd0f;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product[statu="205"] .info .product-statu[statu="205"] {
    display: block;
    color: #ffde59;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product[statu="500"] .info .product-statu[statu="500"] {
    display: block;
    color: #ffde59;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product[statu="404"] .info .product-statu[statu="404"] {
    display: block;
    color: red;
}

#pop-up .cnt .text .team .edit-member .options .select-product .products .product .info .last-changes p {
    font-size: .6rem;
    text-transform: lowercase;
}

#pop-up .cnt .text .team .edit-member .options .select-product .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: .7pc;
}

#pop-up .cnt .text .team .edit-member .options .select-product .buttons .button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5718dd;
    padding: .9pc 2pc;
    border-radius: .5pc;
    transition: .2s ease;
    cursor: pointer;
}

#pop-up .cnt .text .team .edit-member .options .select-product .buttons .button:nth-child(1) {
    flex: 1;
}

#pop-up .cnt .text .team .edit-member .options .select-product .buttons .button:nth-child(2) {
    background-color: rgb(247, 109, 109);
    padding: .9pc;
}

#pop-up .cnt .text .team .edit-member .options .select-product .buttons .button:hover {
    transform: translateY(-5%);
}

#pop-up .cnt .text .team .edit-member .options .select-product .buttons .button:active {
    transition: .1s ease;
    transform: translateY(0);
}

#pop-up .cnt .text .team .edit-member .options .select-product .buttons .button svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: white;
}

#pop-up .cnt .text .team .edit-member.power .options .select-power {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .team .edit-member .options .select-power {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1pc;
}

@media only screen and (max-width: 900px) {
    #pop-up .cnt .text .team .edit-member .options .select-power {
        justify-content: start;
        flex-wrap: nowrap;
        overflow-y: auto;
        padding: 1pc;
    }

    #pop-up .cnt .text .team .edit-member .options .select-power>div {
        min-height: 45px;
    }
}

#pop-up .cnt .text .team .edit-member .options .select-power>div {
    width: 250px;
    height: 45px;
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .5pc;
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output::before {
    content: 'Üye kendinden alt bir role sahip üyeyi düzenleyebilir.';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    border-radius: .5pc;
    padding: .2pc;
    z-index: 5;
    font-family: "Quicksand", serif;
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output.info::before {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output select {
    flex: 1;
    min-width: 150px;
    height: 100%;
    border: none;
    outline: none;
    border-radius: .5pc;
    padding: .5pc;
    box-shadow: 0 0 2px #b8b8b8;
    z-index: 2;
    font-family: "Quicksand", serif;
    font-size: .8rem;
    color: black;
    font-weight: 600;
    transition: .2s ease;
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output select option {
    font-weight: 600;
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output .icon {
    flex: 1;
    max-width: 45px;
    min-width: 45px;
    width: 45px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    border-radius: .5pc;
    transition: .2s ease;
    cursor: pointer;
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output .icon:hover {
    transform: translateY(-5%);
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output .icon:active {
    transition: .1s ease;
    transform: translate(0);
}

#pop-up .cnt .text .team .edit-member .options .select-power .role-output .icon svg {
    width: 1rem;
    height: 1rem;
    fill: white;
}

#pop-up .cnt .text .team .edit-member .options .select-power .check-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .5pc;
    cursor: pointer;
    transition: .2s ease;
}

#pop-up .cnt .text .team .edit-member .options .select-power .check-box:hover {
    transform: translateY(-5%);
}

#pop-up .cnt .text .team .edit-member .options .select-power .check-box:active {
    transition: .1s ease;
    transform: translateY(0%);
}

#pop-up .cnt .text .team .edit-member .options .select-power .check-box .text {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5pc;
    border-radius: .5pc;
    box-shadow: 0 0 2px #b8b8b8;
}

#pop-up .cnt .text .team .edit-member .options .select-power .check-box .text p {
    font-family: "Quicksand", serif;
    font-size: .9rem;
    font-weight: 900;
    text-align: center;
    color: black;
}

#pop-up .cnt .text .team .edit-member .options .select-power .check-box .box {
    width: 45px;
    height: 100%;
    background-color: transparent;
    border-radius: .5pc;
    border: 2px solid #e9e9e9;
}

#pop-up .cnt .text .team .edit-member .options .select-power .check-box.selected .box .tick {
    position: relative;
    top: calc(50%);
    left: calc(50%);
    width: 14px;
    height: 4px;
    background-color: #5718dd;
    transform: translate(calc(-50% - 0.3pc), calc(-50% + 0.17pc)) rotate(225deg);
    border-radius: 2pc;
    animation: loadAn .2s ease;
}

#pop-up .cnt .text .team .edit-member .options .select-power .check-box.selected .box .tick::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 22px;
    background-color: #5718dd;
    border-radius: 2pc;
    animation: loadAn2 .4s ease;
}

@keyframes loadAn {
    0% {
        width: 0;
    }

    100% {
        width: 14px;
    }
}

@keyframes loadAn2 {
    0% {
        height: 0;
    }

    100% {
        height: 22px;
    }
}

#pop-up .cnt .text .team .edit-member .options .select-power .button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5718dd;
    border-radius: .5pc;
    transition: .2s ease;
    cursor: pointer;
}

#pop-up .cnt .text .team .edit-member .options .select-power .button .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2pc;
    aspect-ratio: 1;
    display: grid;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

#pop-up .cnt .text .team .edit-member .options .select-power .button.load .loader {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

#pop-up .cnt .text .team .edit-member .options .select-power .button .loader:before,
#pop-up .cnt .text .team .edit-member .options .select-power .button .loader:after {
    content: "";
    grid-area: 1/1;
    margin: 0 0 15px 15px;
    --c: #0000 calc(100%/3), #ffffff 0 calc(2*100%/3), #0000 0;
    --c1: linear-gradient(90deg, var(--c));
    --c2: linear-gradient(0deg, var(--c));
    background: var(--c1), var(--c2), var(--c1), var(--c2);
    background-size: 300% 4px, 4px 300%;
    background-repeat: no-repeat;
    animation: l12 1s infinite linear;
}

#pop-up .cnt .text .team .edit-member .options .select-power .button .loader:after {
    margin: 15px 15px 0 0;
    transform: scale(-1, -1);
}

@keyframes l12 {
    0% {
        background-position: 50% 0, 100% 100%, 0 100%, 0 0
    }

    25% {
        background-position: 0 0, 100% 50%, 0 100%, 0 0
    }

    50% {
        background-position: 0 0, 100% 0, 50% 100%, 0 0
    }

    75% {
        background-position: 0 0, 100% 0, 100% 100%, 0 50%
    }

    75.01% {
        background-position: 100% 0, 100% 0, 100% 100%, 0 50%
    }

    100% {
        background-position: 50% 0, 100% 0, 100% 100%, 0 100%
    }
}

#pop-up .cnt .text .team .edit-member .options .select-power .button:hover {
    background-color: #6f34ee;
    transform: translateY(-5%);
}

#pop-up .cnt .text .team .edit-member .options .select-power .button:active {
    transition: .1s ease;
    transform: translateY(0);
}

#pop-up .cnt .text .team .edit-member .options .select-power .button p {
    font-family: "Quicksand", serif;
    font-size: .9rem;
    font-weight: 900;
    color: white;
}

#pop-up .cnt .text .team .edit-member .options .select-power .button.load p {
    opacity: 0;
}

#pop-up .cnt .text .product-viewer {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    gap: 1pc;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    padding: 1pc;
    overflow: hidden;
    z-index: 4;
}

#pop-up.productViewer {
    width: 70%;
    height: 80%;
    background-color: transparent;
    border: 2px solid #ffffff45;
}

#pop-up.productViewer .cnt .text .product-viewer {
    opacity: 1;
    visibility: visible;
}

#pop-up.productViewer .close svg {
    fill: white;
}

#pop-up .cnt .text .product-viewer .img-area {
    flex: 1.2;
    display: flex;
    flex-direction: row;
    height: 100%;
}

#pop-up .cnt .text .product-viewer .img-area .img-selector {
    display: flex;
    flex-direction: column;
    gap: .7pc;
    width: 100px;
    height: 100%;
    padding: .4pc;
    overflow-y: auto;
    direction: rtl;
}

#pop-up .cnt .text .product-viewer .img-area .img-selector::-webkit-scrollbar {
    width: .2pc !important;
    height: .2pc !important;
}

#pop-up .cnt .text .product-viewer .img-area .img-selector::-webkit-scrollbar-thumb {
    background: white !important;
}

#pop-up .cnt .text .product-viewer .img-area .img-selector .sc {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: .2pc;
    overflow: hidden;
    cursor: pointer;
    transition: .2s ease;
    border: 2px solid transparent;
}

#pop-up .cnt .text .product-viewer .img-area .img-selector .sc:hover {
    transform: scale(1.05);
}

#pop-up .cnt .text .product-viewer .img-area .img-selector .sc:active {
    transition: .1s ease;
    transform: scale(1.02);
}

#pop-up .cnt .text .product-viewer .img-area .img-selector .sc.active {
    border-color: var(--effect-color);
}

#pop-up .cnt .text .product-viewer .img-area .img-selector .sc.active:hover {
    transform: scale(1);
}

#pop-up .cnt .text .product-viewer .img-area .img-selector .sc.active:active {
    transform: scale(1);
}

#pop-up .cnt .text .product-viewer .img-area .img-selector .sc img {
    position: absolute;
    width: 100%;
    object-fit: cover;
}

#pop-up .cnt .text .product-viewer .img-area .img-output {
    flex: 1;
    position: relative;
    height: 100%;
    overflow-y: scroll;
    border-radius: .2pc;
}

#pop-up .cnt .text .product-viewer .img-area .img-output::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 35, 255, 0.3);
    backdrop-filter: blur(.2pc);
    border-radius: .2pc;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

#pop-up .cnt .text .product-viewer .img-area .img-output.load::before {
    opacity: 1;
    visibility: visible;
}

#pop-up .cnt .text .product-viewer .img-area .img-output::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid white;
    border-bottom-color: transparent;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

#pop-up .cnt .text .product-viewer .img-area .img-output.load::after {
    opacity: 1;
    visibility: visible;
    animation: imgLoader 2s ease infinite;
}

@keyframes imgLoader {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#pop-up .cnt .text .product-viewer .img-area .img-output::-webkit-scrollbar {
    width: 0;
}

#pop-up .cnt .text .product-viewer .img-area .img-output img {
    position: absolute;
    width: 100%;
}

#pop-up .cnt .text .product-viewer .text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 1pc;
    height: 100%;
    font-family: "Quicksand", sans-serif;
    color: white;
}

#pop-up .cnt .text .product-viewer .text-area>div {
    width: 100%;
}

#pop-up .cnt .text .product-viewer .text-area .name {
    padding-right: 2pc;
}

#pop-up .cnt .text .product-viewer .text-area .name p {
    font-size: 1.7rem;
}

#pop-up .cnt .text .product-viewer .text-area .category p {
    font-size: 1rem;
    font-weight: 600;
}

#pop-up .cnt .text .product-viewer .text-area .price-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#pop-up .cnt .text .product-viewer .text-area .price-button .price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .2pc;
}

#pop-up .cnt .text .product-viewer .text-area .price-button .price p {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--effect-color);
}

#pop-up .cnt .text .product-viewer .text-area .price-button .price .price-time {
    font-size: .9rem;
}

#pop-up .cnt .text .product-viewer .text-area .price-button .button {
    background-color: var(--effect-color);
    padding: .7pc 1.4pc;
    border-radius: 2pc;
    cursor: pointer;
    user-select: none;
    transition: .2s ease;
}

#pop-up .cnt .text .product-viewer .text-area .price-button .button p {
    font-size: .9rem;
    font-weight: 600;
}

#pop-up .cnt .text .product-viewer .text-area .price-button .button:hover {
    filter: brightness(120%);
}

#pop-up .cnt .text .product-viewer .text-area .price-button .button:active {
    transition: .1s ease;
    transform: scale(.98);
}

#pop-up .cnt .text .product-viewer .text-area .info-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: .5pc;
    overflow-y: auto;
}

#pop-up .cnt .text .product-viewer .text-area .info-area>div {
    flex: 1;
    width: 100%;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .about {
    width: 100%;
    max-height: max-content;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .about p {
    font-size: .9rem;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features {
    display: flex;
    flex-direction: column;
    gap: .5pc;
    padding-top: 1pc;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    overflow: hidden;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .2pc;
    border-radius: .2pc;
    transition: .2s ease;
    cursor: pointer;
    user-select: none;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature .title:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature .title:active {
    transition: .1s ease;
    background-color: rgba(255, 255, 255, 0.12);
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature .title p {
    width: max-content;
    font-weight: 600;
    padding-right: .3pc;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature .title svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: white;
    transition: .2s ease;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature.active .title svg {
    transform: rotate(135deg);
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature .ft-output {
    display: grid;
    grid-template-rows: 0fr;
    align-items: start;
    padding-left: 1.2pc;
    overflow: hidden;
    transition: .2s ease;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature .ft-output .ft {
    overflow: hidden;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature.active .ft-output {
    grid-template-rows: 1fr;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .features .feature .ft-output .ft p {
    font-size: .9rem;
    text-transform: capitalize;
    margin-bottom: .25pc;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .lisances {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: max-content;
    padding: .7pc 0;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .lisances p {
    font-size: .8rem;
    text-align: center;
}

#pop-up .cnt .text .product-viewer .text-area .info-area .lisances p a {
    font-weight: 600;
    color: rgb(149, 113, 255);
}

#pop-up .cnt .text .b {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    width: 100%;
    max-height: max-content;
}

#pop-up .cnt .text .b .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1pc;
}

#pop-up .cnt .text .b .buttons .button {
    padding: .7pc 1.2pc;
    border-radius: .5pc;
    background-color: var(--main-color);
    transition: .2s ease;
    cursor: pointer;
}

#pop-up .cnt .text .b .buttons .button:hover {
    transform: translateY(-3%);
}

#pop-up .cnt .text .b .buttons .button:active {
    transition: .1s ease;
    transform: translateY(0%);
}

#pop-up .cnt .text .b .buttons .button:nth-child(1) {
    background-color: white;
}

#pop-up .cnt .text .b .buttons .button p {
    font-family: 'Quicksand', serif;
    font-size: .9rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
}

#pop-up .cnt .text .b .buttons .button:nth-child(1) p {
    color: var(--main-color);
}

@media only screen and (max-width: 900px) {
    #pop-up.productViewer {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 0;
    }

    #pop-up .cnt .text .product-viewer .left,
    #pop-up .cnt .text .product-viewer .right {
        display: none;
    }

    #mobile-viewer {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(7, 1fr);
        gap: 1pc;
        width: 100%;
        height: 100%;
    }

    #mobile-viewer .img-output {
        grid-column: 1 / 3;
        grid-row: 1 / 6;
        border: 2px solid red;
    }

    #mobile-viewer .text-area {
        grid-column: 3 / 7;
        grid-row: 1 / 5;
        border: 2px solid green;
    }

    #mobile-viewer .tech-info {
        grid-column: 3 / 7;
        grid-row: 5 / 7;
        border: 2px solid khaki;
    }

    #mobile-viewer .button {
        grid-column: 1 / 7;
        grid-row: 7 / 8;
        border: 2px solid mediumblue;
    }
}

@media only screen and (max-width: 700px) {
    #pop-up .cnt .close svg {
        fill: var(--error);
    }

    #pop-up .cnt .close:hover {
        background-color: black;
    }

    #pop-up .cnt .text .product-viewer {
        flex-direction: column;
        overflow-y: auto;
    }
}

@media only screen and (max-width: 500px) {
    #pop-up .cnt .text .product-viewer .img-area {
        flex-direction: column-reverse;
        min-height: 400px;
    }

    #pop-up .cnt .text .product-viewer .img-area .img-selector {
        flex-direction: row;
        width: 100%;
        height: 80px;
        overflow-y: hidden;
        overflow-x: auto;
        direction: ltr;
    }

    #pop-up .cnt .text .product-viewer .img-area .img-selector .sc {
        width: 80px;
        height: 100%;
    }
}