* {
	box-sizing: border-box;	
}

*:focus {
	outline: none;
}

:root {
	--mos-color-white      : #e3e5e2;
	--mos-color-white-light: #faf9ff ;
	--mos-color-black      : rgba(0, 0, 0, 0.8);
	--mos-color-green      : rgb(107 163 36);
	--mos-color-icon-gray  : #616161;
	--mos-color-icon-liked : #6bd12f;
	--mos-color-actived    : #e9e945;
	--mos-width-alert      : 600px;

	--mos--bg--1                 : #e9ebee;
	--mos--bg--2                 : #ffffff;
	--mos--bg--3                 : #4caf50;
	--mos--bg--4                 : #f5f5f5;
	--mos--text--white           : #f9fdfa;
	--mos--text--black           : #363636;
	--mos--text--gray            : #616161;
	--mos--text--red             : #f57224;
	--mos--text--blue            : #35a7ff;
	--mos--text--hover--yellow   : #ffeb3b;
	--mos--text--hover--blue     : #03f;
	--mos--text--hover--green    : #07a30f;
	--mos--bg--bottom--bar       : rgba(255,255,255,0.84);
	--mos--gradient--bottom-bar-1: rgba(255,255,255,0.58);
	--mos--gradient--bottom-bar-2: #4caf50;
	--mos--bg--post--title--1    : rgba(33,33,33,0.7);
	--mos--bg--post--title--2    : rgb(33, 33, 33);
	--mos--post--title--2--color : #a8a8a8;
	--mos--gradient--post--new--1: #badc93;
	--mos--text--mode--white     : #f9fdfa;
	--mos--text--mode--black     : #363636;
}

/* view mode */
.mos-view-mode-btn {
	cursor: pointer;
}

.darkTheme {
    --mos--bg--1                 : #040404 !important;
    --mos--bg--2                 : #2b2b2b !important;
    --mos--bg--3                 : #161616 !important;
    --mos--bg--4                 : #434343 !important;
    --mos--bg--5                 : #B2B2B2 !important;
    --mos--gradient--post--new--1: #bebebe !important;
	--mos--text--mode--white     : #363636 !important;
	--mos--text--mode--black     : #f9fdfa !important;
}

.darkTheme .menu-user .menu-items {
	color: #f1f1f1!important;
}

.darkTheme #brxe-qowdog {
    box-shadow: 0 0 6px 0 #7d7d7d!important;
}

.darkTheme #brxe-mkajba {
	color: #cbcbcb!important;
}
/*****************************************/

::-webkit-scrollbar {
	width: 8px;
}
  
::-webkit-scrollbar-track {
	background: var(--mos-color-black);
}
  
::-webkit-scrollbar-thumb {
	background: #847d7d;
}

a {
	text-decoration: none;
}
.mos-hidden {
	display: none!important;
	opacity: 0;
	z-index: -1000;
}

.mos-wrap {
    inset: 0;
    overflow-y: auto;
    position: fixed;
    z-index: 3;
	display: flex;
    justify-content: center;
    align-items: center;
}

.mos-shortcode{
	display: inline-flex;
   	align-items: center;
    justify-content: center;
}

input {
	-webkit-border-radius:0px;
	transform: scale(1);
}

.mos-textOneRow {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	white-space: normal;
    overflow: hidden;
    line-height: 1.5;
}

.mos-textTwoRow {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	white-space: normal;
    overflow: hidden;
}

.mos-textThreeRow {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	white-space: normal;
    overflow: hidden;
	line-height: 1.6em;
	height: 4.8em;
}

br:after { content: "" }
br { 
	content: "";
	display: block;
    height: 8px;
}

.mos-center-100 {
	display: flex;
	justify-content: center;
	width: 100%;
}

.mos-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mos-flex-row-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
/*****************************************
* Background: được gọi khi shortcode ẩn được gọi
*/
.mos-background-level-1 {
	max-width: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
    top: 0;
	opacity: 1;
	background-color: rgba(33, 33, 33, 0.8);
	z-index: 2;
	transition: opacity 600ms ease-in-out;
    visibility: visible;
}

