/* Main-css version 1.0.3 */

@font-face {
  font-family: "Roboto-Regular";
  src: url(../font/Roboto/Roboto-Regular.ttf);
}

@font-face {
  font-family: "Roboto-Medium";
  src: url(../font/Roboto/Roboto-Medium.ttf);
}

@font-face {
  font-family: "Roboto-Black";
  src: url(../font/Roboto/Roboto-Black.ttf);
}

@font-face {
  font-family: "Roboto-Bold";
  src: url(../font/Roboto/Roboto-Bold.ttf);
}
:root {
  --header: 16.5%;
	--content: 35%;
	--text-color: #fff;
  --text-gray: #aaa;
	--button-color: white;
	--internal-color: #ff0000;
  --background-color: #fff;
	--bg-table: rgba(128,128,128,0.2);
}
body {
  margin: 0;
  padding: 0;
  background: none;
  background: var(--background-color);
}
html.active {
  overflow: hidden;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
summary {
  display: block;
}

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

html {
  box-sizing: border-box;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  line-height: 1;
  font-family: sans-serif;
  text-align: left;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

th {
  text-align: inherit;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
}

pre {
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg:not(:root) {
  overflow: hidden;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
[type="reset"],
[type="submit"],
[type="button"] {
  -webkit-appearance: button;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

fieldset {
  min-width: 0;
}

legend {
  max-width: 100%;
  white-space: normal;
  color: inherit;
  display: block;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}
.list-gender {
  display: flex;
    justify-content: start;
    width: 100%;
    text-align: left;
}
.list-gender label {
  width: auto !important;
  text-align: left !important;
}
input[type="radio"] {
 width: 55px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
  position: relative;
    cursor: pointer;
    line-height: 30px;
    display: inline-block;
    color: var(--text-color);
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: -48px;
  top: 0;
  width: 25px;
  height: 25px;
 
  border-radius: 100%;
  background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 15px;
  height: 15px;
  background: #3412ec;
  position: absolute;
  top: 5px;
  left: -43px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type=checkbox] {
  position: relative;
  cursor: pointer;
}
input[type=checkbox]:before {
  content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    left: -10px;
    border: 2px solid #fff;
    border-radius: 3px;
    background-color: #fff;
}
input[type=checkbox]:checked:after {
 content: "";
    display: block;
    width: 10px;
    height: 20px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: -4px;
    left: -3px;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[hidden] {
  display: none;
}

*,
body {
  font-family: 'Roboto', sans-serif;
}

* {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-decoration: none;
}

*:focus {
  outline: none;
}

.hidden {
  display: none;
}

html {
  overflow: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}


html.page {
  overflow: auto;
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #CCC;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #AAA;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
  background: #999;
}

body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: none;
  overflow: hidden !important;
  background-color: black;
}

.bold {
  font-weight: bold;
}

.outer {
  width: 100%;
  top: 0;
  z-index: 10;

}
.outer--popup {
  position: fixed;
  height: 0 !important;
  overflow: visible !important;
	z-index: 1000;
}

.outer--popup .inner {
  height: 0 !important;
  overflow: visible !important;
}

.fancybox-active {
  height: 100vh;
}

.inner {
  transform-origin: top left;
  width: 2000px;
}

.content-body::-webkit-scrollbar,
.popup__content-body::-webkit-scrollbar,
.popup__content_scroll::-webkit-scrollbar
{
    width: 14px;
}
.content-body::-webkit-scrollbar-track,
.popup__content-body::-webkit-scrollbar-track,
.popup__content_scroll::-webkit-scrollbar-track
{
    background: rgba(128,128,128,0.2);
}
.content-body::-webkit-scrollbar-thumb,
.popup__content-body::-webkit-scrollbar-thumb,
.popup__content_scroll::-webkit-scrollbar-thumb
{
    background: rgba(255,255,255,0.5);
}

.section {
  position: relative;

}

.desktop {
  display: block;
}

.mobile {
  display: none;
}
/*==========FOOTER==============*/
.footer__content {
	background: url(../images/footer/bg.jpg) no-repeat;
	width: auto;
	height: 700px;
	padding-bottom: 25%;
}
.footer__content-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35%;
	height: 100%;
    margin: 0 auto;
}
.footer_icon-fb,
.footer_icon-ytb,
.footer_icon-ins,
.footer_icon-tiktok
{
	display: block;
	width: 100px;
	height: 119px;
	font-size: 0;
	margin: 0 38px;
}
.footer_icon-fb {
	background: url(../images/footer/icon_fb.png) top left / cover no-repeat;
}
.footer_icon-ytb {
	background: url(../images/footer/icon_ytb.png) top left / cover no-repeat;
}
.footer_icon-ins {
	background: url(../images/footer/icon_ins.png) top left / cover no-repeat;
}
.footer_icon-tiktok {
	background: url(../images/footer/icon_tiktok.png) top left / cover no-repeat;
}
/*==========END-FOOTER==========*/
/*==========BANNER==============*/
.banner__content {
	position: fixed;
    right: 12px;
	top: 2.5vh;
    margin: 7% 0;
	background: url(../images/banner/bg.png) no-repeat;
	width: 200px;
	height: 684px;
	padding-top: 17%;
	display: flex;
	flex-direction: column;
	transition: transform .5s;
}
.banner__content-icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 10px auto;
}
.banner__content-btn-mobile {
	display: none;
}
.banner__content-btn-desktop {
	display: block;
}
.banner_icon-home,
.banner_icon-fb,
.banner_icon-ytb,
.banner_icon-ins,
.banner_icon-tiktok 
{
	display: block;
	font-size: 0;
	width: 45px;
	height: 45.9px;
	margin: -5px 5px;
}
.banner_icon-home {
	background: url(../images/banner/icon_1.png) top left / cover no-repeat;
}
.banner_icon-fb {
	background: url(../images/banner/icon_2.png) top left / cover no-repeat;
}
.banner_icon-ytb {
	background: url(../images/banner/icon_3.png) top left / cover no-repeat;
}
.banner_icon-ins {
	background: url(../images/banner/icon_4.png) top left / cover no-repeat;
}
.banner_icon-tiktok {
	background: url(../images/banner/icon_5.png) top left / cover no-repeat;
}
.btn-arrow {
	position: absolute;
	top: 25%;
	left: -15%;
	display: block;
	font-size: 0;
	width: 39px;
	height: 69px;
}
.banner__content .btn-arrow {
	background: url(../images/banner/btn_muiten_hover.png) top left / cover no-repeat;
}
.banner__content.active {
	transform: translateX(90%);
}
.banner__content.active .btn-arrow {
	background: url(../images/banner/btn_muiten.png) top left / cover no-repeat;
}
.btn-ontop {
	display: block;
	font-size: 0;
	width: 50px;
	height: 60px;
	background: url(../images/banner/btn_ontop.png) top left / cover no-repeat;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}
.btn-appstore,
.btn-googleplay,
.btn-apk 
{
	display: block;
	font-size: 0;
	width: 160px;
	height: 50px;
	margin: 12px auto;
}
.btn-appstore {
	background: url(../images/banner/Appstore.png) no-repeat;
}
.btn-googleplay {
	background: url(../images/banner/Googleplay.png) no-repeat;
}
.btn-apk {
	background: url(../images/banner/APK.png) no-repeat;
}
.btn-tai-mobile {
	display: block;
	width: 159px;
	height: 100px;
	background: url(../images/banner/btn_tai_mobile.png) no-repeat;
	font-size: 0;
	margin: 0 auto;
}
/*==========END BANNER==========*/
/*==========POPUP==============*/
.popup,
.popup__background,.scrollContent {
  width: 2000px;
}

.popup {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .2s;
}

.popup__background {
  opacity: 0;
  position: absolute;
  background: rgba(5, 5, 5, 0.7);
  transition: opacity 1s;
}

.popup__content {
  opacity: 0;
  position: relative;
  z-index: 2;
  background: url(../images/popup/bg_popup.png) center no-repeat;
  width: 1200px;
  height: 850px;
  display: flex;
  flex-direction: column;
}
.popup.active {
  display: flex;
  pointer-events: all;
  opacity: 1;
}

.popup.active .popup__background {
  opacity: 1;
  width: 100%;
}

.popup.active .popup__content {
  position: absolute;
  opacity: 1;
  animation: showpopup 0.3s forwards;
}
.popup.active .btn-close {
	background: url(../images/popup/btn_close.png) no-repeat;
	display: block;
	width: 81px;
	height: 81px;
	position: absolute;
	top: 44px;
	right: -22px;
}
.popup__content.small {
  background-size: cover;
  width: 900px;
  height: 638px;
  display: flex;
  flex-direction: column;
}
.popup__content iframe {
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
}
.popup__content-container {
	width: 100%;
	height: 90%;
    display: flex;
    flex-direction: column;
}
.popup__content-header {
	width: inherit;
	min-height: var(--header);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.popup__content-header span{
	font-size: 42px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	width: auto;
	height: 50%;
}
.popup__content-title {
	font-size: 32px;
	font-weight: 600;
	line-height: 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: auto;
	/* max-height: var(--content); */
	margin: 2% 0;
}
.popup__content-btn {
	margin: 0 auto;
}
.popup__content-body {
  width: 90%;
  height: 100%;
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
}
.small .popup__content-body {
	height: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.popup__content-text {
  font-size: 35px;
}
.popup__content-body-h1 {
	font-size: 48px;
	line-height: 84px;
}
.popup__content-body-h2 {
	font-size: 24px;
	line-height: normal;
}
.popup__content-body--table table {
  width: 100%;
  margin: auto;
}

.popup__content-body--table table tr th {
  padding: 28px;
  font-size: 30px;
  background-color: var(--bg-table);
  text-align: left;
  font-weight: 600;
}

.popup__content-body--table table tr td {
  padding: 24px 28px;
  font-size: 24px;
  line-height: normal;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--text-gray);
}
.popup__content-body--table table tr th:first-child,
.popup__content-body--table table tr th:last-child,
.popup__content-body--table table tr td:first-child,
.popup__content-body--table table tr td:last-child
{
  text-align: center;
}
.popup__content-body--login {
  margin: 0 auto 34px;
}
.popup__content-body-noAccount {
  font-size: 32px;
}
.popup__content-body-box {
	display: flex;
    flex-direction: column;
	
}

/*popup_signIn_zingID*/
#popup_signIn_zingID .popup__content-body--login {
  display: flex;
  justify-content: space-evenly;
  margin: 24px 0;
}
#popup_signIn_zingID .popup__content-body--form {
  width: 50%;
  margin: 0 auto 34px;
}
#popup_signIn_zingID .popup__content-body--form input {
  margin: 8px 0;
  padding: 5px 15px;
}

/*popup_nhanluot_signUp*/
#popup_nhanluot_signUp .popup__content-body--login {
	width: 85%;
	display: flex;
	justify-content: space-evenly;
	margin-top: 24px;
	
}
#popup_nhanluot_signUp .popup__content-body--form {
  width: 90%;
  margin: 0 auto;
}
#popup_nhanluot_signUp .popup__content-body--form .flex-form {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin: 0 0 22px;;
}
#popup_nhanluot_signUp .popup__content-body--form label {
	font-size: 24px;
	margin: auto 24px auto 0;
	flex: 0 1 25%;
	text-align: right;
}
#popup_nhanluot_signUp .popup__content-body--form .fullwidth {
	width: 100%;
}
#popup_nhanluot_signUp .popup__content-body--form .radio {
  display: flex;
  align-items: center;
}
#popup_nhanluot_signUp .popup__content-body--form .radio input {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}
#popup_nhanluot_signUp .popup__content-body--form li.Accept {
  display: block;
  width: 50%;
  margin: 12px auto;
}
#popup_nhanluot_signUp .popup__content-body--form li.Accept input {
	width: 20px;
	height: 20px;
	margin-right: 12px;
}
#popup_nhanluot_signUp .popup__content-body--form li.Accept label {
	font-size: 24px;
}
#popup_nhanluot_signUp .popup__content-body--form li.Accept span {
	text-decoration-line: underline;
	text-underline-offset: 6px;
}
#popup_nhanluot_signUp .popup__content-body--form li.Sex .select-input {
	display: flex;
	width: 100%;
}
#popup_nhanluot_signUp .popup__content-body--form li.Sex .select-input label {
	text-align: left;
    margin: auto 0;
    flex: 0 1 10%;
}

