@font-face {
    font-family: 'Gotham';
    src: url('../fonts/SVN-GothamRoundedRegular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/SVN-GothamRoundedMedium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/SVN-GothamRoundedBold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/SVN-GothamRoundedLight.ttf') format('truetype');
    font-weight: 300;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-tini: 12px;
    --font-size-h1: 50px;
    --font-size-h2: 40px;
    --font-size-h3: 32px;
    --font-size-h4: 28px;
    --font-size-h5: 22px;
    --font-size-h6: 18px;
    --color-pri: #1e3585;
    --color-sec: #08A8DA;
    --color-thr: #0191d0;
    --color-fou: #CFEFFF;
    --color-fiv: #08A8DA;
    --color-bg: #fff;
    --color-text: #1e3585;
    --color-line: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 4.98%, #848484 48.99%, #000000 85.28%), linear-gradient(270deg, #FFD248 14.42%, #EFE061 34.13%, #FFD36E 62.5%, #FFE55F 100%);
    --color-line-text: linear-gradient(270deg, #fcc540 14.42%, #EFE061 34.13%, #faa502 62.5%, #FFE55F 100%);
    --color-gray: #393E40;
    --color-white: #fff;
    --color-black: #000;
    --section-base: 40px;
    --button-height: 53px;
}

/* Basic */
body {
    font-family: "Gotham", sans-serif;
    color: var(--color-text);
    font-size: var(--font-size-base);
    line-height: 1.6;
    font-weight: 400;
    background-color: var(--color-white);
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: calc(var(--section-base) * 0.6);
    line-height: 1.2;
}

.h1,
h1 {
    font-size: var(--font-size-h1);
}

.h2,
h2 {
    font-size: var(--font-size-h2);
}

.h3,
h3 {
    font-size: var(--font-size-h3);
}

.h4,
h4 {
    font-size: var(--font-size-h4);
}

.h5,
h5 {
    font-size: var(--font-size-h5);
}

.h6,
h6 {
    font-size: var(--font-size-h6);
}

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

a {
    color: var(--color-text);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-pri);
}

input,
select {
    display: inline-block;
}

hr {
    border-width: 1px;
    border-color: var(--color-text);
    opacity: 0.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-pri);
    background: var(--color-line);
    background-blend-mode: overlay;
    border: 0;
    height: var(--button-height);
    padding: 5px calc(var(--section-base) * 0.4);
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    border-radius: 8px;
    font-size: var(--font-size-h6);
    background-size: 150%;
    background-position: left 0 center;
}

.btn-lg {
    height: calc(var(--button-height) * 1.15);
}

.btn-xl {
    height: calc(var(--button-height) * 1.35);
}

.btn-small {
    font-size: var(--font-size-small);
    /* font-weight: 500; */
    height: calc(var(--button-height) * 0.85);
}

.btn-tini {
    font-size: var(--font-size-tini);
    height: calc(var(--button-height) * 0.58);
}

.btn-tini svg {
    width: calc(var(--button-height) * 0.35);
}

.btn:focus,
.btn:hover {
    color: var(--color-pri);
    box-shadow: 4px 4px 6px 0px #CC7600CC inset;
    /* background-position: left 50% center; */
}

