.flexBox {
  display: flex;
  flex-wrap: wrap;
}

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

.svgWrap {
  width: 100%;
  height: auto;
  position: relative;
  margin: auto;
}
.svgWrap:after {
  content: "";
  width: 100%;
  height: 0;
  padding-top: 100%;
  display: block;
}
.svgWrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

input[type=text],
input[type=password],
textarea,
select {
  padding: 5px 10px;
  border: 2px solid #dddddd;
  border-radius: 0;
  vertical-align: top;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  outline: none;
  line-height: 2;
  max-width: 100%;
}

input[type=text]:focus,
select:focus,
textarea:focus {
  border: 2px solid #000000;
}

input[type=submit],
input[type=reset] {
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  padding: 0;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  position: relative;
  display: inline-block;
  line-height: 1.75;
  cursor: pointer;
  padding: 0 0.25em 0 2em;
  letter-spacing: normal;
  width: 100%;
  transition: all 0.4s ease-in-out;
  border-radius: 1em;
}
input[type=radio] + label:before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0.1em;
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: 0 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.65em;
}

input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0.35em;
  margin: auto;
  width: 0.8em;
  height: 0.4em;
  border-left: 2px solid rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mwform-checkbox-field,
.mwform-radio-field {
  display: block;
}
.mwform-checkbox-field label,
.mwform-radio-field label {
  display: block;
}
.mwform-checkbox-field input[type=checkbox], .mwform-checkbox-field input[type=radio],
.mwform-radio-field input[type=checkbox],
.mwform-radio-field input[type=radio] {
  display: none;
}
.mwform-checkbox-field input[type=checkbox] + span, .mwform-checkbox-field input[type=radio] + span,
.mwform-radio-field input[type=checkbox] + span,
.mwform-radio-field input[type=radio] + span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  padding: 0.5em;
  letter-spacing: normal;
  width: 100%;
  transition: all 0.4s ease-in-out;
  border-radius: 2em;
}
.mwform-checkbox-field input[type=checkbox] + span:before, .mwform-checkbox-field input[type=radio] + span:before,
.mwform-radio-field input[type=checkbox] + span:before,
.mwform-radio-field input[type=radio] + span:before {
  content: "";
  position: relative;
  display: block;
  margin: 0 0.5em 0 0;
  width: 1.5em;
  height: 1.5em;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}
.mwform-checkbox-field input[type=checkbox]:checked + span, .mwform-checkbox-field input[type=radio]:checked + span,
.mwform-radio-field input[type=checkbox]:checked + span,
.mwform-radio-field input[type=radio]:checked + span {
  background: #ffffff;
}
.mwform-checkbox-field input[type=checkbox]:checked + span:after, .mwform-checkbox-field input[type=radio]:checked + span:after,
.mwform-radio-field input[type=checkbox]:checked + span:after,
.mwform-radio-field input[type=radio]:checked + span:after {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 1em;
  margin: auto;
  width: 1em;
  height: 0.5em;
  border-left: 2px solid rgba(0, 0, 0, 0.8);
  border-bottom: 2px solid rgba(0, 0, 0, 0.8);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn {
  --arrow: .5em;
  margin: 0;
  text-align: center;
  position: relative;
}
.btn a, .btn input, .btn button, .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 2em;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  border: 2px solid;
  border-radius: 3em;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-shadow: 0.25em 0.25em 0 rgba(0, 0, 0, 0.2);
}
.btn a .icon, .btn input .icon, .btn button .icon, .btn span .icon {
  width: 1.5em;
  margin-right: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.btn a .icon svg, .btn input .icon svg, .btn button .icon svg, .btn span .icon svg {
  width: 100%;
}
.btn a:after, .btn input:after, .btn button:after, .btn span:after {
  content: "";
  display: block;
  width: var(--arrow);
  height: var(--arrow);
  z-index: 0;
  transform: rotate(45deg);
  border-top: 2px solid;
  border-right: 2px solid;
  margin-left: var(--arrow);
}
.btn a:hover, .btn input:hover, .btn button:hover, .btn span:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.btn.wh a, .btn.wh input, .btn.wh button, .btn.wh span {
  color: #000000;
  border-color: #ffffff;
  background: #ffffff;
}
.btn.fill a, .btn.fill input, .btn.fill button, .btn.fill span {
  color: var(--colorMain);
  background: #ffffff;
  border-color: #ffffff;
}
.btn.fill a:hover, .btn.fill input:hover, .btn.fill button:hover, .btn.fill span:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn.big {
  width: 100%;
  max-width: 30em;
  --fontSize: 1.5em;
}
.btn.big a {
  padding: var(--fontSize);
  background: linear-gradient(45deg, var(--colorMain) 0, var(--colorDark) 100%);
  color: var(--white);
  border-radius: calc(var(--fontSize) * 2);
  border: none;
  font-size: var(--fontSize);
}

.bBtn a {
  padding: 0.25em 1em;
  width: 100%;
  line-height: 1.5;
  position: relative;
  transition: all 0.2s ease-in-out;
  border: 1px solid;
}
.bBtn a:hover {
  background: #000000;
  color: #ffffff;
}

.sBtn {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 0.875em;
}
.sBtn a {
  display: block;
  padding: 0.25em 1.5em 0.25em 0;
  width: 100%;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.sBtn a:before {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  position: absolute;
  top: 100%;
  left: calc(100% - 1em);
  margin: auto;
  z-index: 0;
  transition: all 0.2s ease-in-out;
  transform: rotate(45deg);
  transform-origin: right;
  background: currentColor;
}
.sBtn a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
  left: 0;
  margin: auto;
  z-index: 0;
  transition: all 0.2s ease-in-out;
  background: currentColor;
}
.sBtn:hover a:before {
  left: 100%;
}
.sBtn:hover a:after {
  width: calc(100% + 1em);
}

.btnArea {
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btnArea .btn {
  margin: 0;
}
.btnArea .btn:not(:last-of-type) {
  margin-right: 0.5rem;
}
.btnArea .btn input {
  font-size: 1rem;
  width: 100%;
  background: #000000;
  border-color: #000000;
}

@media (min-width: 1025px) {
  .btnWrap .btn {
    margin-right: calc(var(--pad) * 0.5);
  }
}
@media (max-width: 1025px) {
  .btnWrap .btn {
    width: 100%;
  }
}

.wp-pagenavi {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
  letter-spacing: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  padding: 0;
}
.wp-pagenavi a {
  text-decoration: none;
  border: 1px solid #000000;
  background: none;
  color: #000000;
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
  transition: 0.4s all ease-in-out;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  border: none;
}
.wp-pagenavi a.last, .wp-pagenavi a.first {
  width: auto;
  border: none;
  padding: 0 0.5em;
}
.wp-pagenavi a:hover {
  background: #000000;
  color: #ffffff;
}
.wp-pagenavi span {
  line-height: 1.5;
}
.wp-pagenavi span.pages {
  color: #000000;
  letter-spacing: 0;
}
.wp-pagenavi span.current {
  text-decoration: none;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
}
.wp-pagenavi span.extend {
  line-height: 2rem;
  margin: 0 0.5rem;
  text-decoration: none;
}

.pageNav {
  padding: 1.5rem 0 3rem;
  align-items: center;
  justify-content: center;
}
.pageNav .btn {
  min-width: 12rem;
  margin: 0 1rem;
}
.pageNav .btn a, .pageNav .btn span {
  justify-content: center;
}
.pageNav .btn.empty {
  opacity: 0.2;
}
.pageNav.wh div a {
  color: #ffffff;
}
.pageNav.wh div.backArch {
  border-color: #ffffff;
}

.notFoundPage {
  padding: 6rem 0;
}
.notFoundPage #noItems {
  min-height: 50vh;
  justify-content: center;
  align-items: center;
}
.notFoundPage #noItems strong {
  text-align: center;
  font-size: 1.5rem;
}
.notFoundPage #noItems .message-404 {
  margin: 0;
  padding: 3rem 0 0;
  text-align: center;
}
.notFoundPage #noItems .message-404 .info-404 {
  display: block;
}
.notFoundPage #noItems .btn {
  margin: 3rem auto 0;
  text-align: center;
}

