/* <============== STYLES ==============> */

/* <======== Font Links ========> */

@font-face {
    font-family: "AV-200"; 
    src: url(fonts/AVFontimer-ExtraLight.ttf);
}

@font-face {
    font-family: "AV-300"; 
    src: url(fonts/AVFontimer-Light.ttf);
}

@font-face {
    font-family: "AV-400"; 
    src: url(fonts/AVFontimer-Regular.ttf);
}

@font-face {
    font-family: "AV-500"; 
    src: url(fonts/AVFontimer-Medium.ttf);
}

@font-face {
    font-family: "AV-600"; 
    src: url(fonts/AVFontimer-SemiBold.ttf);
}

@font-face {
    font-family: "AV-700"; 
    src: url(fonts/AVFontimer-Bold.ttf);
}

@font-face {
    font-family: "AV-800"; 
    src: url(fonts/AVFontimer-ExtraBold.ttf);
}

@font-face {
    font-family: "AV-900"; 
    src: url(fonts/AVFontimer-Black.ttf);
}


/* <======== Default Styles ========> */

:root {
    --blue-dark: rgb(64, 103, 255);
    --blue-light: rgb(74, 111, 255);
}


body {
    margin: 0;
    font-family: "AV-400";
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

body,html {
    overflow-x: hidden;
}

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

* {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0;
    font-family: "AV-600";
    letter-spacing: 0;
}

p {
    margin: 0;
    padding: 0;
}

a {
    color: black;
    text-decoration: none;
    transition: .3s;
    letter-spacing: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    font-family: "AV-400";
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 74vw;
}

.chats .container {
    padding: 0 130px;
}

img {
    width: 100%;
}

button {
    background: none;
    border: 0;
    outline: 0;
    font-family: "AV-500";
    font-size: 18px;
    transition: .3s;
    letter-spacing: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    cursor: pointer;
    -ms-user-select: none; 
	-moz-user-select: none; 
	-webkit-user-select: none; 
	user-select: none; 
}

button.blue {
    border-radius: 5px;
    background: var(--blue-light);
    color: white;
}

button.blue:hover {
    background: var(--blue-dark);
}

button.blue:active {
    transform: scale(0.95);
}

b {
    font-weight: normal;
}

p.error {
    font-family: "AV-500";
    font-size: 20px;
    color: red;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

body:has(.mask.visible) {
    overflow-y: hidden;
    max-height: 100vh;
}



/* <======== Header ========> */


header.header {
    height: 74px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    display: flex;
    align-items: center;
    background: white;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
}

.header__end {
    display: flex;
    align-items: center;
}

h2.header__title {
    font-size: 20px;
    display: none;
}

nav.header__nav {
    display: flex;
    gap: 12px;
}

a.header__link.active {
    font-family: "AV-600";
    color: var(--blue-light);
}

a.header__link {
    font-family: "AV-500";
}

a.header__link {
    font-size: 14px;
    display: inline-block;
}

a.header__link:hover {
    color: var(--blue-light);
}

.header__socials {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-right: 21px;
}

.header__socials img {
    max-width: 32px;
}

.header__account button.auth {
    padding: 9px 48px;
    padding-top: 12px;
}

.header__socials a {
    display: flex;
}

header a.profile__img {
    width: 43px;
    height: 43px;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

header a.profile__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__account:has(span) {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__account:has(a) {
    display: flex;
    align-items: center;
    gap: 8px;
}

header a.exit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: red;
    margin-left: 8px;
}

header a.exit img {
    width: 30px;
}




span.unread_chat {
    width: 30px;
    height: 30px;
    background: black;
    border-radius: 50%;
    border-bottom-left-radius: 2px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

/* <======== User ========> */

.user-page__inner {
    margin-top: 130px;
    width: 100%;
}


.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: center;
}

.user-avatar img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.user-header-col {
    display: flex;
    align-items: flex-start;
}

.user-info {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
}

.user-info p { 
    font-size: 20px;
}

.user-info p b {
    font-family: "AV-600";
    line-height: 1;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 9px;
}

.user-name h4 {
    font-family: "AV-500";
    font-size: 24px;
}

.user-count-reviews {
    font-size: 20px;
}

a.user-specialization {
    font-size: 20px;
    text-decoration: underline;
    align-self: flex-start;
    margin-bottom: 6px;
}

/*span.user-status {
    border-radius: 10px;
    color: white;
    background: var(--blue-dark);
    padding: 2px 30px;
    padding-top: 5px;
    font-family: "AV-600";
    align-self: flex-start;
    text-align: left;
    margin-top: 3px;
}*/

span.user-status {
    color: black;
    font-family: "AV-600";
    margin: 6px 0;
}

.user-header-col button.blue {
    border-radius: 10px;
    background: rgb(56, 56, 56);
    padding: 9px 48px;
}

.user-header-col button.blue:hover {
    background: #000;
}

.user-header {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.user-avatar input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: none;
	width: 0;
	height: 0;
}

.user-avatar label {
    width: 100%;
    height: 100%;
}

.user-controls {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 22px;
    width: 100%;
    justify-content: space-between;
}

.user-header, .user-controls , .user-content-block {
    padding: 0 130px;
}

.user-controls-main {
    display: flex;
    align-items: center;
    gap: 6px;
}

a.user__control {
    border-radius: 10px;

    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);

    font-family: "AV-500";
    font-size: 18px;
    padding: 8px 0;
    padding-top: 11px;
    transition: 0.3s;
    width: auto;
    min-width: 200px;
    text-align: center;
}

a.user__control:hover , a.user__control.active {
    background: var(--blue-light);
    color: white;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

a.user__control:not(.active):active {
    transform: scale(0.98);
}

.user-desc p {
    font-size: 20px;
    margin-bottom: 24px;
}

a.user-edit-desc {
    font-family: "AV-500";
    font-size: 18px;
    text-decoration: underline;
    cursor: pointer;
}

textarea.desc-user {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background: rgb(255, 255, 255);
    transition: 0.3s;
    border: 2px solid white;
    padding: 12px 18px;
    outline: none;
    font-size: 18px;
    font-family: "AV-400";
    margin-bottom: 10px;
}

textarea.desc-user:hover {
    border: 2px solid black;
}

.user-chat a.user__control.active {
    width: 220px;
    display: block;
    font-size: 16px;
    height: 41px;
}


.user__reviews-wrapper {
    display: grid;
    grid-auto-flow: row;
    width: 100%;

    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

    row-gap: 30px;
    column-gap: 50px;
}

article.user__review {
    width: 100%;
    height: 160px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;

    padding: 10px 15px;
    display: block;
    margin: 0;
    position: relative;

    overflow-x: hidden;
}

h4.review-name {
    font-size: 18px;
    font-family: "AV-600";
}

article.user__review.good {
    background: rgb(222, 253, 217);
}

article.user__review.bad {
    background: rgb(255, 188, 188);
}

article.user__review.good .review-name span {
    color: rgb(44, 223, 15);
}

article.user__review.bad .review-name span {
    color: rgb(255, 57, 57);
}

p.review-text {
    opacity: 0.78;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.2;
    max-height: 80px;
    overflow-y: scroll;
    margin-top: 4px;
}

a.review-order {
    font-family: "AV-400";
    font-size: 16px;
    text-decoration: underline;
    position: absolute;
    bottom: 10px;
}

button.review-open {
    display: none;
}

article.user__review.big button.review-open {
    padding: 0;
    font-size: 14px;
    position: absolute;
    right: 25px;
    bottom: 10px;
    text-decoration: underline;
    display: block;
}

p.review-text::-webkit-scrollbar , article.user__review.big::-webkit-scrollbar {
    display: none;
}


article.user__review.big.good:after {
    content: '';
    position: absolute;

    width: 340px;
    height: 30px;

    background: linear-gradient(0deg, rgb(222, 253, 217) 0%, rgb(222, 253, 217) 50%,  transparent 100%);
    left: 0;
    bottom: 30px;
    z-index: 2;
}

article.user__review.big.bad:after {
    content: '';
    position: absolute;

    width: 340px;
    height: 30px;

    background: linear-gradient(0deg, rgb(255, 188, 188) 0%, rgb(255, 188, 188) 50%,  transparent 100%);
    left: 0;
    bottom: 30px;
    z-index: 2;
}

article.user__review.big.opened , article.user__review.big.opened p {
    height: auto;
    overflow-y: visible;
}

article.user__review.big.opened p {
    max-height: auto;
    overflow-y: visible;
}



article.user__review.big.opened:after {
    display: none;
}

article.user__review.big.opened {
    height: 250px;
}

article.user__review.big {
    transition: .3s;
}

h3.order-title {
    font-family: "AV-500";
    font-size: 20px;
}

.user-content-block#user-orders {
    padding: 0 110px;
}

.bordered {
    position: relative;
    padding: 20px;
}

.bordered span.point {
    position: absolute;
    width: 219px;
    height: 219px;
    background: transparent;
    border: 4px solid var(--blue-dark);
    border-bottom: 0;
    border-right: 0;
    z-index: -1;
}

.bordered span.point.one {
    top: 0;
    left: 0;
}


.bordered span.point.two {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

article.user__order {
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;

    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
    background: rgb(255, 255, 255);

    width: 340px;
    height: 160px;

    padding: 8px 16px;

    cursor: pointer;

    position: relative;
    padding-bottom: 30px;
}

.user-page__inner .bordered.table {
    min-height: 220px;
}

.orders-wrapper {
    display: grid;
    grid-auto-flow: row;
    width: 100%;

    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

    row-gap: 40px;
    column-gap: 50px;
}

h3.order-title {
    font-size: 18px;
}

h3.order-title a:hover {
    text-decoration: underline;
}

p.order-type {
    font-size: 16px;
    font-family: "AV-400";
    margin-bottom: 4px;
}

p.order-type b {
    font-family: "AV-500";
}

p.order-desc {
    opacity: 78%;
    font-size: 14px;
    overflow: hidden;
    max-height: 70px;
}

p.order-desc.clap {
    line-clamp: 4;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order-desc-container {
    height: 70px;
    overflow-y: hidden;
}

a.order-link {
    display: block;
    width: 100%;
}

p.order-desc::-webkit-scrollbar {
    display: none;
}

span.order-status {
    position: absolute;
    bottom: 8px;
    right: 16px;
    font-family: "AV-500";
    font-size: 18px;
    color: rgb(99, 99, 99);
}

.user-header-col.order {
    margin-top: 70px;
    display: flex;
    justify-content: end;
    margin-bottom: 0px;
}

.user-content-block {
    margin-bottom: 20px;
}


.review__write__block {
    margin-top: 36px;
    margin-bottom: 10px;
}

.rw__title {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.rw__title h4 {
    font-size: 18px;
    font-family: "AV-500";
}

.rw__title h4 span {
    opacity: 0.5;
}

.rw__title .rw-type label.good {
    font-size: 16px;
    color: limegreen;
}

.rw__title .rw-type label.bad {
    font-size: 16px;
    color: red;
}

.rw__title .rw-type input {
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
}

.rw__title .rw-type {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 10px;
}

.review__write__block textarea.review-text {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    background: rgb(255, 255, 255);
    border: 0;
    resize: none;
    width: 100%;
    height: 80px;
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    font-family: "AV-400";
}

.rw__line {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
    justify-content: space-between;
}

.score-block {
    display: flex;
    align-items: center;
}

.score-block p {
    font-size: 18px;
    font-family: "AV-500";
    margin-right: 10px;
}

.score-block span {
    border-radius: 7px;
    background: rgb(224, 224, 224);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.score-block span:hover {
    background: rgb(176, 176, 176);
}

.score-block span.active {
    background: var(--blue-light);
    color: white;
}

.score-line {
    display: flex;
    align-items: center;
    gap: 5px;
}

button.blue.review-send {
    border-radius: 10px;

    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background: rgb(0, 0, 0);

    padding: 8px 55px;
}

button#delete-avatar {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: red;
    text-decoration: underline;
    display: inline-block;
    text-align: left;
}


a.user-delete {
    color: red;
    font-size: 14px;
    text-decoration: underline;
    display: block;
    margin-top: 20px;
    cursor: pointer;
}

p.user-verify {
    display: flex;
    gap: 8px;
    align-items: center;
}

p.user-verify img {
    width: 14px;
}

.user-specialization img {
    width: 20px;
    height: 20px;
}

a.user-specialization {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    text-decoration: none;
}


ol.specialization__list {
    position: absolute;
    background: white;
    box-shadow: 0 0 2px black;
    border-radius: 10px;
    padding: 10px;
    list-style: none;
    top: 0;
    left: 0;
    max-height: 190px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-bottom: 60px;
    column-gap: 10px;
    width: 400px;
    z-index: 20;
}



ol.specialization__list button.blue {
    background: limegreen;
    padding: 5px 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}

ol.specialization__list::-webkit-scrollbar {
    display: none;
}

ol.specialization__list li {
    font-size: 14px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

ol.specialization__list li label {
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.user-avatar {
    position: relative;
}

.user-avatar span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(255, 0, 0, 0.258);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(100%);
}

.user-avatar:hover span {
    transform: translateY(0);
}

.popup button#delete-avatar {
    text-decoration: none;
    color: red;
    padding: 5px 20px;
}

p.popup-comment {
    margin: 10px 0;
}



/* <======== Order ========> */

.order-sect .container {
    margin-top: 120px;
    padding: 0 240px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.order-header h1 {
    font-family: "AV-600";
    font-size: 24px;
}

.order-info h2 {
    white-space: nowrap;
    font-family: "AV-600";
    font-size: 24px;
}

h2.order__status {
    text-align: right;
    margin-top: 1px;
}

.order-author {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
    padding-bottom: 16px;
    align-items: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

.order__author-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order__author-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.order__author-profile span {
    font-size: 18px;
    font-family: "AV-500";
}

p.order__type {
    font-size: 20px;
    font-family: "AV-500";
}

p.order__page-desc {
    font-size: 18px;
    line-height: 1.33;
    margin-top: 16px;
    margin-bottom: 16px;
}

.order-files-track {
    display: grid;
    grid-auto-flow: row;
    width: 100%;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    row-gap: 13px;
    column-gap: 20px;
}

article.order-files-item {
    border-radius: 10px;

    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background: rgb(255, 255, 255);

    width: 218px;
    height: 45px;

    padding: 10px;
    padding-top: 11px;
    padding-bottom: 9px;
}

article.order-files-item img {
    max-width: 26px;
}

.order-files-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-files-item a {
    margin-right: auto;
    font-family: "AV-500";
    font-size: 16px;
    max-width: 100px;
    text-overflow: ellipsis;
    display: block;
}

.order-files-item a p {
    max-width: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow-x: hidden;
}

.order-files-item span {
    font-size: 16px;
    opacity: 0.7;
}

.order-files-item a:hover {
    text-decoration: underline;
}

span.order-files-other {
    text-decoration: underline;
    font-family: "AV-500";
    font-size: 14px;
    display: block;
    margin-top: 10px;
    line-height: 1;
    cursor: pointer;
}

.order-files-wrapper {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

.order-controls {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.order-controls .blue {
    padding: 10px 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
}

.order-controls .blue.chat-button {
    background: white;
    color: black;
}

figure.create-offer {
    border-radius: 10px;
    background: rgb(229, 229, 229);
    padding: 20px 24px;
    margin: 0;
    margin-bottom: 60px;
}

figure.create-offer h4 {
    font-size: 20px;
    margin: 0;
}


figure.create-offer .offer-line {
    display: flex;
    align-items: center;
    margin-top: 13px;
    gap: 35px;
}

figure.create-offer .offer-param label {
    font-size: 18px;
    font-family: "AV-400";
    margin-bottom: 4px;
}

figure.create-offer .offer-param .offer-input {
    display: flex;
    align-items: center;
    gap: 7px;
}

figure.create-offer .offer-param .offer-input input {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background: rgb(255, 255, 255);
    padding: 12px 13px;
    border: 1px solid white;
    outline: none;
    margin: 0;
    width: 248px;
    font-size: 18px;
    font-family: "AV-500";
    padding-bottom: 10px;
    padding-top: 14px;
}

figure.create-offer .offer-param .offer-input input:focus {
    border: 1px solid black;
}

button.blue.offer-send {
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    padding: 10px 57px;
}


ol.otk__wrapper {
    padding: 0;
    margin: 0;
    list-style: none;
}

ol.otk__wrapper li {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    border-top: 3px solid black;
}

ol.otk__wrapper li:last-child {
    border-bottom: 3px solid black;
}

ol.otk__wrapper li h5 {
    font-size: 24px;
    font-family: "AV-500";
    margin-bottom: 16px;
    transition: 0.3s;
    cursor: pointer;
}

ol.otk__wrapper li h5 a {
    font-family: "AV-500";
}

ol.otk__wrapper li h5:hover {
    text-decoration: underline;
}

ol.otk__wrapper li button {
    padding: 8px 50px;
    font-size: 18px;
    font-family: "AV-500";
    border-radius: 10px;
    cursor: pointer;
}

ol.otk__wrapper li p.otk-time {
    font-size: 20px;
    font-family: "AV-500";
}

ol.otk__wrapper li p.otk-time span {
    opacity: 0.7;
    margin-left: 16px;
}

.li-otk:last-child {
    text-align: right;
}

.li-otk:last-child .otk-price {
    font-size: 20px;
    font-family: "AV-500";
    margin-top: 24px;
}

p.order-otk-list {
    font-size: 20px;
    margin: 20px 0;
}


.li-otk-line.fl {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}


p.kad_order {
    margin-top: 20px;
    font-size: 16px;
    font-family: "AV-500";
} 

.input-cont.order-creator {
    position: relative;
}

.vanilla-calendar {
    z-index: 100;
    position: absolute;
    margin: 0;
    top: 50% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-50%);
}



/* <======== Popups-Auth ========> */

.mask {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

.select {
    position: relative;
    display: block;
    width: 100%;
}

.select__head {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    background: rgb(64, 103, 255);
    cursor: pointer;
    text-align: center;
    
    padding: 10px 0;

    font-size: 18px;
    color: white;
    font-family: "AV-600";
}

.select__head::after {
    width: 20px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.50495 5.78413L0.205241 1.25827C-0.0684138 0.970375 -0.0684138 0.503596 0.205241 0.215836C0.478652 -0.0719461 0.922098 -0.071946 1.19549 0.215837L5.00007 4.22052L8.80452 0.215953C9.07805 -0.0718292 9.52145 -0.0718292 9.79486 0.215953C10.0684 0.503736 10.0684 0.970492 9.79486 1.25839L5.49508 5.78425C5.35831 5.92814 5.17925 6 5.00009 6C4.82085 6 4.64165 5.928 4.50495 5.78413Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center / cover;
    position: absolute;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    content: '';
    display: block;
    transition: .3s ease-in;
}

.select__head.open::after {
    transform: translateY(50%) rotate(180deg);
}

.select__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 10px;

    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
    background: rgb(255, 255, 255);
    margin-top: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #424348;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}

.select__list::-webkit-scrollbar {
    width: 7px;
    background-color: #F8F9FA;
    padding: 5px;
}

.select__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #D9D9D9;
}

.select__list .select__item {
    position: relative;
    border-top: 1px solid rgba(224, 229, 231, 0.5);
    padding: 10px 0;
    cursor: pointer;
    list-style-type: none;
    text-align: center;
    font-size: 18px;
    font-family: "AV-600";
    transition: .3s;
}

.select__list .select__item:hover {
    background-color: rgba(224, 229, 231, 0.5);
}

.mask {
    opacity: 0;
    z-index: -2;
    transition: .0s;
}

.mask.open {
    opacity: 1;
    z-index: 8;
}

.popup {
    width: 585px;
    height: auto;
    padding: 22px 62px;
    background: white;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -10;
    opacity: 0;
    transition: .3s;
}

.popup.open {
    opacity: 1;
    z-index: 10;
}

h3.popup__title {
    font-size: 20px;
    font-family: "AV-600";
    text-align: center;
    margin-bottom: 13px;
}

.popup-input {
    display: flex;
    flex-direction: column;
}

.popup-input label {
    font-size: 18px;
    font-family: "AV-600";
    margin-top: 20px;
}

.popup-input label span {
    color: rgb(182, 182, 182);
}

.popup-input input {
    border-radius: 30px;

    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    background: rgb(255, 255, 255);

    border: 2px solid white;
    padding: 0 18px;
    font-family: "AV-400";
    font-size: 18px;
    transition: .3s;
    height: 45px;
}

.popup-input input:hover {
    border-color: black;
}

.popup-input input:focus {
    border-color: black;
}

button.blue.submit-form {
    width: 400px;
    padding: 12px 0;
    border-radius: 30px;
    font-family: "AV-600";
    margin-top: 26px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

p.form-link {
    text-align: center;
    font-family: "AV-500";
    font-size: 16px;
}

p.form-link button {
    text-decoration: underline;
}

p.form-error {
    color: red;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    display: none;
}




/* <======== My Orders ========> */

.my__orders {
    margin-top: 120px;
}

.my__orders__inner {
    padding: 0px;
}

button.blue.create__order-button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding: 13px 270px;
    border-radius: 10px;
    font-size: 20px;
    gap: 8px;
    align-items: center;
    margin-bottom: 40px;
}

button.blue.create__order-button span {
    width: 15px;
    height: 15px;
    position: relative;
}

button.blue.create__order-button span:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
}

button.blue.create__order-button span:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    top: 50%;
    transform-origin: 50% 50%;
    transform: translateY(-50%) rotate(90deg);
    border-radius: 5px;
}

h3.table-title {
    font-size: 24px;
    font-family: "AV-500";
    margin-bottom: 10px;
}

.bordered.table {
    padding: 36px 43px;
    margin-bottom: 48px;
}

table.table {
    border-collapse: collapse;
    width: 100%;
}

table.table td , table.table th {
    border: 1px solid rgb(199, 199, 199);
    padding: 14px;
    text-align: left;
    font-size: 16px;
    font-family: "AV-400";
}

table.table tr {
    transition: .3s;
    cursor: pointer;
}

table.table tr:hover {
    background: rgb(171, 171, 171);
}

table.table th {
    font-family: "AV-500";
    text-align: center;
    font-weight: normal;
}

table.table tr:first-child:hover {
    background: white;
}

button.table-open-text {
    text-decoration: underline;
    cursor: pointer;
    display: block;
    padding: 0;
    font-family: "AV-400";
    font-size: 14px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
}

.my__orders .bordered.table {
    min-height: 240px;
}

/* <======== Order list ========> */

.order__list {
    margin-top: 120px;
}

.order__list__inner {
    padding: 0 100px;
}

ul.orders-list {
    list-style: none;
}


li.order-current {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    transition: .3s;
    cursor: pointer;
    position: relative;
}


li.order-current:hover {
    background: rgba(64, 103, 255, 0.1);
}

.li-order-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.li-order-info {
    font-size: 20px;
    font-family: "AV-500";
}

.li-order-info h1 {
    font-size: 20px;
}

p.li-order-desc {
    font-size: 18px;
    opacity: 0.7;
}

li.order-current:after {
    position: absolute;
    content: '';
    height: 2px;
    width: calc(100% - 40px);
    background: rgb(64, 103, 255);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

li.order-current:last-child:before {
    position: absolute;
    content: '';
    height: 2px;
    width: calc(100% - 40px);
    background: rgb(64, 103, 255);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

ul.orders-list {
    padding: 0;
}

h1.orders__list__title {
    margin-bottom: 20px;
    margin-left: 20px;
}


/* <======== Popup-Creator ========> */

.popup.order-creator {
    padding: 27px 30px;
    width: 1140px;
    z-index: 10;
    display: none;
}

.popup.order-creator.open {
    display: block;
}

.popup.order-creator h2 {
    font-size: 24px;
    font-family: "AV-500";
}

.input-cont {
    display: flex;
    flex-direction: column;
}

.input-cont label {
    margin-top: 11px;
    font-size: 18px;
    margin-bottom: 4px;
}

.input-cont.order-creator {
    margin-bottom: 13px;
}

.input-cont.order-creator input {
    width: 100%;
    border: 2px solid white;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
background: rgb(255, 255, 255);

    height: 45px;
    padding: 0 18px;
    font-size: 18px;
    font-family: "AV-400";

    transition: .3s;
}

.input-cont.order-creator input:focus , .input-cont.order-creator input:hover {
    border: 2px solid rgb(0, 0, 0);
    outline: none;
}

.input-cont.order-creator .select__head {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background: white;
    text-align: left;
    color: black;
    padding-left: 18px;
    font-family: "AV-400";
    border: 2px solid white;
    transition: .3s;
}

.input-cont.order-creator .select__head:hover {
    border: 2px solid rgb(0, 0, 0);
}

.input-cont.order-creator .select__head:after {
    background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.50495 5.78413L0.205241 1.25827C-0.0684138 0.970375 -0.0684138 0.503596 0.205241 0.215836C0.478652 -0.0719461 0.922098 -0.071946 1.19549 0.215837L5.00007 4.22052L8.80452 0.215953C9.07805 -0.0718292 9.52145 -0.0718292 9.79486 0.215953C10.0684 0.503736 10.0684 0.970492 9.79486 1.25839L5.49508 5.78425C5.35831 5.92814 5.17925 6 5.00009 6C4.82085 6 4.64165 5.928 4.50495 5.78413Z' fill='black'/%3E%3C/svg%3E%0A") no-repeat center / cover;
}

.input-cont.order-creator textarea {
    width: 100%;
    height: 195px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background: rgb(255, 255, 255);
    border: 0;
    transition: 0.3s;
    border: 2px solid white;
    padding: 12px 18px;
    outline: none;
    font-size: 18px;
    font-family: "AV-400";
    margin-bottom: 17px;
    resize: none;
}

.input-cont.order-creator textarea:hover {
    border: 2px solid black;
}

.order-create-line {
    display: flex;
    gap: 42px;
    justify-content: space-between;
    align-items: end;
}

.order-create-line .input-cont.order-creator {
    width: 300px;
    margin-bottom: 0;
}

.in-frame {
    display: flex;
    align-items: center;
    gap: 7px;
}

.in-frame span {
    font-size: 18px;
}

ol.order-create-files {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 11px;
    margin-top: 16px;
    max-height: 180px;
    overflow-y: scroll;
    padding: 10px;
}

ol.order-create-files::-webkit-scrollbar {
    appearance: none;
    width: 4px;
}
ol.order-create-files::-webkit-scrollbar-thumb {
    background: #000;
    width: 100%;
    border-radius: 5px;
}

ol.order-create-files li {
    padding: 12px 12px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 250px;
    height: 45px;
}

li.file-item img {
    width: 25px;
}

li.file-item p {
    font-family: "AV-500";
    font-size: 16px;
    margin-left: 10px;
    margin-top: 3px;
    margin-right: 10px;
    text-overflow: ellipsis;
    max-width: 120px;
    overflow-x: hidden;
    white-space: nowrap;
}

li.file-item b {
    margin-top: 3px;
    margin-left: auto;
    transition: .3s;
}

li.file-item span {
    width: 21px;
    height: 21px;
    position: absolute;
    transform: rotate(45deg);
    right: 20px;
    top: 19px;
    opacity: 0;
    transition: opacity .0s;
}

li.file-item:hover p {
    max-width: 160px;
}

li.file-item:hover b {
    opacity: 0;
    display: none;
}

li.file-item:hover p.cutter {
    display: none;
}   

li.file-item:hover p.bigger {
    display: block;
}  

li.file-item:hover span {
    opacity: 1;
}

li.file-item {
    position: relative;
}

li.file-item span:after {
    position: absolute;
    content: '';
    background: #000;
    border-radius: 5px;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

li.file-item span:before {
    position: absolute;
    content: '';
    background: #000;
    border-radius: 5px;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: rotate(90deg);
}

button.blue.order-creator {
    padding: 12px 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    margin-top: 32px;
}


.input-file input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

span.file-cliper {
    color: white;
    font-size: 18px;
    font-family: "AV-500";
    border-radius: 10px;
    background: rgb(56, 56, 56);
    padding: 10px 90px;
    cursor: pointer;
    transition: .3s;
    display: block;
}

span.file-cliper:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}


/* <======== Chats ========> */


.chats {
    margin-top: 90px;
    margin-bottom: 90px;
}

.chat-list__wrapper {
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 120px);
    min-height: 500px;
    overflow-y: scroll;
    border-radius: 10px;
    background: rgb(236, 235, 235);
}

.chat-list__wrapper::-webkit-scrollbar {
    display: none;
}

ol.chat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol.chat-list li {
    border-radius: 10px;
    height: 75px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: .3s;
}

ol.chat-list li img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    min-width: 55px;
}

.chat-info {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

ol.chat-list li:hover {
    background: rgb(177, 177, 177);
}

.chat-info h6 {
    font-size: 16px;
    font-family: "AV-600";
}

.chat-info p {
    font-size: 14px;
    white-space: nowrap;
    overflow-x: hidden;
    max-width: 200px;
    text-overflow: ellipsis;
}

ol.chat-list li.active {
    background: rgb(64, 103, 255);
    color: white;
}

.chats__inner {
    display: flex;
    gap: 20px;
}

.chat-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(236, 235, 235);
    display: flex;
    flex-direction: column;
    position: relative;
    height: calc(100vh - 120px);
    min-height: 500px;
}

.chat-panel {
    border-radius: 10px;

    background: rgb(211, 210, 210);

    width: 100%;
    padding: 10px 25px;

    display: flex;
    align-items: center;

    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.chat-interlocutor {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: auto;
}

.chat-interlocutor img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
}

.chat-interlocutor__info h6 {
    font-size: 16px;
    font-family: "AV-600";

}

.chat-interlocutor__info p {
    font-size: 14px;
}

.chat-order-info {
    text-align: right;
    margin-right: 32px;
}

.chat-order-info h5 a{
    font-size: 16px;
    font-family: "AV-600";
    margin-bottom: 3px;
    display: block;
    text-decoration: underline;
}

.chat-order-info p {
    font-size: 14px;
}

.chat-report-btn button.blue {
    font-size: 14px;
    color: white;
    padding: 5px 13px;
    border-radius: 40px;
    background: rgb(255, 57, 57);
}

.chat-input {
    height: auto;
    border-radius: 10px;
    background: rgb(211, 210, 210);
    margin-top: auto;
    min-height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.chat-wrapper {
    position: relative;
    padding: 20px 8px;
    flex-direction: column;
    overflow-y: scroll;
    height: calc(100% - 140px);
    margin-top: 90px;
    margin-bottom: 50px;
}

.chat-wrapper::-webkit-scrollbar {
    appearance: none;
    width: 5px;
}

.chat-wrapper::-webkit-scrollbar-thumb {
    background: rgb(102, 102, 102);
    border-radius: 5px;
}

.chat-input-file input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

.chat-input-file img {
    width: 25px;
    height: 25px;
    cursor: pointer;
    margin-bottom: 10px;
}

.chat-input form {
    display: flex;
    align-items: end;
    padding: 0 20px;
    height: auto;
    padding-top: 6px;
}

.chat-input form textarea.write-message {
    background: transparent;
    border: 0;
    outline: none;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
    font-family: "AV-400";
    resize: none;
    height: 25px;
    margin-bottom: 14px;
    max-height: 200px;
    overflow-y: auto;
}

.chat-input form textarea.write-message::-webkit-scrollbar {
    display: none;
}


.chat-message {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.chat-message span {
    opacity: 0.5;
}

.chat-message img.profile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.chat-message.text .chat-message-text {
    display: flex;
    align-items: center;
}

.chat-message-text {
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.41);
    max-width: 400px;
}

.chat-message-text p {
    font-size: 16px;
}

article.chat-message.my {
    justify-content: end;
    flex-direction: row-reverse;
}

article.chat-message.my img.profile {
    display: none;
}

article.chat-message img.file {
    width: 25px;
    height: 25px;
}

article.chat-message.preview img.file {
    display: none;
}


article.chat-message.preview img.chat-file-preview {
    width: 192px;
    object-fit: contain;
    height: auto;
}


p.file-row {
    display: flex;
    align-items: center;
    gap: 8px;
}


.file-info {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    gap: 60px;
}

.file-info a {
    text-decoration: underline;
    font-size: 16px;
    opacity: 0.8;
}

.file-info span {
    opacity: 0.5;
    font-size: 16px;
}

.date-exploder {
    text-align: center;
    margin: 40px 0;
    font-size: 18px;
}

ol.file-seleсtor-list {
    position: absolute;
    bottom: 50px;
    left: 10px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: white;
    border-radius: 10px;
    max-width: 200px;
    overflow: hidden;
    font-size: 14px;
}

ol.file-seleсtor-list li {
    max-width: 180px;
    display: flex;
}

ol.file-seleсtor-list li p {
    max-width: 140px;
    text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
}

ol.file-seleсtor-list p {
    font-size: 18px;
}

ol.file-seleсtor-list li p {
    font-size: 14px;
}

ol.file-seleсtor-list li span {
    color: red;
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
}

.chat-message.file.multiple p.file-row {
    margin-top: 20px;
}

.chat-message.file.multiple p.file-row:first-child {
    margin-top: 0;
}

.files-download {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.files-download a {
    text-decoration: underline;
}

form#message button , form#message img{
    transition: 0.3s;
}

form#message button:hover , form#message img:hover {
    transform: scale(1.05);
}

form#message button:active {
    transform: scale(0.98);
}


.popup.report h2 {
    font-size: 20px;
    text-align: center;
    font-family: "AV-600";
    margin-bottom: 20px;
}

.popup.report {
    padding: 16px 42px;
}

.report__field label {
    font-size: 18px;
    font-family: "AV-500";
    margin: 0;
    padding: 0;
}

.report__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.report__field textarea {
    resize: none;
    width: 100%;
    border-radius: 10px;

    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    background: rgb(255, 255, 255);
    border: 0;
    height: 190px;
    padding: 10px;
    font-family: "AV-400";
    font-size: 16px;
    border: 1px solid transparent;
}


.report__field textarea:focus {
    border: 1px solid red;
    outline: none;
}

.popup.report button.report-send {
    border-radius: 30px;
    background: rgb(255, 57, 57);
    font-size: 18px;
    font-family: "AV-500";
    padding: 10px 58px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
}

/* <======== Ban-Page ========> */

.ban-block {
    border-radius: 30px;

    box-shadow: 0px 0px 25px 0px rgb(255, 57, 57);
    background: rgb(255, 57, 57);

    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 34px 0;
    text-align: center;
    color: white;
    width: 1200px;
}

h2.ban-title {
    font-size: 36px;
    font-family: "AV-600";
    margin-bottom: 10px;
}

p.ban-subtitle {
    font-size: 30px;
    font-family: "AV-500";
}

.ban-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ban-socials a {
    width: 46px;
    height: 46px;
}


/* <======== Admin ========> */


button.blue.add-admin {
    background: black;
    padding: 5px 20px;
}

.passport__files {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.passport__files img {
    width: 200px;
    height: 200px;
}

.passport-frame {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.passport-frame a {
    text-decoration: underline;
}

button.blue.verify-user {
    background: limegreen;
    padding: 8px 20px;
}

p.user-reg-data {
    margin: 20px 0;
    font-size: 18px;
}

p.user-reg-data strong {
    font-weight: normal;
    font-family: "AV-600";
}

.search__field {
    display: flex;
    gap: 10px;
}

.search__field input {
    border: 1px solid black;
    outline: none;
    padding: 5px 10px;
    font-family: "AV-400";
    font-size: 16px;
    border-radius: 8px;
    margin-left: 20px;
    width: 400px;
    box-shadow: 0 0 2px black;
}

.search__field button.blue {
    background: #000;
    padding: 5px 20px;
    border-radius: 8px;
}

.portal__info {
    margin-left: 20px;
    margin-bottom: 20px;
}

.portal__info p {
    margin-left: 0;
}


.buttons-report {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.buttons-report button {
    padding: 5px 20px;
    border-radius: 12px;
}

/* <======== Policy ========> */


.policy-rules {
    margin-top: 120px;
}

.policy-rules h1 {
    font-size: 28px;
}

.policy-rules ol {
    padding: 0;
    margin: 0;
    margin-top: 30px;
}


.policy-rules ol span {
    font-family: "AV-600";
    margin-bottom: 5px;
    display: block;
    font-size: 18px;
}

.policy-rules ol li {
    margin-top: 30px;
}

.policy-rules ol li::marker {
    font-size: 20px;
}

.policy-rules ol li p {
    font-size: 16px;
}

.contacts-policy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contacts-policy h4 {
    font-size: 24px;
}

.contacts-policy p {
    display: flex;
    gap: 8px;
    font-size: 18px;
    align-items: center;
}

.contacts-policy b {
    font-family: "AV-500";
}

.contacts-policy img {
    width: 20px;
    height: 20px;
}

/* <======== Globals ========> */

.blue.set-global {
    padding: 5px 16px;
    background: #000;
}

li.globals {
    margin-top: 20px;
}


/* <======== Oferta ========> */

/* li.level__one {
    font-family: "AV-500";
    font-size: 18px;
}

li.level__one ol {
    padding-left: 20px;
    list-style: decimal;
}

li.level__one ol li {
    font-size: 14px;
    font-family: "AV-400";
    margin-top: 16px;
} */

ol.oferta li::marker {
    font-size: 0;
}


































/* <======== Footer ========> */

footer.footer {
    position: static;
    width: 100vw;
    background: white;
    height: 80px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-top: auto;
}

.footer__nav {
    gap: 24px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

footer h2.header__title {
    display: block;
}





































/* <======== MEDIA (Adaptive) ========> */

/* <======== Media-Header ========> */

nav .header__socials, nav .header__account {
    display: none;
}

.burger {
    display: none;
}

@media screen and (max-width: 1665px) {
    header nav.header__nav {
        margin-left: 0;
    }
}

@media screen and (max-width: 1500px) {
    .container {
        max-width: 90vw;
    }
}

@media screen and (max-width: 1220px) {
    .header__link {
        font-size: 16px;
    }

    nav.header__nav {
        gap: 10px;
    }

    .header__account button.auth {
        padding: 6px 24px;
        padding-top: 8px;
        font-size: 16px;
    }
}

@media screen and (max-width: 1000px) {
    .container {
        max-width: 95vw;
    }
}

@media screen and (max-width: 950px) {
    header.header:after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.2);
        opacity: 0;
        z-index: -10;
        transition: opacity .3s;
        display: none;
    }

    .header__account.desc {
        display: none;
    }

    header.header.op:after {
        z-index: 1;
        opacity: 1;
        top: 0;
        left: 0;
        display: block;
    }

    .header__socials , .header__account {
        display: none;
    }

    nav.header__nav {
        position: fixed;
        top: 0;
        left: 0;
        height: calc(100vh + 10px);
        background: var(--blue-dark);
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 30vw;
        transition: .3s;
        transform: translateX(-100%);
        z-index: 12;
    }

    nav.header__nav.open {
        transform: translateX(0);
        z-index: 12;
    }

    nav .header__socials, nav .header__account {
        display: flex;
    }

    nav .header__account button.auth {
        font-size: 16px;
        font-family: "AV-600";
        background: none;
        font-weight: normal;
        padding: 0;
        display: block;
        margin-left: auto;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    nav.header__nav .header__link {
        color: white;
        font-size: 16px;
        font-family: "AV-600";
    }

    nav .header__socials {
        position: absolute;
        bottom: 30px;
    }

    #nav-icon6 {
        width: 30px;
        height: 40px;
        position: relative;
        transition-duration: 1s;
        cursor: pointer;
        z-index: 50;
        margin-left: 7px;
    }
    #nav-icon6 span {
        height: 4px;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgb(64, 103, 255);
        border-radius: 20px;
        position: absolute;
        transition-duration: .25s;
        transition-delay: .25s;    
    }
    #nav-icon6 span:before {
        left: 0;
        position: absolute;
        top: -9px;
        height: 4px;
        width: 100%;
        background-color: rgb(64, 103, 255);
        content: "";
        border-radius: 20px;
        transition-duration: .25s;
        transition: transform .25s, top .25s .25s, background .3s;
    }
    #nav-icon6 span:after {
        left: 0;
        position: absolute;
        top: 9px;
        height: 4px;
        width: 100%;
        background-color: rgb(64, 103, 255);
        content: "";
        border-radius: 20px;
        transition-duration: .25s;
        transition: transform .25s, top .25s .25s, background .3s;
    }
    #nav-icon6.open span {
        transition-duration: 0.1s;
        transition-delay: .25s;
        background: transparent;
    }
    #nav-icon6.open span:before {
        transition: top .25s, transform .25s .25s, background .3s;
        top: 0px;
        transform: rotateZ(-45deg);
        background: white;
    }
    #nav-icon6.open span:after {
        transition: top 0.4s, transform .25s .25s, background .3s;
        top: 0px;
        transform: rotateZ(45deg);
        background: white;
    }

    .burger {
        display: block;
    }

    h2.header__title {
        margin-left: 0px;
        margin-right: 20px;
    }

    header.header {
        height: 55px;
    }

    header .header__account:has(a.profile__img) {
        justify-content: end;
    }
}

@media screen and (max-width: 680px) {
    nav.header__nav {
        width: 50vw;
    }
}

@media screen and (max-width: 390px) {
    nav.header__nav {
        width: 60vw;
    }
}

/* <======== Media-Order list ========> */

@media screen and (max-width: 1200px) {
    .order__list__inner {
        padding: 0;
    }

    h1.orders__list__title {
        margin-left: 0;
    }

    li.order-current {
        padding: 20px 0;
        border-radius: 0;
    }

    li.order-current:after , li.order-current:last-child:before {
        width: 100%;
    }

    .order__list {
        margin-top: 90px;
    }
}

@media screen and (max-width: 600px) {
    .order__list {
        margin-top: 60px;
    }

    h1.orders__list__title {
        font-size: 18px;
        margin-bottom: 0px;
    }

    ul.orders-list {
        margin: 0;
        margin-top: 10px;
    }

    li.order-current {
        padding: 10px 0;
        padding-bottom: 35px;
    }

    .li-order-info h1 , .li-order-info span {
        font-size: 16px;
    }

    .li-order-info {
        margin-bottom: 7px;
    }

    .li-order-info span {
        position: absolute;
        bottom: 10px;
    }

    p.li-order-desc {
        font-size: 14px;
    }
}

/* <======== Media-Order-Creator ========> */

@media screen and (max-width: 1200px) {
    .popup.order-creator {
        width: calc(100vw - 20px);
        transition: width 0s;
    }

    .order-create-line {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 720px) {
    .order-create-line {
        gap: 0;
    }

    .popup.order-creator {
        padding: 10px;
    }

    .popup.order-creator h2 {
        font-size: 18px;
    }

    .popup.order-creator label {
        font-size: 14px;
        margin-bottom: 1px;
    }

    .input-cont.order-creator input {
        font-size: 14px;
        height: 30px;
        padding: 0 10px;
    }

    .input-cont.order-creator .select__head {
        margin-top: 0;
    }

    .input-cont.order-creator {
        margin-bottom: 0;
    }

    .input-cont.order-creator textarea {
        font-size: 14px;
        padding: 10px;
        padding-top: 6px;
        height: 100px;
    }

    span.file-cliper {
        font-size: 14px;
        padding: 8px 40px;
    }

    .in-frame span {
        font-size: 14px;
    }

    button.blue.order-creator {
        font-size: 14px;
        padding: 8px 20px;
        margin-top: 0;
    }

    ol.order-create-files li {
        padding: 0 5px;
        height: 40px;
        box-shadow: none;
    }

    li.file-item p {
        font-size: 14px;
    }

    li.file-item span {
        top: 16px;
    }

    ol.order-create-files {
        padding: 0;
        margin-bottom: 10px;
        max-height: 100px;
    }
}








/* <======== Media-User ========> */

@media screen and (max-width: 1220px) {
    .user-page__inner {
        margin-top: 90px;
    }

    .user-header, .user-controls, .user-content-block {
        padding: 0;
    }

    .user-avatar {
        width: 80px;
        height: 80px;
    }

    .user-name h4 {
        font-size: 20px;
    }

    .user-count-reviews {
        font-size: 14px;
    }

    a.user-specialization {
        font-size: 16px;
    }

    .user-info p {
        font-size: 16px;
    }

    span.user-status {
        font-size: 14px;
    }

    .user-header-col button.blue {
        padding: 5px 30px;
        font-size: 14px;
        padding-top: 7px;
    }

    .user-chat a.user__control.active {
        height: 32px;
        padding-top: 7px;
        width: 180px;
    }

    a.user__control {
        width: 120px;
        min-width: 120px;
        height: 32px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2px;
        font-size: 16px;
    }

    .user-specialization img {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 600px) {
    a.user__control {
        width: 90px;
        min-width: 90px;
        height: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2px;
        font-size: 14px;
    }

    .user-chat a.user__control.active {
        height: 30px;
        padding-top: 7px;
        width: 285px;
        font-size: 14px;
        margin-bottom: 35px;
    }

    .user-controls {
        flex-wrap: wrap-reverse;
        justify-content: center;
    }

    .user-header {
        flex-direction: column;
    }

    .user-header .user-header-col {
        align-self: center;
    }

    .user-header .user-info {
        margin-left: 10px;
    }

    .user-header .user-header-col button {
        width: 285px;
        height: 30px;
        margin-bottom: 35px;
    }

    .user-name h4 {
        font-size: 16px;
    }

    a.user-specialization {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .user-info p {
        font-size: 14px;
    }

    span.user-status {
        margin: 0;
        margin-top: 2px;
    }

    .user-avatar {
        width: 57px;
        height: 57px;
        min-width: 57px;
    }

    .user-avatar img , .user-avatar label {
        min-width: 57px;
    }

    .user-page__inner {
        margin-top: 60px;
    }

    textarea.desc-user {
        font-size: 14px;
        height: 100px;
        padding: 8px 10px;
    }

    .user-controls-main {
        flex-wrap: wrap-reverse;
        justify-content: space-between;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .user__control.user-profile-chats {
        width: 48%;
        margin-bottom: 20px;
    }

    .rw__title h4 {
        font-size: 14px;
    }

    .rw__title .rw-type label.good , .rw__title .rw-type label.bad {
        font-size: 14px;
    }

    .rw__title .rw-type label {
        margin-top: 2px;
    }

    .review__write__block {
        margin-top: 10px;
    }

    .review__write__block textarea.review-text {
        padding: 6px;
        border-radius: 5px;
        font-size: 14px;
    }

    .score-block p {
        font-size: 14px;
    }

    .score-block span {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    button.blue.review-send {
        padding: 5px 20px;
        font-size: 14px;
        border-radius: 6px;
    }

    .rw__line {
        flex-wrap: wrap;
        justify-content: center;
    }

    ol.specialization__list {
        gap: 2px;
        font-size: 14px;
        width: 240px;
        max-height: none;
        padding-bottom: 40px;
        flex-wrap: nowrap;
        height: auto;
        display: block;
    }

    ol.specialization__list button.blue {
        margin-bottom: 0;
        width: 220px;
        height: 36px;
    }

    article.user__review {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        max-height: 160px;
    }

    h4.review-name {
        text-align: center;
    }

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

    article.user__review .review-name span {
        margin-left: 6px;
    }
}

/* <======== Media-User-Desc ========> */

@media screen and (max-width: 600px) {
    .user-desc p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    a.user-edit-desc {
        font-size: 14px;
    }
}

/* <======== Media-User-Orders ========> */

h2.orders__title.mob {
    display: none;
}

@media screen and (max-width: 1220px) {
    .user-content-block#user-orders {
        padding: 0;
    }
}

@media screen and (max-width: 810px) {
    article.user__order {
        width: 285px;
        height: 132px;
        padding: 8px 12px;
    }

    p.order-type {
        display: none;
    }

    article.user__order h3 a {
        font-size: 16px;
    }

    article.user__order h3 {
        line-height: 1;
    }

    p.order-desc {
        font-size: 14px;
    }

    span.order-status {
        font-size: 16px;
        bottom: 4px;
        right: 12px;
    }

    .orders-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        
    }

    .bordered {
        margin-left: auto;
        margin-right: auto;
        width: 620px;
    }
}

@media screen and (max-width: 650px) {
    h2.orders__title {
        font-size: 18px;
    }

    .user-header-col.order {
        margin-top: 40px;
        justify-content: center;
        margin-bottom: 10px;
    }

    .bordered {
        width: auto;
        padding: 0;
        margin: 7px 0;
    }

    .bordered span.point {
        display: none;
    }

    article.user__order {
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
        width: 400px;
    }

    .orders-wrapper {
        justify-content: center;
    }

    h2.orders__title.desc {
        display: none;
    }

    h2.orders__title.mob {
        display: block;
    }


}

@media screen and (max-width: 450px) {
    article.user__order {
        width: 285px;
    }
}

/* <======== Media-User-Reviews ========> */

@media screen and (max-width: 500px) {
    article.user__review {
        width: 285px;
        
    }

    .user__reviews-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
}














/* <======== Media-Footer ========> */

@media screen and (max-width: 840px) {
    .footer__nav {
        display: none;
    }

    footer h2.header__title {
        display: none;
    }

    footer.footer {
        height: 60px;
    }

    footer .header__inner {
        overflow: hidden;
    }

    footer .header__socials {
        display: flex;
    }
}




/* <======== Media-Popups-Auth ========> */

@media screen and (max-width: 610px) {
    .popup {
        width: 300px;
        padding: 10px;
    }

    .popup-input label {
        margin-top: 10px;
        font-size: 14px;
    }

    .popup-input input {
        font-size: 16px;
        height: 30px;
        padding: 0 10px;
    }

    button.blue.submit-form {
        width: 100%;
        padding: 5px 0;
        margin-top: 15px;
        font-size: 14px;
    }

    p.form-link {
        font-size: 14px;
    }

    p.form-link button {
        font-size: 14px;
    }
    
    h3.popup__title {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .select__head {
        margin-top: 6px;
        height: 30px;
        padding-top: 6px;
        font-size: 16px;
    }

    .select__head::after {
        width: 13px;
        height: 8px;
    }

    .select__list {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .select__list .select__item {
        height: 30px;
        padding-top: 5px;
        font-size: 16px;
    }

    p.form-error {
        font-size: 14px;
        margin-top: 10px;
    }

    .popup-input input {
        border: 1px solid black;
    }
}

/* <======== Media-My Orders ========> */

@media screen and (max-width: 1200px) {
    .my__orders__inner {
        padding: 0;
    }
}

@media screen and (max-width: 950px) {
    .bordered.table {
        padding: 0;
        padding-bottom: 35px;
        margin-bottom: 20px;
    }

    .my__orders .bordered.table {
        min-height: auto;
    }

    .bordered.table span.point {
        display: none;
    }

    .bordered.table button.table-open-text {
        bottom: 0;
    }
}

@media screen and (max-width: 810px) {
    .bordered.table {
        margin: 0;
        margin-left: auto;
        margin-right: auto;
        width: auto;
    }

    .bordered.table table {
        overflow-x: scroll;
        display: block;
    }

    .bordered.table table::-webkit-scrollbar {
        display: none;
    }

    button.blue.create__order-button {
        width: 285px;
        padding: 10px 0;
        text-align: center;
        display: flex;
        justify-content: center;
        position: relative;
    }
    

    button.blue.create__order-button span {
        position: absolute;
        right: 25px;
    }

    .my__orders {
        margin-top: 90px;
    }

    .my__orders .container {
        max-width: 92vw;
    }
    
}

@media screen and (max-width: 600px) {
    button.blue.create__order-button {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .my__orders {
        margin-top: 70px;
    }

    h3.table-title {
        font-size: 16px;
        margin-bottom: 3px;
    }
}


/* <======== Media-Order-Page ========> */

.li-otk-mobile {
    display: none;

    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;

    gap: 20px;

    margin: 10px 0;

}

.li-otk-mobile p {
    font-size: 18px;

    font-family: "AV-500";

    white-space: nowrap;
}

@media screen and (max-width: 1650px) {
    .order-sect .container {
        padding: 0;
    }
}

@media screen and (max-width: 800px) {
    .li-otk:last-child {
        display: none;
    }

    .li-otk-mobile {
        display: flex;
    }

    ol.otk__wrapper li h5 {
        margin-bottom: 0;
        font-size: 18px;
    }

    .li-otk-line button.blue {
        font-size: 14px;
        padding: 5px 30px;
    }

    .li-otk-line button.blue#chat-otk {
        color: black;
        background: white;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    }

    figure.create-offer .offer-param .offer-input input {
        height: 32px;
        font-size: 14px;
        padding: 0 9px;
    }

    figure.create-offer .offer-param label {
        font-size: 16px;
    }

    button.blue.offer-send {
        margin-top: 20px;
        font-size: 16px;
        padding: 6px 60px;
    }

    figure.create-offer h4 {
        font-size: 16px;
    }

    .order-header h1 {
        font-size: 20px;
    }

    .order-info h2 {
        font-size: 20px;
    }

    .order-sect .container {
        margin-top: 60px;
    }
}

@media screen and (max-width: 700px) {
    figure.create-offer {
        padding: 10px 12px;
    }

    figure.create-offer .offer-line {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }
}


@media screen and (max-width: 600px) {
    .li-otk-mobile p {
        font-size: 14px;
    }

    .li-otk-mobile {
        gap: 5px;
    }

    ol.otk__wrapper li h5 {
        font-size: 16px;
    }

    p.order-otk-list {
        margin: 5px 0;
        font-size: 16px;
    }

    .order-controls .blue {
        width: 100%;
        font-size: 14px;
        padding: 6px 0;
    }

    .order-controls {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .order-files-track {
        display: flex;
        flex-wrap: wrap;
    }

    article.order-files-item {
        height: 35px;
    }

    article.order-files-item img {
        max-width: 20px;
    }

    p.order__page-desc {
        margin: 10px 0;
        font-size: 14px;
    }

    .order-header {
        flex-direction: column;
        gap: 8px;
    }

    .order-info {
        display: flex;
        justify-content: space-between;
    }

    .order-header h1 {
        font-size: 16px;
    }

    .order-info h2 {
        font-size: 16px;
    }

    .order__author-profile img {
        width: 35px;
        height: 35px;
    }

    .order__author-profile span {
        font-size: 14px;
    }

    p.order__type {
        font-size: 14px;
    }

    .order-author {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 330px) {
    figure.create-offer .offer-param .offer-input input {
        width: 200px;
    }

    p.order__page-desc {
        font-size: 12px;
    }
}

@media screen and (max-width: 300px) {
    .li-otk-line {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* <======== Media-Chats ========> */

.chat-panel span.mobile-arrow {
    display: none;
}

@media screen and (max-width: 1300px) {
    .chats .container {
        padding: 0;
    }

    .chat-container {
        height: calc(80vh - 120px);
        min-height: 300px;
    }

    .chat-message-send button img {
        min-width: 33px;
    }
}


@media screen and (max-width: 1150px) {

    .chat-order-info {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 17px;
        border-radius: 0px 0px 10px 10px;

        background: rgb(196, 196, 196);
        top: 100%;
        padding: 5px 11px;
    }

    .chat-order-info h5 {
        font-size: 12px;
    }

    .chat-order-info h5 a {
        font-size: 12px;
        max-width: 110px;
        white-space: nowrap;
        overflow-x: hidden;
        text-overflow: ellipsis;
    }

    .chat-order-info p {
        font-size: 12px;
        white-space: nowrap;
    }

    .chat-interlocutor img {
        width: 35px;
        height: 35px;
    }

    .chat-interlocutor__info h6 {
        font-size: 14px;
    }

    .chat-interlocutor__info p {
        font-size: 12px;
    }

    .chat-message img {
        width: 30px;
        height: 30px;
    }

    .chat-message-text p {
        font-size: 12px;
    }

    .chat-message-text {
        padding: 6px;
        max-width: 220px;
    }

    .chat-message {
        margin: 10px 0;
        gap: 5px;
    }

    .chat-message span {
        font-size: 10px;
    }

    article.chat-message.preview img.chat-file-preview {
        width: 150px;
    }

    .file-info {
        gap: 8px;
        margin-top: 2px;
    }

    .file-info a {
        font-size: 14px;
    }

    .date-exploder {
        margin: 20px 0;
    }

    .date-exploder p {
        font-size: 14px;
    }

    ol.chat-list li img {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .chat-info h6 {
        font-size: 14px;
    }

    .chat-info p {
        font-size: 12px;
        max-width: 150px;
    }

    ol.chat-list li {
        height: auto;
    }

    .chat-list__wrapper {
        max-width: 220px;
    }

    .chat-wrapper {
        margin-top: 56px;
        height: calc(100% - 100px);
    }

    article.chat-message img.file {
        width: 20px;
        height: 20px;
    }

    .file-info {
        align-items: center;
    }

    .chat-message.file.multiple p.file-row {
        margin-top: 10px;
    }

    .files-download a {
        font-size: 12px;
    }

    .files-download {
        align-items: center;
        margin-top: 10px;
    }

    .chat-input form textarea.write-message {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .chat-input-file img {
        margin-bottom: 2px;
    }

    .chat-message-send {
        width: 60px;
        height: 40px;
    }

    ol.file-seleсtor-list p {
        font-size: 14px;
    }

    ol.file-seleсtor-list {
        font-size: 12px;
        padding: 5px;
        bottom: 40px;
        max-width: 160px;
    }

    ol.file-seleсtor-list li p {
        font-size: 12px;
    }
}



@media screen  and (max-width: 720px) {


    #chat-indicator {
        display: none;
    }

    .chat-panel span.mobile-arrow {
        width: 16px;
        height: 16px;
        position: relative;
        display: block;
        transform: rotate(-45deg);
        transition: 0.3s;
        margin-right: 10px;
    }

    .chat-interlocutor__info p {
        max-width: 100px;
        white-space: nowrap;
        overflow-x: hidden;
        text-overflow: ellipsis;
    }

    .chat-panel span.mobile-arrow:after {
        position: absolute;
        content: '';
        background: #000;
        width: 100%;
        height: 3px;
        border-radius: 5px;
    }

    .chat-panel span.mobile-arrow:before {
        position: absolute;
        content: '';
        background: #000;
        width: 3px;
        height: 100%;
        border-radius: 5px;
    }

    .chat-panel {
        padding-left: 17px;
    }

    .chats__inner {
        gap: 0;
    }

    .chats__inner:not(.chat) .chat-container {
        display: none !important;
    }

    .chats__inner.chat .chat-container {
        display: block;
    }

    .chats__inner.chat .chat-list__wrapper {
        display: none;
    }

    .chat-list__wrapper {
        max-width: 100%;
    }

    .chat-info p {
        max-width: 250px;
    }

    .chats {
        margin-top: 60px;
    }

    .chat-interlocutor__info h6 {
        max-width: 100px;
        overflow-x: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}


@media screen and (max-width: 600px) {
    .popup.report h2 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .popup.report {
        padding: 16px;
    }

    .report__field label {
        font-size: 14px;
    }

    .report__field {
        gap: 2px;
    }

    .report__field textarea {
        padding: 6px;
        height: 100px;
        font-size: 14px;
    }

    .popup.report button.report-send {
        width: 200px;
        padding: 5px 0;
        font-size: 14px;
        margin-top: 20px;
    }
}



@media screen and (max-width: 390px) {
    .chat-interlocutor img {
        width: 30px;
        height: 30px;
    }

    .chat-interlocutor {
        gap: 8px;
    }

    .chat-panel {
        padding-right: 17px;
    }

    .chat-report-btn button.blue {
        font-size: 12px;
        padding: 5px 8px;
    }
}


/* <======== Media-Ban-Page ========> */

@media screen and (max-width: 1400px) {
    h2.ban-title {
        font-size: 24px;
    }

    p.ban-subtitle {
        font-size: 18px;
    }

    .ban-socials a {
        width: 30px;
        height: 30px;
    }

    .ban-block {
        padding: 20px;
        border-radius: 20px;
        width: 600px;
    }
}


@media screen and (max-width: 650px) {
    h2.ban-title {
        font-size: 18px;
    }

    p.ban-subtitle {
        font-size: 14px;
    }

    .ban-socials a {
        width: 30px;
        height: 30px;
    }

    .ban-block {
        padding: 10px;
        border-radius: 10px;
        width: 300px;
        box-shadow: 0px 0px 5px 0px rgb(255, 57, 57);
    }
}



/* <======== Media-Admin ========> */

@media screen and (max-width: 600px) {
    .search__field input {
        font-size: 14px;
        margin-left: 0;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
        padding: 5px 6px;
    }

    .search__field {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .search__field button {
        width: 100px;
    }
}


@media screen and (max-width: 550px) {
    .passport__files h4{
        display: block;
        width: 100%;
        margin-bottom: 0;
    }

    .passport__files {
        flex-wrap: wrap;
        gap: 8px;
    }

    .passport-frame {
        margin: 0;
    }



    .passport__files img {
        width: 100px;
        height: 100px;
    }

    button.blue.verify-user {
        margin-left: auto;
        margin-right: auto;
        display: block;
        font-size: 14px;
    }
}


/* <======== Media-Policy ========> */


@media screen and (max-width: 950px) {
    .policy-rules {
        margin-top: 60px;
    }

    .policy-rules h1 {
        font-size: 18px;
    }

    .policy-rules ol {
        padding: 0 16px;
        margin-top: 10px;
    }

    .policy-rules ol li::marker {
        font-size: 16px;
    }

    .policy-rules ol span {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .policy-rules ol li p {
        font-size: 12px;
    }

    .policy-rules ol li {
        margin-top: 10px;
    }


    .contacts-policy {
        margin: 30px 0;
        gap: 5px;
    }

    .contacts-policy h4 {
        font-size: 16px;
    }

    .contacts-policy p {
        font-size: 12px;
    }

    .contacts-policy img {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 500px) {
    .policy-rules ol li p {
        font-size: 9px;
    }

    .contacts-policy p {
        flex-wrap: wrap;
        width: 60%;
    }
}

@media screen and (max-width: 400px) {
    .contacts-policy p {
        flex-wrap: wrap;
        width: 100%;
    }
}