.btn-out {
    background: transparent;
    border: 1px solid #FFD36E;
    background: var(--color-line-text);
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-out-dark {
    background: transparent;
    border: 1px solid #DDDEDF;
    transition: none;
}

.btn-out:focus,
.btn-out:hover {
    border-color: #C8A948;
    box-shadow: none;
}

.btn-out-dark:focus,
.btn-out-dark:hover {
    box-shadow: none;
}

.btn.bg-fiv:focus,
.btn.bg-fiv:hover,
.btn.bg-pri-light:focus,
.btn.bg-pri-light:hover {
    box-shadow: none;
}

/*
.btn-bg {
    background-color: var(--color-sec);
    background-image: url('../images/btn.svg'), url('../images/btna.svg');
    background-size: auto 100%;
    background-position: left top, right bottom;
    background-repeat: no-repeat;
}

.btn-bg-light {
    background-color: var(--color-fou);
    background-image: url('../images/btnl.svg'), url('../images/btnla.svg');
}

.btn-bg:focus,
.btn-bg:hover {
    background-color: var(--color-thr);
    background-position: left top, right bottom;
}

.btn-bg-light:focus,
.btn-bg-light:hover {
    background-color: #C6E2FF;
} */

.bg-line {
    background: #FFD36E;
    background: var(--color-line);
    background-blend-mode: overlay;
}

.text-line {
    background: #FFD36E;
    background: var(--color-line-text);
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pb-base {
    padding-bottom: var(--section-base) !important;
}

.pb-base-1 {
    padding-bottom: calc(var(--section-base) * 0.85) !important;
}

.pb-base-2 {
    padding-bottom: calc(var(--section-base) * 1.4) !important;
}

.pb-big {
    padding-bottom: calc(var(--section-base) * 1.6) !important;
}

.pt-base {
    padding-top: var(--section-base) !important;
}

.pt-base-1 {
    padding-top: calc(var(--section-base) * 0.85) !important;
}

.pt-base-2 {
    padding-top: calc(var(--section-base) * 1.4) !important;
}

.pt-big {
    padding-top: calc(var(--section-base) * 1.6) !important;
}


.pe-base-2 {
    padding-right: calc(var(--section-base) * 1.4) !important;
}

.ps-base-2 {
    padding-left: calc(var(--section-base) * 1.4) !important;
}

.mt-base {
    margin-top: var(--section-base) !important;
}

.mt-big {
    margin-top: calc(var(--section-base) * 1.6) !important;
}

.mb-half {
    margin-bottom: calc(var(--section-base) * 0.6) !important;
}

.mb-base {
    margin-bottom: var(--section-base) !important;
}

.mb-big {
    margin-bottom: calc(var(--section-base) * 1.6) !important;
}

.form-control,
textarea,
select,
input {
    height: var(--button-height);
    background-color: var(--color-white);
    border-radius: 6px;
    padding: 5px calc(var(--section-base) * 0.3);
    border: 0 !important;
    outline: none !important;
    width: 100%;
    color: var(--color-black);
    box-shadow: none !important
}

.input-small {
    height: calc(var(--button-height) * 0.85);
}

.input-bg {
    background-color: #EFEFEF !important;
}

.input-border {
    border: 1px solid #D9D9D9 !important;
}

textarea {
    height: calc(var(--section-base) * 3.5);
}

::placeholder {
    color: var(--color-text);
    opacity: 0.5;
    font-style: italic;
}

select {
    -webkit-appearance: none;
    background-image: url('../images/select.svg');
    background-position: center right calc(var(--section-base)*.5);
    background-repeat: no-repeat;
    padding-right: calc(var(--section-base)*1.5);
}

input[type="checkbox"] {
    padding: 0;
    width: 16px;
    height: 16px;
}

.font-small {
    font-size: var(--font-size-small);
}

.font-tini {
    font-size: var(--font-size-tini);
}

.font-spec {
    font-family: "Gotham", serif;
}

.gap-base {
    gap: calc(var(--section-base) * 0.375);
}

.gap-big {
    gap: calc(var(--section-base) * 0.75);
}

.gap-extra {
    gap: calc(var(--section-base) * 1);
}

.p-16 {
    padding: 16px;
}

.rounded-base {
    border-radius: 16px;
}

.g-base {
    --bs-gutter-y: calc(var(--section-base) * 1);
    --bs-gutter-x: calc(var(--section-base) * 1);
}


.color-text {
    color: var(--color-text);
}

.color-white {
    color: var(--color-white) !important;
}

.color-black {
    color: var(--color-black);
}

.color-gray {
    color: var(--color-gray);
}

.color-pri {
    color: var(--color-pri);
}

.color-sec {
    color: var(--color-sec);
}

.color-thr {
    color: var(--color-thr);
}

.color-fou {
    color: var(--color-fou) !important;
}

.color-fiv {
    color: var(--color-fiv);
}

.color-red {
    color: #F04438;
}

.bg-red {
    background: #F04438 !important;
}

.bg-gray {
    background-color: var(--color-gray) !important;
}

.bg-pri-light {
    background: #E6E9FF !important;
}

.bg-gray-1 {
    background: #EFEFEF !important;
}

.bg-gray-2 {
    background: #EFF1FB;
}

.color-gray {
    color: #393E40;
}

.bg-bg {
    background: var(--color-bg) !important;
}

.bg-pri {
    background: var(--color-pri) !important;
}

.bg-sec {
    background: var(--color-sec) !important;
}

.bg-thr {
    background: var(--color-thr) !important;
}

.bg-fou {
    background: var(--color-fou) !important;
}

.bg-fiv {
    background: var(--color-fiv) !important;
}

.bg-yellow-light {
    background-color: #FFF0D9;
}

.color-yellow {
    color: #CC7600;
}

.fw-medium {
    font-weight: 500;
}

/* Main */

.neo-header .main-content {
    padding-top: 68px;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-wrapper {
    height: auto;
}

.swiper-slide {
    height: auto;
}

.section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.img-wrap {
    position: relative;
    padding-top: 167%;
    overflow: hidden;
}

.img-wrap>img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.img-wrap.has-hover:hover>img {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    width: calc(var(--button-height) * 0.86);
    height: calc(var(--button-height) * 0.86);
    background-color: var(--color-pri);
    border-radius: 50%;
}

.swiper-button-prev {
    left: calc(var(--section-base) * 1);
}

.swiper-button-next {
    right: calc(var(--section-base) * 1);
}

.section-banner .swiper-button-next,
.section-banner .swiper-button-prev {
    background-color: var(--color-white);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: calc(var(--section-base) * 0.5);
    height: calc(var(--section-base) * 0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: none;
}

.item-slider .img-wrap {
    padding-top: 50%;
}

.item-slider .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.slider-group-3 .img-wrap {
    padding-top: 60%;
}

.section-featured {
    margin-top: calc(var(--section-base) * -0.85);
    z-index: 1;
}

.box-num {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.item-num img {
    width: calc(var(--section-base) * 2.2);
    min-width: calc(var(--section-base) * 2.2);
    height: calc(var(--section-base) * 2.2);
}

.item-num h3 {
    margin-bottom: calc(var(--section-base) * 0.2);
}

.box-timeline {
    position: relative;
    width: 145px;
    height: 8px;
    border-radius: 8px;
    background-color: rgba(116, 123, 126, 0.2);
}

.box-timeline span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--color-line);
    background-blend-mode: overlay;
    border-radius: 8px;
}

.box-timeline img {
    position: absolute;
    top: 4px;
    transform: translateX(-50%) translateY(-50%);
    width: 30px;
    height: 30px;
    z-index: 1;
}

.one-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.param-line {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-content {
    position: relative;
}

.item-content .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.70) 100%);
    padding: calc(var(--section-base) * 1.4) calc(var(--section-base) * 0.6) calc(var(--section-base) * 0.6);
    align-items: center;
    color: var(--color-white);
}

.item-content .overlay img {
    width: calc(var(--section-base) * 1.2);
    height: calc(var(--section-base) * 1.2);
    object-fit: cover;
    border-radius: 50%;
}

.content-bg {
    background-image: url('../images/bg.svg');
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
}

.content-bg-2 {
    background-image: url('../images/bg-2.svg');
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
}

.content-bg-3 {
    background-image: url('../images/bg-3.svg');
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
}

.content-bg-4 {
    background-image: url('../images/bg-4.svg');
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
}

.content-bg-5 {
    background: linear-gradient(180deg, #FFFFFF 40%, #CFEFFF 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-6 {
    background-image: url('../images/bg-6.svg');
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
}

.bg-7 {
    background-image: url('../images/bg-7.svg');
    background-size: auto;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.bg-8 {
    background-color: var(--color-pri);
    background-image: url('../images/bg-8.svg');
    background-size: calc(100% - 60px) auto;
    background-position: top left;
    background-repeat: no-repeat;
}

.bg-line-light {
    background: #CFEFFF;
    background: linear-gradient(180deg, #FFFFFF 40%, #CFEFFF 100%);
}

.bg-02 {
    background-image: url('../images/015.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.item-slider-page .img-wrap {
    padding-top: 60%;
}

.bg-03 {
    background-image: url('../images/013.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.bg-04 {
    background-image: url('../images/bg-03.svg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.bg-05 {
    background-image: url('../images/016.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.box-countdown .box-time {
    max-width: 680px;
}

.box-countdown .box-time .countdown .btn {
    cursor: default;
    font-size: var(--font-size-h2);
}

.box-countdown .box-time .countdown .btn span {
    background: var(--color-line-text);
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-tabs {
    padding: 10px;
    background-color: #59ABFF;
    display: flex;
    gap: 10px;
    border-radius: 16px;
    flex-wrap: nowrap;
}

.nav-tabs .nav-item {
    width: 100%;
}

.nav-tabs .nav-item .nav-link {
    width: 100%;
    background: #A1D0FF;
    border-radius: 10px;
    border: 0;
    font-weight: bold;
    font-size: var(--font-size-h6);
    color: var(--color-pri);
    padding: 0;
    display: flex;
    white-space: nowrap;
    height: calc(var(--button-height) * 0.9);
    justify-content: center;
    align-items: center;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: 0;
    color: var(--color-pri);
    background: var(--color-white);
}

.line-dot {
    display: flex;
    width: 100%;
    position: relative;
    height: 3px;
    background-color: var(--color-sec);
}

.line-dot::before,
.line-dot::after {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    top: -3px;
    left: 0;
    border-radius: 50%;
    display: flex;
    background-color: var(--color-sec);
}

.line-dot::after {
    left: unset;
    right: 0;
}

.table thead {
    border-bottom: 24px solid transparent;
}

.table th {
    background-color: #EFF1FB;
    padding: 20px;
    padding-bottom: 10px;
    border-bottom: 0;
}

.table td {
    padding: 24px 20px;
    border-bottom: 0;
}

.table-small td {
    padding: 10px 20px;
}

.table th:first-child,
.table td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.table th:last-child,
.table td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.btn-num {
    width: calc(var(--button-height) * 0.9);
    height: calc(var(--button-height) * 0.9);
    padding: 0;
}

.avt {
    width: calc(var(--button-height) * 0.9);
    height: calc(var(--button-height) * 0.9);
    object-fit: cover;
    border-radius: 50%;
}

.btn-social {
    display: flex;
    gap: 10px;
    align-items: center;
    height: calc(var(--button-height) * 0.9);
    background: #EFEFEF;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 16px;
}

.btn-social .b {
    border-left: 1px solid #DDDEDF;
    display: flex;
    height: calc(var(--button-height) * 0.54);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: rgba(239, 239, 239, 0.4);
}

.pagination {
    display: flex;
    gap: calc(var(--section-base) * 0.35);
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination li a {
    width: calc(var(--button-height) * 0.9);
    height: calc(var(--button-height) * 0.9);
    border-radius: 12px;
    border: 1px solid #DDDEDF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li a:hover,
.pagination li a.current {
    border-color: var(--color-pri);
    color: var(--color-white);
    background-color: var(--color-pri);
}

.table-responsive {
    scrollbar-gutter: stable;
}

.table-responsive::-webkit-scrollbar {
    height: 14px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-image: url('../images/scroll.svg');
    background-size: 100% 100%;
    border-radius: 7px;
}

.filter-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 24px;
}

.accordion-item {
    border: 0 !important;
    border-radius: 0 !important;
    background: none;
    border-bottom: 1px solid #DDDEDF !important;
}

.accordion-button {
    background: none;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background: none;
    color: var(--color-text);
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.p-24 {
    padding: 24px;
}

.modal-content {
    border: 0;
    border-radius: 16px;
}

.modal-header {
    justify-content: center;
    padding: calc(var(--section-base) * 0.65) calc(var(--section-base) * 0.85);
    border-radius: 0;
    border: 0;
}

.modal-header .btn-close {
    position: absolute;
    right: calc(var(--section-base) * 0.6);
    top: calc(var(--section-base) * 0.6);
    padding: 0;
    margin: 0;
}

.modal {
    --bs-modal-width: 680px;
}

.modal-body {
    max-width: 800px;
    margin: auto;
    width: 100%;
    padding: calc(var(--section-base) * 0.85) calc(var(--section-base) * 1.1);
}

.form-control.is-valid,
.was-validated .form-control:valid {
    background-image: none;
}

span.btn {
    cursor: unset;
}

.big-radio {
    background-color: #EFEFEF;
    padding: 14px;
    cursor: pointer;
}

.big-radio .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 8px;
    background-color: #A8ADAF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.big-radio:has(input[type="radio"]:checked) {
    background-color: #C6E2FF;
    color: var(--color-pri);
}

.big-radio:has(input[type="radio"]:checked) .icon {
    background-color: var(--color-thr);
}

.p-base {
    padding: calc(var(--section-base) * 0.85);
}

.account-avt {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
}

.account-avt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-group {
    position: relative;
    cursor: pointer;
}

.file-group input {
    cursor: pointer;
}

.file-group .btn {
    pointer-events: none;
}

.big-input {
    aspect-ratio: 1/1;
    border-radius: 16px;
    text-align: center;
    font-size: var(--font-size-h3);
    color: var(--color-pri);
    background-color: var(--color-fou);
    height: auto;
}

.list-join li {
    position: relative;
    padding-left: calc(var(--section-base) * 0.75);
}

.list-join li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    background-color: var(--color-pri);
    width: calc(var(--section-base) * 0.4);
    height: calc(var(--section-base) * 0.4);
    border-radius: 50%;
}

.btn-congu {
    font-size: var(--font-size-h4);
    color: #CFEFFF;
    border: 2px solid #5DDCA0;
    background: linear-gradient(90deg, #12B76A, #01A056);
    padding-left: calc(var(--section-base) * 1.1);
    padding-right: calc(var(--section-base) * 1.1);
    border-radius: var(--button-height);
}

.btn-congu:hover,
.btn-congu:focus {
    color: #CFEFFF;
    border: 2px solid #5DDCA0;
    background: linear-gradient(90deg, #12B76A, #01A056);
}

.cccd-box {
    border-radius: 6px;
    background-color: var(--color-white);
    padding: calc(var(--section-base) * 0.55);
    text-align: center;
}

.cccd-box .img img {
    width: 150px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.cccd-box .image-box {
    padding: calc(var(--section-base) * 0.8);
    border-radius: 8px;
    border: 1px solid #DDDEDF;
    position: relative;
}

.cccd-box .image-box .imgInp {
    z-index: 1;
    left: 0;
    top: 0;
}

.dropdown-menu {
    background: #EFF1FB;
    border-radius: 16px;
    border: 0;
}

.dropdown-item {
    padding: 8px 24px;
}

.avt-box {
    position: relative;
    width: 180px;
}

.avt-box .mask {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.avt-box .avt {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    -webkit-mask-image: url("../images/border-2.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url("../images/border-2.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.avt-box .num {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-line-text);
    background-blend-mode: overlay;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 13px);
    bottom: -10px;
    z-index: 1;
}

.user-box {
    margin-top: -10px;
}

.modal-header-pri .btn-close {
    filter: invert(1);
    opacity: 1;
}

.item-top-user {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item-top-user .name {
    background: #CFEFFF;
    background: linear-gradient(180deg, #CFEFFF 40%, #08A8DA 100%);
    padding: 6px 10px;
    width: 100%;
}

.item-top-user .avt-box {
    width: 110px;
}

.form-check-input {
    background-color: #E6E9FF;
    border: 1px solid var(--color-pri) !important;
}

.form-check-input:checked {
    background-color: var(--color-pri);
}

.wrap-password {
    position: relative;
}

.wrap-password input {
    background-image: none !important;
}

.wrap-password span {
    position: absolute;
    right: calc(var(--section-base) * 0.35);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}