body {
	margin: 0;
	padding: 0;
	color: #1A1A1A;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	background: #F7F7F7;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

#header {
	padding: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background: #FFF;
	width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

#header img:active {
	transform: scale(0.95);
	transition: transform 0.3s ease;
}

#preheader {
	display: flex;
	background: #063757;
	padding: 0 20px;
	justify-content: end;
    align-items: center;
	width: 1200px;
}

#preheader a {
	text-decoration: none;
	color: #FFF;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 15px;
	transition: background 0.3s ease;
}

#preheader a:hover {
	background: #04273D;
	transition: background 0.3s ease;
}

#preheader a svg path {
	fill: #FFF;
}

#header-button-allcategories {
	padding: 10px;
    display: flex;
    background: #063757;
    color: #FFF;
    border-radius: 10px;
    align-items: center;
    gap: 5px;
    cursor: pointer;
	transition: background 0.3s ease;
}

#header-button-allcategories:hover {
	background: #04273D;
	transition: background 0.3s ease;
}

#header-town {
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

#header-town svg path {
	fill: #333;
	transition: all 0.3s ease;
}

#header-town:hover {
	color: #063757;
	transition: all 0.3s ease;
}

#header-town:hover svg path {
	fill: #063757;
	transition: all 0.3s ease;
}

#search {
	position: relative;
	flex: 1;
}

#search input {
	outline: none;
	border: 2px solid #063757;
	border-radius: 10px;
	padding: 10px;
	background: #F7F7F7;
	width: -webkit-fill-available;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #5C5C5C;
}

#search input::placeholder{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #5C5C5C;
}

#search svg {
	position: absolute;
    border-radius: 7px;
    padding: 6px;
    right: 4px;
    top: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

#search svg:hover {
	background: #063757;
	transition: all 0.3s ease;
}

#search svg:hover path {
	fill: #FFF;
	transition: all 0.3s ease;
}

#search svg path {
	fill: #063757;
	transition: all 0.3s ease;
}

#login-form {
    padding: 20px;
    background: #FFF;
    border-radius: 20px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input select {
	outline: none;
    border: 2px solid #F7F7F7;
    border-radius: 10px;
    padding: 10px;
    background: #F7F7F7;
    width: -webkit-fill-available;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #5C5C5C;
    transition: all 0.3s ease;
	cursor: pointer;
}

.input textarea {
	outline: none;
    border: 2px solid #F7F7F7;
    border-radius: 10px;
    padding: 10px;
    background: #F7F7F7;
    width: -webkit-fill-available;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #5C5C5C;
    transition: all 0.3s ease;
    resize: none;
    height: 250px;
}

.input input {
	outline: none;
	border: 2px solid #F7F7F7;
	border-radius: 10px;
	padding: 10px;
	background: #F7F7F7;
	width: -webkit-fill-available;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #5C5C5C;
	transition: all 0.3s ease;
}

.input input:focus{ border: 2px solid #063757; transition: all 0.3s ease; }
.input select:focus{ border: 2px solid #063757; transition: all 0.3s ease; }
.input textarea:focus{ border: 2px solid #063757; transition: all 0.3s ease; }

.input input::placeholder{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #5C5C5C;
}

button {
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #FFF;
	border-radius: 20px;
	background: #063757;
	outline: none;
	border: 0;
	cursor: pointer;
	padding: 15px;
	transition: transform 0.3s ease;
}

button:hover { transform: scale(0.95);  transition: transform 0.3s ease; }

button:active { transform: scale(0.90);  transition: transform 0.3s ease; }

#login-form h2 {
	margin: 0 0 20px 0;
	font-weight: 600;
}

#login-and-reg-zone {
	width: 300px;
    display: flex;
    gap: 20px;
    text-align: center;
	transform: scale(0.95); 
}

#login-form #login-and-reg-zone a{
    color: #FFF;
    border-radius: 20px;
    background: #5e6060;
    outline: none;
    border: 0;
    cursor: pointer;
    padding: 15px;
    text-decoration: none;
    width: 200px;
}

#login-form #login-and-reg-zone a:hover{ transform: scale(0.95);  transition: transform 0.3s ease; }

#login-form a {
	text-align: center;
	text-decoration: none;
	color: #063757;
}

#login-form a:hover { text-decoration: underline; }

