/*
* Basics properties and utility classes
*/
:root {
  --white: 0 0% 100%;
  --black: 0 0% 0%;
  --bg-lighter: 0, 0%, 95%;
  --bg-light-0: 0 0% 90%;
  --bg-light-2: 0 0% 80%;
  --prim-color: 49 100% 50%;
  --prim-color-2: 49 100% 60%;
  --prim-color-3: 49 100% 70%;
  --prim-color-4: 49 100% 80%;
  --sec-color: 205 90% 50%;
  --sec-color-2: 205 95% 60%;
  --sec-color-3: 205 100% 70%;
  --third-color: 285 100% 36%;
  --third-color-2: 292 64% 58%;
  --third-color-3: 306 100% 81%;
  --danger: 0 90% 40%;
  --gray-200: 0 0% 20%;
  --gray-300: 0 0% 30%;
  --gray-530: 0 0% 53%;
  --bronze: 16 91% 67%;
  --silver: 0 0% 60%;
  --gold: 46 81% 35%;
  --normal: 212 100% 50%;
  --fast: 23 100% 57%;
  --urgent: 355 85% 43%;
  --header-text-color: 0 0% 0%;
  --header-inv-text-color: 0 0% 100%;
  --transition: all .3s ease-out;
  --box-shadow: 0px 5px 15px rgba(0, 0, 0, .15);
}

html,
html * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Raleway", "sans-serif";
}

html {
  font-size: 16px;
}
@media only screen and (min-width:1024px) {
  html {
    font-size: 18px;
  }
}

body,
h1,
h2,
h3,
p {
  margin: 0;
}

html,
body {
  background-color: hsl(var(--bg-light-0));
  overflow-x: hidden;
}

p {
  font-size: 16px;
  font-weight: 500;
}
p.ex {
  font-style: italic;
}

.indent {
  margin-left: 1em;
}

h1 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.3rem;
  font-weight: 800;
}

h3 {
  font-size: 1.3rem;
  font-weight: 400;
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

h5 {
  font-size: 0.8125rem;
  font-weight: 500;
}

a {
  color: hsl(var(--gray-200));
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}
a.none {
  opacity: 1 !important;
  transition: none;
}
a:hover, a:focus {
  opacity: 0.8;
}
a.styled {
  color: hsl(var(--sec-color));
  text-decoration: underline;
  font-style: italic;
  font-weight: 600;
}

canvas {
  width: 100%;
  height: 100%;
}

section {
  padding: 3rem 0;
}

img {
  width: 100%;
}

pre {
  background-color: hsl(var(--gray-200));
  color: #fff;
  padding: 2em;
  margin-inline: auto;
}

table.simple th, table.simple td {
  padding: 0.25em;
}
table.simple th {
  text-align: left;
  background-color: hsl(var(--bg-light-0));
}

.flex {
  display: flex;
}

.flexcol {
  display: flex;
  flex-direction: column;
}

.flex-flex {
  display: flex;
}
@media only screen and (max-width:426px) {
  .flex-flex {
    flex-direction: column;
  }
}

.flexcenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-j-center {
  display: flex;
  justify-content: center;
}

.flex-a-center {
  display: flex;
  align-items: center;
}

.flex-btwn {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.grid {
  display: grid;
}
.grid .col-span-2 {
  grid-column: span 2;
}
.grid .row-span-2 {
  grid-row: span 2;
}

.container {
  margin: 0 auto;
  width: min(90%, 70rem);
}
.container h3 {
  margin-block: 0.5em;
}
@media only screen and (max-width:426px) {
  .container {
    width: 100%;
  }
}

.glass {
  border: solid 2px hsl(0deg, 0%, 100%);
  background-color: hsl(var(--white)/0.75);
  border-radius: 1em;
  box-shadow: var(--box-shadow);
}
@supports (backdrop-filter: blur(1rem)) {
  .glass {
    background-color: hsl(var(--white)/0.5);
    backdrop-filter: blur(1rem);
  }
}

.bronze {
  color: hsl(var(--bronze));
}

.silver {
  color: hsl(var(--silver));
}

.gold {
  color: hsl(var(--gold));
}

:focus {
  outline: none;
}

.outOfFocus {
  filter: blur(5px);
  pointer-events: none;
}

.hidden {
  display: none !important;
  height: 0;
}

.invisible {
  opacity: 0;
}

.tag {
  color: hsl(var(--header-text-color)/0.9);
  border: solid 1px hsl(var(--header-text-color)/0.9);
  border-radius: 10px;
  padding: 0.35em 0.5em;
  margin-inline: 0.25em;
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.inline-center {
  margin-inline: auto !important;
}

.inline-right {
  margin-inline: auto 0 !important;
}

.inline-left {
  margin-inline: 0 auto !important;
}

.underline {
  width: max-content;
  border-bottom: solid 4px hsl(var(--prim-color));
}

/*
-------------------------
INPUT FIELDS
-------------------------
*/
input:is([type=text], [type=number], [type=tel], [type=url], [type=email], [type=password]), .select input {
  font-size: 16px;
  margin: 0.5em 0;
  border: solid 1px #aaa;
  border-radius: 0.5em;
  padding: 0.25em 0.5em;
  max-width: 500px;
}

input[type=number] {
  text-align: right;
  width: 7em;
}

textarea {
  font-size: 16px;
  padding: 0.25em 0.5em;
  margin: 0.5em 0;
  border: solid 1px #aaa;
  border-radius: 0.5em;
}

textarea {
  resize: none;
}

.select {
  position: relative;
  font-size: 16px;
}
.select input {
  width: 100%;
}

.select__input {
  display: flex;
  flex-direction: column;
}

.select__dropdown {
  position: absolute;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 1px;
  background: #fff;
  color: hsl(var(--header-text-color));
  border-top: 0;
  left: 0;
  right: 0;
  max-height: 10em;
  overflow-y: auto;
  border: solid 2px hsl(0deg, 0%, 100%);
  background-color: hsl(var(--white)/0.75);
  border-radius: 1em;
  box-shadow: var(--box-shadow);
}
@supports (backdrop-filter: blur(1rem)) {
  .select__dropdown {
    background-color: hsl(var(--white)/0.5);
    backdrop-filter: blur(1rem);
  }
}

.select__dropdown:empty {
  display: none;
}

.select__dropdown [role=option],
.select__dropdown strong {
  padding: 0.2em 0.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

.select__dropdown [role=option].select--selected,
.select__dropdown [role=option]:hover {
  background: hsl(var(--sec-color));
  color: #fff;
}

.select__dropdown [role=option].select--has-focus {
  background: hsl(var(--gray-530));
  color: #fff;
}

.select__dropdown [role=option][aria-disabled=true] {
  background: transparent;
  color: #777;
}

.select__dropdown ul {
  margin: 0;
  padding: 0;
}

.select__dropdown ul [role=option] {
  padding-left: 2em;
}

.select__values {
  display: inline;
  padding: 0;
  margin: 0;
}

.select__values li {
  display: inline-block;
  margin: 0.5em 0 0.25em 0.25em;
  cursor: default;
}

.select__value {
  padding: 0.5em 0.75em;
  background-color: hsl(var(--gray-200));
  color: #fff;
  font-weight: 500;
  border-radius: 0.3em;
  transition: background-color 0.3s ease-out;
}
.select__value:not(.disable):hover {
  background-color: hsl(var(--danger));
}

/*--------------------------------*/
.checksection {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checking {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
}
.checking input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0 !important;
  cursor: pointer;
  height: 3em;
  width: 3em;
}
.checking input[type=checkbox]:disabled {
  cursor: default;
}
.checking .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1.5em;
  width: 1.5em;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 1em;
}
.checking .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 35%;
  top: 17.5%;
  width: 0.3em;
  height: 0.6em;
  border: solid white;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checking:hover input ~ .checkmark,
.checking:focus input ~ .checkmark {
  background-color: #ccc;
}

.checking input:checked ~ .checkmark {
  background-color: #333;
}

.checking input:disabled ~ .checkmark {
  background-color: #999;
  cursor: default;
}

.checking input:checked ~ .checkmark:after {
  display: block;
}

.radiocheck {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
}
.radiocheck input[type=radio] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  cursor: pointer;
  height: 3em;
  width: 3em;
}
.radiocheck input[type=radio]:disabled {
  cursor: default;
}
.radiocheck .radiomark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1.5em;
  width: 1.5em;
  background-color: #fff;
  border-radius: 1em;
  border: solid 1px #ccc;
}
.radiocheck .radiomark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: #fff;
}

.radiocheck:hover input ~ .radiomark,
.radiocheck:focus input ~ .radiomark {
  background-color: #ccc;
}

.radiocheck input:checked ~ .radiomark {
  background-color: #333;
}

.radiocheck input:disabled ~ .radiomark {
  background-color: #999;
}

.radiocheck input:checked ~ .radiomark:after {
  display: block;
}

.toggleswitch {
  position: relative;
  display: inline-block;
  width: 3em;
  height: 1.8em;
}
.toggleswitch input {
  z-index: 5;
  position: absolute;
  opacity: 0;
  width: 2em;
  height: 2em;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.toggleswitch input#off {
  left: 0;
}
.toggleswitch input#on {
  right: 0;
}
.toggleswitch .slider {
  border-radius: 0.9em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
}
.toggleswitch .slider:after {
  position: absolute;
  z-index: 2;
  content: "";
  height: 1.2em;
  width: 1.2em;
  left: 0.3em;
  bottom: 0.3em;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.toggleswitch input#on:checked ~ .slider {
  background-color: #333;
}
.toggleswitch input#on:focus ~ .slider {
  box-shadow: 0 0 2px #333;
}
.toggleswitch input#on:checked ~ .slider:after {
  -webkit-transform: translatex(1.2em);
  -ms-transform: translatex(1.2em);
  transform: translatex(1.2em);
}

