h1 span.logo {
  font-weight: 900;
  font-family: Arial;
  letter-spacing: -3px;
}
h1 span.logo > span.logox {
  color: #ff1a61;
}

:root {
  --card-transition-delay-setting: 0.2s;
}

#sharingNav {
  position: fixed;
  z-index: 50;
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-color: #EAF2EF;
  color: #232222;
  width: 50vw;
  padding: 5%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-2100px);
  transition: all 0.4s ease-out;
  visibility: hidden;
}
#sharingNav.open {
  visibility: visible;
  transform: translateY(0);
  transition: all 0.4s ease-out;
}

#navMenuButtonDiv {
  display: none;
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 29px;
  z-index: 55;
}
#navMenuButtonDiv button.navOpen {
  width: fit-content;
  height: 100%;
  z-index: 11;
}

#shareButtonsDiv {
  display: flex;
  flex-flow: column nowrap;
}
#shareButtonsDiv.hide {
  display: none;
}
#shareButtonsDiv > button {
  margin: 5px 20px;
}
#shareButtonsDiv a#seeSampleLink {
  color: #ff1a61;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

#logoutDiv {
  position: absolute;
  bottom: 10px;
  right: 40px;
}

div.customAddRow {
  border-top: 4px solid black;
  background-color: #232222;
  color: #EAF2EF;
}
div.customAddRow p {
  margin-left: 10px;
  text-align: center;
  font-weight: bold;
}
div.customAddRow input[type=text] {
  width: 20em;
}
div.customAddRow input[type=radio] {
  display: none;
  visibility: hidden;
}
div.customAddRow label {
  padding: 5px;
  margin: 8px;
  text-align: center;
  color: #ff1a61;
  transition: 0.2s ease-out;
  border: 1.5px solid #232222;
}
div.customAddRow label:hover {
  background-color: #ff1a61;
  color: #232222;
  transition: 0.2s ease-out;
}
div.customAddRow label[for$=iGive].iGive {
  background-color: #ff1a61;
  color: #232222;
  border: 1.5px solid #809BCE;
}
div.customAddRow label[for$=iReceive].iReceive {
  background-color: #ff1a61;
  color: #232222;
  border: 1.5px solid #809BCE;
}
div.customAddRow label[for$=bothDirections].both {
  background-color: #ff1a61;
  color: #232222;
  border: 1.5px solid #809BCE;
}

button.deleteItem.button {
  position: absolute;
  right: 0;
  padding: 3px 6px;
}

