:root {
  --font-body: "Montserrat", sans-serif;
  --color-blue: rgba(0, 109, 183, 1);
  --color-black: rgba(17, 17, 17, 1);
  --color-yellow: rgba(255, 193, 7, 1);
  --color-dark: rgba(23, 31, 45, 1);
  --color-body: rgba(20, 49, 69, 1);
  --color-red: rgba(237, 28, 36, 1);
  --color-theme: #f3f3f3;
  --width-container: 1740px;
  --color-stroke: rgba(228, 228, 228, 1);
  --color-Bg: rgba(243, 243, 243, 1);
  --color-white: rgba(255, 255, 255, 1);
  --color-caption: rgba(145, 145, 145, 1);
  --color-icon: rgba(139, 139, 139, 1);
  --color-primary: rgba(55,199,207,1);
  --color-dusty-grey:rgba(247,247,247,1);
  --color-gold:rgba(212,182,118,1);
}

html {
  scroll-behavior: smooth;
}

.container_frame {
  width: var(--width-container);
  display: block;
  margin: auto;
}
@media (max-width: 1920px) {
  .container_frame {
    width: calc(100% - 180px);
  }
}
@media (max-width: 1439px) {
  .container_frame {
    width: calc(100% - 168px);
  }
}
@media (max-width: 767px) {
  .container_frame {
    width: 100%;
    padding: 0 15px;
  }
}

body {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  overflow-x: hidden;
}

.main {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .main {
    padding-top: 80px;
  }
}

h1 {
  color: var(--color-primary);
  font-size: 80px !important;
  font-weight: 400 !important;
}
@media (max-width: 1919px) {
  h1 {
    font-size: 5.5rem !important;
  }
}
@media (max-width: 1440px) {
  h1 {
    font-size: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px !important;
  }
}

h2 {
  font-size: 60px !important;
  color: var(--color-primary);
  font-weight: 400 !important;
}
@media (max-width: 1919px) {
  h2 {
    font-size: 3.5rem !important;
  }
}
@media (max-width: 1440px) {
  h2 {
    font-size: 2rem !important;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px !important;
  }
}