.singleNav {
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.singleNav .btn {
  margin: 0;
  padding: 0;
  width: 32%;
}
.singleNav .btn.next a, .singleNav .btn.next b {
  padding: 0 2em 0 1em;
}
.singleNav .btn.next a:before, .singleNav .btn.next b:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.singleNav .btn.prev a, .singleNav .btn.prev b {
  padding: 0 1em 0 2em;
}
.singleNav .btn.prev a:before, .singleNav .btn.prev b:before {
  right: auto;
  left: 1em;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.singleNav .backAcv {
  margin: 0;
}

/*
.view {
	transform: translate(0, 3rem);
	opacity: 0;
	&.inView {
		//transition: transform 0.6s  cubic-bezier(0, 0.44, 0.13, 0.96) .2s, opacity 0.6s cubic-bezier(0, 0.44, 0.13, 0.96) .2s , color .4s ease-in-out 0s;
		transition: transform 0.6s  cubic-bezier(0, 0.44, 0.13, 0.96) .2s, opacity 0.6s cubic-bezier(0, 0.44, 0.13, 0.96) .2s;
		transform: translate(0, 0);
		opacity: 1;
	}
}
@keyframes altBefore {
	0% {
		@include translate(0, 0);
	}
	100% {
		@include translate(calc(100% + 1px), 0);
	}
}
@keyframes altAfter {
	0% {
		@include translate(calc(-100% - 1px), 0);
	}
	50% {
		@include translate(0, 0);
	}
	100% {
		@include translate(calc(100% + 1px), 0);
	}
}
 */
@media screen and (min-width: 1025px) {
  .btn input:hover {
    background: #000000;
    color: #ffffff;
  }
}
@media screen and (max-width: 1024px) {
  .pageNav {
    padding: 1.5rem 0;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
  .pageNav div {
    max-width: 15rem;
    width: 100%;
    padding: 0.5rem 0;
  }
  .pageNav div a {
    width: 100%;
    background: #ffffff;
    color: #000000;
    border-radius: 1.5rem;
    border: 1px solid #000000;
  }
  .pageNav div.backArch {
    border: none;
  }
  .pageNav.wh div a {
    background: #ffffff;
    color: #000000;
  }
}
@media screen and (max-width: 767px) {
  .btnArea .btn:not(:last-of-type) {
    margin-right: 0;
  }

  .notFoundPage {
    padding: 10vh 0;
  }
  .notFoundPage p {
    text-align: left;
  }
  .notFoundPage p br {
    display: none;
  }
}

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