#login-form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#login-form-header h2 {
	margin: 0;
}

#login-form-regsteps {
	color: #5C5C5C;
}

#login-form p {
	margin: 0;
}

#body-content-container-nav {
    display: flex;
    gap: 20px;
}

#body-content-container h3 {
	margin: 0;
}

#body-content-container-nav a{
    padding: 10px 20px;
    background: #F7F7F7;
    border: 1px solid #EEE;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
}

#body-content-container-nav a.selected {
	background: #063757;
	color: #FFF;
	font-weight: 500;
}

.radio-parrent {
    display: flex;
    gap: 20px;
}

.radio {
    display: flex;
    gap: 5px;
    align-items: center;
    cursor: pointer;
}

.radio-point {
    width: 16px;
    height: 16px;
    border: 2px solid #CCC;
    border-radius: 16px;
	transition: all 0.3s ease;
}

.radio:hover .radio-point {
	background: #F7F7F7;
	transition: all 0.3s ease;
}

.radio.selected .radio-point {
	background: #3878a2;
	border: 2px solid #04273D;
	transition: all 0.3s ease;
}

.reg-step {
	display: none;
	width: 390px;
	flex-direction: column;
	gap: 20px;
}

#login-form-header-backbutton {
	display: none;
	cursor: pointer;
}

#login-form-header-backbutton svg {
	display: flex;
    align-items: center;
	
}

#login-form-header-backbutton svg path {
	fill: #5e6060;
}

#body {
	margin-top: 20px;
    width: 1240px;
    display: flex;
    justify-content: space-between;
}

#body-menu {
    width: 300px;
    padding: 20px;
    background: #FFF;
    border-radius: 20px;
	display: flex;
    flex-direction: column;
    gap: 5px;
	height: max-content;
}

#body-menu a {
    padding: 10px 15px;
    border-radius: 10px;
    color: #063757;
    text-decoration: none;
	font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#body-menu a:hover {
	background: #F7F7F7;
}

#body-menu a.selected { background: #063757; color: #FFF; font-weight: 600; }

.profile-menu-count {
    width: 30px;
    height: 30px;
    color: #063757;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wallet-count {
	color: #5C5C5C;
}

#body-menu a.selected #wallet-count {
	color: #FFF;
}

#body-menu a.selected .profile-menu-count {	
    background: #FFF;
    border-radius: 20px;
    width: 30px;
    height: 30px;
    color: #063757;
    display: flex;
    justify-content: center;
    align-items: center;
}

#body-content {
    width: 840px;
    padding: 20px;
    background: #FFF;
    border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#body-content h2 {
	margin: 0;
	padding-bottom: 20px;
	border-bottom: 1px solid #F7F7F7;
}

.profile-ad {
	display: flex;
    width: 200px;
    flex-direction: column;
    gap: 10px;
	cursor: pointer;
}

.profile-ad-image {
    height: 200px;
    width: -webkit-fill-available;
    border: 1px solid #EEE;
    border-radius: 20px;
	background: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile-ad-image img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
}

.profile-ad-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-ad-price {
    color: #5C5C5C;
    font-weight: 500;
	font-size: 18px;
}

.profile-ad-title {
    font-weight: 500;
}

.profile-ad-moderstatus {
	font-size: 15px;
}

.profile-ad-direction {
    font-size: 15px;
    color: #5C5C5C;
}

#modal-overlay {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: fixed;
	background: #00000090;
	display: none;
	justify-content: center;
	z-index: 2;
}

#modal {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #FFF;
	border-radius: 20px;
	box-shadow: 0 0 5px #000;
	height: max-content;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #333;
	margin-top: 100px;
}

#modal-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #EEE;
}

#modal-header h2 {
	margin: 0;
	font-weight: 500;
}

.successreg {
	border: 1px solid #00b000;
    padding: 20px;
    background: #e0ffe0;
    color: #00b000;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.msgnomoderred {
    border: 1px solid #b90000;
    padding: 20px;
    background: #ff3838;
    color: #FFF;
}

.body-block {
    padding: 20px;
    background: #FFF;
    width: 860px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.body-block-content {
	display: flex;
    gap: 20px;
    
    height: 250px;
    overflow: hidden;
}

.body-block-content a {
	color: #333;
	text-decoration: none;
}

.body-block-content a:hover .profile-ad-title{
	color: #063757;
}

.body-block-content .profile-ad {
	flex: none;
}

.body-block-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F7F7F7;
    align-items: center;
}