#mainChecklistDiv.card .title.Row {
  display: none;
}
#mainChecklistDiv.card .Row div {
  justify-content: center;
}
#mainChecklistDiv.card .question.Row {
  opacity: 0;
  max-height: 0;
  z-index: -1;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(-200vw);
  flex-flow: row wrap;
  justify-content: flex-start;
  transition: transform 0.2s ease-out;
}
#mainChecklistDiv.card .question.Row .questionLabel {
  flex-flow: column nowrap;
  flex: 0 0 100%;
  margin-bottom: 30px;
}
#mainChecklistDiv.card .question.Row .questionLabel p {
  font-size: 1.7rem;
}
#mainChecklistDiv.card .question.Row h3.card.section.title {
  display: block;
  display: none;
  margin: 0;
}
#mainChecklistDiv.card .question.Row button.card.button {
  display: block;
  position: absolute;
}
#mainChecklistDiv.card .question.Row button.card.button.close {
  top: 0;
  right: 0;
}
#mainChecklistDiv.card .question.Row button.card.button.next {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#mainChecklistDiv.card .question.Row button.card.button.previous {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#mainChecklistDiv.card .question.Row div.containerDiv {
  border-left: none;
  flex: 1 1 40%;
  position: relative;
  align-items: flex-start;
}
#mainChecklistDiv.card .question.Row div.containerDiv:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#mainChecklistDiv.card .question.Row div.containerDiv.giving:before {
  content: "Giving";
}
#mainChecklistDiv.card .question.Row div.containerDiv.giving.notApplicable:before {
  content: "Your Partner Does This To You";
}
#mainChecklistDiv.card .question.Row div.containerDiv.receiving:before {
  content: "Receiving";
}
#mainChecklistDiv.card .question.Row div.containerDiv.receiving.notApplicable:before {
  content: "You Do This To Your Partner";
}
#mainChecklistDiv.card .question.Row div.containerDiv.comment:before {
  content: "Comment";
  left: -10%;
  top: 50%;
  transform: translate(50%, -50%);
}
#mainChecklistDiv.card .question.Row div.containerDiv.legend {
  display: block;
  font-size: 0.7rem;
}
#mainChecklistDiv.card .question.Row.adjacentCardLeft {
  display: flex;
  transform: translateX(-200vw);
  transition: transform 0s ease-out;
  position: relative;
}
#mainChecklistDiv.card .question.Row.adjacentCardRight {
  display: flex;
  transform: translateX(200vw);
  transition: transform 0s ease-out;
  position: relative;
}
#mainChecklistDiv.card .question.Row.activeCard {
  display: flex;
  position: relative;
  transform: translateX(0);
  transition: transform 0.2s ease-out;
  transition-delay: var(--card-transition-delay-setting);
  max-height: unset;
  opacity: 1;
  z-index: 999;
  padding: 30px;
}
#mainChecklistDiv.card .question.Row.activeCard.moveLeft {
  transform: translateX(-200vw);
}
#mainChecklistDiv.card .question.Row.activeCard.moveRight {
  transform: translateX(200vw);
}
#mainChecklistDiv.card .ratingdiv > .card.radioDiv {
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
#mainChecklistDiv.card .ratingdiv > .card.radioDiv.disabledRadioSection {
  display: none;
}
#mainChecklistDiv.card .ratingdiv > .card.radioDiv.disabledRadioSection:before {
  content: "N/A";
}
#mainChecklistDiv.card .ratingdiv > .card.radioDiv.activeRadioSection {
  display: flex;
}

#mainChecklistDiv.card #Words_and_Phrases div.containerDiv.giving:before {
  content: "Saying";
}
#mainChecklistDiv.card #Words_and_Phrases div.containerDiv.receiving:before {
  content: "Hearing";
}
#mainChecklistDiv.card #Words_and_Phrases div.containerDiv.giving.notApplicable:before {
  content: "Your Partner Says This To You";
}
#mainChecklistDiv.card #Words_and_Phrases div.containerDiv.receiving.notApplicable:before {
  content: "You Say This To Your Partner";
}

#printSection {
  display: none;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: white;
}
@media screen and (min-width: 750px) {
  #printSection {
    width: 100%;
  }
}

#closePrintModalButton, #closeSharingModalButton {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 5px;
  background-color: #ff1a61;
  color: white;
  transition: 0.2s ease-out;
  font-size: 10px;
}
#closePrintModalButton:hover, #closeSharingModalButton:hover {
  color: #ff1a61;
  background-color: white;
  transition: 0.2s ease-out;
}

#sharingManagerModal {
  display: none;
}
#sharingManagerModal.open {
  display: flex;
}

#sharingManagerContent {
  width: 98vw;
  height: 98vh;
  max-width: 900px;
  max-height: 1200px;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-bottom: 20vh;
  overflow-y: auto;
}

#closeSharingModalButton {
  position: absolute;
  left: unset;
  top: 2vh;
  right: 2vw;
  padding: 10px;
}

.shareSplit {
  display: flex;
  flex-flow: row wrap;
  flex: 1 1 80%;
  min-width: 500px;
  width: 100%;
  justify-content: space-around;
}
@media screen and (max-width: 550px) {
  .shareSplit {
    flex-flow: column nowrap;
    min-width: unset;
    width: unset;
  }
}
.shareSplit .shareFrom, .shareSplit .shareTo {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 1 50%;
  padding: 0 20px;
}
.shareSplit .shareFrom h3, .shareSplit .shareTo h3 {
  width: 100%;
  text-align: center;
}
.shareSplit .shareFrom div, .shareSplit .shareTo div {
  display: flex;
  flex-flow: column nowrap;
  flex: 0 1 auto;
  padding: 0 20px;
  justify-content: flex-start;
  align-items: stretch;
}
.shareSplit .shareFrom p, .shareSplit .shareTo p {
  margin-right: 10px;
  margin-bottom: 5px;
  width: 100%;
}
.shareSplit .shareFrom button, .shareSplit .shareTo button {
  margin-bottom: 10px;
}