/*----------------------------------------*/
.upload {
  width: 100%;
  position: relative;
}
.upload input[type=file] {
  cursor: pointer;
  opacity: 0;
  padding: 1.5em;
  position: relative;
  z-index: 15;
}
.upload input[type=file]:hover + .upload-button {
  transform: scale(1.05);
  filter: drop-shadow(0 7px 10px hsl(var(--third-color-3)/0.75));
}
.upload input[type=file]:active + .upload-button {
  transform: scale(0.97);
  filter: drop-shadow(0 3px 5px hsl(var(--third-color-3)/0.75));
}
.upload .upload-button {
  font-weight: 700;
  padding: 0.75em 1.25em;
  border-radius: 0.75em;
  color: #fff;
  position: absolute;
  z-index: 14;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, hsl(var(--third-color-2)), hsl(var(--third-color)));
  filter: drop-shadow(0 5px 7px hsl(var(--third-color-3)));
  transition: transform 0.3s ease-in-out, filter 3s ease-in-out;
}

/*---------------------------*/
.range {
  width: min(90%, 52rem);
  margin: 1em auto;
}
.range input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 0.7em;
  border: solid 1px #ddd;
  background: hsl(0deg, 0%, 100%);
  opacity: 0.75;
  border-radius: 0.35em;
  margin-block: 1em;
}
.range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: hsl(var(--gray-200));
  width: 1.5em;
  height: 1.5em;
  border: solid 4px hsl(0deg, 0%, 100%);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 1px 3px 3px hsla(0deg, 0%, 0%, 0.3);
}
.range input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: hsl(var(--gray-200));
  width: 1.5em;
  height: 1.5em;
  border: solid 4px hsl(0deg, 0%, 100%);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 1px 3px 3px hsla(0deg, 0%, 0%, 0.3);
}

.range input[type=range]:hover,
.range input[type=range]:focus {
  opacity: 1;
}

.range input[type=range]:disabled {
  opacity: 1;
}
.range input[type=range]:disabled::-moz-range-thumb {
  cursor: default !important;
  background: hsl(var(--gray-530));
}
.range input[type=range]:disabled::-webkit-slider-thumb {
  cursor: default !important;
  background: hsl(var(--gray-530));
}

.disabled * {
  color: hsl(var(--gray-530)) !important;
  cursor: not-allowed !important;
}
.disabled .button {
  border: solid 1px hsl(var(--gray-530));
}
.disabled .button:hover {
  font-weight: 550;
}
.disabled .button:active {
  border: solid 1px hsl(var(--gray-530));
}

/*--------------------------*/
.submitting {
  position: relative;
}
.submitting input[type=submit] {
  opacity: 0;
  position: absolute;
  z-index: 25;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.submitting input[type=submit]:hover ~ .icon {
  padding: 0.5em;
  border: solid 2px hsl(0deg, 0%, 100%);
  background-color: hsl(var(--white)/0.75);
  border-radius: 1em;
  box-shadow: var(--box-shadow);
}
@supports (backdrop-filter: blur(1rem)) {
  .submitting input[type=submit]:hover ~ .icon {
    background-color: hsl(var(--white)/0.5);
    backdrop-filter: blur(1rem);
  }
}
.submitting .icon {
  border: solid 0px transparent;
  transition: all 0.3s ease-out;
}

button, .button,
input[type=submit] {
  display: block;
  margin: 1em;
  padding: 1em 2em;
  font-size: 1em;
  font-weight: 700;
  width: max-content;
  height: max-content;
  border-radius: 0.5em;
  cursor: pointer;
  border: none;
  background-image: linear-gradient(120deg, hsl(var(--prim-color)/0.8), hsl(var(--prim-color-2)), hsl(var(--prim-color-4)/0.9), hsl(var(--prim-color-3)/0.9));
  background-size: 150%;
  background-position: top left;
  backdrop-filter: blur(40px);
  filter: drop-shadow(0 5px 7px hsl(var(--prim-color)/0.5));
  transition: all 0.2s ease-out;
}
button:hover, .button:hover,
input[type=submit]:hover {
  background-position: bottom right;
  transform: scale(1.05);
  filter: drop-shadow(0 7px 10px hsl(var(--prim-color)/0.4));
}
button:disabled, button.disabled, .button:disabled, .button.disabled,
input[type=submit]:disabled,
input[type=submit].disabled {
  cursor: default;
  color: hsl(var(--gray-530));
  background-image: linear-gradient(120deg, hsl(var(--gray-530)/0.8), hsl(var(--bg-light-2)), hsl(var(--white)/0.9));
  filter: none;
}
button:disabled:hover, button.disabled:hover, .button:disabled:hover, .button.disabled:hover,
input[type=submit]:disabled:hover,
input[type=submit].disabled:hover {
  transform: none;
  filter: none;
}
button:active, .button:active,
input[type=submit]:active {
  filter: drop-shadow(0 0px 0px hsl(var(--prim-color)/0.5));
  transform: scale(0.95);
}
button.accent, .button.accent,
input[type=submit].accent {
  color: hsl(var(--white));
  background-image: linear-gradient(120deg, hsl(var(--sec-color)/0.8), hsl(var(--sec-color-2)), hsl(var(--sec-color-3)/0.9), hsl(var(--sec-color)/0.75));
  filter: drop-shadow(0 5px 7px hsl(var(--sec-color)/0.5));
}
button.danger, .button.danger,
input[type=submit].danger {
  color: hsl(var(--white));
  background-image: linear-gradient(60deg, hsl(0deg, 90%, 40%), hsl(0deg, 100%, 50%), hsl(0deg, 100%, 75%));
  filter: drop-shadow(0 5px 7px hsla(0deg, 90%, 40%, 0.3));
}

a.button:hover {
  opacity: 1;
}

.button:active,
input[type=submit]:active {
  border: 0px;
  transition: border 0.1s ease-in-out;
  -webkit-transition: border 0.1s ease-in-out;
  -moz-transition: border 0.1s ease-in-out;
}

.butoutline {
  background-color: hsla(0deg, 0%, 100%, 0.5);
  font-weight: 700;
  border: solid 1.5px hsl(0deg, 0%, 0%);
  padding: 0.25em 0.5em;
  border-radius: 1em;
  backdrop-filter: blur(20px);
  margin: 1em;
  width: max-content;
  cursor: pointer;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

/*
-------------------------
GENERAL STYLING
-------------------------
*/
.avatar {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  background-color: hsla(0deg, 0%, 100%, 0.75);
  border-radius: 1rem;
}
@supports (backdrop-filter: blur(20px)) {
  .avatar {
    backdrop-filter: blur(20px);
    background-color: hsla(0deg, 0%, 100%, 0.25);
  }
}

.postcard img {
  object-fit: cover;
  margin-block: 0.5em;
}

.submenu {
  padding: 0;
  gap: 0;
  margin-top: 1em;
  transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.submenu li {
  padding: 0.5em 1em;
}
.submenu li:hover {
  background-color: hsl(var(--white));
  transition: background-color 0.3s ease-out;
}

.collapsed {
  overflow: hidden;
  opacity: 0;
  max-height: 0 !important;
}

.msg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3em 1em;
}
.msg img {
  width: 25em;
  margin-bottom: 1em;
}
.msg.alone {
  height: 70%;
}

.alert {
  color: hsl(var(--danger));
}

.notifbox {
  background-color: #ccc;
  padding: 1em;
  border-radius: 0.5em;
  margin-inline: auto 1em;
  width: max-content;
  transition: all 0.2s ease-in;
}
.notifbox.alert {
  background-color: hsl(var(--danger));
  color: #fff;
  font-weight: 700;
}

.triangle {
  border-bottom: 2px solid hsl(var(--gray-530));
  border-left: 2px solid hsl(var(--gray-530));
  width: 0.5em;
  height: 0.5em;
  transform: rotateZ(-45deg);
  transition: transform 0.3s ease-out;
}

.closeCross {
  position: absolute;
  top: 1em;
  right: 2em;
  cursor: pointer;
  padding: 1em;
}
@media only screen and (max-width:770px) {
  .closeCross {
    padding: 0;
  }
}
.closeCross span {
  background-color: red;
  width: 3px;
  height: 2em;
  border-radius: 2px;
  position: absolute;
  transform-origin: center;
}
.closeCross :nth-child(1) {
  transform: rotate(45deg);
}
.closeCross :nth-child(2) {
  transform: rotate(-45deg);
}

.navarrow {
  position: absolute;
  top: 40%;
  width: 2em;
  height: 2em;
  border-top: solid 2px hsla(0deg, 0%, 0%, 0.5);
  border-left: solid 2px hsla(0deg, 0%, 0%, 0.5);
}
.navarrow.prev {
  left: 1em;
  transform: rotate(-45deg);
}
.navarrow.next {
  right: 1em;
  transform: rotate(135deg);
}

.notice {
  margin-top: 5em;
  border-top: solid 1px hsl(var(--gray-530));
  padding-block: 0.5em;
  color: hsl(var(--gray-530));
  text-align: center;
}

.popup .nav-buttons {
  display: flex;
  justify-content: center;
}

#template-home .banner {
  padding: 5em 0 5vw;
  margin-top: -7em;
  position: relative;
  transition: background-color 0.5s ease;
  overflow: hidden;
}
#template-home .banner.first {
  background-color: hsl(var(--white));
}
#template-home .banner.second {
  background-color: hsl(232deg, 100%, 50%);
}
#template-home .banner.third {
  background-color: hsl(285deg, 100%, 36%);
}
#template-home .color-block {
  position: absolute;
  width: 40vw;
  height: 30rem;
  z-index: 0;
  filter: blur(50px);
  transition: all 0.5s ease-in-out;
}
#template-home #bg-color-1 {
  left: -5vw;
  top: -2rem;
  border-radius: 9rem 5em 15em 5em;
}
#template-home #bg-color-1.first {
  background-color: hsl(var(--prim-color-2));
}
#template-home #bg-color-1.second {
  background-color: hsl(var(--sec-color-2));
}
#template-home #bg-color-1.third {
  background-color: hsl(var(--third-color));
}
#template-home #bg-color-2 {
  left: 30vw;
  top: -2rem;
  border-radius: 7rem 12rem 15em 25em;
}
#template-home #bg-color-2.first {
  background-color: hsl(var(--prim-color-3));
}
#template-home #bg-color-2.second {
  background-color: hsl(var(--sec-color-3));
}
#template-home #bg-color-2.third {
  background-color: hsl(var(--third-color-3));
}
#template-home #bg-color-3 {
  right: -5vw;
  top: -2rem;
  border-radius: 20rem 15rem 10rem 25rem;
}
#template-home #bg-color-3.first {
  background-color: hsl(var(--prim-color-4));
}
#template-home #bg-color-3.second {
  background-color: hsl(var(--sec-color-3));
}
#template-home #bg-color-3.third {
  background-color: hsl(var(--third-color-3));
}
#template-home #bg-color-4 {
  left: -2rem;
  bottom: -2rem;
  border-radius: 10rem 25rem 4rem 16rem;
}
#template-home #bg-color-4.first {
  background-color: hsl(var(--prim-color-4));
}
#template-home #bg-color-4.second {
  background-color: hsl(var(--sec-color));
}
#template-home #bg-color-4.third {
  background-color: hsl(var(--third-color-2));
}
#template-home #bg-color-5 {
  left: 35vw;
  bottom: -2rem;
  border-radius: 10em 25em 22rem 6rem;
}
#template-home #bg-color-5.first {
  background-color: hsl(var(--prim-color));
}
#template-home #bg-color-5.second {
  background-color: hsl(var(--sec-color-2));
}
#template-home #bg-color-5.third {
  background-color: hsl(var(--third-color-2));
}
#template-home #bg-color-6 {
  border-radius: 15em 5em 22rem 10rem;
  right: -5vw;
  bottom: -2rem;
}
#template-home #bg-color-6.first {
  background-color: hsl(var(--prim-color-2));
}
#template-home #bg-color-6.second {
  background-color: hsl(var(--sec-color-2));
}
#template-home #bg-color-6.third {
  background-color: hsl(var(--third-color-2));
}
#template-home #bg-color-7 {
  left: 15vw;
  top: 7rem;
  border-radius: 15rem 25rem 20em 25rem;
}
#template-home #bg-color-7.first {
  background-color: hsl(var(--sec-color-3));
}
#template-home #bg-color-7.second {
  background-color: hsl(286deg, 100%, 50%);
}
#template-home #bg-color-7.third {
  background-color: hsl(var(--prim-color));
}
#template-home #bg-color-8 {
  right: 15vw;
  bottom: 7rem;
  border-radius: 30em 25em 20em 20em;
  animation: circle-left 10s linear 0s infinite alternate;
}
#template-home #bg-color-8.first {
  background-color: hsl(var(--third-color-3));
}
#template-home #bg-color-8.second {
  background-color: hsl(var(--prim-color-2));
}
#template-home #bg-color-8.third {
  background-color: hsl(256deg, 94%, 66%);
}
#template-home #card3 {
  background-color: hsl(var(--white)/0.1);
}
#template-home .cardcontainer {
  position: relative;
  flex-direction: row;
  padding: 10px;
  background-color: hsl(var(--white)/0.1);
  border: solid 1px hsl(var(--white)/0.5);
  border-radius: 1em;
  margin: 2em auto;
  width: clamp(18em, 90%, 65rem);
  height: 32rem;
  filter: drop-shadow(0px 5px 25px hsl(var(--black)/0.3));
  transition: all 0.5s ease-in-out;
}
@supports (backdrop-filter: blur(1px)) {
  #template-home .cardcontainer {
    backdrop-filter: blur(150px);
  }
}
@media only screen and (max-width:426px) {
  #template-home .cardcontainer {
    height: 100%;
  }
}
#template-home .cardcontainer .card {
  max-width: 100%;
  padding: 2em;
  height: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  color: hsl(var(--header-text-color));
  border-radius: 0.5em;
}
@supports (backdrop-filter: blur(20px)) {
  #template-home .cardcontainer .card {
    backdrop-filter: blur(20px);
    background-color: hsl(var(--white)/0.25);
  }
}
@media only screen and (max-width:426px) {
  #template-home .cardcontainer .card {
    flex-direction: column-reverse;
    padding: 250px 1em 4em;
  }
}
#template-home .cardcontainer .card .desc {
  display: flex;
  flex-direction: column;
  max-width: 55%;
}
#template-home .cardcontainer .card .desc .title {
  margin-bottom: 1em;
  opacity: 0;
  transition: all 0.5s ease-out;
}
#template-home .cardcontainer .card .desc .subtitle {
  margin-top: 1em;
  opacity: 0;
  transition: all 0.5s ease-out;
}
@media only screen and (max-width:426px) {
  #template-home .cardcontainer .card .desc {
    max-width: 90%;
  }
  #template-home .cardcontainer .card .desc h1 {
    text-align: center;
  }
}
#template-home .cardcontainer .card.active .title {
  margin-bottom: 0;
  opacity: 1;
}
#template-home .cardcontainer .card.active .subtitle {
  margin-top: 0;
  opacity: 1;
}
#template-home .cardcontainer .heroImg {
  position: absolute;
  right: 15px;
  width: 45%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width:426px) {
  #template-home .cardcontainer .heroImg {
    top: 1em;
    left: 50%;
    right: 0;
    width: 90%;
    height: 40%;
    transform: translateX(-50%);
  }
}
#template-home .navigation {
  position: absolute;
  display: flex;
  width: 100px;
  justify-content: space-between;
  bottom: 70px;
  z-index: 50;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
