html,
body {
    min-height: 100%;
    margin: 0;
    color: #080a18;
    background: #fff;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: 16px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    color: inherit;
    outline: none !important;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

.page__wrapper {
    min-height: 100%;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.center-content {
    text-align: center;
}

.mb25 {
    margin-bottom: 25px !important;
}

.not-visible {
    display: none !important;
}

.wrapper,
.content {
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.container {
    max-width: 1180px;
}

.admin-wrapper {
    width: 100%;
}

.admin-content {
    width: min(1210px, calc(100% - 40px));
    margin: 34px auto 50px;
}

.admin-menu .nav {
    display: flex;
    margin: 0;
}

.nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu__item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.input-text,
.input-select,
.input-textarea {
    width: auto;
    max-width: 100%;
    border: 1px solid rgba(17, 24, 39, .10);
    border-radius: 18px;
    color: #101828;
    background: #fff;
    box-shadow: none;
}

.input-text,
.input-select {
    min-height: 42px;
    padding: 0 14px;
}

.input-textarea {
    min-height: 120px;
    padding: 14px;
    resize: vertical;
}

.input-select {
    padding-right: 38px;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #667085 50%),
        linear-gradient(135deg, #667085 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.input-text.error,
.input-select.error,
.input-textarea.error {
    border-color: rgba(255, 47, 125, .72);
    color: #b4235c;
}

.sm-input-w {
    width: 58px;
}

.input-text:focus,
.input-select:focus,
.input-textarea:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.input-text:focus,
.input-select:focus,
.input-textarea:focus {
    border-color: rgba(255, 47, 125, .45);
    box-shadow: 0 0 0 4px rgba(255, 47, 125, .08);
}

.input-checkbox {
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-row {
    margin-bottom: 16px;
}

.label-form {
    display: block;
    margin: 0;
    color: #344054;
    font-weight: 700;
}

.label-form.label-to-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.label-form.label-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btn-red {
    color: #fff;
    background: #ff2f7d;
}

.btn-red:hover,
.btn-red:focus {
    color: #fff;
    background: #e81f6c;
    text-decoration: none;
}

.btn-white {
    color: #344054;
    border: 1px solid rgba(17, 24, 39, .10);
    background: #fff;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.active {
    color: #ff2f7d;
    border-color: rgba(255, 47, 125, .28);
    background: #fff6fb;
    text-decoration: none;
}

.red {
    color: #ff2f7d;
}

.italic {
    font-style: italic;
}

.buy_credits_msg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    display: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 47, 125, .16);
    background: #fff;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .10);
}

.buy_credits_msg:not(.not-visible) {
    display: block;
}

.buy_credits_msg .container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
}

.buy_credits_msg p {
    margin: 0;
    color: #080a18;
    font: 800 14px/38px "Inter", Arial, sans-serif;
}

.buy_credits_msg p a {
    color: #080a18;
    text-decoration: none;
}

.buy_credits_msg p a:hover {
    color: #ff2f7d;
}

.buy_credits_msg .goto-btn {
    margin-left: 18px;
}

.buy_credits_msg .goto-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: #fff;
    background: #ff2f7d;
    font: 900 13px/1 "Inter", Arial, sans-serif;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(255, 47, 125, .18);
}

.buy_credits_msg .goto-btn a:hover {
    color: #fff;
    background: #e81f6c;
}

.buy_credits_msg .icon-remove {
    position: absolute;
    top: 15px;
    right: 16px;
    z-index: 3;
    color: #667085;
    cursor: pointer;
}

.box-modal {
    position: relative;
    width: min(420px, calc(100vw - 32px));
    padding: 28px;
    border-radius: 24px;
    color: #080a18;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .18);
}

.box-modal_close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    border-radius: 999px;
    color: #667085;
    background: #fff;
    cursor: pointer;
}

.box-modal_close:hover {
    color: #ff2f7d;
}

.profile-img {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.profile-link-controls,
.pagination-list,
.list-attachments {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #fff;
    color: #344054;
    font: 800 14px/1 "Inter", Arial, sans-serif;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    color: inherit;
    text-decoration: none;
}

.pagination-item.active,
.pagination-item:hover {
    color: #fff;
    background: #ff2f7d;
    box-shadow: 0 14px 28px rgba(255, 47, 125, .22);
}

.pagination-item.prev,
.pagination-item.next {
    border: 1px solid rgba(255, 47, 125, .14);
    color: #ff2f7d;
}

.pagination-item.prev:hover,
.pagination-item.next:hover {
    color: #fff;
}

.profile-settings-list,
.profile-settings-row {
    display: flex;
    width: 100%;
}

.profile-settings-list {
    gap: 18px;
}

.profile-settings-row {
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.profile-setting-label {
    color: #667085;
    font: 800 12px/1.2 "Inter", Arial, sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.profile-setting-option,
.profile-link {
    color: #ff2f7d;
    font-weight: 800;
    text-decoration: none;
}

.profile-setting-option:hover,
.profile-link:hover {
    color: #e81f6c;
    text-decoration: none;
}

.header-profile-block {
    margin: 0 0 18px;
    color: #080a18;
    font: 900 22px/1.2 "Manrope", "Inter", Arial, sans-serif;
}

.profile-content-block-wrapper p {
    margin: 0 0 10px;
    color: #475467;
    font: 500 15px/1.6 "Inter", Arial, sans-serif;
}

.select-group,
.select-element {
    position: relative;
}

.input-group .input-text,
.input-group .label-text {
    margin-right: 6px;
}

#info_message {
    left: 50%;
    top: 18px !important;
    display: none;
    width: min(520px, calc(100% - 32px));
    min-height: 0;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateX(-50%);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid rgba(255, 47, 125, .16);
    box-shadow: 0 20px 50px rgba(16, 24, 40, .18);
    overflow: hidden;
    z-index: 50000;
}

#info_message .center_auto {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: auto;
    margin: 0;
    padding: 16px 58px 16px 20px;
}

#info_message .message_area {
    float: none;
    width: auto;
    color: #101828 !important;
    font: 800 14px/1.45 "Inter", Arial, sans-serif !important;
    text-shadow: none !important;
}

#info_message .button_area {
    position: absolute;
    right: 14px;
    top: 50%;
    margin-left: auto;
    flex: 0 0 28px;
    float: none;
    width: 28px;
    height: 28px;
    margin: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 47, 125, .10) !important;
    cursor: pointer;
}

