:root {
  /* CHALLENGE V2 VARIABLES */
  /* Colors */
  --ch-accent-1: #F7971E;
  --ch-accent-2: #FC991A;
  --ch-mid-tone: #FBCB8E;
  --ch-table: #092236;
  /*
    Media breakpoints 
    use with min-width
    540px | 768px | 1024px | 1280px | 1536px 
  */
}

section#challenge-v2 {
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
section#challenge-v2 h3 {
  text-align: center;
}
section#challenge-v2 p#challenge-v2-subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto 50px;
  text-align: center;
  max-width: 740px;
}
section#challenge-v2 #challenge-v2-steps {
  display: none;
  gap: 40px;
  justify-content: space-evenly;
  font-family: Wadik, serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section#challenge-v2 #challenge-v2-steps {
    display: flex;
    margin: 0 80px;
  }
}
section#challenge-v2 #challenge-v2-steps .challenge-v2-step > div {
  --background-image: url("../../img/number-shape.svg") no-repeat center center;
  align-items: center;
  background: var(--background-image);
  background-size: contain;
  color: var(--ch-accent-1);
  display: flex;
  font-size: 26px;
  font-weight: 700;
  height: 70px;
  justify-content: center;
  margin: auto;
  width: 70px;
}
section#challenge-v2 #challenge-v2-steps .challenge-v2-step > div.challenge-v2-btn-transition-2.active::before {
  border-radius: 100%;
}
section#challenge-v2 #challenge-v2-steps .challenge-v2-step p {
  font-size: 18px;
  margin-top: 8px;
}
section#challenge-v2 #challenge-v2-steps .challenge-v2-step.active p {
  color: var(--ch-accent-1);
}
section#challenge-v2 #challenge-v2-customize {
  background-color: rgba(12, 13, 13, 0.5019607843);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  font-family: Wadik, serif;
  justify-content: center;
  margin: 40px auto;
  padding: 32px 24px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons {
  flex: 1 1 70%;
  max-width: 720px;
}
@media screen and (min-width: 1280px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1536px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons {
    margin-left: 160px;
  }
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons h4 {
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0 auto 28px;
}
@media screen and (min-width: 768px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons h4 {
    font-size: 24px;
  }
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons h5 {
  font-size: 16px;
  margin: 0 auto 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons h5 {
    font-size: 18px;
  }
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons h5 span {
  align-items: center;
  background-color: var(--ch-accent-1);
  border-radius: 100%;
  display: none;
  font-size: 14px;
  height: 36px;
  justify-content: center;
  line-height: 1em;
  margin-right: 12px;
  transform: translateY(-2px);
  width: 36px;
}
@media screen and (max-width: 1535.98px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons h5 span {
    display: inline-flex;
  }
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div {
  padding-bottom: 20px;
  position: relative;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div .challenge-v2-buttonset {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 20px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div .challenge-v2-buttonset button {
  background-size: contain;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2em;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(1) button {
  border-radius: 28px;
  height: 70px;
  width: 165px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(1) button:nth-of-type(1) {
  background-image: url("../../img/btn-narrow-bronze.svg");
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(1) button:nth-of-type(2) {
  background-image: url("../../img/btn-narrow-gold.svg");
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(1) button:nth-of-type(3) {
  background-image: url("../../img/btn-narrow-silver.svg");
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(2) .challenge-v2-buttonset {
  row-gap: 10px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(2) button {
  background-image: url("../../img/btn-brown.svg");
  border-radius: 36px;
  height: 70px;
  width: 234px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(2) button.challenge-v2-narrow {
  background-image: url("../../img/btn-narrow-brown.svg");
  width: 165px;
}
@media screen and (max-width: 539.98px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) #challenge-v2-platform-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) #challenge-v2-platform-wrapper #challenge-v2-platform-window {
    height: 172px;
    overflow: hidden;
    position: relative;
    width: 216px;
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) #challenge-v2-platform-wrapper #challenge-v2-platform-window .challenge-v2-buttonset {
    display: flex;
    height: 172px;
    justify-content: space-between;
    left: 40px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    transition: left 0.5s;
    width: 664px;
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) #challenge-v2-platform-wrapper #challenge-v2-platform-window .challenge-v2-buttonset button {
    transform: none;
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) #challenge-v2-platform-wrapper #challenge-v2-platform-window .challenge-v2-buttonset button::before {
    content: none;
  }
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-buttonset button {
  background-image: url("../../img/elven-plaque.svg");
  border-radius: 20px;
  display: block;
  font-size: 14px;
  height: 147px;
  margin-top: 24px;
  padding-top: 40px;
  position: relative;
  width: 136px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-buttonset button span {
  color: white;
  display: inline-block;
  font-family: Montserrat, sans-serif;
  margin-top: 18px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-buttonset button::after {
  background-position: center;
  background-size: cover;
  content: "";
  height: 43px;
  left: calc(50% - 26px);
  position: absolute;
  top: -17px;
  width: 43px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-buttonset button:nth-of-type(1)::after {
  background-image: url("../../img/challenge-logo-match-trader.svg");
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-buttonset button:nth-of-type(2)::after {
  background-image: url("../../img/challenge-logo-dxtrade.svg");
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-buttonset button:nth-of-type(3)::after {
  background-image: url("../../img/challenge-logo-ctrader.svg");
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-buttonset button:nth-of-type(4)::after {
  background-image: url("../../img/challenge-logo-platform-5.svg");
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-platform-carousel-arrow {
  display: none;
}
@media screen and (max-width: 539.98px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-platform-carousel-arrow {
    background-image: url("../../img/carousel-arrow.svg");
    cursor: pointer;
    display: block;
    height: 48px;
    margin-top: 24px;
    width: 48px;
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-platform-carousel-arrow:first-child {
    transform: rotate(180deg);
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(3) .challenge-v2-platform-carousel-arrow.inactive {
    filter: invert(0.5);
  }
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(4) button {
  background-image: url("../../img/oathstone-narrow.svg");
  border-radius: 12px;
  font-size: 16px;
  height: 49px;
  padding-top: 4px;
  width: 108px;
}
@media screen and (min-width: 768px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(4) button {
    background-image: url("../../img/oathstone.svg");
    width: 131px;
  }
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:nth-of-type(5) button {
  background-image: url("../../img/btn-rect-stone.svg");
  border-radius: 12px;
  height: 65px;
  width: 286px;
}
section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div .challenge-v2-button-step {
  display: none;
}
@media screen and (min-width: 1536px) {
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div:not(:first-child):not(:last-child) {
    border-left: 2px solid var(--ch-accent-1);
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div .challenge-v2-button-step {
    display: flex;
    height: 36px;
    left: -160px;
    position: absolute;
    top: -2px;
    width: 180px;
    justify-content: space-between;
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div .challenge-v2-button-step > div {
    align-items: center;
    display: flex;
    height: inherit;
    justify-content: center;
    text-align: center;
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div .challenge-v2-button-step > div:first-child {
    color: var(--ch-accent-1);
    flex: 1;
    font-size: 16px;
    letter-spacing: -0.165px;
  }
  section#challenge-v2 #challenge-v2-customize #challenge-v2-buttons > div .challenge-v2-button-step > div:last-child {
    background-color: var(--ch-accent-1);
    border-radius: 100%;
    font-size: 14px;
    width: 36px;
  }
}
section#challenge-v2 #challenge-v2-summary {
  background: var(--ch-table);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.5490196078);
  font-size: 16px;
  flex: 1 1 30%;
  max-width: 480px;
  padding: 36px;
}
section#challenge-v2 #challenge-v2-summary h4 {
  margin: 0 auto;
  text-align: center;
}
section#challenge-v2 #challenge-v2-summary table {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  min-width: 340px;
  width: 100%;
  margin: 32px auto;
}
section#challenge-v2 #challenge-v2-summary table tr {
  border: none;
  align-items: center;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(to right, white, #393838) 1;
     border-image: linear-gradient(to right, white, #393838) 1;
  display: flex;
  height: 48px;
  justify-content: space-between;
  padding: 8px;
  row-gap: 20px;
}
section#challenge-v2 #challenge-v2-summary table tr:first-of-type {
  border-top: 1px solid;
}
section#challenge-v2 #challenge-v2-summary table tr td {
  border: none;
}
section#challenge-v2 #challenge-v2-summary table tr td:last-of-type {
  color: var(--ch-accent-2);
  min-width: 120px;
  padding-left: 20px;
  text-align: right;
}
section#challenge-v2 #challenge-v2-summary button#challenge-v2-button-more-details {
  background: none;
  border: none;
  color: #C2C2C2;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: block;
  margin: 28px auto;
  padding: 0;
  text-decoration: underline;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  section#challenge-v2 #challenge-v2-summary button#challenge-v2-button-more-details {
    font-size: 20px;
  }
}
section#challenge-v2 #challenge-v2-summary button#challenge-v2-button-more-details::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  background: url("../../img/magnifying-glass-plus-grey.svg") no-repeat;
  background-size: contain;
}
section#challenge-v2 #challenge-v2-summary button#challenge-v2-button-more-details:hover {
  color: white;
}
section#challenge-v2 #challenge-v2-summary button#challenge-v2-button-more-details:hover::after {
  background-image: url("../../img/magnifying-glass-plus-white.svg");
}
section#challenge-v2 #challenge-v2-summary dl.challenge-v2-pricing {
  text-align: center;
}
section#challenge-v2 #challenge-v2-summary dl.challenge-v2-pricing dt {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  section#challenge-v2 #challenge-v2-summary dl.challenge-v2-pricing dt {
    font-size: 16px;
  }
}
section#challenge-v2 #challenge-v2-summary dl.challenge-v2-pricing dd {
  background-clip: text;
  background: linear-gradient(89deg, #FFF 27.11%, #E39919 83.28%);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin: 0 auto;
  padding: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section#challenge-v2 #challenge-v2-summary dl.challenge-v2-pricing dd span {
  font-family: Wadik, serif;
}
@media screen and (min-width: 768px) {
  section#challenge-v2 #challenge-v2-summary dl.challenge-v2-pricing dd {
    font-size: 48px;
  }
}
section#challenge-v2 #challenge-v2-summary #challenge-v2-button-continue {
  align-items: center;
  background-color: var(--ch-accent-2);
  border-radius: 20px;
  color: white;
  display: flex;
  font-size: 14px;
  height: 55px;
  justify-content: center;
  margin: 32px auto 12px;
  text-decoration: none;
  width: 238px;
}
@media screen and (min-width: 768px) {
  section#challenge-v2 #challenge-v2-summary #challenge-v2-button-continue {
    border-radius: 20px;
    font-size: 16px;
    padding: 8px;
  }
}

#challenge-v2-popup {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5019607843);
  color: white;
  display: none;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100000;
}
#challenge-v2-popup #challenge-v2-popup-content {
  --ch-details-col1-width: 160px;
  background: var(--ch-table);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3019607843);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 36px auto;
  max-height: calc(100vh - 40px);
  max-width: 99%;
  padding: 30px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #challenge-v2-popup #challenge-v2-popup-content {
    --ch-details-col1-width: 200px;
  }
}
#challenge-v2-popup #challenge-v2-popup-content h4 {
  text-align: center;
  margin: 4px 0 20px;
  padding: 0;
}
#challenge-v2-popup #challenge-v2-popup-content button#challenge-v2-close-popup {
  align-items: center;
  background: none;
  border-radius: 100%;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 2em;
  font-weight: normal;
  height: 40px;
  justify-content: center;
  line-height: 0;
  position: absolute;
  right: 28px;
  top: 24px;
  transition: 0.5s;
  width: 40px;
}
#challenge-v2-popup #challenge-v2-popup-content button#challenge-v2-close-popup:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper {
  position: relative;
  margin-bottom: 32px;
  overflow: hidden;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper.active-show-more {
  height: 100vh;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table {
  border-collapse: collapse;
  display: block;
  max-height: calc(100vh - 224px);
  overflow: auto;
  padding: 0 8px 32px 0;
  width: 100%;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 20px;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5019607843);
  border-radius: 20px;
  border-width: 0;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table th:not(:first-child) {
  color: var(--ch-accent-2);
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table tr {
  border-bottom: 1px solid white;
  position: relative;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table tr.all-rows-empty {
  display: none;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table tr.challenge-v2-show-more-row {
  display: none;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table tr.challenge-v2-show-more-row.active-show-more:not(.all-rows-empty) {
  display: table-row;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table th, #challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table td {
  border: none;
  box-sizing: unset; /* WP adjustment */
  margin: 0;
  height: 60px;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table th:first-child, #challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table td:first-child {
  background-color: var(--ch-table);
  color: var(--ch-mid-tone);
  left: 0;
  min-width: var(--ch-details-col1-width);
  padding: 0 10px;
  position: sticky;
  text-align: left;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table th:first-child.challenge-v2-right-shadow::before, #challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table td:first-child.challenge-v2-right-shadow::before {
  box-shadow: 10px 0 10px -3px rgba(0, 0, 0, 0.5019607843);
  content: "";
  height: calc(100% + 4px);
  left: 0;
  position: absolute;
  top: -2px;
  width: 100%;
}
#challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table th:not(:first-child), #challenge-v2-popup #challenge-v2-popup-content #challenge-v2-table-wrapper table td:not(:first-child) {
  padding: 0 32px;
  text-align: center;
}
#challenge-v2-popup #challenge-v2-popup-content button#challenge-v2-toggle-details {
  margin: auto;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5019607843);
  width: 100%;
  text-align: center;
  border: none;
  font-size: 16px;
  font-family: Wadik, serif;
  color: white;
}
#challenge-v2-popup #challenge-v2-popup-content button#challenge-v2-toggle-details:hover {
  background: darkgrey;
}
@media screen and (min-width: 540px) {
  #challenge-v2-popup #challenge-v2-popup-content button#challenge-v2-toggle-details {
    width: 256px;
  }
}