.mos-background-level-2 {
	max-width: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
    top: 0;
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 15;
	transition: opacity 600ms ease-in-out;
    visibility: visible;
}

.mos-background-hide {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
/*****************************************
* Button like 
*/
.mos-btn-liked:before {color: var(--mos-color-icon-liked) !important; text-shadow: 0 0 2px #fff }
.mos-btn-unlike:before {color: var(--mos-color-icon-gray);}

.mos-btn-like {
	min-width: 25px;
}

.mos-btn-like:hover {
	cursor: pointer;
}

/*****************************************
* Avatar upload
*/
.mos-avatar {
	display: inline-block;
	position: relative;
	width: 120px;
	height: 120px;
	border: 5px solid var(--mos--bg--post--title--1);
}

.mos-avatar .avatar-user{
	width: 100%;
	height: 100%;
}

.upload-avatar-btn {
	cursor: pointer;
	color: var(--mos-color-white);
	text-align: center;
    width: 100%;
    position: absolute;
    background-color: var(--mos--bg--post--title--1);
    bottom: 0px;
	font-size: 15px;
    font-weight: 500;
}

/*****************************************
* Alert 
*/
.mos-alert-visible {
	display: flex!important;
	width: 100vw!important;
	height: 100vh!important;
}

#mos-alert-msg {
	display: flex;
	position: fixed;
	top: 50vh;
	left: 50vw;
	transform: translate(-50%, -50%);
	z-index: 20;
	overflow: hidden;
	justify-content: center;
	padding: 5px;
	max-width: var(--mos-width-alert);
	background-color: var(--mos-color-white);
	font-size: 15px;
	width: 400px;
	cursor: context-menu;
	box-shadow:  0 4px 8px rgba(0, 0, 0, 0.2); ;
}

#mos-alert-short {
	box-sizing: border-box;
	font-size: 15px;
	background-color: var(--mos-color-black);
	color: var(--mos-color-white);
	padding: 8px 20px 8px 15px;
	position: fixed;
	right: 0;
	top: 5vh;
	width: fit-content;
	min-width: 200px;
	max-width: 400px;
	opacity: 1;
	overflow-x: hidden;
	overflow-y: auto;
	transition: opacity 1s ease;
	z-index: 10000;
}

.mos-alert-short-hidden {
	opacity: 0!important;
}

/*****************************************
* Form 
*/
[class^="mos-"] .visible {display: block!important}
[class^="mos-"] .active {color: var(--mos-color-actived) !important;}

.mos-section-form {
	display: flex;
	position: fixed;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 100%;
	top: 0px;
	left: 0;
	z-index: 10;
}

.mos-form {
	position: fixed;
	top: 10vh;
    transform: translateY(-5%);
	background-color: var(--mos-color-white);
	max-width: var(--mos-width-alert);
	width: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.mos-form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--mos-color-black);
}

.mos-form-header p{
	font-weight: 500;
    align-items: center;
    font-size: 16px;
    margin: 0;
    padding-left: 10px;
    color:  var(--mos-color-white);
    word-spacing: 4px;
}

.mos-form-header .close-btn {
	color: var(--mos-color-white);
	cursor: pointer;
	padding: 8px;
}

.mos-form-header .close-btn:hover {
	opacity: .8;
}

.mos-form-header .close-btn:before {
	font-size: 20px;
}

.mos-form-body {
	padding: 0 10px 10px;
}

.mos-form-checkbox label {
	font-size: 14PX;
	color: var(--mos-color-icon-gray);
	font-weight: 300;
	font-style: italic;
	display:inline;
}

.mos-form-checkbox label:hover {
	cursor: pointer;
}

.mos-form-checkbox{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.mos-form-checkbox input{
	margin: 0;
	height: 11px;
	margin-bottom: 10px;
}

.mos-form-input-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}
.mos-report-content {
	position: relative;
}