#template-home .navigation .navbtn {
  background-color: hsl(var(--header-text-color));
  opacity: 0.4;
  padding: 0.35em;
  border-radius: 1em;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}
#template-home .navigation .navbtn:hover {
  opacity: 0.55;
}
#template-home .navigation .navbtn .active {
  opacity: 0.75;
}
#template-home .carousel {
  position: relative;
  overflow: hidden;
}
#template-home .looperslide {
  position: relative;
  display: flex;
  width: 100vw;
  height: 3em;
  align-items: center;
}
#template-home .looperslide .genrelist {
  position: absolute;
  display: flex;
  width: max-content;
  gap: 0.2em;
}
#template-home .looperslide .genrelist .tag {
  width: max-content;
  color: hsl(var(--header-text-color));
  border-color: hsl(var(--header-text-color));
  background-color: hsl(var(--header-inv-text-color)/0.2);
  font-weight: 500;
  transition: all ease-out 0.3s;
}
#template-home .looperslide .genrelist .tag:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 3px 3px hsl(var(--header-inv-text-color)/0.25));
  cursor: pointer;
}
#template-home .navigation {
  position: absolute;
  display: flex;
  width: 120px;
  justify-content: space-between;
  bottom: 70px;
  z-index: 50;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width:426px) {
  #template-home .navigation {
    bottom: 2.25em;
  }
}
#template-home .navbtn {
  background-color: var(--black);
  opacity: 0.4;
  padding: 0.5em;
  border-radius: 1em;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}
#template-home .navbtn:hover {
  opacity: 0.55;
}
#template-home .navbtn.active {
  opacity: 0.75;
}
#template-home .customerCTA {
  position: absolute;
  width: 100%;
  margin-top: -5%;
  overflow: hidden;
  height: max(300px, 65vw);
}
#template-home .customerCTA .selectService {
  position: absolute;
  z-index: 10;
  width: clamp(280px, 75%, 36em);
  right: 0;
  padding: 0;
  margin-right: clamp(2em, 5vw, 7em);
  top: 7vw;
}
@media only screen and (max-width:426px) {
  #template-home .customerCTA .selectService {
    width: 100%;
    right: unset;
    padding: min(2em, 5vw);
  }
}
#template-home .customerCTA .selectService input,
#template-home .customerCTA .selectService .button {
  font-size: 18px;
  padding: 0.5em;
  border-radius: 0.25em;
  margin-top: 0.75em;
}
#template-home .customerCTA .selectService input[type=text] {
  border: solid 1px hsl(var(--gray-200));
  width: 100%;
}
#template-home .customerCTA .selectService .flexcol {
  flex: 1;
}
@media only screen and (max-width:426px) {
  #template-home .customerCTA .selectService #submitCCTA {
    display: none;
  }
}
#template-home .customerCTA .g {
  filter: drop-shadow(-7px -5px 5px hsl(var(--black)/0.03));
}
#template-home #selectCCTAautocomplete-list {
  background-color: hsl(var(--white)/0.75);
  font-size: 18px;
  border: 1px solid #fff;
  border-top: none;
  border-radius: 0 0 0.5em 0.5em;
  filter: drop-shadow(0 5px 5px hsl(var(--black)/0.1));
}
@supports (backdrop-filter: blur(25px)) {
  #template-home #selectCCTAautocomplete-list {
    background-color: hsl(var(--white)/0.5);
    backdrop-filter: blur(10px);
  }
}
#template-home #selectCCTAautocomplete-list div {
  padding: 0.5em;
  cursor: pointer;
}
#template-home #selectCCTAautocomplete-list div:hover {
  background-color: hsl(var(--white));
}
#template-home .paperFold {
  position: absolute;
  width: clamp(1500px, 200vw, 3000px);
  right: clamp(-200px, -50%, 0px);
  filter: drop-shadow(3px 12px 7px hsl(var(--black)/0.075));
}
#template-home .portfolio {
  background-size: 100%;
  background-repeat: repeat-y;
  background-position-x: center;
  background-attachment: fixed;
  height: 600px;
}
@media only screen and (min-width:769px) {
  #template-home .portfolio {
    height: 900px;
  }
}
#template-home .createaccount {
  display: flex;
  flex-direction: column;
}
#template-home .createaccount .container {
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
}
#template-home .createaccount .container .desc {
  width: 60%;
}
#template-home .createaccount .container .img {
  width: 40%;
}
#template-home .createaccount .container img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width:426px) {
  #template-home .createaccount .container {
    flex-direction: column;
  }
}
@media only screen and (max-width:426px) {
  #template-home #createCustomer .container {
    flex-direction: column-reverse;
  }
}
#template-home .thumb {
  transform: scale(1.25);
}
@media only screen and (max-width:426px) {
  #template-home .thumb {
    transform: scale(2);
    padding-block: 2em;
  }
}
#template-home .postlist {
  position: relative;
  height: auto;
  overflow: hidden;
}
#template-home .postlist .prev,
#template-home .postlist .next {
  display: none;
  font-size: 2em;
  position: absolute;
  width: 2em;
  padding: 3em 0em;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  cursor: pointer;
}
#template-home .postlist .prev:hover,
#template-home .postlist .next:hover {
  opacity: 1;
  font-size: 2.1em;
  transition: all 0.1s ease-out;
}
@media only screen and (max-width:426px) {
  #template-home .postlist .prev,
#template-home .postlist .next {
    display: block;
  }
}
#template-home .postlist .prev {
  left: 0;
  text-align: left;
}
#template-home .postlist .next {
  right: 0;
  text-align: right;
}
#template-home .postlist .grid {
  grid-template-columns: repeat(2, 1fr);
  margin-left: 0;
  transition: all 0.3s ease-out;
}
@media only screen and (min-width:1024px) {
  #template-home .postlist .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width:426px) {
  #template-home .postlist .grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }
}
#template-home .postcard {
  width: 100%;
  padding: 1em;
}
@media only screen and (max-width:426px) {
  #template-home .postcard {
    padding: 0 2em;
    width: 90vw;
  }
}
@media only screen and (min-width:1024px) {
  #template-home .postcard {
    padding: 0.5em;
  }
}
#template-home .postcard img {
  max-width: calc(100vw - 6em);
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-block: 0.5em;
}

