
.vue-modal-resizer {
  display: block;
  overflow: hidden;
  position: absolute;
  width: 12px;
  height: 12px;
  right: 0;
  bottom: 0;
  z-index: 9999999;
  background: transparent;
  cursor: se-resize;
}
.vue-modal-resizer::after {
  display: block;
  position: absolute;
  content: '';
  background: transparent;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-bottom: 10px solid #ddd;
  border-left: 10px solid transparent;
}
.vue-modal-resizer.clicked::after {
  border-bottom: 10px solid #369be9;
}


.v--modal-block-scroll {
  overflow: hidden;
  width: 100vw;
}
.v--modal-overlay {
  position: fixed;
  box-sizing: border-box;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 1;
}
.v--modal-overlay.scrollable {
  height: 100%;
  min-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.v--modal-overlay .v--modal-background-click {
  width: 100%;
  min-height: 100%;
  height: auto;
}
.v--modal-overlay .v--modal-box {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.v--modal-overlay.scrollable .v--modal-box {
  margin-bottom: 2px;
}
.v--modal {
  background-color: white;
  text-align: left;
  border-radius: 3px;
  box-shadow: 0 20px 60px -2px rgba(27, 33, 58, 0.4);
  padding: 0;
}
.v--modal.v--modal-fullscreen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  left: 0;
  top: 0;
}
.v--modal-top-right {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.overlay-fade-enter-active,
.overlay-fade-leave-active {
  transition: all 0.2s;
}
.overlay-fade-enter,
.overlay-fade-leave-active {
  opacity: 0;
}
.nice-modal-fade-enter-active,
.nice-modal-fade-leave-active {
  transition: all 0.4s;
}
.nice-modal-fade-enter,
.nice-modal-fade-leave-active {
  opacity: 0;
  transform: translateY(-20px);
}


.vue-dialog div {
  box-sizing: border-box;
}
.vue-dialog .dialog-flex {
  width: 100%;
  height: 100%;
}
.vue-dialog .dialog-content {
  flex: 1 0 auto;
  width: 100%;
  padding: 15px;
  font-size: 14px;
}
.vue-dialog .dialog-c-title {
  font-weight: 600;
  padding-bottom: 15px;
}
.vue-dialog .dialog-c-text {
}
.vue-dialog .vue-dialog-buttons {
  display: flex;
  flex: 0 1 auto;
  width: 100%;
  border-top: 1px solid #eee;
}
.vue-dialog .vue-dialog-buttons-none {
  width: 100%;
  padding-bottom: 15px;
}
.vue-dialog-button {
  font-size: 12px !important;
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 40px;
  height: 40px;
  color: inherit;
  font: inherit;
  outline: none;
}
.vue-dialog-button:hover {
  background: rgba(0, 0, 0, 0.01);
}
.vue-dialog-button:active {
  background: rgba(0, 0, 0, 0.025);
}
.vue-dialog-button:not(:first-of-type) {
  border-left: 1px solid #eee;
}


.fade-enter-active,
.fade-leave-active {
  transition: all 0.2s ease;
}
.fade-enter,
.fade-leave-active {
  opacity: 0;
}

/*
Colors
*/
:root {
  --red-dark: #c62828;
  --gold: #fdb813;
  --gray-dark: #231f20;
}
.viewer-backdrop {
  background-color: rgba(0, 0, 0, 0.9) !important;
}
a {
  color: #fdb813;
}
body,
a:focus,
a:hover,
.btn,
.btn:focus,
.btn:hover {
  color: #231f20;
}
.btn-primary,
input[type=checkbox]:checked {
  background-color: #fdb813;
}
.btn-primary {
  border-color: #fdb813;
}
.btn-primary:focus, .btn-primary:hover {
  border-color: #f9a109;
  background-color: #f9a109;
}
.btn-light {
  border-color: #ececec;
  background-color: #ececec;
}
.btn-light:focus, .btn-light:hover {
  border-color: #dedede;
  background-color: #dedede;
}
.btn-info {
  border-color: #1565c0;
  background-color: #1565c0;
  color: #fff;
}
.btn-info:focus, .btn-info:hover {
  border-color: #1255a2;
  background-color: #1255a2;
  color: #fff;
}
.btn-danger {
  border-color: #f30018;
  background-color: #f30018;
  color: #fff;
}
.btn-danger:focus, .btn-danger:hover {
  border-color: #c62828;
  background-color: #c62828;
  color: #fff;
}
.btn-transparent {
  margin: 0;
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}
.btn-transparent:disabled {
  cursor: default;
}
.text-muted,
::placeholder {
  color: #636161;
}
footer {
  border-top: 1px solid #dedede;
}
input[type=checkbox]:checked {
  border-color: #fdb813;
}

/* noUi overrides */
.noUi-connect,
#slider-radius {
  background-color: #fdb813 !important;
}
.noUi-target {
  background-color: #ececec !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 10px !important;
}
.noUi-horizontal {
  height: 10px !important;
}
.noUi-horizontal .noUi-handle {
  width: 16px !important;
  height: 16px !important;
  left: -8px !important;
  top: -3px !important;
}
.noUi-handle {
  border-radius: 50% !important;
  box-shadow: none !important;
}
.noUi-handle:before, .noUi-handle:after {
  display: none !important;
}
.noUi-connect {
  box-shadow: none !important;
}

/* */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  padding: 0;
  margin: 0;
}
html {
  scrollbar-gutter: stable;
}
body {
  background-color: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
}
a {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
}
::placeholder {
  opacity: 1;
}
h3 {
  font-size: 14px;
}
address {
  font-style: normal;
}
.responsive {
  max-width: 100%;
}
.layout {
  display: flex;
  flex-wrap: wrap;
}
.layout.horizontal {
  flex-direction: row;
  width: 100%;
}
.layout.vertical {
  flex-direction: column;
}
.center {
  align-items: center;
}
.flex {
  flex: 1;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.d-none {
  display: none !important;
}
.padding {
  padding: 40px;
}
.padding-sides {
  padding-left: 20px;
  padding-right: 20px;
}
.list-unstyled,
.form-text ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 100%;
}
.alert a {
  font-weight: bold;
}
.alert p:first-child {
  margin-top: 0;
}
.alert p:last-child {
  margin-bottom: 0;
}
.alert-success {
  color: #558b2f;
  background-color: #f1f8e9;
  border-color: #dcedc8;
}
.alert-success a {
  color: #558b2f;
}
.alert-info {
  color: #1565c0;
  background-color: #e1f5fe;
  border-color: #b3e5fc;
}
.alert-info a {
  color: #1565c0;
}
.alert-warning {
  color: #a56716;
  background-color: #fff8e1;
  border-color: #ffecb3;
}
.alert-warning a {
  color: #a56716;
}
.alert-danger {
  color: #c62828;
  background-color: #ffebee;
  border-color: #ffcdd2;
}
.alert-danger a {
  color: #c62828;
}
form {
  width: 300px;
  max-width: 100%;
}
input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
select,
textarea {
  font-size: 12px;
}
.is-ios input[type=text],
.is-ios input[type=date],
.is-ios input[type=email],
.is-ios input[type=number],
.is-ios input[type=password],
.is-ios input[type=search],
.is-ios input[type=tel],
.is-ios input[type=url],
.is-ios select,
.is-ios textarea {
  font-size: 16px;
}
fieldset {
  margin-bottom: 0.65rem;
  border: 1px solid #c6c6c6;
}
input[type=checkbox],
input[type=radio],
input[type=file],
input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
select,
textarea {
  margin-bottom: 0.65rem;
}
input[type=checkbox]:focus,
input[type=radio]:focus,
input[type=file]:focus,
input[type=text]:focus,
input[type=date]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  outline: #fdb813 auto 1px;
}
input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=url],
select,
textarea,
.StripeElement {
  padding: 10px 16px;
  border-radius: 3px;
  border: 1px solid #c6c6c6;
  background-color: #fafafa;
}
input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=url],
select,
textarea {
  width: 100%;
  font-family: inherit;
}
input[type=text].is-invalid,
input[type=date].is-invalid,
input[type=email].is-invalid,
input[type=number].is-invalid,
input[type=password].is-invalid,
input[type=tel].is-invalid,
input[type=url].is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #c62828;
}
input[readonly] {
  background-color: #dedede;
}
.is-ios input[type=date] {
  display: block;
}
input[type=file] {
  display: block;
  margin: 1em 0;
}
select {
  display: block;
  color: #444;
  line-height: 1.3;
  padding: 0.917em 1.4em 0.917em 0.8em;
  box-sizing: border-box;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient.
    for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference
  */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
  background-repeat: no-repeat, repeat;
  /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
  background-position: right 0.7em top 50%, 0 0;
  /* icon size, then gradient */
  background-size: 0.65em auto, 100%;
}
select::-ms-expand {
  display: none;
}
select:hover {
  border-color: #888;
}
select:focus {
  border-color: #c6c6c6;
  color: #222;
}
select:disabled, select[aria-disabled=true] {
  color: graytext;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}