h3 {
  font-size: 48px !important;
  color: var(--color-primary);
  font-weight: 400 !important;
}
@media (max-width: 1919px) {
  h3 {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 1440px) {
  h3 {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px !important;
  }
}

h4 {
  font-size: 36px !important;
  font-weight: 400 !important;
}
@media (max-width: 1919px) {
  h4 {
    font-size: 2rem !important;
  }
}
@media (max-width: 1440px) {
  h4 {
    font-size: 1.75rem !important;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px !important;
  }
}

h5 {
  font-size: 30px !important;
  font-weight: 400 !important;
}
@media (max-width: 1919px) {
  h5 {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 1440px) {
  h5 {
    font-size: 1.25rem !important;
  }
}

h6 {
  font-size: 24px !important;
  margin-bottom: 0;
  font-weight: 400 !important;
}
@media (max-width: 1919px) {
  h6 {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 1440px) {
  h6 {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  h6 {
    font-size: 14px !important;
  }
}

.h7 {
  font-size: 20px;
}
@media (max-width: 1919px) {
  .h7 {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 1440px) {
  .h7 {
    font-size: 1rem !important;
  }
}
@media (max-width: 767px) {
  .h7 {
    font-size: 14px !important;
  }
}

#home .header, #about .header {
  background: transparent;
  transition: all 0.5s ease;
}
#home .header .content_header, #about .header .content_header {
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 20px;
}
#home .header .header_name, #about .header .header_name {
  color: var(--color-white);
}
#home .header.scroll, #about .header.scroll {
  background-color: rgba(0, 109, 183, 0.26);
  padding: 10px 0;
}
#home .header.scroll .content_header, #about .header.scroll .content_header {
  border-bottom: none;
  padding-bottom: 0;
}
#home .header.scroll .header_name, #about .header.scroll .header_name {
  color: var(--color-blue);
}
#home .header_mobile, #about .header_mobile {
  background: transparent;
}
#home .header_mobile .content_header, #about .header_mobile .content_header {
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 20px;
}
#home .header_mobile.scroll, #about .header_mobile.scroll {
  background-color: rgba(20, 46, 69, 0.4);
}
#home .header_mobile.scroll .content_header, #about .header_mobile.scroll .content_header {
  border-bottom: none;
  padding-bottom: 0;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 109, 183, 0.26);
  padding: 10px 0;
}
@media (max-width: 1050px) {
  .header {
    display: none;
  }
}
.header a {
  text-decoration: none;
  color: var(--color-white);
}
.header a:hover {
  font-weight: 700;
  color: var(--color-white);
}
.header.scroll {
  background-color: rgba(0, 109, 183, 0.26);
  padding: 10px 0;
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  transition: all 0.5s ease;
}
.header.scroll .content_header {
  border-bottom: none;
  padding-bottom: 0;
}
.header.scroll .header_name {
  color: var(--color-blue);
}
.header .content_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .content_header .header_name {
  font-size: 40px;
  font-weight: 500;
  color: var(--color-blue);
  transition: all 0.5s ease;
}
.header .content_header .header_search {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 16px;
  border-radius: 24px;
  border: 1px solid var(--color-white);
}
.header .content_header .header_search .iconSearch {
  color: var(--color-white);
}
.header .content_header .header_search input {
  width: 200px;
  border: none;
  background: transparent;
  color: var(--color-white);
}
.header .content_header .header_search input:focus {
  outline: none;
}
.header .content_header .header_search input::-moz-placeholder {
  color: var(--color-white);
}
.header .content_header .header_search input::placeholder {
  color: var(--color-white);
}
.header .content_header .header_right {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: var(--color-white);
  gap: 20px;
}
.header .content_header .header_right .header_partner {
  border: 1px solid var(--color-white);
  padding: 6px 12px;
  border-radius: 6px;
  position: relative;
  font-weight: 400;
}
.header .content_header .header_right .header_partner::after {
  content: "";
  border-radius: 4px;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  transition: height 0.5s ease;
  background: var(--color-primary);
}
.header .content_header .header_right .header_partner span, .header .content_header .header_right .header_partner i, .header .content_header .header_right .header_partner svg {
  position: relative;
  z-index: 1;
}
.header .content_header .header_right .header_partner:hover {
  background: var(--color-white);
  color: var(--color-gold);
  border: 1px solid var(--color-primary);
}
.header .content_header .header_right .header_partner:hover::after {
  height: 100%;
}
.header .content_header .header_right .header_partner:hover path {
  fill: var(--color-gold);
}
.header .content_header .header_right .header_partner:hover span, .header .content_header .header_right .header_partner:hover i {
  color: var(--color-white);
}
.header .content_header .avatar_user {
  cursor: pointer;
  position: relative;
}
.header .content_header .avatar_user .menu_profile {
  position: absolute;
  background: #fff;
  top: calc(100% + 15px);
  right: -50px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 8px;
  box-shadow: 1px 3px 7px rgba(44, 44, 44, 0.3215686275);
  opacity: 0;
  pointer-events: none;
}
.header .content_header .avatar_user .menu_profile.active {
  opacity: 1;
  pointer-events: all;
}
.header .content_header .avatar_user .menu_profile li {
  padding: 0 15px;
}
.header .content_header .avatar_user .menu_profile li a {
  padding: 8px 15px;
  color: var(--color-body) !important;
  text-decoration: none;
  display: flex;
  border-bottom: 1px solid var(--color-stroke);
  transition: color 0.5s ease;
}
.header .content_header .header_logo {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.header .content_header .header_logo i {
  font-size: 24px;
  color: var(--color-white);
}

.header_mobile {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(20, 46, 69, 0.4);
}
@media (min-width: 1049px) {
  .header_mobile {
    display: none;
  }
}
@media (max-width: 1049px) {
  .header_mobile .container_frame {
    width: 100%;
    padding: 0 15px;
  }
}
.header_mobile .nav_menu_mobile,
.header_mobile .nav__sub {
  margin-top: 0;
  margin-bottom: 0;
  padding: 15px;
  list-style-type: none;
}
.header_mobile .nav_menu_mobile {
  min-height: 100vh;
  width: 400px;
  background-color: rgb(161, 171, 181);
  overflow: hidden;
  position: fixed;
  top: 80px;
  height: 100%;
  width: 100%;
  right: 0;
  transform: translate(150%, 0);
  transition: all 0.75s ease;
}
.header_mobile .nav_menu_mobile .nav__item {
  margin-top: 15px;
}
.header_mobile .nav_menu_mobile .nav__item a {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header_mobile .nav_menu_mobile.open {
  transform: none;
}
.header_mobile a {
  text-decoration: none;
  color: var(--color-white);
}
.header_mobile a:hover {
  color: var(--color-primary);
}
.header_mobile.scroll {
  background: rgba(20, 46, 69, 0.4);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
}
.header_mobile.scroll .content_header {
  border-bottom: none;
  padding-bottom: 0;
}
.header_mobile .content_header {
  display: flex;
  align-items: center;
}
.header_mobile .content_header .header_name_mobile {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}
.header_mobile .content_header .header_menu_mobile {
  margin-right: 20px;
  display: block;
  margin-top: 0;
  width: 30px;
  height: 20px;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  cursor: pointer;
  margin-top: 20px;
}
.header_mobile .content_header .header_menu_mobile span {
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  border-radius: 8px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  background: var(--color-white);
}
.header_mobile .content_header .header_menu_mobile span:nth-child(1) {
  top: -10px;
}
.header_mobile .content_header .header_menu_mobile span:nth-child(2) {
  top: 0;
}
.header_mobile .content_header .header_menu_mobile span:nth-child(3) {
  top: 10px;
}
.header_mobile .content_header .header_menu_mobile.open span:nth-child(1) {
  top: 0;
  transform: rotate(135deg);
}
.header_mobile .content_header .header_menu_mobile.open span:nth-child(2) {
  opacity: 0;
  left: -50px;
}
.header_mobile .content_header .header_menu_mobile.open span:nth-child(3) {
  top: 0;
  transform: rotate(-135deg);
}
.header_mobile .content_header .header_search_mobile {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.header_mobile .content_header .header_search_mobile .box_search {
  position: absolute;
  top: calc(100% + 25px);
  right: 0;
  padding: 12px 30px 12px 12px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
}
.header_mobile .content_header .header_search_mobile .box_search.active {
  pointer-events: all;
  opacity: 1;
}
.header_mobile .content_header .header_search_mobile .box_search i {
  color: var(--color-caption);
}
.header_mobile .content_header .header_search_mobile .box_search .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.header_mobile .content_header .header_search_mobile .box_search .icon i {
  font-size: 16px;
}
.header_mobile .content_header .header_search_mobile .box_search input {
  border: none;
}
.header_mobile .content_header .header_search_mobile .box_search input:focus {
  outline: none;
}
.header_mobile .content_header .header_search_mobile i {
  font-size: 24px;
  color: var(--color-white);
  font-weight: 400;
}

.footer {
  padding: 62px 0;
  background: rgba(197, 239, 237, 0.4);
}
@media (max-width: 1086px) and (min-width: 767px) {
  .footer .container_frame {
    width: calc(100% - 30px);
  }
}
.footer .name_ft {
  font-size: 70px;
  font-weight: 500;
  margin-bottom: 62px;
}
@media (max-width: 1430px) {
  .footer .name_ft {
    font-size: 50px;
    margin-bottom: 42px;
  }
}
@media (max-width: 1086px) and (min-width: 767px) {
  .footer .name_ft {
    font-size: 30px;
  }
}
.footer a:hover {
  color: var(--color-primary) !important;
}
.footer .list_social {
  gap: 28px;
}
@media (max-width: 1920px) {
  .footer .list_social {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer .list_social {
    margin-bottom: 40px;
  }
}
.footer .list_social .item_social:hover {
  transform: scale(1.1);
}
.footer .list_menu {
  gap: 32px;
}
@media (max-width: 767px) {
  .footer .list_menu {
    margin-bottom: 40px;
  }
}
.footer .list_menu .menu_ft {
  width: calc(50% - 16px);
}
.footer .list_menu .menu_ft .title_menu {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
}
.footer .list_menu .menu_ft ul {
  margin-bottom: 24px;
}
.footer .list_menu .menu_ft li {
  margin-bottom: 10px;
}
.footer .list_menu .menu_ft li a {
  font-size: 16px;
  color: var(--color-body);
  text-decoration: none;
}
.footer .question_ft {
  margin-bottom: 24px;
}
.footer .btn_primary {
  margin-bottom: 30px;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1086px) and (min-width: 767px) {
  .footer .btn_primary {
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
    -webkit-line-clamp: 1;
    height: 42px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}
.footer .col-md-3 {
  display: flex;
  flex-flow: column;
}
.footer .col-md-3 .partner {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 16px;
}
.footer .col-md-3 .partner span {
  -webkit-text-decoration: solid;
          text-decoration: solid;
}
@media (max-width: 1439px) {
  .footer .menu_ft .title_menu {
    font-size: 20px;
  }
}

.item_title {
  font-size: 30px;
}
@media (max-width: 1430px) {
  .item_title {
    font-size: 20px;
  }
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.listQuestion {
  padding: 170px 36px 0 90px;
  background: var(--color-dusty-grey);
  height: 100vh;
}
@media (max-width: 1439px) {
  .listQuestion {
    padding: 170px 20px 0 20px;
  }
}
.listQuestion .--itemQuestion {
  margin-bottom: 24px;
}
.listQuestion .--itemQuestion.active {
  color: var(--color-primary);
  font-weight: 700 !important;
}
@media (max-width: 1439px) {
  .listQuestion .--itemQuestion {
    font-size: 18px;
  }
}

.terms_content {
  padding: 140px calc((100% - var(--width-container)) / 2) 140px 140px;
}

.btn_primary {
  border-radius: 6px;
  padding: 10px 16px;
  background: var(--color-gold);
  color: var(--color-white);
  text-decoration: none;
  border: 1px solid var(--color-gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn_primary::after {
  content: "";
  border-radius: 4px;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  transition: height 0.5s ease;
  background: var(--color-primary);
}
.btn_primary span, .btn_primary i, .btn_primary svg {
  position: relative;
  z-index: 1;
}
.btn_primary:hover {
  background: var(--color-white);
  color: var(--color-gold);
  border: 1px solid var(--color-primary);
}
.btn_primary:hover::after {
  height: 100%;
}
.btn_primary:hover path {
  fill: var(--color-gold);
}
.btn_primary:hover span, .btn_primary:hover i {
  color: var(--color-white);
}

.btn_primary_login {
  border-radius: 6px;
  padding: 10px 16px;
  background: var(--color-gold);
  color: var(--color-white);
  text-decoration: none;
  border: 1px solid var(--color-gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_primary_login:hover {
  background: var(--color-white);
  color: var(--color-gold);
}

.container_left {
  padding-left: 90px;
  padding-right: 60px;
}
@media (max-width: 1919px) {
  .container_left {
    padding-left: 50px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .container_left {
    padding: 0 15px;
  }
}

.container_right {
  padding-left: 60px;
  padding-right: 90px;
}
@media (max-width: 1919px) {
  .container_right {
    padding-left: 30px;
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .container_right {
    padding: 0 15px;
  }
}

.btn_trans {
  border-radius: 6px;
  padding: 10px 16px;
  background: var(--color-white);
  color: var(--color-gold);
  text-decoration: none;
  border: 1px solid var(--color-gold);
  position: relative;
}
.btn_trans::after {
  content: "";
  border-radius: 4px;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  transition: height 0.5s ease;
  background: var(--color-gold);
}
.btn_trans span, .btn_trans i, .btn_trans svg {
  position: relative;
  z-index: 1;
}
.btn_trans:hover {
  background: var(--color-white);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}
.btn_trans:hover::after {
  height: 100%;
}
.btn_trans:hover path {
  fill: var(--color-gold);
}
.btn_trans:hover span, .btn_trans:hover i {
  color: var(--color-white);
}

.img_scale {
  overflow: hidden;
}
.img_scale img {
  transition: all 0.5s ease;
}
.img_scale img:hover {
  transform: scale(1.2);
  transition: all 0.5s ease;
}

.successNoti {
  border-radius: 8px;
  border: 1px solid rgb(67, 170, 71);
  background: rgb(232, 245, 233);
  padding: 16px;
  display: flex;
  display: none;
  gap: 8px;
  color: rgb(67, 170, 71);
  max-width: 350px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10000;
}
.successNoti .--status {
  font-weight: 600;
  margin-bottom: 8px;
}
.successNoti .--content {
  margin-bottom: 12px;
}
.successNoti i {
  font-size: 24px;
}
.successNoti a {
  color: rgb(67, 170, 71);
}
.successNoti #close {
  font-size: 14px;
}

.errorNoti {
  border-radius: 8px;
  border: 1px solid rgb(255, 152, 0);
  background: rgb(255, 243, 224);
  padding: 16px;
  display: flex;
  gap: 8px;
  color: rgb(255, 152, 0);
  display: none;
  max-width: 350px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10000;
}
.errorNoti .--status {
  font-weight: 600;
  margin-bottom: 8px;
}
.errorNoti .--content {
  margin-bottom: 12px;
}
.errorNoti i {
  font-size: 24px;
}
.errorNoti a {
  color: rgb(67, 170, 71);
}
.errorNoti #close {
  font-size: 14px;
}

#ui-id-1 {
  position: fixed;
  top: 68px;
  left: 309px;
  z-index: 2000;
  border-radius: 10px;
  padding: 12px;
}
#ui-id-1 .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
  background: var(--color-white) !important;
  color: var(--color-primary) !important;
  border: none;
}

.select2-results #choose-create {
  color: var(--color-gold);
  font-size: 20px;
  cursor: pointer;
}
.select2-results #choose-create:hover {
  background: #5897fb !important;
  color: var(--color-white);
}

#modalFancy .select2 {
  height: 42px;
}
#modalFancy .select2 .selection {
  display: block;
  height: 100%;
}
#modalFancy .select2 .select2-selection {
  height: 100%;
}
#modalFancy .select2 .select2-selection__rendered {
  height: 100%;
  align-items: center;
  display: flex;
}
#modalFancy .select2 .select2-selection__arrow {
  display: flex;
  align-items: center;
  height: 100%;
}
#modalFancy .modal-content {
  padding: 44px;
  border-radius: 20px;
}
#modalFancy .modal-content .closeModalCancle {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--color-white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#modalFancy .modal-content .closeModalCancle:hover {
  background: var(--color-primary);
}
#modalFancy .modal-content .closeModalCancle:hover i {
  color: var(--color-white);
}
#modalFancy .modal-content .closeModalCancle i {
  font-size: 14px;
}
#modalFancy .modal-content #div-select {
  width: 100%;
}
#modalFancy .modal-content #div-select .select2 {
  width: 100% !important;
}
#modalFancy .modal-content .title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
#modalFancy .modal-content .noti {
  font-size: 12px;
  text-align: center;
}
#modalFancy .modal-content .modal-footer {
  border-top: none;
  display: flex;
  gap: 10px;
}
#modalFancy .modal-content .modal-footer .--btn {
  display: flex;
  gap: 10px;
  width: 100%;
}
#modalFancy .modal-content .modal-footer .--btn button {
  width: calc(50% - 5px);
  line-height: 1.2;
  letter-spacing: 1.6px;
}
#modalFancy .modal-content .modal-footer select {
  width: -moz-max-content;
  width: max-content;
  border-radius: 6px;
  padding: 10px 16px;
}
#modalFancy .modal-content .modal-footer select:focus {
  outline: none;
}
#modalFancy .modal-content .modal-footer button {
  flex-grow: 1;
}