.challenge-v2-boolean {
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 24px;
}
@media screen and (min-width: 768px) {
  .challenge-v2-boolean {
    width: 28px;
  }
}

.challenge-v2-btn-transition-1 {
  transition: transform 0.3s;
}
.challenge-v2-btn-transition-1:hover {
  transform: translateY(-0.3rem);
  color: var(--ch-accent-1) !important;
}

.challenge-v2-btn-transition-2 {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.challenge-v2-btn-transition-2.active {
  color: var(--ch-accent-1) !important;
}
.challenge-v2-btn-transition-2.active::before {
  box-shadow: 0px 0px 50px 20px var(--ch-accent-1);
  position: absolute;
  height: 70%;
  width: 70%;
  content: "";
  top: 15%;
  left: 15%;
  z-index: -1;
  transition: opacity 0.3s 0.3s, visibility 0s 0.3s;
}
.challenge-v2-btn-transition-2.active:hover::before {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s, visibility 0s;
}

[data-tooltip] {
  cursor: pointer;
}
[data-tooltip]::after {
  display: inline-block;
  content: "";
  height: 16px;
  width: 16px;
  margin: 0 6px -2px;
  background-image: url("../../img/challenge-info.svg");
  background-size: contain;
}

.challenge-v2-tooltip {
  background-color: #2C2C2B;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  max-width: 90vw;
  opacity: 0;
  padding: 14px;
  position: absolute;
  transition: 0.3s;
  z-index: 200000;
}
@media screen and (min-width: 540px) {
  .challenge-v2-tooltip {
    max-width: 320px;
  }
}
.challenge-v2-tooltip a {
  color: lightgrey;
  text-decoration: underline;
}
.challenge-v2-tooltip a:hover {
  color: white;
}

/* Disabled Continue button styles */
section#challenge-v2 #challenge-v2-summary #challenge-v2-button-continue[style*="pointer-events: none"] {
  background-color: #666 !important;
  color: #999 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  pointer-events: none !important;
  text-decoration: none !important;
}

section#challenge-v2 #challenge-v2-summary #challenge-v2-button-continue[style*="pointer-events: none"]:hover {
  background-color: #666 !important;
  color: #999 !important;
  transform: none !important;
}/*# sourceMappingURL=challenge-style.css.map */