.mos-report-content #form-submit-btn {
    position: absolute;
    right: -2px;
    bottom: -2px;
    padding: 2px 12px;
    border: none;
    background-color: var(--mos-color-icon-gray);
    color: var(--mos-color-white);
    font-size: 13px;
    font-weight: 500;
    box-shadow: -2px -2px 1px gray;
}

.mos-report-content #form-submit-btn:hover {
	background-color: rgb(84, 81, 81);
	cursor: pointer;
}

.mos-form textarea {
	width: 100%;
	height: 80px;
	border:none;
	padding: 2px 8px;
	display: block;
	resize: none;
	color: var(--mos-color-icon-gray);
}

.mos-form textarea::placeholder {
	color: #bcb7b7;
}

.mos-report-btn:hover {
	cursor: pointer;
}

/*****************************************
* Form edit info user
*/

.form-change-info {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	left: 50vw;
	top: 50vh;
	transform: translate(-50%, -50%);
	max-width: 420px;
	max-height: 550px;
	width: 100%;
	height: 100%;
	font-size: 14px;
	padding: 16px;
	background-color: var(--mos-color-white-light);
	z-index: 10;
	overflow-y: auto;
	margin: 0!important;
}

.form-change-info p {
	padding: 14px 0 8px 0;
	margin: 0;
}

.form-change-info input {
	border-radius: 6px;
	padding: 0 6px!important;
	margin-left: 4px;
	line-height: 34px!important;
	border: 1px solid gray;
}

.form-change-info .wrapt-block {
	display: flex;
	flex-direction: column;
	margin: 10px 0;
}

.form-change-info-header {
	font-weight: 600;
	font-size: 20px;
}

#mos-form-inputs label {
	margin: 8px 0;
}

#mos-form-birthday, #mos-form-gender {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-bottom: 20px;
}

#mos-form-birthday input {
	width: 50px;
}

#mos-form-birthday div, #mos-form-gender div {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

#mos-form-birthday label, #mos-form-gender label {
	margin: 0!important;
}

.form-change-info-submit-btn {
	background-color: #20a820;
	color: var(--mos-color-white);
	text-align: center;
	font-weight: 500;
	padding: 10px;
	cursor: pointer;
}

.mos-change-info-btn {
	text-decoration: underline 2px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
}
/*****************************************
* Nút đăng ký với google
*/

.mos-google-reg-btn {
	display:flex!important;
	border: 4px solid #4caf50;
	color: var(--mos-color-icon-gray);
	padding: 6px;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	margin-top:10px;
	width: 280px;
	cursor: pointer;
	font-size: 16px;
	background-color: #e9e0e0;
}

/*****************************************
* Thông báo từ hệ thống
*/

.mos-notification {
    position: fixed;
    top: 10vh;
    left: 50%;
    width: 100%;
    max-width: var(--mos-width-alert);
    transform: translate(-50%);
    line-height: 1;
	z-index: 10;
	max-height: 80vh;
	background-color: var(--mos-color-black);
}

.mos-notification >p {
	padding: 10px;
	margin: 0!important;
	font-size: 20px;
	color: var(--mos-color-white);
	font-weight: 500;
	word-spacing: 4px;
}

.mos-notification-sign {
    cursor: pointer;
    position: absolute;
	transform: translate(9px, -10px);
    min-width: 17px;
    border: 1px solid #ffffffcd;
    height: 17px;
    border-radius: 9px;
    background-color: #d63638;
    color: var(--mos-color-white);
    font-size: 9px;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
}

.mos-notification-btn{
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--mos-color-icon-gray);
    font-size: 15px;
}

.mos-notification-swiper {
	display: flex;
	margin: 10px;
	font-size: 16px;
	color: var(--mos-color-white);
	font-weight: 500;
	justify-content: space-between;
}

.mos-notification-swiper div{
	position: relative;
}

.mos-notification-content {
	overflow-y: auto;
	background-color: var(--mos-color-icon-gray);
	max-height: 50vh;
}