/*popup_nhanluot_share*/
#popup_nhanluot_condition .popup__content-btn {
	margin: 26px auto;
}
#popup_nhanluot_condition .captcha-img img {
    background-color: white;
    padding: 4px 14px;
    border-radius: 4px;
}
#popup_nhanluot_condition .popup__content input {
  width: 60%; 
  margin-top: 2%;
}
#popup_nhanluot_condition input::placeholder {
  transform: translateY(-1.5px);
}
/*==========END POPUP==============*/
.hover-light:hover,
.btn-close:hover {
  filter: brightness(120%);
  cursor:pointer;
}

.internal_link {
  color: var(--internal-color);
  text-decoration-line: underline;
  text-underline-offset: 8px;
  font-size: 32px;
}

.btn {
	display: block;
    color: var(--button-color);
    text-decoration: none;
    border: 0;
}
.btn-login-chanel {
	background: url(../images/popup/btn_login_channel.png) no-repeat;
	width: 550px;
	height: 70px;
	color: var(--button-color);
	font-size: 26px;
	font-weight: 600;
	margin: 12px 0;
	display: block;
	text-decoration: none;
	line-height: 70px;
}
.btn-sharefacebook {
	display: block;
	background: url(../images/popup/btn_share_fb.png) no-repeat;
	font-size: 0;
	width: 400px;
	height: 66px;
}
.btn-empty-blue {
	width: 230px;
	height: 64px;
	line-height: 64px;
	font-size: 26px;
    font-weight: 600;
	background: url(../images/popup/btn_submit_2.png) no-repeat;
}
.btn-empty-red {
	width: 230px;
	height: 64px;
	line-height: 64px;
	font-size: 26px;
    font-weight: 600;
	background: url(../images/popup/btn_submit.png) no-repeat;
}
.require-form {
  color: var(--internal-color);
}
input, select {
  width: 100%;
  height: 54px;
  border: 0 !important;
  border-radius: 4px;
  padding: 10px 15px;
}
input::placeholder {
  font-size: 24px;
  color: #000; 
}
.captcha {
  display: flex !important;
    justify-content: center;
    align-items: center;
}
.flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
#refresh-captcha.refresh {
  background: url(../images/popup/icon-refesh.png) #fff !important;
  width: 44px !important;
  height: 44px !important;
  font-size: 0 !important;
  border-radius: 50% !important;
  margin-left: 15px !important;
}
.btn-form.btn-submit {
  background: #9c2a19;
  font-size: 28px;
  align-items: center;
  justify-content: center;
  color: #fffded;
  width: 200px !important;
  cursor: pointer;
}
.popup__content_scroll {
	font-size: 32px;
    font-weight: 600;
    line-height: 36px;   
    text-align: center;
    overflow: auto;
    height: 630px;
    position: absolute;
    margin: auto;
	width: 95%;
    margin: 30px;
    top: 125px;
}
@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes showpopup {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoom-in {
  0% {
    transform: scale3d(1, 1, 1);

  }

  40% {
    transform: scale3d(1.05, 1.05, 1);

  }

  100% {
    transform: scale3d(1.1, 1.1, 1);

  }
}

@keyframes itemreward {
  0% {
    filter: drop-shadow(0px 0 0 rgba(226, 175, 5, 0.952));
  }

  50% {
    filter: drop-shadow(2px 4px 6px rgba(226, 93, 5, 0.952));
  }

  100% {
    filter: drop-shadow(0px 0 0 rgba(226, 175, 5, 0.952));
  }
}

@keyframes scroll {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@media (max-width:576px) {
  :root {
    --header: 12.2%;
}
  body {
    height: auto !important;
  }
  .inner {
    width: 768px;
  }
  .desktop {
    display: none;
  }

  .mobile {
    display: flex;
  }
  .btn {
    transform: scale(.9);
  }
	/*==========FOOTER==============*/
	.footer__content {
		background: url(../images/footer/mobile/bg.jpg) no-repeat;
		height: 850px;
		padding-bottom: 80%;
	}
	.footer__content-icon {
		width: 85%;
	}
	/*==========END-FOOTER==========*/
	/*==========BANNER==============*/
	.banner__content {
		padding-top: 43.5%;
		justify-content: space-between;
	}
	.banner__content-btn-desktop {
		display: none;
	}
	.banner__content-btn-mobile {
		display: block;
	}
	/*==========END BANNER==========*/
.popup__content_scroll { 
  margin: 20px;
}
  .popup,
  .popup__background {
    width: 768px;
  }

  .scrollContent {
    width: 768px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .popup.active .popup__content {
		top: calc(0% + 150px);
	}
	.popup.active .popup__content.small {
	  top: calc(0% + 260px);
	}
	.popup.active .btn-close {
		top: 32px;
	}
	.popup__content {
		background: url(../images/popup/mobile/bg_popup.png) center no-repeat;
		width: 710px;
		height: 850px;
	}
	.popup__content.small {
	  width: 497px;
	  height: 595px;
	  display: flex;
	  flex-direction: column;
	}
	.popup__content-header span{
		font-size: 30px;
	}
	.popup__content-title {
		width: 80%;
		margin: 4% auto;
		font-size: 28px;
	}
	.popup__content-body-noAccount {
		font-size: 28px;
	}
	.popup__content-body-h1 {
		font-size: 34px;
	}
	.popup__content-body--table table tr th {
		padding: 18px 12px;
		font-size: 24px;
	}
	.popup__content-body--table table tr td {
		padding: 18px 12px;
		font-size: 18px;
	}
	
	/*popup_signIn_zingID*/
	#popup_signIn_zingID .popup__content-body--form {
		width: 80%;
	}
	
	/*popup_nhanluot_signUp*/
	#popup_nhanluot_signUp .popup__content-body--form label {
		width: 270px;
	}
	#popup_nhanluot_signUp .popup__content-body--form li.Accept {
		width: 100%;
	}
	#popup_nhanluot_signUp .popup__content-body--form li.Accept label {
		font-size: 22px;
	}

	/*popup_nhanluot_invite*/
	#popup_nhanluot_invite .popup__content input {
		width: 90%;
		margin: 12px auto;
	}
	#popup_nhanluot_invite .popup__content-btn {
		margin: 12px auto;;
	}
}
@media (min-width: 1600px) and (max-width: 1800px) {
  #pm__profile-form select option{
    font-size: 18px;;
  }
}
@media (min-width: 1300px) and (max-width: 1599px) {
  #pm__profile-form select option{
    font-size: 16px;;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  #pm__profile-form select option {
     font-size: 14px;
  }
 
}
@media (min-width: 768px) and (max-width: 991px) {
   select option {
    font-size: 10px;;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
 select option {
    font-size: 12px;;
  }
}
@media (min-width: 475px) and (max-width: 575px) {
select option {
    font-size: 12px;;
  }
}
@media (min-width: 425px) and (max-width: 474px) {
 select option {
    font-size: 10px;;
  }
}

@media (min-width: 375px) and (max-width: 424px) {
select option {
    font-size: 8px;;
  }
}
@media (max-width: 374px) {
 select option {
    font-size: 8px;;
  }
}