#modalCheckLogin .modal-content {
  padding: 44px;
  border-radius: 20px;
}
#modalCheckLogin .modal-content .closeModalCancle {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--color-white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#modalCheckLogin .modal-content .closeModalCancle:hover {
  background: var(--color-primary);
}
#modalCheckLogin .modal-content .closeModalCancle:hover i {
  color: var(--color-white);
}
#modalCheckLogin .modal-content .closeModalCancle i {
  font-size: 14px;
}
#modalCheckLogin .modal-content .title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
#modalCheckLogin .modal-content .noti {
  font-size: 12px;
  text-align: center;
}
#modalCheckLogin .modal-content .modal-footer {
  border-top: none;
  display: flex;
  gap: 10px;
  flex-flow: row;
}
#modalCheckLogin .modal-content .modal-footer button, #modalCheckLogin .modal-content .modal-footer a {
  width: calc(50% - 5px);
}

#modalAddCategory .modal-content {
  padding: 44px;
  border-radius: 20px;
}
#modalAddCategory .modal-content .closeModalCancle {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--color-white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#modalAddCategory .modal-content .closeModalCancle:hover {
  background: var(--color-primary);
}
#modalAddCategory .modal-content .closeModalCancle:hover i {
  color: var(--color-white);
}
#modalAddCategory .modal-content .closeModalCancle i {
  font-size: 14px;
}
#modalAddCategory .modal-content .modal-body .noti {
  font-size: 12px;
  text-align: center;
}
#modalAddCategory .modal-content .modal-body input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #dedede;
  margin-bottom: 24px;
}
#modalAddCategory .modal-content .modal-body input:focus {
  outline: none;
}
#modalAddCategory .modal-content .modal-body button {
  left: 50%;
  transform: translate(-50%, 0);
}

.select2-dropdown {
  position: relative !important;
  z-index: 100000000 !important;
}

#modalCreateSuccess .modal-content {
  padding: 44px;
  border-radius: 20px;
}
#modalCreateSuccess .modal-content .modal-body {
  display: flex;
  flex-flow: column;
  align-items: center;
}
#modalCreateSuccess .modal-content .modal-body .logo {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
}
#modalCreateSuccess .modal-content .modal-body .logo svg {
  width: 100%;
  height: 100%;
}
#modalCreateSuccess .modal-content .modal-body .title {
  margin-bottom: 20px;
}
#modalCreateSuccess .modal-content .modal-body .h7 {
  margin-bottom: 32px;
}/*# sourceMappingURL=style.css.map */