header {
  display: flex;
  position: relative;
  z-index: 1000;
}
header.onfocus {
  background-color: hsla(0deg, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
}

#logohead {
  width: 14rem;
  position: relative;
  z-index: 999;
  top: 10px;
  left: 10px;
}
#logohead svg * {
  fill: hsl(var(--header-text-color));
}

.headerIcon {
  fill: hsl(var(--header-text-color));
}

.hamburger {
  position: absolute;
  z-index: 1000;
  right: 20px;
  top: 20px;
  width: 2em;
  height: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media only screen and (min-width:769px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  background: hsl(var(--header-text-color));
  height: 0.2em;
  width: 100%;
  border-radius: 0.1em;
}
.hamburger #MenuBar1 {
  width: 50%;
  align-self: flex-start;
  transform-origin: left top;
}
.hamburger #MenuBar3 {
  width: 50%;
  align-self: flex-end;
  transform-origin: right bottom;
}
.hamburger.open #MenuBar1 {
  transform: rotate(0);
}
.hamburger.open #MenuBar2 {
  transform: rotate(0);
}
.hamburger.open #MenuBar3 {
  transform: rotate(0);
}
.hamburger.close #MenuBar1 {
  transform: translate(0.25em, 0.25em) rotate(45deg);
  transform-origin: 0.1em;
}
.hamburger.close #MenuBar2 {
  transform: rotate(-45deg);
}
.hamburger.close #MenuBar3 {
  transform: translate(-0.25em, -0.25em) rotate(45deg);
  transform-origin: 0.9em;
}

.hamburger * {
  transition: var(--transition);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  right: 0;
  z-index: 1000;
  width: calc(100% - 14rem);
  font-weight: 500;
}
@media only screen and (min-width:769px) {
  header nav {
    transform: translateX(0) !important;
  }
}
@media only screen and (max-width:770px) {
  header nav {
    width: 70vw;
    position: fixed;
    top: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transform: translateX(100%);
    height: 100%;
    background-color: hsl(var(--header-inv-text-color)/0.9);
    box-shadow: -4px 0 15px hsl(var(--black)/0.1);
    transition: var(--transition);
    flex-direction: column;
    justify-content: flex-start;
  }
  header nav .submenu {
    border: none !important;
  }
  header nav .submenu.collapsed {
    opacity: 1;
    max-height: max-content !important;
  }
  @supports (backdrop-filter: blur(1rem)) {
    header nav {
      background-color: hsl(var(--header-inv-text-color)/0.5);
      backdrop-filter: blur(1rem);
    }
  }
}
header nav * {
  cursor: pointer;
}
header nav a {
  font-weight: 600;
  color: hsl(var(--header-text-color));
}
header nav ul {
  list-style: none;
  padding: 1em;
  gap: 1em;
  display: flex;
}
@media only screen and (max-width:770px) {
  header nav ul {
    flex-direction: column;
    padding: 3em 1em;
  }
}
header nav #userbar .loginbar {
  flex-direction: row;
}
header nav #userbar .loginbar .userIcons {
  display: flex;
  gap: 1em;
}
@media only screen and (max-width:426px) {
  header nav #userbar .loginbar {
    flex-direction: column-reverse;
  }
}
header nav .submenu {
  position: absolute;
  flex-direction: column;
  background: linear-gradient(180deg, hsl(var(--header-inv-text-color))/0.5, hsl(var(--header-inv-text-color)/0.75));
  margin-right: 2em;
  filter: drop-shadow(0 5px 5px hsl(var(--header-inv-text-color)/0.1)), saturate(150%);
  border-radius: 0 0 0.5em 0.5em;
  border: solid 1px hsl(var(--header-text-color)/0.5);
  border-top: none;
  transition: height 0.2s ease-out;
}
header nav .submenu a:last-child li {
  border-radius: 0 0 0.5em 0.5em;
}
@supports (backdrop-filter: blur(20px)) {
  header nav .submenu {
    backdrop-filter: blur(20px);
    background: linear-gradient(180deg, transparent, hsl(var(--header-inv-text-color)/0.25) 50%, hsl(var(--header-inv-text-color)/0.5) 80%, hsl(var(--header-inv-text-color)/0.75));
  }
}
@media only screen and (max-width:770px) {
  header nav .submenu {
    position: static;
    display: flex !important;
    background: none;
    filter: none;
    backdrop-filter: unset;
    background: unset;
  }
}
header nav .submenu li:hover {
  background-color: hsl(var(--header-inv-text-color)/0.75);
}
@media only screen and (max-width:770px) {
  header nav .submenu li:hover {
    background-color: transparent;
    filter: none;
  }
}

#userIDname {
  padding: 0.5em;
  color: hsl(var(--header-text-color));
}
@media only screen and (max-width:770px) {
  #userIDname {
    margin-right: -4em;
  }
}

#logohead,
nav {
  padding: 1em;
}

.whiteBG {
  background-color: hsl(var(--white));
}

.lightBG {
  background-color: hsl(var(--bg-lighter));
}