.body-block-header h2 {
	margin: 0;
}

.body-block-header a {
	color: #333;
	font-weight: 500;
	text-decoration: none;
	padding: 6px 10px;
	border-radius: 10px;
	background: #F7F7F7;
}

#body-sellers {
    padding: 20px;
    background: #FFF;
    height: max-content;
    margin-top: 20px;
    border-radius: 20px;
    width: 260px;
}

#body-sellers h2 {
	margin: 0;
}

#body-sellers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 20px;
}

.seller {
    display: flex;
    width: 100%;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #EEE;
    cursor: pointer;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border: 1px solid #EEE;
    border-radius: 10px;
    flex: none;
	background: url(../images/no-image.jpg);
    background-size: contain;
	background-repeat: no-repeat;
    background-position: center;
}

.seller-info {
    display: flex;
    flex-direction: column;
}

.seller-title {
    font-weight: 600;
}

.seller-ads {
    font-size: 14px;
    color: #5C5C5C;
}

#body-sellers-header a {
	color: #333;
	font-weight: 500;
	text-decoration: none;
	padding: 6px 10px;
	border-radius: 10px;
	background: #F7F7F7;
}

#modal-directions-list {
	display: flex;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    justify-content: space-between;
}

#view-ad-images {
    display: flex;
    gap: 20px;
}

#view-ad-images-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.view-ad-images-list-image {
    width: 60px;
    height: 60px;
    border: 2px solid #06375700;
    border-radius: 20px;
	cursor: pointer;
	display: flex;
    justify-content: center;
    align-items: center;
	background: #FFF;
}

.view-ad-images-list-image.selected {
	border: 2px solid #063757;
}

#view-ad-images-mainimage {
    width: 450px;
    height: 450px;
    border: 1px solid #CCC;
    border-radius: 20px;
	justify-content: center;
    align-items: center;
    display: flex;
	background: #FFF;
}

#view-ad-images-mainimage img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
}

#view-ad-info {
    padding: 20px;
    background: #FFF;
    border-radius: 20px;
    width: 380px;
	height: max-content;
}

#view-ad-seller {
    padding: 20px;
    background: #FFF;
    border-radius: 20px;
    width: 230px;
	height: max-content;
}

#view-ad-seller h2 {
	margin: 0;
	font-weight: normal;
}

#view-ad-seller button {
	margin-top: 20px;
	width: 100%;
}

#view-ad-info-publicated {
	display: flex;
    justify-content: space-between;
    color: #5C5C5C;
    font-size: 14px;
}

.view-ad-info-label {
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
}

.view-ad-info-price {
    font-size: 18px;
    font-weight: 600;
}

#add_ad_upload_image {
    width: 130px;
    height: 150px;
    border: 2px solid #063757;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    color: #063757;
    gap: 10px;
    font-size: 16px;
	transition: all 0.3s ease;
}

#add_ad_upload_image:hover {
	background: #f0f9ff;
	transition: all 0.3s ease;
}

#modal-close {
	cursor: pointer;
}

#modal-close svg path {
	fill: #CCC;
}

#modal-close:hover svg path {
	fill: #333;
}

#body-content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #F7F7F7;
	padding-bottom: 20px;
}

#body-content-header h2 {
	border-bottom: 0;
	padding-bottom: 0;
}

#body-content-header a {
	background: #063757;
    color: #FFF;
    text-decoration: none;
    border-radius: 20px;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 7px 20px;
	transition: transform 0.3s ease;
}

#body-content-header a svg path {
	fill: #FFF;
}

#body-content-header a:active {
	transform: scale(0.95);
	transition: transform 0.3s ease;
}

.profile-ad-upl-image {
    width: 130px;
    height: 150px;
    border: 2px solid #063757;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
	display: none;
}

.profile-ad-upl-image img{
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
}

#add_ad_images {
	display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-ad-upl-image:hover .profile-ad-upl-image-delete { display: block; }

.profile-ad-upl-image-delete {
    position: absolute;
    top: 0;
    right: 0;
    border-top-right-radius: 17px;
    padding: 5px;
    border-bottom-left-radius: 17px;
    background: #000;
	cursor: pointer;
	display: none;
	transition: all 0.3s ease;
}