.mos-notification-regular-btn{
	cursor: pointer;
	padding-right: 20px;
}

.mos-notification-system-btn {
	cursor: pointer;
}

.mos-notification-system-btn:hover, .mos-notification-items:hover, .mos-notification-regular-btn:hover {
	opacity: 1;
}

.mos-notification-items {
	cursor: pointer;
	opacity: 0.9;
	background-color: var(--mos-color-white);
	font-size: 13px;
	padding: 6px 8px;
	margin-top: 10px;
	border-top-right-radius: 10px;
	line-height: 1.5;
    color: var(--mos-color-icon-gray);

}

.mos-notification-items > div {
	margin-bottom: 3px;
}

.mos-notification-header {
	display: flex;
	color: var(--mos-color-white);
    font-weight: 500!important;
	padding: 4px 10px 0 10px;
	justify-content: space-between;
	font-size: 18px;
    align-items: center;
}

.mos-notification-item-from {
    font-weight: 600!important;
    font-size: 14px;
    align-items: center;
}

.mos-notification-item-time {
    font-weight: 600!important;
    font-size: 13px;
	display: flex;
	align-items: center;
}

.mos-notification-item-time.icon-pin::before {
    font-size: 12px;
    margin-right: 5px;
    line-height: 1;
}

.mos-notification-item-from.icon-envelope:before {
    display: flex;
    font-size: 14px;
    margin-right: 8px;
    align-items: end;
}

.mos-notification-item-title {
    font-weight: 500;
}

.mos-notification-item-content {
	color: var(--mos-color-icon-gray);
}

.mos_notification_new {
	background-color: var(--mos-color-white-light) !important;
	opacity: 1;
	position: relative;
}

.mos_notification_new::after {
	content: '';
    font-size: 8px;
    background-color: var(--mos-color-actived);
    font-weight: 600;
    display: inline-block;
    position: absolute;
    padding: 2px;
    top: 0;
    left: 0;
    height: 4px;
    width: 4px;
	border-radius: 0 0 100% 0;
	box-sizing: content-box;
	box-shadow: 0 2px 2px yellow;
}

.mos_notification_new .mos-notification-item-header {
    color: var(--mos-color-green);
}

.mos-notification-item-header {
	display: flex;
    justify-content: space-between;
	font-weight: 600!important;
}


/* mos-alert riêng cho notification*/
.mos-ntf{
	width: 100%;
	color: var(--mos-color-icon-gray);
	font-size: 14px;
	box-shadow: 0px 0px 4px 1px rgb(230 227 246 / 60%)
}
.mos-ntf-head{
	padding: 10px;
	
}

.mos-ntf-from {
	color: green;
	font-size: 14px;
	font-weight: 600;
	font-style: italic;
}

.mos-ntf-title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.mos-ntf-time {
	font-style: italic;
}

.mos-ntf-content {
	min-height: 200px;
	background-color: var(--mos-color-black);
	color: var(--mos-color-white);;
	padding: 10px;
	line-height: 1.6;
	font-weight: 400;
	word-spacing: 1.7px;
}

.mos-notification-header .close-btn {
	cursor: pointer;
}

.mos-notification-header .close-btn:hover {
	opacity: .8;
}

.mos-pgn-regular, .mos-pgn-system {
	cursor: pointer;
	padding: 4px;
}

.mos-pgn-regular.mos-pgn-now, .mos-pgn-system.mos-pgn-now {
	color: var(--mos-color-actived);
	font-weight: 600;
}
/*****************************************
* icons
*/

[class^="icon-"], [class*=" icon-"] {
	position: relative;
	display: inline-flex;
	letter-spacing: normal;
	text-indent: 0;
	text-align: center;
	align-content: center;
}
  
[class^="icon-"], [class*=" icon-"] {
	font-family: inherit !important;
}

[class^="icon-"]:before, [class*=" icon-"]:before{
	font-family: 'icomoon' !important;
	line-height: 1.6;
}

