/* Copy Animation */
.base-color {
    color: #4634ff !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: #4634ff;
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}

.hover-input-popup {
    position: relative;
    z-index: 9;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 70%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}

.cmn-btn {
    background-color: #3d2bfb !important;
}

.body-wrapper:has(.center-wrapper) {
    display: flex;
    flex-direction: column;
}

.center-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.manager-logo {
    display: flex;
    max-width: 200px;
    width: 100%;
    margin: 0 auto 16px;
}



/* alert */
.alert {
    margin-bottom: 0;
    font-weight: 400;
    padding: 17px 24px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
    .alert {
        padding: 16px;
    }
}

@media screen and (max-width: 575px) {
    .alert {
        padding: 12px;
    }
}

.alert__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.alert__content {
    width: calc(100% - 24px);
    padding-left: 32px;
}

@media screen and (max-width: 991px) {
    .alert__content {
        padding-left: 16px;
    }
}

@media screen and (max-width: 575px) {
    .alert__content {
        padding-left: 0;
        width: 100%;
        margin-top: 6px;
    }
}

.alert__title {
    color: hsl(var(--base-two) / 0.8);
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 6px;
}

.alert__desc {
    color: hsl(var(--base-two) / 0.5);
    display: block;
    line-height: 1.375;
}

@media screen and (max-width: 424px) {
    .alert__desc {
        font-size: 0.8125rem;
    }
}

.alert__link {
    position: relative;
}

.alert--info {
    border: 1px solid rgb(0 147 255 / 30%);
    background-color: rgb(0 147 255 / 5%);
}

.alert--info .alert__icon {
    color: rgb(0 147 255);
}

.alert__icon {
    margin-top: 18px;
}

.alert--primary {
    border: 1px solid rgb(70 52 255 / 30%);
    background-color: rgb(70 52 255 / 5%);
}

.alert--primary .alert__icon {
    color: rgb(70 52 255);
}

.alert--danger {
    border: 1px solid rgb(220 53 69 / 50%);
    background-color: rgb(220 53 69 / 5%);
}

.alert--danger .alert__icon {
    color: rgb(220 53 69);
}

.alert--warning {
    border: 1px solid rgba(220, 206, 53, 0.5);
    background-color: rgba(220, 206, 53, 0.05);
}

.alert--warning .alert__icon {
    color: rgba(220, 206, 53);
}

.input-group-text.mobile-code {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    color: #000;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable {
    color: #000;
}