footer {
  position: relative;
  background-color: hsl(var(--gray-200));
  padding: 2em;
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width:426px) {
  footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width:769px) {
  footer {
    padding: 3em;
  }
}
footer * {
  color: hsl(0deg, 0%, 100%);
  fill: hsl(0deg, 0%, 100%);
}
footer .logo svg {
  max-width: 300px;
}
footer .options {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
@media only screen and (max-width:426px) {
  footer .options {
    grid-column: 1/span 2;
  }
}
footer .sociallink {
  display: flex;
  gap: 0.75em;
  transition: all 0.3 ease-out;
}
footer .sociallink svg {
  transform: scale(1.2);
}
footer .sociallink a:hover {
  opacity: 0.75;
}
footer ul {
  list-style: none;
}
footer li {
  margin: 0.75em;
}
footer select {
  width: max-content;
  font-size: 1.3em;
  background: none;
  border: 1px solid hsl(var(--white));
  border-radius: 0.25em;
  padding: 0.25em;
}
footer option {
  color: #000;
}

footer.simple {
  display: block;
  background-color: hsl(var(--gray-530));
  padding: 0 3em;
}
footer.simple .container {
  height: 6em;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width:426px) {
  footer.simple .container {
    flex-direction: column;
    justify-content: center;
  }
  footer.simple .container .sitelinks {
    text-align: center;
  }
}

.mainLikeCont {
  margin-inline: auto;
  width: min(90%, 60rem);
}
.mainLikeCont .button {
  margin: 0.5em 0 -2em auto;
}
@media only screen and (max-width:426px) {
  .mainLikeCont .button {
    margin: 1em auto;
  }
}
.mainLikeCont .col-1,
.mainLikeCont .col-2 {
  gap: 0.5em;
}
.mainLikeCont .col-2 {
  align-items: end;
}

.masthead {
  padding-top: 4em;
  display: flex;
  margin: 1em auto 0;
  width: min(90%, 60rem);
}
.masthead.singlepost {
  justify-content: space-between;
  margin-bottom: 1em;
}
.masthead .titlebar {
  gap: 1em;
  align-items: center;
}
.masthead .titlebar h1 {
  font-weight: 400;
}
@media only screen and (max-width:426px) {
  .masthead .titlebar {
    flex-direction: column-reverse;
  }
}
.masthead .balance {
  text-align: right;
  align-self: flex-end;
}
.masthead .balance .input {
  background-color: hsl(var(--white));
  width: clamp(7em, 20vw, 10rem);
  padding: 0.25em 0.75em;
  margin-block: 0.2em;
  border: 1px solid hsl(var(--gray-200));
  border-radius: 0.5em;
}

.creaationdetails,
.creaationdetails .flexcol {
  align-items: end;
}

.coverpost {
  width: min(90%, 60rem);
  display: block;
  margin-inline: auto;
  max-height: 18em;
  object-fit: cover;
}

main {
  background-color: hsl(var(--bg-lighter));
  padding: 1em;
  padding-bottom: 5em;
  margin: 1em auto 0;
  min-height: 100vh;
  width: min(90%, 60rem);
  position: relative;
}
main.singlepost {
  margin-top: 0;
  padding: 3em 7em 5em;
}
@media only screen and (max-width:770px) {
  main.singlepost {
    padding-inline: 5%;
  }
}
main.singlepost p:first-child::first-letter {
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1;
  float: left;
  text-transform: uppercase;
  padding-right: 9px;
}
@media only screen and (max-width:770px) {
  main {
    min-height: auto;
  }
}
main.topless {
  margin-top: 7em;
}
main.aside-left {
  margin-inline: auto 0;
}
main section {
  padding: 1em 0;
}
main section h2 {
  border-bottom: 1px solid hsl(var(--gray-530));
  cursor: pointer;
}
main section h4 {
  margin-bottom: 0.25em;
}
main section .triangle {
  transform: rotateZ(135deg);
  float: right;
  margin-top: -1.5em;
  cursor: pointer;
  transition: transform 0.3s ease-out;
}
main .submenu {
  max-height: 1500px;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media only screen and (max-width:770px) {
  main .submenu {
    max-height: 3000px;
  }
}
@media only screen and (max-width:426px) {
  main .submenu {
    max-height: 5000px;
  }
}
main .submenu .shaded {
  padding: 0.5em 1em;
  margin-top: 1.5em;
  background-color: hsl(var(--bg-light-0));
  border-left: 5px solid hsl(var(--gray-530));
  position: relative;
  cursor: pointer;
}
main .submenu .shaded span {
  font-weight: 400;
  font-size: 36px;
  padding-inline: 0;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  transition: padding-inline 0.3s ease-out, opacity 0.3s ease-in-out;
}
main .submenu .shaded:hover > span {
  padding-inline: 0.5em;
  opacity: 1;
}
main .submenu.flex {
  flex-direction: column;
}
@media only screen and (min-width:769px) {
  main .submenu.flex {
    flex-direction: row;
  }
  main .submenu.flex .subsection {
    width: 50%;
  }
}
main .submenu.grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em 1em;
}
@media only screen and (max-width:770px) {
  main .submenu.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 26em) {
  main .submenu.grid {
    grid-template-columns: 1fr;
  }
}
main .subsection {
  padding: 0.5em 1em;
}
main .subsection.fixed {
  height: 13em;
  overflow-y: auto;
}
main .subsection ul {
  list-style: none;
}
main .subsection ul li {
  padding: 0;
  margin-bottom: 0.5em;
}
main .subsection ul li:hover {
  background-color: transparent;
  transition: background-color 0.3s ease-out;
}
main .subsection .comments .postTitle {
  color: hsl(var(--gray-530));
}
main .subsection .comments li {
  display: grid;
  grid-template-columns: 2em 1fr;
  align-items: center;
  gap: 0.5em;
  margin-block: 0.5em;
}
main .subsection .comments li img {
  width: 1.8em;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0.9em;
}
main .plus {
  aspect-ratio: 1/1;
  min-height: 10em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease-out, background-color 0.1s ease-out;
}
main .plus:hover {
  transform: scale(1.02);
  background-color: hsl(var(--white));
}
main .plus span {
  font-size: 5em;
  font-weight: 200;
}
main .card {
  transition: transform 0.2s ease-out;
}
main .card img {
  aspect-ratio: 1/1;
  min-width: 10em;
  object-fit: cover;
  margin-bottom: 0.25em;
  border-radius: 0.5em;
}
main .card:hover {
  transform: scale(1.02);
}
main .card.template {
  position: relative;
  cursor: pointer;
}
main .card.template::before {
  content: "+";
  font-size: 7em;
  font-weight: 100;
  width: 100%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background-color: hsl(var(--white)/0.9);
  transition: opacity 0.3s ease-out;
}
@supports (backdrop-filter: blur(20px)) {
  main .card.template::before {
    backdrop-filter: blur(20px);
    background-color: hsl(var(--white)/0.5);
  }
}
main .card.template:hover::before {
  opacity: 1;
}
main .card .details {
  margin-bottom: 0.5em;
}

.tabsbar {
  display: flex;
  margin-bottom: -1em;
}
.tabsbar .tab {
  font-weight: 700;
  padding: 0.75em 1em;
  background-color: hsl(0deg, 0%, 80%);
  border-radius: 0.5em 0.5em 0 0;
  text-align: center;
  cursor: pointer;
  transition: border 0.2s ease-in;
  border: solid 1px transparent;
}
.tabsbar .tab:hover {
  border: solid 1px hsl(var(--white));
  border-bottom: solid 1px hsl(var(--bg-lighter));
}
.tabsbar .tab:nth-child(0n+2) {
  background-color: hsla(0deg, 0%, 80%, 0.7);
}
.tabsbar .tab.active {
  background-color: hsl(var(--bg-lighter));
}

.productsection {
  margin-top: 1em;
}
.productsection.grid {
  grid-template-columns: 30% 1fr;
  row-gap: 0.5em;
  column-gap: 1em;
  align-items: center;
}
.productsection.grid.even {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width:426px) {
  .productsection.grid {
    grid-template-columns: 1fr;
  }
}
.productsection.grid .colors {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.productsection.grid .color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
}
.productsection.grid .color-item svg,
.productsection.grid .color-item img {
  width: 5em;
}
.productsection .feature {
  margin-block: 0.5em;
}
.productsection .feature label {
  display: block;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  color: hsl(var(--gray-530)/0.75);
  cursor: help;
}
.productsection .feature label:hover {
  color: hsl(var(--gray-530));
}
.productsection .feature .submenu {
  position: absolute;
  z-index: 99;
  width: calc(100% - 2em);
  padding: 1em;
  border-radius: 0.5em;
  background-color: hsla(0deg, 0%, 100%, 0.95);
  filter: drop-shadow(0 5px 7px hsla(0deg, 0%, 0%, 0.15));
  margin-top: 0;
}
@supports (backdrop-filter: blur(20px)) {
  .productsection .feature .submenu {
    background-color: hsla(0deg, 0%, 100%, 0.75);
    backdrop-filter: blur(20px);
  }
}

.productsection.flexcol .colors.grid {
  padding: 2em;
  gap: 1em;
  grid-template-columns: repeat(6, 1fr);
}
@media only screen and (max-width:770px) {
  .productsection.flexcol .colors.grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 1em;
  }
}
@media only screen and (max-width:426px) {
  .productsection.flexcol .colors.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.productsection.flexcol .colors.grid .color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding: 1em;
  cursor: pointer;
  border-color: hsl(0deg, 0%, 100%);
  transition: all 0.2s ease-out;
}
.productsection.flexcol .colors.grid .color-item svg,
.productsection.flexcol .colors.grid .color-item img {
  filter: drop-shadow(0 3px 3px hsla(0deg, 0%, 0%, 0.1));
}
.productsection.flexcol .colors.grid .color-item.selected {
  border-radius: 1em;
  filter: drop-shadow(0 5px 2px hsla(0deg, 0%, 0%, 0.15));
  border: solid 5px hsl(0deg, 0%, 100%);
  background-color: hsla(0deg, 0%, 100%, 0.5);
}

.status .type {
  font-weight: 800;
  padding: 0.2em 0.4em;
  border: 3px solid;
}
.status .type.bronze {
  color: hsl(var(--bronze));
  border-color: hsl(var(--bronze));
}
.status .type.silver {
  color: hsl(var(--silver));
  border-color: hsl(0deg, 0%, 75%);
}
.status .type.gold {
  color: hsl(var(--gold));
  border-color: hsl(49deg, 100%, 50%);
}
.status .type.normal {
  color: hsl(var(--normal));
  border-color: hsl(var(--normal));
}
.status .type.fast {
  color: hsl(var(--fast));
  border-color: hsl(var(--fast));
}
.status .type.urgent {
  color: hsl(var(--urgent));
  border-color: hsl(var(--urgent));
}

.updates .sidebar {
  background-image: linear-gradient(180deg, hsl(0deg, 0%, 100%), hsla(0deg, 0%, 100%, 0));
  margin: -1em 0 0 -1em;
  padding: 1em;
  gap: 1em;
  border-right: solid 1px #ccc;
}
@media only screen and (max-width:770px) {
  .updates .sidebar {
    border-right: none;
    border-bottom: solid 1px #ccc;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3em;
  }
}
@media only screen and (max-width:770px) {
  .updates {
    flex-direction: column;
  }
}

.rating {
  flex-direction: row-reverse;
  gap: 0.25em;
}

.star {
  width: 1.5em;
  height: 1.5em;
  background-color: #ccc;
  clip-path: path("M16.67,9.31,24,11.18a1.36,1.36,0,0,1,0,2.64l-7.31,1.87a1.35,1.35,0,0,0-1,1L13.82,24a1.36,1.36,0,0,1-2.64,0L9.31,16.67a1.35,1.35,0,0,0-1-1L1,13.82a1.36,1.36,0,0,1,0-2.64L8.33,9.31a1.35,1.35,0,0,0,1-1L11.18,1a1.36,1.36,0,0,1,2.64,0l1.87,7.31A1.35,1.35,0,0,0,16.67,9.31Z");
}

.clickable,
.editable * {
  cursor: pointer;
}

.editable :nth-child(1n):hover,
.editable :nth-child(1n):hover ~ :nth-child(1n+1) {
  background-color: hsl(var(--prim-color-3));
}

.submission a {
  cursor: zoom-in;
}

.submissionstat {
  position: relative;
}

.rate {
  width: 100%;
  height: 100%;
  opacity: 0;
}

#norate {
  display: none;
}

.rated,
.rated ~ :nth-child(1n) {
  background-color: hsl(var(--prim-color));
}

.cancelRating {
  width: 100%;
  cursor: pointer;
}

.comments-section {
  width: 100%;
  padding-inline: 2em 1em;
}
@media only screen and (max-width:770px) {
  .comments-section {
    padding-inline: 0;
  }
}
.comments-section ul {
  list-style: none;
}
.comments-section .grid {
  grid-template-columns: 30% 1fr;
  gap: 1em;
}
@media only screen and (max-width:426px) {
  .comments-section .grid {
    grid-template-columns: 1fr;
  }
}
.comments-section .comment-content p {
  padding-bottom: 0.5em;
  border-bottom: 1px solid hsl(var(--gray-530)/0.5);
  margin-bottom: 0.5em;
}
.comments-section .comment-content .features {
  color: hsl(var(--gray-530));
}
.comments-section .comment-content svg {
  width: 1.5em;
}

.comment-form {
  margin-block: 1em;
  padding: 1em;
}
.comment-form textarea {
  font-size: 1rem;
  padding: 0.5em 0.75em;
  border: 1px solid hsl(var(--gray-530));
  border-radius: 0.5em;
  height: 6em;
}
.comment-form input[type=submit] {
  margin: 1em 0 1em auto;
}

.comment .avatar {
  width: 1.75em;
  aspect-ratio: 1/1;
  border-radius: 1em;
  margin-block: 0.5em;
}