.addShare {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.addShare input {
  flex: 1 1 auto;
  align-self: stretch;
}

h1 span.logo {
  font-weight: 900;
  font-family: Arial;
  letter-spacing: -3px;
}
h1 span.logo > span.logox {
  color: #ff1a61;
}

:root {
  --card-transition-delay-setting: 0.2s;
}

#appInfo {
  background: #EAF2EF;
  margin: 100px auto 16px;
  padding: 32px 24px;
  border-radius: 3px;
  color: #232222;
}

#main #appInfo a {
  color: #ff1a61;
  text-decoration: none;
  transition: all 0.2s ease-out;
  font-size: 14px;
}
#main #appInfo a:visited {
  color: #ff1a61;
}
#main #appInfo a:hover {
  color: #ff1a61;
  background-color: #CFE8EF;
  transition: all 0.2s ease-out;
}

#appInfo h3 {
  color: #ff1a61;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 8px;
}

#appInfo h1 {
  font-size: 22px;
  font-weight: 300;
  color: #011627;
  margin: 0 0 16px;
}

#appInfo p {
  line-height: 140%;
  margin: 16px 0 24px;
  font-size: 14px;
}

#appInfo a.button {
  display: block;
  text-align: center;
  background: #ff1a61;
  text-transform: uppercase;
  text-decoration: none;
  color: #EAF2EF;
  padding: 16px;
  border-radius: 4px;
}
#appInfo a.button:visited {
  color: #EAF2EF;
}

#appInfo {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#appInfo a {
  color: #ff1a61;
}
#appInfo a:visited {
  color: #ff1a61;
}

@media (max-width: 600px) {
  body, #appInfo {
    margin-top: 0;
    background: #EAF2EF;
    box-shadow: none;
  }
  #appInfo {
    border-top: 16px solid #ff1a61;
  }
}
html {
  box-sizing: border-box;
  font-size: 14px;
  font-family: Arial, sans-serif;
  padding: 0;
  margin: 0;
}

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

.viewSelectDiv {
  display: none !important;
}

button.list.switch.button {
  display: none !important;
}

body {
  width: 100%;
  margin: 0;
  background-color: #232222;
  color: #EAF2EF;
  position: relative;
}
body a:visited {
  color: #ff1a61;
}

.spinnerBG {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinnerBG#spinnerInside {
  top: -23vh;
}

.spinnerContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30vw;
  height: 30vw;
  background-color: black;
}
.spinnerContainer > img {
  width: 100%;
  height: 100%;
}

#main {
  --main-top-margin: 100px;
  position: absolute;
  top: var(--main-top-margin);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
}
#main a {
  color: #CFE8EF;
  font-size: 0.8rem;
  text-decoration: none;
}
#main a:visited {
  color: #CFE8EF;
}
#main a:hover {
  color: #ff1a61;
}

.logoDiv {
  display: flex;
  flex-flow: column nowrap;
  position: absolute;
  top: 10px;
  left: 10px;
}
.logoDiv img {
  width: 300px;
}
.logoDiv h1 {
  flex: 1 1 75%;
}
.logoDiv h4 {
  margin: 0;
  margin-top: -26px;
  padding-left: 33px;
  letter-spacing: 0.3px;
}

.mainChecklistDiv {
  margin: 20px auto;
  color: #011627;
}
.mainChecklistDiv p#skipInstruction {
  color: white;
}
.mainChecklistDiv div.safeWord {
  color: white;
}