.profile-ad-upl-image-delete svg path {
	fill: #FFF;
}

.view-ad-images-list-image img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
}

#profile-page-avatar {
    width: 250px;
    height: 250px;
    display: flex;
    border: 1px solid #EEE;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
}

#profile-page-avatar img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
}

#chat {
    width: 880px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

#chat-dialog {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: -webkit-fill-available;
	max-height: calc(100vh - 160px);
	min-height: calc(100vh - 160px);
}

#chat-dialog-messages {
    background: #FFF;
    height: 100%;
    border-radius: 20px;
	overflow-y: auto;
}

#chat-dialog-messages::-webkit-scrollbar {
	width: 0;
}

#chat-dialogs-list {
    width: 250px;
    flex: none;
}

#chat-dialog-header {
    border-radius: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
	justify-content: space-between;
}

#chat-dialog-header-sobes {
	display: flex;
    gap: 10px;
    align-items: center;
}

#chat-dialog-header-sobesopers {
    display: flex;
    justify-content: center;
    align-items: center;
}

#chat-dialog-header-sobesopers a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    text-decoration: none;
    background: #ffeeee;
    padding: 5px;
    border-radius: 20px;
    color: #bf0000;
	transition: all 0.3s ease;
}

#chat-dialog-header-sobesopers a svg path {
	fill: #bf0000;
	transition: all 0.3s ease;
}

#chat-dialog-header-sobesopers a:hover {
	background: #bf0000;
	transition: all 0.3s ease;
	color: #FFF;
}

#chat-dialog-header-sobesopers a:hover svg path {
	fill: #FFF;
	transition: all 0.3s ease;
}

#chat-dialog-header-avatar {
    width: 70px;
    height: 70px;
    border: 1px solid #EEE;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #FFF;
}

#chat-dialog-header-avatar img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
}

#chat-dialog-header-titleauthor {
    display: flex;
    flex-direction: column;
	gap: 5px;
}

#chat-dialog-header-titleauthor-title {
    font-weight: 600;
    color: #063757;
}

#chat-dialog-header-titleauthor-author {
	color: #6c6c6c;
}

#chat-dialog-inputs {
	display: flex;
    position: relative;
}



#chat-dialog-inputs-message-input {
	outline: none;
    border: 2px solid rgb(6, 55, 87);
    border-radius: 10px;
    padding: 10px 80px 10px 10px;
    width: 100%;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    color: rgb(92, 92, 92);
    background: #FFF;
    max-height: 150px;
    overflow-y: auto;
    text-align: justify;
	min-height: 42px;
}

#chat-dialog-inputs-message-input::-webkit-scrollbar {
	width: 0;
}

#chat-dialog-inputs button{
    position: absolute;
	padding: 10px 20px 6px 20px;
    right: 0px;
    bottom: 1px;
    border-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 12px;
}

#chat-dialog-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

#chat-dialog-messages {
    display: flex;
    flex-direction: column;
    gap: 5px;
	padding: 10px;
}

.chat-dialog-messages-row {
	width: 100%;
}

.chat-dialog-messages-row.my {
	display: flex;
    justify-content: right;
}

.chat-message {
    padding: 10px;
    background: #fafafa;
    width: max-content;
    border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: relative;
	max-width: 400px;
}

.chat-message-authortime {
    display: flex;
    justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.chat-message-author {
    color: #063757;
    font-weight: 600;
	font-size: 14px;
}

.chat-message-time {
    font-size: 12px;
    color: #636363;
}

.chat-message-text { margin-bottom: 5px; }

.chat-message-readstatus {
    position: absolute;
    right: 5px;
    bottom: -5px;
}

#body-block-directions {
	width: 1200px;
}

#body-block-directions .body-block-content {
	justify-content: space-between;
}

#header a { text-decoration: none; }

#antimat-warning {
    display: flex;
    position: absolute;
    z-index: 1;
    width: 570px;
    padding: 10px;
    background: #f3bb5f;
    border-radius: 10px;
    gap: 10px;
    align-items: center;
	display: none;
}

#antimat-warning-close{
	cursor: pointer;
}

.dialogs-list-list-dialog {
    display: flex;
    background: #FFF;
    gap: 10px;
    border-radius: 20px;
	align-items: center;
	border: 1px solid #FFF;
}