.comment-list li {
  padding: 1em;
}
.comment-list li:nth-child(2n+0) {
  background: hsla(0deg, 0%, 100%, 0.75);
}
.comment-list .children {
  border-left: solid 1px #ccc;
  background: linear-gradient(180deg, hsla(0deg, 0%, 0%, 0.03), hsla(0deg, 0%, 0%, 0));
  margin: 1em 0 0 1em;
}

#reply-title {
  display: flex;
  margin-bottom: -1em;
  margin-top: 1em;
  font-size: 1em;
  font-weight: 700;
}
#reply-title a {
  margin-left: 0.25em;
}
#reply-title small {
  flex: 1;
  text-align: right;
}
#reply-title small #cancel-comment-reply-link {
  color: hsl(var(--danger));
}

.popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  padding: 2em;
  z-index: 9999;
  width: min(90%, 1000px);
  border: solid 2px hsl(0deg, 0%, 100%);
  box-shadow: 5px 10px 70px hsla(0deg, 0%, 0%, 0.3);
  backdrop-filter: blur(20px);
  background: hsla(0deg, 0%, 100%, 0.9);
  text-align: center;
  border-radius: 1.5em;
  animation: popup 0.3s ease;
}
@supports (backdrop-filter: blur(20px)) {
  .popup {
    backdrop-filter: blur(20px);
    background: hsla(0deg, 0%, 100%, 0.75);
  }
}
@media only screen and (max-width:426px) {
  .popup {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    overflow-y: scroll;
    padding: 3em 1em 2em;
  }
}
.popup .subtitle {
  font-size: 1.2em;
  margin-block-end: 0.5em;
}
.popup .frame {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.popup .frame::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width:770px) {
  .popup .frame:nth-child(2) .genreblock {
    min-width: 1000px;
  }
}
@media only screen and (max-width:770px) {
  .popup .frame:nth-child(4) .genreblock {
    min-width: 350px;
  }
}
@media only screen and (max-width:770px) {
  .popup .frame:nth-child(6) .genreblock, .popup .frame:nth-child(8) .genreblock {
    min-width: 550px;
  }
}
.popup .genreblock {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  flex-wrap: wrap;
  margin-block: 1em;
}
@media only screen and (max-width:426px) {
  .popup .genreblock {
    justify-content: left;
  }
}
.popup .genreblock .tag {
  width: max-content;
  margin: 0;
}
.popup .genreblock .tag:hover {
  background-color: hsl(0deg, 0%, 100%);
  transform: scale(1.025);
  transition: transform 0.2s ease-in;
}
.popup .butoutline {
  margin: 1em auto;
}

.popup.temp-modif h4 {
  margin-top: 0.75em;
  text-align: left;
}

@keyframes popup {
  0% {
    transform: translateY(-50%) scale(0);
  }
  80% {
    transform: translateY(-50%) scale(1.05);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}
#typeselection {
  display: flex;
  gap: 2em;
  height: 500px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:426px) {
  #typeselection {
    flex-direction: column;
    height: auto;
  }
  #typeselection svg {
    width: 7em;
    height: auto !important;
  }
}
#typeselection .type {
  flex: 1;
}
#typeselection .type svg {
  height: min(12em, 30vw);
  margin-block: 1em;
}
#typeselection .type,
#typeselection .typehelp {
  max-width: 50%;
}
@media only screen and (max-width:770px) {
  #typeselection .type,
#typeselection .typehelp {
    max-width: 70%;
  }
}
#typeselection .type .button,
#typeselection .typehelp .button {
  margin: 2em auto;
}
#typeselection .typehelp {
  text-align: left;
}
@media only screen and (max-width:770px) {
  #typeselection .typehelp .content {
    max-height: 24em;
    overflow-y: scroll;
  }
}
#typeselection .typehelp h2,
#typeselection .typehelp h3,
#typeselection .typehelp p,
#typeselection .typehelp ul {
  margin-block: 0.5em;
}
#typeselection .typehelp h2 {
  text-align: center;
}
#typeselection .typehelp ul {
  margin-inline-start: 2em;
}
#typeselection .typeselect {
  cursor: pointer;
  transition: transform 0.2s ease-out;
}
#typeselection .typeselect:hover {
  transform: scale(1.025);
}

#subcontesttypes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin-block: 1em;
}
@media only screen and (max-width:426px) {
  #subcontesttypes {
    gap: 1em;
    grid-template-columns: auto;
    padding-inline: 2em;
  }
}
#subcontesttypes .subtype {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em 1em 3em;
  cursor: pointer;
  border-radius: 1em;
  background-image: linear-gradient(180deg, hsl(var(--bg-lighter)), hsl(var(--white)/0));
  backdrop-filter: blur(0px);
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-in-out;
}
@media only screen and (max-width:426px) {
  #subcontesttypes .subtype {
    height: 400px;
  }
}
#subcontesttypes .subtype:hover {
  box-shadow: 0px 5px 5px hsla(0deg, 0%, 0%, 0.1);
  transform: scale(1.025);
}
#subcontesttypes .subtype h2 {
  margin-block: 0.5em;
}
#subcontesttypes .subtype img {
  width: 5em;
}
#subcontesttypes .subtype p {
  margin-block: 0.25em 0.5em;
}
#subcontesttypes .subtype .price {
  font-size: 1.5em;
  font-weight: 700;
  margin-top: auto;
}

#previous {
  position: absolute;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%);
}

form .productsection.tri {
  grid-template-columns: 50% 1fr 1fr;
  gap: 0.5em;
}
@media only screen and (max-width:426px) {
  form .productsection.tri {
    grid-template-columns: 70% 1fr;
  }
}
form .productsection.indent textarea {
  max-width: 500px;
}
form .pricetag {
  margin-inline: auto 1em;
}
form .pricetag p {
  color: hsl(var(--gray-530));
  font-weight: 600;
  font-size: 1.1em;
}
form .submit input[type=submit] {
  margin-inline: auto;
}
form .submit .danger {
  margin: 2em;
  margin-left: auto;
}
@media only screen and (max-width:426px) {
  form .submit .danger {
    float: none;
    margin: 2em auto;
  }
}
form .subsection label {
  margin-inline: 1em;
}
form .subsection.flex-flex {
  gap: 0.5em;
}
form .subsection.flex-flex .radiocheck {
  font-size: 14px;
  margin-left: auto;
}

.projectlist .projectItem {
  padding-block: 0.5em;
}
.projectlist .projectItem:not(:last-child) {
  border-bottom: solid 1px #ccc;
}
.projectlist .projectItem:hover {
  background-image: linear-gradient(90deg, transparent, hsla(0deg, 0%, 100%, 0.5), transparent);
}
.projectlist .project-item.grid {
  position: relative;
  grid-template-columns: 1fr 80%;
  column-gap: 1em;
  padding-block: 1em;
}
@media only screen and (max-width:770px) {
  .projectlist .project-item.grid {
    grid-template-columns: 1fr 60%;
    gap: 1em 2em;
    padding-block: 2em;
  }
}
@media only screen and (max-width:426px) {
  .projectlist .project-item.grid {
    grid-template-columns: 1fr;
  }
}
.projectlist .project-item.grid .project-details {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 1em;
}
@media only screen and (max-width:426px) {
  .projectlist .project-item.grid .project-details {
    grid-template-columns: 1fr;
  }
}
.projectlist .project-item.grid .project-desc,
.projectlist .project-item.grid .project-stat {
  padding-inline: 1em;
}
.projectlist .project-item.grid .project-stat {
  width: 100%;
}
.projectlist .project-item.grid .notifyme {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
.projectlist .flexcol {
  gap: 0.5em;
}
.projectlist img {
  object-fit: cover;
  aspect-ratio: 1/1;
  border: solid 2px hsl(var(--gray-200));
  border-radius: 5px;
}
.projectlist img.bronze {
  border-color: hsl(var(--bronze));
}
.projectlist img.silver {
  border-color: hsl(var(--silver));
}
.projectlist img.gold {
  border-color: hsl(var(--gold));
}
.projectlist img.normal {
  border-color: hsl(var(--normal));
}
.projectlist img.fast {
  border-color: hsl(var(--fast));
}
.projectlist img.urgent {
  border-color: hsl(var(--urgent));
}
.projectlist .price {
  font-size: 1.5em;
  font-weight: 700;
}
.projectlist .price.bronze {
  color: hsl(var(--bronze));
}
.projectlist .price.silver {
  color: hsl(var(--gray-530));
}
.projectlist .price.gold {
  color: hsl(var(--gold));
}
.projectlist .price.normal {
  color: hsl(var(--normal));
}
.projectlist .price.fast {
  color: hsl(var(--fast));
}
.projectlist .price.urgent {
  color: hsl(var(--urgent));
}

@media only screen and (max-width:770px) {
  #newsubmission {
    width: 100vw;
    height: 100vh;
  }
}
@media only screen and (max-width:426px) {
  #newsubmission .uploadside,
#newsubmission .explanationside,
#newsubmission .detailside {
    width: 100% !important;
  }
}
#newsubmission form {
  justify-content: space-between;
}
#newsubmission h3,
#newsubmission h4 {
  text-align: left;
  margin-block: 0.3em 0.2em;
}
#newsubmission h4 {
  font-size: 16px;
  font-weight: 300;
}
#newsubmission p {
  text-align: left;
  padding: 0 1em;
  margin-bottom: 0.2em;
}
#newsubmission ul {
  text-align: left;
  padding-inline-start: 0.5em;
  font-size: 14px;
}
#newsubmission textarea {
  font-size: 18px;
  width: 100%;
  height: 4em;
  border: solid 1px #555;
  border-radius: 0.5em;
  padding: 0.25em 0.5em;
}
#newsubmission .checksection {
  justify-content: flex-start;
  gap: 1.5em;
}
#newsubmission .checking {
  font-size: 13px;
  margin-left: 2em;
}
#newsubmission .checking .checkmark {
  border: solid 1px #333;
}
#newsubmission .title {
  margin-bottom: 0.5em;
}
#newsubmission .title h1 {
  margin-bottom: 0;
}
#newsubmission .uploadside {
  width: 50%;
}
#newsubmission .explanationside,
#newsubmission .detailside {
  width: 45%;
}
#newsubmission input.error {
  border: solid 2px #f00;
  animation: wrong 0.5s linear forwards;
  -webkit-animation: wrong 0.5s linear forwards;
}
#newsubmission label[for=accept].error {
  color: #a00;
  animation: wrong 0.5s linear forwards;
  -webkit-animation: wrong 0.5s linear forwards;
}
#newsubmission #showexplan {
  position: absolute;
  bottom: 0.5em;
  right: 0.75em;
}