[class^="icon-"]:before, [class*=" icon-"]:before{
	justify-self: center;
	align-content: center;
	font-size: 20px;
}

/* css icon */
.mos-report-btn.icon-exclamation-circle:before, .mos-btn-like.icon-thumbs-up:before{
	color: var(--mos-color-icon-gray);
}


.mos-ntf-admin-bar.icon-headphones {
	padding: 0 7px;
	color: rgba(240, 246, 252, .6);
}

.mos-ntf-admin-bar.icon-headphones:before {
	margin-right: 6px;
	line-height: 2;
	font-size: 16px!important;
}



/* css search live */

.container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mos-search-live-section {
	max-width: var(--mos-width-alert);
	width: 100%;
	position: fixed;
	left: 50%;
	top: 10vh;
	transform: translate(-50%, -5%);
	z-index: 10;
	box-shadow: 0 0 4px #fff;
	overflow-y: auto;
	max-height: 80vh;
}

.mos-search-btn {
	cursor: pointer;
	position: relative;
	padding: 8px;
	color: gray;
	font-size: 1em;
}

.mos-search-live {
	display: flex;
	position: relative;
	width: 100%;
	height: 32px;
}

.mos-search-on {
	width: 80px;
    line-height: 1.6;
    padding: 0 6px;
    background-color: black;
    border: none;
}

.mos-search-live-input {
	padding: 0 8px;
	width: 100%;
	border: none!important;
	border-radius: 0!important;
	margin: 0;
}

.mos-search-live-input:focus-visible {
	outline: none;
}

.mos-search-live .close-btn:before {
	cursor: pointer;
    padding: 0 8px;
    color: var(--mos-color-black);
	background-color: #fff;
}

.mos-search-live-results {
	padding: 8px;
	background-color: var(--mos-color-black);
}

.mos-sl-results-header {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: var(--mos-color-white);
}

.mos-sl-results-item {
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	background-color: var(--mos-color-white);
}

.mos-sl-results-item img{
	height: 120px;
    min-height: 120px;
    min-width: 120px;
	width: 120px;
    background-color: #fff;
	object-fit: cover;
    object-position: center center;
	border-right: 2px solid rgba(0, 0, 0, .2);
}

a.mos-sl-results-item {
	text-decoration: none;
	color: inherit;

}

.mos-sl-results-item-content {
	padding: 5px 10px;
	width: 100%;
}

.mos-sl-results-item-content div:first-child {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: rgb(22, 22, 22);
}

.mos-sl-results-item-content div:nth-child(2){
	margin-top: 8px;
	font-size: 15px;
	font-weight: 400;
	opacity: 0.8;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mos-search-live-section .icon-star:before {
	font-size: 13px;
}

.mos-search-live-section .icon-tag:before {
	font-size: 11px;
}

/* pagination search live */
.mos-pgn-search-live {
	cursor: pointer;
	padding: 4px;
}

.mos-pgn-search-live.mos-pgn-now {
	color: var(--mos-color-actived);
	font-weight: 600;
}

.mos-require-login {
	display: flex;
	position: fixed;
	flex-direction: column;
	background-color: var(--mos-color-white);
	width: 100%;
	max-width: 600px;
	padding: 0 0 10px 0;
	top: 50vh;
	left: 50vw;
	transform: translate(-50%, -50%);
	justify-content: center;
	align-items: center;
	z-index: 3;
}

.mos-require-login > div:first-child {
	width: 100%;
	text-align: center;
	background-color: var(--mos-color-black);
	color: var(--mos-color-white-light);
	font-weight: 600;
	padding: 10px;
}

/* Menu-header-top user*/
.mos_menu_user, .mos_btn_like, .mos_notification_btn {min-width: 44px;}

.header-avatar {
	position: relative;
	display: inline-flex;
    align-items: center;
}

.avatar-user.icon-profile-user {
	padding: 0!important;
	cursor: pointer;
}

.avatar-user.icon-profile-user::before {
	color: #f9fdfa;
}

.avatar-user {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
	justify-content: center;
    background-clip: content-box;
    overflow: hidden;
	box-sizing: border-box;
}

.header-avatar .avatar-user {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    padding: 8px;
}

.menu-user {
	padding: 0 6px;
	width: 250px;
	display: none;
	opacity: 0;
	position: absolute;
	transition: opacity 300ms ease-in;
	right: 0;
	top: calc(100% + 2px);
  	font-size: 15px;
	background-color: var(--mos--bg--4);
	box-shadow: 2px 2px 6px #6c7166;
	text-transform: capitalize;
	word-spacing: 0.2px;
  	z-index: -100;
}

.menu-user ul {
	display: flex;
	list-style: none; /* Bỏ dấu chấm mặc định */
	padding: 0;
	margin: 0;
	flex-direction: column;
}

.menu-user .menu-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	color: #4caf50;
	padding: 4px ;
  	border-bottom: 1px solid var(--mos--bg--2);
}