.dialogs-list-list-dialog.selected { border: 1px solid #063757; }

.dialogs-list-list-dialog-avatar {
    width: 60px;
    height: 60px;
    border-right: 1px solid #EEE;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
	display: flex;
    justify-content: center;
    align-items: center;
}


.dialogs-list-list-dialog-avatar img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 20px;
}

.dialogs-list-list-dialog-info {
    display: flex;
    flex-direction: column;
}

.dialogs-list-list-dialog-info-adname {
    font-weight: 500;
    color: #063757;
}

.dialogs-list-list-dialog-info-sobes {
    font-size: 14px;
    color: #5C5C5C;
}

.dialogs-list-list-dialog-info-msg {
    font-size: 14px;
    color: #333;
}

#chat-dialogs-list-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#chat-dialogs-list-list a { text-decoration: none; }

#chat-dialogs-list input {
	outline: none;
	border: 1.5px solid #063757;
	border-radius: 10px;
	padding: 10px;
	background: #FFF;
	width: -webkit-fill-available;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #5C5C5C;
	margin-bottom: 10px;
}

#chat-dialogs-list input::placeholder{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #5C5C5C;
}

#view-seller-card {
	display: flex;
	align-items: center;
    background: #FFF;
    justify-content: space-between;
    border-radius: 20px;
}

#view-seller-card-block {
	padding: 20px;
    background: #FFF;
	color: #333;
	display: flex;
	gap: 20px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

#view-seller-card-review {
	color: #FFF;
	padding: 20px;
    background: #063757;
	height: 200px;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	width: 250px;
	border-radius: 20px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 0;
	gap: 20px;
    justify-content: center;
}

#view-seller-card-review-rating {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 25px;
    justify-content: center;
}

#view-seller-card-review-rating-block {
    display: flex;
    gap: 5px;
    align-items: center;
}

#view-seller-card-review-rating-block svg path {
	fill: #FFF;
}

#view-seller-card-review-rating-block span {
    font-weight: bold;
}

#view-seller-card-review span {
	text-align: center;
}

#view-seller-card-review button {
	background: #FFF;
	color: #333;
}

#view-seller-image {
	width: 200px;
    height: 200px;
    border: 1px solid #EEE;
    border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#view-seller-image img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
}

#view-seller-info h2 {
	font-weight: normal;
	color: #5C5C5C;
}

#view-seller-info h3 {
	font-weight: normal;
	color: #5C5C5C;
}

#body-sellers-list a {
	text-decoration: none;
	color: #333;
}

.aseller {
	text-decoration: none;
	color: #333;
}

#review-stars-block {
    margin: 20px 0;
    display: flex;
    gap: 20px;
}

#review-stars-block svg {
	cursor: pointer;
	width: 40px;
    height: 40px;
}

#review-stars-block svg path { fill: #CCC; transition: fill 0.3s; }
#review-stars-block .selected path { fill: #063757; transition: fill 0.3s; }

#review-stars-block:has(#review-star-1:hover) #review-star-1 path,
#review-stars-block:has(#review-star-2:hover) #review-star-1 path,
#review-stars-block:has(#review-star-2:hover) #review-star-2 path,
#review-stars-block:has(#review-star-3:hover) #review-star-1 path,
#review-stars-block:has(#review-star-3:hover) #review-star-2 path,
#review-stars-block:has(#review-star-3:hover) #review-star-3 path,
#review-stars-block:has(#review-star-4:hover) #review-star-1 path,
#review-stars-block:has(#review-star-4:hover) #review-star-2 path,
#review-stars-block:has(#review-star-4:hover) #review-star-3 path,
#review-stars-block:has(#review-star-4:hover) #review-star-4 path,
#review-stars-block:has(#review-star-5:hover) #review-star-1 path,
#review-stars-block:has(#review-star-5:hover) #review-star-2 path,
#review-stars-block:has(#review-star-5:hover) #review-star-3 path,
#review-stars-block:has(#review-star-5:hover) #review-star-4 path,
#review-stars-block:has(#review-star-5:hover) #review-star-5 path {
  fill: #063757;
}

#isUserReviewLeft { color: #ADADAD; }

#modal-u-message {
	width: 500px;
	display: block;
	text-align: justify;
}

@media (max-width: 992px) {
	
}