#dropzone {
  background-color: #777;
  color: #fff;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.5em;
  cursor: pointer;
  position: relative;
  background-position: center;
  background-size: cover;
  margin-bottom: 0.5em;
}
@media only screen and (max-width:426px) {
  #dropzone {
    max-width: 370px;
    margin-inline: auto;
  }
}
#dropzone.active {
  background-color: #08f;
  border: solid 1px #777;
}
#dropzone.fileOn {
  background-color: #000 !important;
}
#dropzone:hover {
  background-color: #999;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
#dropzone:hover > .dashicons-upload::before {
  opacity: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#dropzone p {
  text-align: center;
}
#dropzone .fileThumb {
  width: 100%;
  height: 100%;
  display: none;
}
#dropzone .uploaddesc,
#dropzone .uploaddesc h3 {
  text-align: center !important;
}
#dropzone .dashicons-upload {
  width: 100px;
  height: 100px;
}
#dropzone .dashicons-upload::before {
  font-size: 50px;
  font-weight: 200;
  position: relative;
  top: 25%;
  opacity: 0.75;
}
#dropzone .thumb {
  width: 100%;
  height: 100% !important;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#dropzone.error {
  box-shadow: inset 0 0 10px 0 rgba(255, 0, 0, 0.5);
  animation: wrong 0.5s linear forwards;
}

.envelope {
  padding: 2em 1em;
  width: min(90%, 70rem);
  display: flex;
  gap: 2em;
  margin-inline: auto;
  min-height: 90vh;
}
@media only screen and (max-width:770px) {
  .envelope {
    flex-direction: column;
    padding-inline: 0;
  }
  .envelope .preview,
.envelope .description {
    width: 100% !important;
  }
}
.envelope .preview {
  width: 60%;
  z-index: 1;
}
.envelope .preview img {
  margin-block: 1em;
}
.envelope .description {
  width: 40%;
}
.envelope .description .glass {
  padding: 2em;
  height: max-content;
  border: solid 1px hsl(var(--white));
}
.envelope .subdesc {
  display: flex;
}
.envelope h3 {
  margin-block: 0.5em 0.2em;
}
.envelope p {
  margin-block: 0.1em 0.25em;
}

.userhead {
  position: relative;
  margin-bottom: 5em;
}
.userhead svg {
  width: 1.5em;
  height: 1.5em;
  background-color: #fff;
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease-in;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

#userbanner {
  position: relative;
  width: 100%;
  height: 12em;
  background-size: cover;
  background-color: hsl(var(--gray-530));
}
#userbanner:hover > .edit-icon svg {
  opacity: 1;
}

#userprofile {
  position: absolute;
  width: 6em;
  height: 6em;
  background-color: hsla(0deg, 0%, 100%, 0.75);
  border: solid 1px #fff;
  border-radius: 3em;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  filter: drop-shadow(0 3px 5px hsla(0deg, 0%, 0%, 0.25));
}
@supports (backdrop-filter: blur(20px)) {
  #userprofile {
    backdrop-filter: blur(20px);
    background-color: transparent;
  }
}
#userprofile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3em;
}
#userprofile svg {
  border-radius: 0.75em;
}
#userprofile:hover > .edit-icon svg {
  opacity: 1;
}

#upload-media #dropzone.square {
  max-width: 600px;
}
#upload-media #dropzone.rectangle {
  aspect-ratio: 2.5/1;
}
@media only screen and (max-width:426px) {
  #upload-media {
    width: 100% !important;
  }
}

.tab.settings {
  margin-left: auto;
}

#overview .button.accent {
  margin-inline: auto 1em;
}
@media only screen and (max-width:426px) {
  #overview .button.accent {
    margin-inline: auto;
  }
}

#infos .snapshot {
  justify-content: center;
  margin-block: 1.5em;
}
#infos .snapshot .insight {
  padding: 1em;
  display: grid;
  grid-auto-columns: auto auto;
  justify-content: center;
  text-align: center;
}
#infos .snapshot .insight h1 {
  font-size: 2.5em;
  font-weight: 700;
}
#infos .snapshot .insight:not(:last-child) {
  border-right: 1px solid hsl(var(--gray-530));
}

#infos,
#settings {
  max-width: 40em;
  margin-inline: auto;
}
#infos h2,
#settings h2 {
  border-bottom: 1px solid hsl(var(--gray-530));
}
#infos label,
#infos b,
#infos p,
#settings label,
#settings b,
#settings p {
  margin-block: 0.5em;
}
#infos .infosection,
#settings .infosection {
  margin-block: 1em 2.4em;
}
#infos .infosection.grid,
#settings .infosection.grid {
  grid-template-columns: 30% 1fr;
  column-gap: 1em;
}

#PortfolioSelection .card.submission {
  position: relative;
  border: solid 0 transparent;
  background-color: transparent;
  transition: border 0.2s ease-in, transform 0.2s ease-in, background-color 0.2s ease-in;
}
#PortfolioSelection .card.submission.selected {
  border: solid 5px hsl(var(--sec-color));
  background-color: hsl(var(--sec-color));
  border-radius: 0.75em;
  transform: scale(0.9);
}
#PortfolioSelection .card.submission img {
  margin: 0;
}
#PortfolioSelection .card.submission span.selectmark {
  content: "&#x2713";
  position: absolute;
  width: 2em;
  height: 2em;
  padding: 0.5em;
  top: 0;
  left: 0;
  background-color: hsl(var(--sec-color));
  color: #fff;
  font-weight: 700;
  border-radius: 0.5em 0;
}

#payform {
  gap: 1em;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width:770px) {
  #payform {
    width: min(90%, 60rem);
    flex-direction: row;
    margin-inline: auto;
  }
}
@media only screen and (max-width:426px) {
  #payform {
    flex-direction: column-reverse;
    margin-inline: auto;
  }
}

#paysection {
  height: max-content;
  min-width: 16em;
  padding: 2em 1em;
}
#paysection .grid {
  gap: 0.5em;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 1em;
  border-bottom: solid 1px hsl(var(--gray-530));
}
#paysection #payment-methods {
  justify-content: center;
  align-items: center;
  height: 8em;
  gap: 1em;
}
#paysection #payment-methods svg {
  width: 3em;
  height: 3em;
}
#paysection #or {
  display: table;
  white-space: nowrap;
}
#paysection #or:before, #paysection #or:after {
  border-top: solid 2px hsl(var(--gray-530));
  content: "";
  display: table-cell;
  position: relative;
  top: 0.65em;
  width: 40%;
}
#paysection #or:before {
  right: 1.5%;
}
#paysection #or:after {
  left: 1.5%;
}

.addOption {
  min-width: 16em;
  padding: 2em;
}
.addOption .flex {
  margin-block: 1em;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}
.addOption .subtype {
  width: max-content;
  height: max-content;
  padding: 1rem;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.addOption .subtype:hover {
  transform: scale(1.05);
  box-shadow: 0 7px 18px hsla(0deg, 0%, 0%, 0.1);
}
.addOption .subtype p {
  width: 100%;
  text-align: center;
  margin-block: 0.5em;
}
.addOption .subtype img {
  width: 2.5em;
}
.addOption #normal.active {
  border-color: hsl(var(--normal));
}
.addOption #fast.active {
  border-color: hsl(var(--fast));
}
.addOption #urgent.active {
  border-color: hsl(var(--urgent));
}
.addOption #bronze.active {
  border-color: hsl(var(--bronze));
}
.addOption #silver.active {
  border-color: hsl(var(--silver));
}
.addOption #gold.active {
  border-color: hsl(var(--gold));
}

.table {
  width: 100%;
  border-collapse: collapse;
  height: max-content;
}
.table thead {
  font-weight: 700;
  background-color: #fff;
}
.table th,
.table td {
  padding: 0.5em;
  border-bottom: solid 1px hsl(0deg, 0%, 75%);
  word-wrap: break-word;
}
@media only screen and (max-width:426px) {
  .table th.secondary,
.table #no {
    display: none;
  }
}
@media only screen and (max-width:426px) {
  .table td.secondary {
    display: block;
  }
}

.background {
  position: fixed;
  width: 100vw;
  height: calc(100vh + 7em);
  background-size: cover;
  margin-top: -7em;
}
.background.outfocus {
  filter: blur(20px);
  opacity: 0.5;
}

.logincard {
  width: 22em;
  padding: 3em 2em;
  position: absolute;
  right: 5em;
  top: 50%;
  transform: translateY(-50%);
  gap: 1em;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease-out;
}
@media only screen and (max-width:770px) {
  .logincard {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 360px) {
  .logincard {
    width: 300px;
  }
}
.logincard form {
  width: 100%;
}
.logincard a {
  text-decoration: underline;
}

.logincard.error {
  border-color: hsl(var(--danger));
  box-shadow: 0px 5px 15px hsla(0deg, 100%, 50%, 0.1);
  animation: error 0.5s ease;
}

@keyframes error {
  0% {
    margin-right: 0em;
  }
  10% {
    margin-right: -2em;
  }
  50% {
    margin-right: 5em;
  }
  70% {
    margin-right: -4em;
  }
  85% {
    margin-right: 1em;
  }
  95% {
    margin-right: -2em;
  }
  100% {
    margin-right: 0em;
  }
}
.logincard:hover,
.logincard:focus,
.logincard.error {
  background-color: hsla(0deg, 0%, 100%, 0.75);
}

.errormsg {
  color: hsl(0deg, 100%, 20%);
  font-size: 0.8em;
}

.loginoption {
  margin: 0.5em;
  gap: 1em;
}

.logininp {
  align-items: center;
  gap: 0.5em;
}
.logininp input {
  flex-grow: 1;
  font-size: 18px;
}
.logininp input.error {
  border-color: hsl(var(--danger));
}

.rememberme {
  align-items: center;
  gap: 1em;
  margin-top: 1em;
}
.rememberme .checking {
  font-size: 1rem;
}

.more {
  font-size: 24px;
  text-align: right;
  font-weight: 600;
}
.more a {
  text-decoration: none;
  border-top: solid 3px #333;
}
.more a:after {
  content: ">";
  transition: margin-left 0.2s ease;
}
.more a:hover:after {
  margin-left: 0.5em;
}

@media only screen and (max-width:426px) {
  .track .grid.even {
    grid-template-columns: 80% 1fr;
  }
}

#chooseBrand {
  width: 100%;
}