.menu-user .menu-items:last-child {
  border-bottom: none;
}

.menu-user .menu-items:hover {
	opacity: .7;
	cursor: pointer;
}

.menu-items .menu-item__left {
	display: flex;
  align-items: center
}

.menu-item-icon {
	width: 26px;
}

.menu-item__left .menu-item-icon:before, .menu-user .icon-chevron-right:before {
	font-size: 18px;
  line-height: 1.8;
}

.menu-user .icon-chevron-right {
  text-align: right;
}

.show-menu-user {
  opacity: 1;
  z-index: 1;
  display: inline-block;
}


/*--------------popup-coupon------------*/
.mos-coupon-popup {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overscroll-behavior: contain;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	position: relative;
	z-index: 10;
	padding: 2rem;
}

.coupon-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px 12px;
	font-weight: 700;
	font-size: 14px;
	background-color: #edf7ff;
	border-radius: 4px;
	color: gray;
	cursor: pointer;
}

.coupon-popup-close:hover {
	opacity: 0.7;
}

.coupon-popup-logo_store {
	margin-bottom: 1rem;
}

.coupon-popup-code {
	flex-direction: column;
	border-style: dotted;
    background-color: aliceblue;
	position: relative;
}

.coupon-popup-content {
    margin-bottom: 2rem;
    max-width: 360px;
    text-align: center;
    line-height: 1.6;
	font-size: 18px;
}

.coupon-popup-code-input  {
	padding: 0 10px;
	font-weight: 500;
	text-align: center;
	border: none;
	letter-spacing: 6px;
	line-height: 1.8;
	font-size: 2.4rem;
	width: fit-content;
}

.copy-coupon-btn {
	text-align: center;
	width: calc(100% - 8px);
	padding: 4px;
	background-color: green;
	color: #fff;
	margin: 4px;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
}

.copy-coupon-btn:hover {
	opacity: .8;
}

.coupon-popup-report {
	flex-direction: row;
	padding: 20px 10px;
}


.coupon-popup-steps {
	display: flex;
	flex-direction: column;
	padding: 4px 10px;
	border-style: double;
}

.ion-ios-checkmark::before, .ion-md-alert::before {
	font-size: 20px;
    padding: 0 6px;
	color: gray;
}

.ion-md-alert::before {
	font-size: 22px;
}

.ion-md-alert:hover::before {
	color: #cddc39;
	cursor: pointer;
}

.ion-md-arrow-round-forward::before {
	font-size: 13px;
    padding: 0 6px;
	color: blueviolet;
	line-height: 2;
}
/*--------------media--------------------*/
@media (max-width: 782px) {

	.mos-search-live-section{
		max-width: 100%;
		left: 0;
		top: 0;
		z-index: 10;
		transform: none;
		margin-top: 10vh;
	}

	.header-avatar .avatar-user {
		padding: 6px!important;
	}

	.mos-form-checkbox{
		align-items: flex-start;
		flex-direction: column;
	}
}