.selectorsDiv {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.selectorsDiv .viewSelectDiv h4 {
  margin-bottom: 7px;
}
.selectorsDiv .viewSelectDiv button {
  padding: 10px 12px;
}
.selectorsDiv .viewSelectDiv button:not(:first-of-type) {
  margin-left: 10px;
}
.selectorsDiv .viewSelectDiv button:disabled {
  background-color: #353535;
  color: #ff1a61;
}

.domSubSelectDiv a {
  position: relative;
  top: 12px;
}
.domSubSelectDiv input {
  display: none;
  visibility: hidden;
}
.domSubSelectDiv label {
  padding: 10px;
  margin-right: 10px;
  background-color: #ff1a61;
  color: #EAF2EF;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.domSubSelectDiv label:hover {
  background-color: #CFE8EF;
  color: #232222;
  transition: all 0.3s ease-out;
}
.domSubSelectDiv label[for=domSelect].dom {
  background-color: #CFE8EF;
  color: #232222;
}
.domSubSelectDiv label[for=subSelect].sub {
  background-color: #CFE8EF;
  color: #232222;
}
.domSubSelectDiv label[for=switchSelect].switch {
  background-color: #CFE8EF;
  color: #232222;
}

.Row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  background-color: #EAF2EF;
}
.Row div {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
.Row div.questionLabel {
  flex: 1 2 5%;
  min-width: 150px;
  justify-content: space-between;
}
.Row div.questionLabel h3 {
  color: #232222;
}
.Row div.questionLabel p {
  margin: 0 10px;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
}
.Row div.containerDiv {
  flex: 1 1 150px;
  padding: 35px 0 0 0;
  align-items: flex-start;
  position: relative;
}
.Row div.containerDiv:nth-of-type(2) {
  border-left: 2px solid black;
  border-right: 2px solid black;
}
.Row div.containerDiv:nth-of-type(3) {
  border-right: 2px solid black;
}
.Row div.containerDiv.comment {
  flex: 3 3 15%;
  min-width: unset;
}
.Row div.containerDiv.closed {
  max-width: 25px;
  overflow: hidden;
  border: unset;
}
.Row div.containerDiv.closed div {
  display: none;
}
.Row div.radioDiv {
  flex-flow: column nowrap;
  align-items: stretch;
}
.Row div.textinputdiv {
  flex: 1 1 15%;
}
@media screen and (max-width: 550px) {
  .Row div.textinputdiv {
    display: none;
  }
}
.Row .card.section.title {
  display: none;
}
.Row .card.button {
  display: none;
}
.Row .legend {
  display: none;
}

.title.Row {
  position: sticky;
  top: 31px;
  background-color: #232222;
  color: #ff1a61;
  font-weight: bold;
  border: 1px solid black;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .title.Row {
    top: 21px;
  }
}
.title.Row .questionLabel {
  justify-content: center;
  cursor: default;
}
.title.Row .containerDiv {
  position: relative;
  cursor: default;
}
.title.Row .containerDiv div.commentSection.textinputdiv {
  cursor: pointer;
}
.title.Row .containerDiv div.commentSection.textinputdiv p {
  display: flex;
}
.title.Row .containerDiv div.commentSection.textinputdiv img {
  display: none;
}
.title.Row .containerDiv.closed div.commentSection.textinputdiv {
  display: flex;
}
.title.Row .containerDiv.closed div.commentSection.textinputdiv p {
  display: none;
}
.title.Row .containerDiv.closed div.commentSection.textinputdiv img {
  display: flex;
}
.title.Row .containerDiv .ratingdiv > p {
  cursor: help;
}
.title.Row .containerDiv .ratingdiv > p:after {
  content: "";
  background-image: url("./info-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  float: right;
  margin: 0 0 0 5px;
}
.title.Row .tooltipDiv {
  display: none;
  padding: 0 20px;
  position: absolute;
  top: 25%;
  left: 80%;
  width: 20em;
  max-width: 45em;
  background-color: #ff1a61;
  color: #EAF2EF;
  font-size: 0.8rem;
  font-weight: 400;
  z-index: 10;
  border: 1px dotted #EAF2EF;
}
.title.Row .tooltipDiv.showTooltip {
  display: block;
}
.title.Row .tooltipDiv.showTooltip:before {
  content: " ";
  border-right: 14px solid #ff1a61;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  top: 10%;
  left: 0;
  transform: translateX(-100%);
}
.title.Row .tooltipDiv.receiving {
  left: unset;
  right: 87%;
}
.title.Row .tooltipDiv.receiving.showTooltip:before {
  left: unset;
  right: 0;
  transform: translateX(100%);
  border-right: unset;
  border-left: 14px solid #ff1a61;
}

.categoryTitle {
  position: sticky;
  top: -1px;
  background-color: #232222;
  color: #EAF2EF;
  width: 100%;
  margin: 20px 0 10px 0;
  z-index: 10;
  cursor: pointer;
}
.categoryTitle:hover {
  color: #ff1a61;
}
.categoryTitle:after {
  content: "+";
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  top: 2px;
  left: 4px;
}
.categoryTitle.accordionOpen:after {
  content: "-";
}

.gridContainer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-out 0.3s, opacity 0.3s ease-out;
}
.gridContainer .question.Row {
  max-height: 0;
  transition: max-height 0.5s ease-out;
}
.gridContainer.accordionOpen {
  max-height: 20000px;
  opacity: 1;
  transition: max-height 0.5s ease-out, opacity 0.3s ease-out 0.3s;
}
.gridContainer.accordionOpen .question.Row {
  max-height: 300px;
  border-bottom: 2px solid black;
}

div.categoryDiv .gridContainer:not(.accordionOpen) .Row {
  display: none;
}

.question.Row.unanswered.changed {
  background-color: #CFE8EF;
}
.question.Row.retrieved {
  background-color: #D6D2D2;
}
.question.Row.retrieved.changed {
  background-color: #CFE8EF;
}
.question.Row.retrieved.answered {
  background-color: #D6D2D2;
}
.question.Row.retrieved.answered.changed {
  background-color: #CFE8EF;
}

.checkboxDiv {
  position: absolute;
  right: 0;
  transform: translateX(-25px);
  top: 0px;
}

.checkboxContainer {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
}
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkboxContainer input:checked ~ span.checkmark {
  background-color: #232222;
}
.checkboxContainer input:checked ~ span.checkmark:after {
  display: block;
}
.checkboxContainer .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #D6D2D2;
}
.checkboxContainer .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid #D6D2D2;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkboxContainer:hover input ~ .checkmark {
  background-color: #353535;
}