.pricingTable {
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  margin-inline: auto;
  max-height: 800px;
  width: 65rem;
}
@media only screen and (max-width: 76rem) {
  .pricingTable {
    max-height: 1500px;
    width: 32.5rem;
  }
}
@media screen and (max-width: 40rem) {
  .pricingTable {
    width: 16rem;
    max-height: max-content;
  }
}
.pricingTable .pricingCard {
  width: 16rem;
  height: max-content;
  padding: 2em;
  text-align: center;
  gap: 0.5em;
}
.pricingTable .pricingCard h1,
.pricingTable .pricingCard h2,
.pricingTable .pricingCard h3 {
  margin: 0;
}
.pricingTable .pricingCard h1 {
  font-weight: 800;
}
.pricingTable .pricingCard h2 {
  font-size: 1.4rem;
}
.pricingTable .pricingCard h3 {
  font-size: 1.1rem;
}
.pricingTable .pricingCard ul {
  margin-left: 2em;
  padding: 0.25em;
  text-align: left;
  font-size: 0.9em;
}
.pricingTable .pricingCard ul li:not(:last-child) {
  padding-block: 0.25em;
}
.pricingTable .pricingCard .price {
  margin-top: 1em;
}

#template-catalog .envelope {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
#template-catalog .productCat {
  position: relative;
}
#template-catalog section {
  padding: 0;
}
#template-catalog .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#template-catalog .bg .color-block {
  position: absolute;
  height: 30rem;
  filter: blur(50px);
  transition: all 0.5s ease-in-out;
}
#template-catalog .bg #bg-color-1 {
  width: 35vw;
  left: 0%;
  top: 10%;
  border-radius: 9rem 5em 15em 5em;
  background-color: hsl(var(--prim-color-2)/0.9);
}
#template-catalog .bg #bg-color-2 {
  width: 40vw;
  left: 40%;
  top: 60%;
  border-radius: 7rem 12rem 15em 25em;
  background-color: hsl(var(--prim-color-3));
}
#template-catalog .bg #bg-color-3 {
  width: 20vw;
  right: -15%;
  top: -10%;
  border-radius: 20rem 15rem 10rem 25rem;
  background-color: hsl(var(--prim-color-4));
}
#template-catalog .bg #bg-color-4 {
  width: 60vw;
  left: 10%;
  top: 5%;
  border-radius: 10rem 25rem 4rem 16rem;
  background-color: hsl(var(--sec-color)/0.25);
}
#template-catalog .bg #bg-color-5 {
  width: 50vw;
  left: 30%;
  top: 40%;
  border-radius: 10em 25em 22rem 6rem;
  background-color: hsl(var(--sec-color-2)/0.5);
}
#template-catalog .bg #bg-color-6 {
  width: 40vw;
  border-radius: 15em 5em 22rem 10rem;
  right: 0%;
  bottom: 0%;
  background-color: hsl(var(--sec-color-3));
}
#template-catalog .bg #bg-color-7 {
  width: 30vw;
  left: 40%;
  top: -40%;
  border-radius: 15rem 25rem 20em 25rem;
  background-color: hsl(var(--third-color)/0.4);
}
#template-catalog .bg #bg-color-8 {
  width: 30vw;
  left: 10%;
  bottom: 40%;
  border-radius: 30em 25em 20em 20em;
  animation: circle-left 10s linear 0s infinite alternate;
  background-color: hsl(var(--third-color-2)/0.4);
}
#template-catalog .bg #bg-color-9 {
  width: 40vw;
  right: 0%;
  bottom: 10%;
  border-radius: 30em 25em 20em 20em;
  animation: circle-left 10s linear 0s infinite alternate;
  background-color: hsl(var(--third-color-3));
}
#template-catalog .genresection {
  position: relative;
  z-index: 2;
  gap: 1em;
}
#template-catalog .genresection h1 {
  padding: 0.5em;
}
#template-catalog .genresection .genrethumb {
  object-fit: cover;
  height: 25em;
  width: 25em;
}
#template-catalog .genresection .genrelist {
  gap: 0.5em;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}
@media only screen and (max-width:770px) {
  #template-catalog .genresection .genrelist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width:426px) {
  #template-catalog .genresection .genrelist {
    grid-template-columns: repeat(2, 50%);
  }
}
#template-catalog .genresection .genrelist #video-ftimg {
  grid-area: 1/3/span 2/span 2;
}
@media only screen and (max-width:770px) {
  #template-catalog .genresection .genrelist #video-ftimg {
    grid-area: 1/2/span 2/span 2;
  }
}
@media only screen and (max-width:426px) {
  #template-catalog .genresection .genrelist #video-ftimg {
    grid-area: 1/1/span 2/span 2;
  }
}
#template-catalog .genresection .genrelist #graphic-ftimg {
  grid-area: 3/1/span 2/span 2;
}
@media only screen and (max-width:770px) {
  #template-catalog .genresection .genrelist #graphic-ftimg {
    grid-area: 1/2/span 2/span 2;
  }
}
@media only screen and (max-width:426px) {
  #template-catalog .genresection .genrelist #graphic-ftimg {
    grid-area: 1/1/span 2/span 2;
  }
}
#template-catalog .genresection .genrelist #audio-ftimg {
  grid-area: 2/2/span 2/span 2;
}
@media only screen and (max-width:770px) {
  #template-catalog .genresection .genrelist #audio-ftimg {
    grid-area: 1/2/span 2/span 2;
  }
}
@media only screen and (max-width:426px) {
  #template-catalog .genresection .genrelist #audio-ftimg {
    grid-area: 1/1/span 2/span 2;
  }
}
#template-catalog .genresection .genrelist .genre {
  padding: 1em;
  cursor: pointer;
}
#template-catalog .genresection .genrelist .genre:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-out;
  z-index: 5;
}
#template-catalog .genresection .genrelist .genre .header {
  gap: 1em;
  align-items: center;
  margin-bottom: 1em;
}
#template-catalog .genresection .genrelist .genre .thumb {
  width: 4em;
}

.blog #overview {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.5em;
}
.blog #overview a {
  transition: transform 0.2s ease-in-out;
}
.blog #overview a:hover {
  opacity: 1;
  transform: scale(1.015);
}
.blog #overview .link1 {
  grid-area: 1/1/span 2/span 2;
}
.blog #overview .link1 .newest {
  height: 100%;
}
.blog #overview .link1 .newest .status {
  opacity: 1;
  height: auto !important;
}
.blog #overview .newest {
  background-size: cover;
  background-position: center;
  min-height: 15em;
  justify-content: space-between;
  transition: background-size 0.3s ease-out;
}
.blog #overview .newest .category {
  background-color: #333;
  color: #fff;
  padding: 0.25em;
  margin: 1em;
  border-radius: 0.2em;
  width: max-content;
}
.blog #overview .newest .postdesc {
  padding: 1em;
  background-image: linear-gradient(180deg, hsla(0deg, 0%, 0%, 0), hsl(0deg, 0%, 0%));
  background-size: 100% 150%;
  background-position-y: 0%;
  color: #fff;
  transition: background-size 0.2s ease-out;
}
.blog #overview .newest h3 {
  font-weight: 700;
  filter: drop-shadow(0px 3px 3px hsla(0deg, 0%, 0%, 0.5));
}
.blog #overview .newest .status {
  opacity: 0;
  height: 0;
  transition: height 0.3s ease-out, opacity 0.2s ease-out;
}
.blog #overview .newest:hover .status {
  opacity: 1;
  height: 2em;
}
.blog #overview .newest:hover .postdesc {
  background-size: 100% 120%;
}
.blog .box {
  display: flex;
  gap: 1em;
}
.blog .box .main {
  width: calc(70% - 0.5em);
}
.blog .box .main .cattitle {
  font-size: 3rem;
  font-weight: 400;
  color: hsl(var(--gray-530)/0.5);
  position: relative;
  left: -0.5em;
  bottom: -0.5em;
}
.blog .box .main .postlist {
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  position: relative;
  z-index: 5;
}
.blog .box .main .postel {
  flex-wrap: wrap;
  width: 100%;
}
.blog .box .main .postel .postthumb {
  height: 15em;
}
.blog .box .side {
  background-color: hsl(var(--bg-lighter));
  width: calc(30% - 0.5em);
  height: max-content;
  padding: 1em;
}
.blog .box .side h1 {
  border-bottom: solid 5px hsl(var(--gray-530));
}
.blog .box .side .postlist {
  gap: 1em;
}
.blog .box .side .postel {
  width: 100%;
}
.blog .box .side .postel .postcard {
  gap: 0.5em;
}
.blog .box .side .postel .postthumb {
  width: 7em;
  height: 7em;
  margin: 0;
}

.singlepost h1,
.singlepost h2,
.singlepost h3,
.singlepost h4 {
  margin-block: 0.5em 0.25em;
}
.singlepost ul,
.singlepost ol {
  margin-inline-start: 2em;
  margin-block: 0.5em;
}
.singlepost .content {
  padding-bottom: 1.5em;
  margin-bottom: 0.5em;
  border-bottom: solid 2px hsl(var(--gray-530)/0.5);
}
.singlepost .views-count svg {
  width: 1em;
  height: 1em;
  fill: #777;
  position: relative;
  top: 0.25em;
}

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