select:disabled:hover, select[aria-disabled=true] {
  border-color: #c6c6c6;
}
select option {
  font-weight: normal;
}
.form-text,
.invalid-feedback {
  margin: -0.5rem 0 0.65rem;
  font-size: 90%;
}
.invalid-feedback {
  color: #c62828;
}
.btn {
  padding: 10px 18px;
  border: 2px solid transparent;
  border-radius: 3px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9em;
  line-height: 100%;
  display: inline-block;
  position: relative;
  bottom: 0;
  cursor: pointer;
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
  pointer-events: none;
}
.btn .spinner-container {
  margin-left: 0.25em;
}
.btn + .btn {
  margin-left: 0.5rem;
}
.btn-sm {
  padding: 4px 10px;
  font-size: 0.75em;
}
.btn-outline-primary {
  border: 2px solid #fdb813;
}
.btn-outline-primary:focus, .btn-outline-primary:hover {
  background-color: #fdb813;
}
.btn-outline-success {
  border: 2px solid #558b2f;
}
.btn-outline-success:focus, .btn-outline-success:hover {
  background-color: #558b2f;
  color: #fff;
}
.btn-outline-info {
  border: 2px solid #1565c0;
}
.btn-outline-info:focus, .btn-outline-info:hover {
  background-color: #1565c0;
  color: #fff;
}
.btn-outline-danger {
  border: 2px solid #c62828;
}
.btn-outline-danger:focus, .btn-outline-danger:hover {
  background-color: #c62828;
  color: #fff !important;
}
.very-important-text {
  color: #c62828;
  animation: veryImportantOpacityChange 0.5s ease-in infinite;
  animation-direction: alternate;
}
@keyframes veryImportantOpacityChange {
0% {
    opacity: 1;
}
100% {
    opacity: 0.2;
}
}
.user-icon {
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  background-color: #ececec;
  vertical-align: middle;
  align-self: center;
}
.user-icon img {
  display: block;
}
.user-icon-header {
  margin-right: 5px;
  width: 32px;
}
.logo {
  padding-top: 20px;
  text-align: center;
}
.logo img {
  width: 150px;
  vertical-align: middle;
}
.logo p {
  margin: 0.5rem 0 0;
  font-size: 1.2em;
  font-weight: bold;
}
.app-button {
  position: fixed;
  top: 13px;
  left: 20px;
  bottom: auto;
  z-index: 3;
}
.content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  padding-top: 30px;
  min-height: 100vh;
}
.content h2 {
  font-size: 1.7em;
  margin: 0;
}
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  margin: 0 -40px;
  padding: 10px 40px;
  width: calc(100% + 80px);
  font-size: 0.9em;
  background-color: #f5f5f5;
  z-index: 2;
}
.header-search {
  margin: 0 auto;
  width: 500px;
  max-width: 100%;
}
.post-listing {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.account-btns > div > a,
.account-btns .show-dropdown a,
footer a,
.blog-article-title a,
.blog-sidebar ul a {
  color: #231f20;
}
.account-btns > div > a:focus, .account-btns > div > a:hover,
.account-btns .show-dropdown a:focus,
.account-btns .show-dropdown a:hover,
footer a:focus,
footer a:hover,
.blog-article-title a:focus,
.blog-article-title a:hover,
.blog-sidebar ul a:focus,
.blog-sidebar ul a:hover {
  color: #fdb813;
}
.account-btns {
  position: absolute;
  top: 10px;
  right: 40px;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: 1fr auto;
  align-content: start;
  align-items: baseline;
}
.is-ios .account-btns, .is-safari .account-btns {
  align-items: center;
}
.is-ios .account-btns .notifications, .is-safari .account-btns .notifications {
  align-self: baseline;
}
.show-dropdown {
  position: relative;
}
.show-dropdown > li > a {
  padding: 15px 0;
}
.dropdown {
  position: absolute;
  visibility: hidden;
  background-color: #fff;
  z-index: 100;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.15);
  top: calc(100% + 10px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.dropdown:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 5px 7px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.dropdown li a,
.dropdown .dropdown-item {
  padding: 8px 20px;
  display: block;
}
.dropdown li:first-child a {
  padding-top: 16px;
}
.dropdown li:last-child a {
  padding-bottom: 16px;
}
.account-menu {
  margin-left: auto;
}
.account-menu .show-dropdown > li {
  max-width: 155px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.account-menu .dropdown {
  left: auto;
  right: 0;
  transform: none;
}
.account-menu .dropdown:before {
  left: auto;
  right: 4px;
  transform: none;
}
.account-menu ul ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 357px;
}
.account-menu ul ul li {
  width: 119px;
  text-align: center;
}
.account-menu ul ul li:first-child a {
  padding-top: 8px;
}
.account-menu ul ul li:last-child a {
  padding-bottom: 8px;
}
.account-menu ul ul li a {
  padding: 8px;
}
.account-menu .dropdown.align-left a img[svg-inline],
.account-menu .dropdown.align-left li a img[svg-inline],
.account-menu .dropdown.align-left img[svg-inline],
.account-menu .dropdown a img[svg-inline],
.account-menu .dropdown li a img[svg-inline],
.account-menu .dropdown img[svg-inline],
.account-menu a img[svg-inline],
.account-menu img[svg-inline] {
  display: block !important;
  margin: 0 auto !important;
  width: 32px !important;
  height: 32px !important;
  filter: brightness(0) saturate(100%) invert(70%) sepia(95%) saturate(1352%) hue-rotate(1deg) brightness(99%) contrast(99%) !important;
}
.account-menu .dropdown.align-left a svg,
.account-menu .dropdown.align-left li a svg,
.account-menu .dropdown.align-left svg,
.account-menu .dropdown a svg,
.account-menu .dropdown li a svg,
.account-menu .dropdown svg,
.account-menu a svg,
.account-menu svg {
  display: block !important;
  margin: 0 auto !important;
  width: 32px !important;
  height: 32px !important;
  fill: #fdb813 !important;
}
.can-hover .account-menu .show-dropdown :focus .dropdown,
.can-hover .account-menu .show-dropdown :hover .dropdown,
.dropdown.visible {
  visibility: visible;
  opacity: 1;
}
.post-listing-link-container {
  grid-column: 1/-1;
  white-space: nowrap;
}
.see-more {
  margin-bottom: auto;
}
.container,
.container-fluid {
  margin: 10px auto;
  width: 100%;
}
.container {
  max-width: 1300px;
}
.page-head {
  padding-top: 1.15rem;
  padding-bottom: 2.5rem;
}
.bottom-pagination {
  float: right;
}
.box {
  display: block;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
}
.wants-container {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.blog-article-title {
  margin: 0;
  word-break: break-word;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: 0;
  overflow: hidden;
  max-width: 400px;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* FOOTER */
footer {
  font-size: 0.9em;
  padding-top: 40px;
  text-align: center;
}
footer a,
footer span {
  display: inline-block;
  margin: 0 10px;
  line-height: 3;
}
.action-progress {
  display: flex;
  margin-bottom: 1rem;
}
.action-progress > div {
  position: relative;
  width: 9.744em;
  text-align: center;
}
.action-progress > div:first-child .action-step-number:before, .action-progress > div:last-child .action-step-number:after {
  display: none;
}
.action-progress button:disabled {
  cursor: not-allowed;
}
.action-step-number {
  display: grid;
  place-items: center;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  font-size: 18px;
  background-color: #fafafa;
  border: 1px solid #636161;
  border-radius: 50%;
  color: #636161;
}
.action-step-number:before, .action-step-number:after {
  content: "";
  position: absolute;
  top: 24px;
  width: calc(50% - 24px);
  height: 1px;
  background-color: #636161;
}
.action-step-number:before {
  left: 0;
}
.action-step-number:after {
  right: 0;
}
.action-step-current {
  font-weight: bold;
  color: #fdb813;
}
.action-step-current a {
  color: #fdb813;
}
.action-step-current .action-step-number {
  border-color: #fdb813;
  color: #fdb813;
}
.action-step-completed .action-step-number {
  background-color: #558b2f;
  border-color: #636161;
  color: #fff;
}
@media (min-width: 1001px) {
.blog-container {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr auto;
}
.blog-sidebar {
    width: 250px;
}
}
@media (max-width: 1399px) {
.padding-sides {
    padding-left: 10px;
    padding-right: 10px;
}
}
@media (max-width: 1000px) {
.header {
    display: flex;
    flex-direction: column-reverse;
}
.account-btns {
    position: static;
    padding-bottom: 20px;
}
.wants-container {
    grid-template-columns: repeat(2, 1fr);
}
.blog-sidebar {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dedede;
}
}
@media (max-width: 768px) {
.padding {
    padding: 20px;
}
.app-button {
    position: absolute;
}
.header {
    position: relative;
    margin: 0;
    padding: 10px 0;
    width: 100%;
}
.content {
    margin-left: 0;
    padding-top: 10px;
    width: 100%;
    min-height: calc(100vh - 74px);
}
.content h2 {
    font-size: 1.5em;
}
}
@media (max-width: 534px) {
.account-btns {
    grid-template-columns: 1fr auto;
}
.account-menu > ul > li > a {
    display: block;
    padding: 0;
    min-width: 100px;
    text-align: left;
}
.account-menu ul ul {
    left: 16px;
    width: 238px;
}
.wants-container {
    grid-template-columns: 1fr;
}
}

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