.checkboxContainer[disabled=true] {
  color: yellow;
  border: 1px solid yellow;
}

.ratingdiv {
  flex: 1 1 40%;
  margin: 0 3px;
  max-width: 105px;
}
.ratingdiv select {
  width: 100%;
  font-size: 12px;
  background-color: white;
}
.ratingdiv select option {
  background-color: white;
}
.ratingdiv select.neutral {
  background-color: white;
  color: black;
}
.ratingdiv select.hardlimit {
  background-color: rgb(115, 125, 137);
  font-weight: bold;
}
.ratingdiv select.softlimit {
  background-color: rgb(43, 122, 187);
  font-weight: bold;
}
.ratingdiv select.tolerate {
  background-color: rgb(103, 99, 169);
  font-weight: bold;
}
.ratingdiv select.turnon {
  background-color: rgb(138, 105, 174);
  font-weight: bold;
}
.ratingdiv select.wildlyexciting {
  background-color: rgb(166, 73, 132);
  font-weight: bold;
}
.ratingdiv select.essential {
  background-color: #ff1a61;
  font-weight: bold;
}
.ratingdiv select.nevertriedit {
  background-color: rgb(115, 125, 137);
  font-weight: bold;
}
.ratingdiv select.dabbled {
  background-color: rgb(43, 122, 187);
  font-weight: bold;
}
.ratingdiv select.imapro {
  background-color: #ff1a61;
  font-weight: bold;
}
.ratingdiv select.neutral.selection:disabled, .ratingdiv select.hardlimit:disabled, .ratingdiv select.softlimit:disabled, .ratingdiv select.tolerate:disabled, .ratingdiv select.turnon:disabled, .ratingdiv select.wildlyexciting:disabled, .ratingdiv select.essential:disabled, .ratingdiv select.nevertriedit:disabled, .ratingdiv select.dabbled:disabled, .ratingdiv select.imapro:disabled {
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0);
}
.ratingdiv .card.radioDiv input {
  display: none;
  visibility: hidden;
}
.ratingdiv .card.radioDiv.disabledRadioSection {
  opacity: 0.1;
}
.ratingdiv .card.radioDiv label {
  padding: 10px 5px;
  margin-bottom: 5px;
  background-color: #D6D2D2;
  color: #232222;
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.ratingdiv .card.radioDiv label:hover {
  background-color: #CFE8EF;
  transition: all 0.3s ease-out;
}
.ratingdiv .card.radioDiv label[for^=hardLimitRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=hardLimitRadioOption].hardlimit {
  background-color: rgb(115, 125, 137);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=hardLimitRadioOption].neutral.selection {
  background-color: rgb(115, 125, 137);
}
.ratingdiv .card.radioDiv label[for^=hardLimitRadioOption]:hover {
  background-color: rgb(115, 125, 137);
}
.ratingdiv .card.radioDiv label[for^=softLimitRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=softLimitRadioOption].softlimit {
  background-color: rgb(43, 122, 187);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=softLimitRadioOption].neutral.selection {
  background-color: rgb(43, 122, 187);
}
.ratingdiv .card.radioDiv label[for^=softLimitRadioOption]:hover {
  background-color: rgb(43, 122, 187);
}
.ratingdiv .card.radioDiv label[for^=tolerateRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=tolerateRadioOption].tolerate {
  background-color: rgb(103, 99, 169);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=tolerateRadioOption].neutral.selection {
  background-color: rgb(103, 99, 169);
}
.ratingdiv .card.radioDiv label[for^=tolerateRadioOption]:hover {
  background-color: rgb(103, 99, 169);
}
.ratingdiv .card.radioDiv label[for^=intriguingRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=intriguingRadioOption].turnon {
  background-color: rgb(138, 105, 174);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=intriguingRadioOption].neutral.selection {
  background-color: rgb(138, 105, 174);
}
.ratingdiv .card.radioDiv label[for^=intriguingRadioOption]:hover {
  background-color: rgb(138, 105, 174);
}
.ratingdiv .card.radioDiv label[for^=excitingRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=excitingRadioOption].wildlyexciting {
  background-color: rgb(166, 73, 132);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=excitingRadioOption].neutral.selection {
  background-color: rgb(166, 73, 132);
}
.ratingdiv .card.radioDiv label[for^=excitingRadioOption]:hover {
  background-color: rgb(166, 73, 132);
}
.ratingdiv .card.radioDiv label[for^=essentialRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=essentialRadioOption].essential {
  background-color: #ff1a61;
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=essentialRadioOption].neutral.selection {
  background-color: #ff1a61;
}
.ratingdiv .card.radioDiv label[for^=essentialRadioOption]:hover {
  background-color: #ff1a61;
}
.ratingdiv .card.radioDiv label[for^=neverTriedItExpRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=neverTriedItExpRadioOption].nevertriedit {
  background-color: rgb(115, 125, 137);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=neverTriedItExpRadioOption].neutral.selection {
  background-color: rgb(115, 125, 137);
}
.ratingdiv .card.radioDiv label[for^=neverTriedItExpRadioOption]:hover {
  background-color: rgb(115, 125, 137);
}
.ratingdiv .card.radioDiv label[for^=dabbledExpRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=dabbledExpRadioOption].dabbled {
  background-color: rgb(43, 122, 187);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=dabbledExpRadioOption].neutral.selection {
  background-color: rgb(43, 122, 187);
}
.ratingdiv .card.radioDiv label[for^=dabbledExpRadioOption]:hover {
  background-color: rgb(43, 122, 187);
}
.ratingdiv .card.radioDiv label[for^=beginnerExpRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=beginnerExpRadioOption].beginner {
  background-color: rgb(103, 99, 169);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=beginnerExpRadioOption].neutral.selection {
  background-color: rgb(103, 99, 169);
}
.ratingdiv .card.radioDiv label[for^=beginnerExpRadioOption]:hover {
  background-color: rgb(103, 99, 169);
}
.ratingdiv .card.radioDiv label[for^=moderateExpRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=moderateExpRadioOption].moderate {
  background-color: rgb(138, 105, 174);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=moderateExpRadioOption].neutral.selection {
  background-color: rgb(138, 105, 174);
}
.ratingdiv .card.radioDiv label[for^=moderateExpRadioOption]:hover {
  background-color: rgb(138, 105, 174);
}
.ratingdiv .card.radioDiv label[for^=advancedExpRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=advancedExpRadioOption].advanced {
  background-color: rgb(166, 73, 132);
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=advancedExpRadioOption].neutral.selection {
  background-color: rgb(166, 73, 132);
}
advanced .ratingdiv .card.radioDiv label[for^=advancedExpRadioOption]:hover {
  background-color: rgb(166, 73, 132);
}
.ratingdiv .card.radioDiv label[for^=imaproExpRadioOption] {
  background-color: #D6D2D2;
}
.ratingdiv .card.radioDiv label[for^=imaproExpRadioOption].imapro {
  background-color: #ff1a61;
  font-weight: bold;
}
.ratingdiv .card.radioDiv label[for^=imaproExpRadioOption].neutral.selection {
  background-color: #ff1a61;
}
.ratingdiv .card.radioDiv label[for^=imaproExpRadioOption]:hover {
  background-color: #ff1a61;
}

.commentSection input {
  width: 100%;
  padding: 0;
  margin: 0;
}

.hide {
  display: none;
}

.toastAreaDiv {
  position: fixed;
  z-index: 99;
  bottom: 10px;
  width: 80vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #EAF2EF;
  max-height: 0;
  padding: 0;
  opacity: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  transition: all 0.2s ease-out;
}
.toastAreaDiv.show {
  max-height: 80px;
  padding: 20px 15px;
  opacity: 1;
}
.toastAreaDiv.show > .dismissButton {
  display: block;
}
.toastAreaDiv > p {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
}
.toastAreaDiv > .dismissButton {
  flex: 0 0 40px;
  display: none;
}

.modalBgArea {
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  display: none;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.modalBgArea .modalContentBox {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  background-color: #EAF2EF;
  color: #232222;
  width: 50%;
  padding: 40px;
}
.modalBgArea .modalContentBox .modalMessage {
  flex: 0 0 100%;
  padding: 30px;
}

button {
  border: none;
  background-color: #ff1a61;
  transition: all 0.3s ease-out;
  padding: 8px 12px;
  color: #EAF2EF;
  cursor: pointer;
}
button:hover {
  background-color: #CFE8EF;
  color: #232222;
  transition: all 0.3s ease-out;
}
button:focus {
  border: none;
}
button:disabled {
  cursor: not-allowed;
}
button object {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
}
button.dismissButton {
  background-color: #D6D2D2;
  color: #232222;
}
button.dismissButton:hover {
  background-color: #28502E;
  color: #EAF2EF;
}

@media screen and (max-width: 400px) and (orientation: portrait) {
  #rotateInstruction {
    display: inline;
    font-weight: bold;
    font-size: larger;
    color: white;
  }
  div.Row div.questionLabel {
    min-width: 50px;
  }
}
@media screen and (max-width: 550px) {
  #main {
    padding: 0 3%;
  }
  #topIntroSectionDiv {
    margin-left: 30px;
    margin-top: -50px;
  }
  .punishment.containerDiv, .comment.containerDiv {
    display: none;
  }
  h2.categoryTitle {
    font-size: 1.5rem;
    letter-spacing: -0.3px;
    padding-left: 0;
    margin: 15px 0;
  }
  .Row div.questionLabel {
    min-width: 70px;
  }
  .Row div.questionLabel p {
    margin: 0 2px;
    word-break: break-word;
  }
  #navMenuButtonDiv {
    top: 5px;
    right: 15px;
  }
  #sharingNav {
    width: 98vw;
  }
  .shareButtonsDiv p {
    max-width: 190px;
  }
  #logoDiv img {
    width: 250px;
  }
  #logoDiv h4 {
    margin-top: -20px;
  }
  .title.Row .receiving.containerDiv > .tooltipDiv.receiving {
    left: unset;
    right: 87%;
  }
  .title.Row .receiving.containerDiv > .tooltipDiv.receiving.showTooltip:before {
    left: unset;
    right: 0;
    transform: translateX(100%);
    border-right: unset;
    border-left: 14px solid #ff1a61;
  }
  div.customAddRow[id$=customAddRow] {
    flex-flow: row wrap;
    position: relative;
    max-height: 400px;
    justify-content: space-around;
  }
  div.customAddRow[id$=customAddRow] label:not(:first-of-type) {
    padding: 10px;
  }
  div.customAddRow[id$=customAddRow] button.addItem.button {
    position: absolute;
    top: 0;
    right: 0;
  }
  button.deleteItem.button {
    right: unset;
    left: 90px;
  }
}
@media screen and (min-width: 500px) {
  #rotateInstruction {
    display: none;
  }
}

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