#info_message .button_area:before,
#info_message .button_area:after {
    content: "";
    position: absolute;
    left: 8px;
    top: 13px;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #ff2f7d;
}

#info_message .clearboth {
    display: none;
}

#info_message .button_area:before {
    transform: rotate(45deg);
}

#info_message .button_area:after {
    transform: rotate(-45deg);
}

#info_message.succ_bg {
    border-color: rgba(22, 163, 74, .18);
}

#info_message.succ_bg .button_area {
    background: rgba(22, 163, 74, .10) !important;
}

#info_message.succ_bg .button_area:before,
#info_message.succ_bg .button_area:after {
    background: #16a34a;
}

#info_message.error_bg {
    border-color: rgba(255, 47, 125, .22);
}

#info_message.warn_bg {
    border-color: rgba(128, 26, 52, .30);
}

#info_message.warn_bg .button_area {
    background: rgba(128, 26, 52, .10) !important;
}

#info_message.warn_bg .button_area:before,
#info_message.warn_bg .button_area:after {
    background: #801a34;
}

#info_message.info_bg {
    border-color: rgba(14, 165, 233, .22);
}

@media (max-width: 780px) {
    .admin-content {
        width: min(100% - 28px, 1210px);
        margin-top: 24px;
    }

    .pull-left,
    .pull-right {
        float: none;
    }

    .buy_credits_msg .container {
        width: min(100% - 32px, 1180px);
    }

    .buy_credits_msg .goto-btn {
        margin: 10px 0 0;
    }
}
