.btn-primary {
  color: #ffffff !important;
  background-color: #515977;
  border-color: #515977;
  border-radius: 20px;
  padding: 9px 27px;
  font-size: 13px !important;
  border: none;
  font-family: var(--font-SemiBold);
  height: 40px;
}
.btn-primary i, .btn-primary svg {
  margin-right: 5px;
  font-size: 15px;
  display: inline-block;
  vertical-align: top;
  margin-top:2px;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #515977;
  border-color: #515977;
}

.btn-secondary {
  background-color: #E5E5E5;
  color: #515977;
  border: none;
  padding: 9px 27px;
  font-size: 13px !important;
  font-family: var(--font-SemiBold);
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  height: 40px;
  display:inline-block;
  text-align:center;
  vertical-align:top;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #515977;
  color: #ffffff;
}

.btn-outline-primary {
  color: #515977;
  border-color: #515977;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #515977;
  color: #ffffff;
}

.form-check-input:checked {
  background-color: #515977;
  border-color: #515977;
}

@font-face {
  font-family: "Cairo-Regular";
  font-style: normal;
  font-weight: 400;
  src: local("Cairo-Regular"), url("/assets/fonts/Cairo-Regular.woff") format("woff");
}
@font-face {
  font-family: "Cairo-ExtraLight";
  font-style: normal;
  font-weight: 100;
  src: local("Cairo-ExtraLight"), url("/assets/fonts/Cairo-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Cairo-Light";
  font-style: normal;
  font-weight: 300;
  src: local("Cairo-Light"), url("/assets/fonts/Cairo-Light.woff") format("woff");
}
@font-face {
  font-family: "Cairo-SemiBold";
  font-style: normal;
  font-weight: 500;
  src: local("Cairo-SemiBold"), url("/assets/fonts/Cairo-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Cairo-Bold";
  font-style: normal;
  font-weight: 600;
  src: local("Cairo-Bold"), url("/assets/fonts/Cairo-Bold.woff") format("woff");
}
@font-face {
  font-family: "Cairo-Black";
  font-style: normal;
  font-weight: 700;
  src: local("Cairo-Black"), url("/assets/fonts/Cairo-Black.woff") format("woff");
}
* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box;
}

a, a:hover, button:focus {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

button {
  font-size: 14px !important;
}

button:active, button:focus, button, a:active, a:focus {
  outline: none !important;
  box-shadow: none !important;
}

p, label {
  margin: 0px;
}

img {
  max-width: 100%;
}

body {
  font-family: "Cairo-Regular", sans-serif;
  background: var(--body-color);
  font-size: 100%;
}

input {
  outline: none;
  box-shadow: none !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0px;
}

/*********************** base start ***********************/
:root {
  --header-height:3.5rem;
  --nav-width: 68px;
  --first-color: #30A6C8;
  --first-color-light: #a1bbc7;
  --white-color: #F7F6FB;
  --body-color: #F7F8FA;
  --body-font:"Cairo-Regular", sans-serif;
  --normal-font-size: 1rem;
  --z-fixed: 100;
  --font-ExtraLight:"Cairo-ExtraLight", sans-serif;
  --font-Light:"Cairo-Light", sans-serif;
  --font-Regular:"Cairo-Regular", sans-serif;
  --font-SemiBold:"Cairo-SemiBold", sans-serif;
  --font-Bold:"Cairo-Bold", sans-serif;
  --font-Black:"Cairo-Black", sans-serif;
}

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

body {
  position: relative;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.5s;
}

a {
  text-decoration: none;
}

.main {
  display: flex;
}

.Content {
  padding: 115px 35px 0px;
  flex: 1;
  margin-left: 242px;
}

.header {
  height: 91px;
  position: fixed;
  top: 0;
  left: 242px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background-color: var(--white-color);
  z-index: var(--z-fixed);
  padding-right: 0px;
  justify-content: space-between;
  background-color: #ffffff;
  padding-left: 20px;
  right: 0px;
  width: auto;
  z-index: 2;
}
.header .navbar-toggler {
  margin-left: 12px;
}
.header .navbar {
  display: none;
  background: none !important;
  vertical-align: top;
  position: absolute;
  top: 16px;
  left: 0px;
  padding: 0px;
}

.header_img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.header_img img {
  width: 40px;
}

.userpopup {
  background: #ffffff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  position: absolute;
  text-align: left;
  padding: 0px 0px;
  min-width: 163px;
  right: 0px;
  top: 100%;
  margin-top: 2px;
  box-shadow: 0px 2px 3px #ddd;
  display: none;
  overflow: hidden;
}
.userpopup a {
  padding: 8px 20px !important;
  display: block;
  font-size: 14px;
  font-family: var(--font-SemiBold);
  color: #515977;
  border-bottom: 1px solid #DDDDDD;
}
.userpopup a:hover {
  background: #EEEFF2;
}
.userpopup a img {
  opacity: 1 !important;
  margin-right: 5px;
}

.headerUser:hover .userpopup {
  display: block;
}

.l-navbar {
  width: var(--nav-width);
  height: 100vh;
  background-color: #ffffff;
  padding: 0.5rem 1rem 0 1rem;
  width: 243px;
  position: fixed;
  z-index: 1;
}

.l-navbar .nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.nav_logo {
  margin-bottom: 20px;
}

.nav_logo-icon {
  font-size: 1.25rem;
  color: var(--white-color);
}

.nav_logo-name {
  color: var(--white-color);
  font-weight: 700;
}

ul.nav_list {
  list-style: none;
  padding: 0px;
}
ul.nav_list li a {
  position: relative;
  color: #A5A5A5;
  margin-bottom: 13px;
  font-family: var(--font-SemiBold);
  font-size: 16px;
}
ul.nav_list li a img {
  height: 20px;
  opacity: 0.5;
}
ul.nav_list li a i {
  font-size: 18px;
}
ul.nav_list li .menu-arrow {
  position: absolute;
  right: 17px;
  height: 8px;
  top: 13px;
  width: 15px;
  height: 15px;
  background-image: url("/assets/img/down-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
}
ul.nav_list > li:hover > a, ul.nav_list > li.active > a {
  background: #EEEFF2;
  border-radius: 50px;
  color: #515977;
}
ul.nav_list li:hover > a img, ul.nav_list li.active > a img {
  opacity: 1;
}
ul.nav_list li ul.submenu {
  list-style: none;
  margin-bottom: 10px;
  padding-left: 60px;
  margin-top: 0px;
  display: none;
}
ul.nav_list li ul.submenu li {
  display: block;
}
ul.nav_list li ul.submenu li a {
  padding: 5px 0px;
  margin: 0px;
  display: block;
}
ul.nav_list li ul.submenu li a:hover, ul.nav_list li ul.submenu li.active a {
  background: none;
  color: #515977;
}
ul.nav_list li:hover .menu-arrow {
  background-image: url("/assets/img/arrow-up.png");
}
ul.nav_list li.active ul.submenu {
  display: block;
}

/*********************** base end ***********************/
.mainTitle {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-family: "Cairo-Bold";
  font-size: 24px;
  margin-bottom: 20px;
  color: #313131;
}
.mainTitle button, .mainTitle a {
  display: inline-block;
}
.mainTitle span {
  flex: 1;
}
.mainTitle span a {
  color: #313131;
}

.cardBox {
  background-color: #ffffff;
  display: block;
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.status {
  width: 113px;
  height: 40px;
  display: inline-block;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  vertical-align: middle;
  font-size: 13px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status.active {
  background-color: #00A389;
}
.status.inactive {
  background-color: #D26262;
}

.required {
  color: red;
}

.loginHeader {
  height: 70px;
  width: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  text-align: center;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loginHeader img {
  height: 58px;
}

.loginMain {
  display: flex;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding-top: 84px;
  overflow-y: auto;
  padding-bottom: 20px;
}

.loginOuter {
  width: 400px;
  max-width: 90%;
  padding: 20px;
  margin: auto;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  border: none;
  background-color: #ffffff;
}
.loginOuter h4 {
  font-weight: 900;
  font-size: 22px;
  color: #313131;
}
.loginOuter .form-group label {
  margin-bottom: 5px;
  font-size: 13px;
}
.loginOuter .form-control, .loginOuter .form-select {
  height: 40px;
}
.loginOuter .forgotPwd {
  font-size: 14px;
  color: #30A6C8;
}

.registerOuter {
  width: 700px;
}

.register {
  font-size: 13px;
}
.register a {
  color: #515977;
  font-weight: 700;
}

.loginBtnOuter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-navbar .nav_logo {
  padding-left: 7px;
  padding-right: 0px;
  text-align: center;
  display: block;
}
.l-navbar .showlogo {
  display: inline-block;
  height: 66px;
}

.mainSearch {
  background-color: #F7F8FA;
  height: 40px;
  border-radius: 50px;
  background-image: url("/assets/img/magnifier.png");
  background-repeat: no-repeat;
  border: none;
  background-size: 21px;
  background-position: 15px 9px;
  font-size: 14px;
  font-family: var(--font-SemiBold);
  padding-left: 47px;
  width: 650px;
  padding-right:10px;
}
.mainSearch::-webkit-input-placeholder {
  color: #A5A5A5;
}

.headerRight {
  display: inline-flex;
  align-items: center;
}
.headerRight a {
  position: relative;
  padding: 0px 15px;
}
.headerRight a img {
  height: 20px;
  opacity: 0.5;
}
.headerRight a .nofication {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  background: #FF5A5A;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  position: absolute;
  right: 0px;
  top: 0px;
}

.headerUser {
  display: inline-block;
  position: relative;
  padding-right: 50px;
  text-align: right;
  font-size: 13px;
  margin: 0px 20px;
  cursor: pointer;
}
.headerUser .userPic {
  width: 40px;
  height: 40px;
  display: flex;
  background-color: #DBDBDB;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  right: 0px;
  top: 0px;
  overflow: hidden;
}
.headerUser .userPic img {
  object-fit: cover;
  object-position: center;
}
.headerUser p {
  color: #A5A5A5;
}
.headerUser span {
  color: #313131;
  line-height: 18px;
  display: block;
  font-size: 14px;
  font-family: var(--font-Bold);
}

.headerLeft {
  display: flex;
}

.dashboardTitle {
  color: #A5A5A5;
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
  margin-top: 5px;
}

.customTable {
  margin-top: 15px;
}
.customTable th {
  color: #515977;
  font-size: 16px;
  font-family: var(--font-SemiBold);
  padding: 0px 17px 17px;
  border-bottom: 1px solid #dddddd !important;
}
.customTable th .customCheckbox {
  bottom: 22px;
}
.customTable td {
  align-items: center;
  border-bottom: 1px solid #dddddd;
  font-size: 13px;
  color: #313131;
  vertical-align: middle;
  padding: 10px 17px;
  position: relative;
}
.customTable td .customCheckbox {
  top: 50%;
  margin-top: -11px;
}
.customTable td .tableLink {
  font-size: 20px;
  color: #313131;
  padding-right: 10px;
}

.fw-bold {
  font-family: var(--font-Bold);
}

.breadcrumb {
  font-size: 16px;
  font-family: var(--font-Regular);
  margin: 0px;
}
.breadcrumb li {
  color: #313131 !important;
}
.breadcrumb li a {
  color: #1FC0DE;
}

.form-group .form-label {
  font-size: 13px;
  margin-bottom: 5px;
  font-family: var(--font-SemiBold);
}
.form-group input.form-control {
  height: 40px;
  font-size: 14px;
}
.form-group select.form-select {
  font-size: 14px;
}

.btn-lg {
  min-width: 167px;
  margin-bottom: 10px;
}

textarea {
  resize: none;
  font-size: 14px !important;
}

.dashBox {
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  display: flex;
  padding: 13px 20px;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0px 5px 10px #F1F2FA;
}
.dashBox .dashIcon {
  background-color: #1FC0DE;
  display: inline-flex;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-right: 10px;
  color: #ffffff;
  font-size: 22px;
}
.dashBox p {
  font-size: 14px;
  font-family: var(--font-SemiBold);
  color: #868484;
  display: block;
}
.dashBox h3 {
  margin-top: 3px;
  color: #313131;
  font-size: 22px;
  font-family: var(--font-SemiBold);
}

.ParticipantWidth {
  max-width: 105px;
}

.SalesLimitations {
  max-width: 152px;
}

.btn-outline {
  background: none;
  border: 1px solid #515977;
  color: #515977 !important;
}
.btn-outline:hover, .btn-outline:focus {
  color: #ffffff !important;
}

.customCheckbox {
  position: relative;
}

.customCheckbox input {
  position: absolute;
  left: 0px;
  top: 2px;
  appearance: none;
  -webkit-appearance: none;
}

.customCheckbox input:after {
  width: 21px;
  height: 18px;
  -moz-border-radius: 3x;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #cccccc;
  content: "";
  position: absolute;
}

.customCheckbox input:checked:after {
  background-image: url("/assets/img/checkbox.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #515977;
  border-color: #515977;
  background-size: 13px;
}

.customCheckbox a {
  text-decoration: underline;
  color: #ffffff;
  color: #a9c0c9;
}

.buttonsOuter {
  display: inherit;
}

.filterSideBar {
  background-color: #ffffff;
  position: fixed;
  right: 0px;
  top: 91px;
  bottom: 0px;
  width: 343px;
  z-index: 1;
  box-shadow: 0px 5px 10px #F1F2FA;
  -webkit-box-shadow: 0px 5px 10px #F1F2FA;
}
.filterSideBar .filterHeader {
  padding: 10px 60px 10px 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.filterSideBar .filterHeader span {
  font-size: 20px;
  color: #313131;
  font-family: var(--font-SemiBold);
}
.filterSideBar .filterHeader .clearAll {
  color: #51CBFF;
  font-size: 15px;
  font-family: var(--font-SemiBold);
  padding-top: 4px;
}
.filterSideBar .filterHeader .filterClose {
  color: #000000;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 20px;
}
.filterSideBar .accordion-button {
  font-family: var(--font-SemiBold);
  color: #515977;
  font-size: 14px !important;
}
.filterSideBar .accordion-button::after {
  background-size: 14px;
  background-position: center;
}
.filterSideBar .accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  margin-top: 10px;
}
.filterSideBar .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.filterSideBar .filterSearch {
  border: none;
  border-bottom: 1px solid #DDDDDD;
  background-image: url("/assets/img/magnifier.png");
  background-position: 0px 3px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 30px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.filterSideBar .accordion-button:not(.collapsed) {
  background-color: #ecf6fb;
}

ul.filterListing {
  list-style: none;
  padding: 0px;
  margin: 0px;
  height: 210px;
  overflow: auto;
}
ul.filterListing li {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
ul.filterListing li .customCheckbox {
  width: 100%;
  padding-left: 30px;
  font-family: var(--font-SemiBold);
  font-size: 14px;
}
ul.filterListing li .customCheckbox input {
  position: absolute;
  left: 2px;
}
ul.filterListing li:last-child {
  margin-bottom: 0px;
}

.clearAllFilter {
  width: 21px;
  height: 18px;
  display: inline-block;
  background-color: #51CBFF;
  position: absolute;
  left: 0px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding-top: 2px;
}

.filterClear a {
  color: #51CBFF;
  text-decoration: none;
}

.modal-title {
  font-size: 18px;
  font-family: var(--font-SemiBold);
}

.productDetail .accordion-button:not(.collapsed) {
  background-color: #ecf6fb;
  color: #515977;
}
.productDetail .accordion-header button {
  font-family: var(--font-SemiBold);
  color: #515977;
  font-size: 18px;
  background-color: #F7F8FA;
  padding: 15px 20px;
}
.productDetail .accordion-header button::after {
  background-size: 14px;
  background-position: center;
}
.productDetail .accordion-body {
  font-size: 15px;
}
.productDetail .accordion-item {
  margin-bottom: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.invoicePrice {
  text-align: right;
  font-size: 15px;
  font-family: var(--font-SemiBold);
}
.invoicePrice p {
  padding: 2px 0px;
}

nav[role=navigation] .hidden {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px 20px;
}

nav[role=navigation] .hidden > div > p {
  font-size: 15px;
  color: #A5A5A5;
}

nav[role=navigation] .hidden > div > p span {
  color: #313131;
  font-family: var(--font-Bold);
}

nav[role=navigation] svg {
  height: 30px;
}

nav[role=navigation] .flex {
  display: none;
}

nav[role=navigation] .relative {
  box-shadow: inherit !important;
}

nav[role=navigation] .relative a {
  border: 1px solid #A5A5A5 !important;
  background-color: #ffffff !important;
  color: #515977;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding: 0px !important;
  width: 47px !important;
  display: inline-flex;
  height: 47px;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}

nav[role=navigation] .relative a:first-child, nav[role=navigation] .relative a:last-child {
  border: none !important;
  background: none !important;
  color: #515977;
}

nav[role=navigation] .relative span {
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding: 0px !important;
  width: 47px !important;
  display: inline-flex;
  height: 47px;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}

nav[role=navigation] .relative span span {
  border: 1px solid #A5A5A5 !important;
  background-color: #515977 !important;
  color: #ffffff;
}

nav[role=navigation] .relative span:last-child span, nav[role=navigation] .relative span:first-child span {
  border: none !important;
  background: none !important;
  color: #515977;
}

.tableActionsDropdown button, .tableActionsDropdown button:hover, .tableActionsDropdown button:focus {
  background: none;
  color: #515977;
  padding: 0px 10px;
  height: 29px;
  font-size: 20px !important;
}
.tableActionsDropdown .dropdown-toggle::after {
  display: none;
}
.tableActionsDropdown .dropdown-menu {
  padding: 0px;
}
.tableActionsDropdown .dropdown-menu li {
  border-bottom: 1px solid #dddddd;
}
.tableActionsDropdown .dropdown-menu li button, .tableActionsDropdown .dropdown-menu li a {
  font-size: 14px !important;
  font-family: var(--font-SemiBold);
}
.tableActionsDropdown .dropdown-menu li button.deleteRow, .tableActionsDropdown .dropdown-menu li a.deleteRow {
  color: #D26262;
}
.tableActionsDropdown .dropdown-menu li:last-child {
  border: none;
}

.min-h-300 {
  min-height: 300px;
}

.boxTitle {
  font-size: 17px;
  color: #313131;
  font-family: var(--font-SemiBold);
  display: block;
  margin-bottom: 15px;
  padding: 15px 20px 0px;
}

.simpleText {
  font-size: 13px;
  color: #313131;
  display: block;
  font-family: var(--font-SemiBold);
}
.simpleText a {
  color: #51CBFF;
}

.settingLeft {
  margin-right: 0px !important;
}
.settingLeft a {
  text-align: left;
  font-size: 14px !important;
  background: none !important;
  color: #313131 !important;
  margin-bottom: 5px;
  font-family: var(--font-SemiBold);
  min-width: 185px;
  padding: 11px 16px;
  border-radius: 5px 0px 0px 5px !important;
  -webkit-border-radius: 5px 0px 0px 5px !important;
  border-left: 5px solid var(--body-color) !important;
}
.settingLeft a.active {
  background-color: #ffffff !important;
  color: #313131 !important;
  border-left: 5px solid #1FC0DE !important;
}

.settingRight {
  flex: 1;
  background: #ffffff;
  min-height: 450px;
  border-radius: 0px 5px 5px 5px !important;
  -webkit-border-radius: 0px 5px 5px 5px !important;
}

.modal-header {
  padding: 1rem 25px;
}

.packageActions {
  font-size: 22px;
  display: block;
  padding-top: 30px;
  min-width: 103px;
}
.packageActions a {
  margin: 0px 4px;
}
.packageActions a i.bi-check-square {
  color: #1FC0DE;
}
.packageActions a i.bi-x-square {
  color: #D26262;
}
.packageActions a i.bi-trash {
  color: #313131;
}
.packageActions .add-squre{
  color:$primary-color!important;
}

/*# sourceMappingURL=common.css.map */
