@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600;800&display=swap");
/* CSS Document */
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #333;
}

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

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a, a img {
  text-decoration: none;
  outline: none;
  border: none;
}

.clr {
  clear: both;
  height: 0;
}

::-webkit-input-placeholder {
  color: #FAC8C8;
}

:-moz-placeholder {
  color: #FAC8C8;
}

::-moz-placeholder {
  color: #FAC8C8;
}

:-ms-input-placeholder {
  color: #FAC8C8;
}

::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

body, input, textarea, select, option {
  /*font-family: 'Outfit', sans-serif;*/
  font-family: "Poppins", sans-serif;
}

*, *:after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  outline: none;
}

:before {
  font-family: IcoFont;
  font-style: normal;
}

section {
  position: relative;
}

.content {
  width: 100%;
  height: 100%;
  position: relative;
  margin: auto;
}
.content:after {
  display: block;
  width: 100%;
  height: 0;
  clear: both;
  content: "";
}

header {
  padding: 30px 100px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
header:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(#000 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 200%;
}
header .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
}
header a.logo {
  display: block;
  width: 140px;
}
header a.logo img {
  display: block;
  width: auto;
}
header .buttons {
  width: 33.3333%;
  padding-left: 30px;
  margin: 0;
}

main {
  padding: 75px 80px;
  height: 100%;
  /* overflow: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: 0;*/
  position: relative;
  z-index: 1;
}
main .content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: auto;
}
main .roll {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 20px;
  width: 100%;
}

.campaign {
  width: 100%;
  margin-top: 75px;
  padding: 0 20px;
}
.campaign .cItem {
  width: 100%;
}
.campaign .cItem img {
  display: block;
  width: 100%;
}
.campaign .cItem p {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding-top: 20px;
}
.campaign .cItem p span {
  display: block;
}

.col {
  width: 33.3333%;
  margin-top: 75px;
  position: relative;
}
.col:first-child, .col:last-child {
  margin-top: 150px;
}

.pItem {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pItem img {
  display: block;
  width: 100%;
  height: auto;
}
.pItem a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
}
.pItem a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(black 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 0;
  opacity: 0.6;
}
.pItem a:before {
  display: block;
  width: 25px;
  height: 62px;
  content: "";
  position: absolute;
  background: url(../images/icons/arrow.svg) no-repeat center;
  bottom: 30%;
  left: 40%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  background-size: 100% auto;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.pItem a img {
  width: auto;
  z-index: 1;
  position: relative;
  height: auto;
}
.pItem a strong {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  padding-top: 15px;
  display: block;
  z-index: 1;
  position: relative;
  line-height: 1.2;
}
.pItem a:hover:before {
  opacity: 1;
  left: 50%;
}
.pItem a:hover:after {
  opacity: 1;
}
.pItem a i {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 180px;
}
.pItem a i small {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 200;
  font-size: 18px;
  font-style: normal;
  padding: 7px 0;
  margin-top: 5px;
}
.pItem a i small:nth-child(1) {
  background: #9E0C4F;
}
.pItem a i small:nth-child(2) {
  background: #DD0361;
}
.pItem a i small:nth-child(3) {
  background: #FE25B2;
}
.pItem.passive {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  opacity: 0.2;
}

aside {
  position: fixed;
  bottom: 100px;
  left: 0;
  background: transparent;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.35);
  padding: 80px 0;
  left: -700px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
aside .toggleFilter {
  display: block;
  color: #fff;
  font-weight: normal;
  font-size: 20px;
  float: right;
  line-height: 110px;
  position: absolute;
  top: 0;
  background: transparent;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.35);
  padding: 0 100px 0 30px;
  width: 220px;
  right: -220px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
aside .toggleFilter:before {
  width: 45px;
  height: 100%;
  background: url(../images/icons/plus.svg) no-repeat center;
  background-size: 100%;
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
aside .toggleFilter span {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
aside .toggleFilter:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
aside .toggleFilter:hover:before {
  transform: rotate(225deg);
}
aside ul {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  min-width: 700px;
}
aside ul li {
  width: 33.333%;
  border-right: 1px solid #fff;
  padding-left: 30px;
}
aside ul li label {
  color: #fff;
  font-size: 17px;
  display: block;
  width: 100%;
  line-height: 34px;
  position: relative;
  margin-bottom: 20px;
  position: relative;
  padding-left: 45px;
  cursor: pointer;
}
aside ul li label:before {
  display: block;
  content: "";
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
}
aside ul li label.checked:before {
  background: url(../images/icons/check.svg) no-repeat center;
}
aside ul li:nth-child(3n) {
  border: none;
}
aside.opened {
  left: 0;
}
aside.opened .toggleFilter {
  right: 0px;
  background: none;
  backdrop-filter: blur(0px);
  --webkit-backdrop-filter: blur(0px);
  width: 100px;
}
aside.opened .toggleFilter span {
  opacity: 0;
}
aside.opened .toggleFilter:before {
  transform: rotate(225deg);
}

.buttons {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
.buttons a {
  display: block;
  width: 49%;
  height: 60px;
  text-align: center;
  border: 1px solid #fff;
  background: #fff;
  color: #333;
  font-weight: 600;
  line-height: 60px;
  font-size: 22px;
  position: relative;
}
.buttons a:before {
  display: block;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.buttons a span {
  position: relative;
  z-index: 1;
}
.buttons a.formBtn {
  background: transparent;
  color: #fff;
}
.buttons a:hover span {
  color: #333;
}
.buttons a:hover:before {
  width: 100%;
}

a.close {
  width: 45px;
  height: 45px;
  background: url(../images/icons/plus.svg) no-repeat center;
  background-size: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  position: absolute;
  right: 60px;
  top: 210px;
  cursor: pointer;
}
a.close:hover {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

.details {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.details .detailContent {
  width: 100%;
  height: 100%;
}
.details .detailItem {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
}
.details .detailItem .dImg {
  height: 100%;
  flex: 1;
  transform: translateX(200%);
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
}
.details .detailItem .dImg img {
  display: block;
  width: auto;
  height: 100%;
}
.details .detailItem .dInfo {
  background: #333;
  flex: 1;
  padding: 125px 60px 0;
  position: relative;
  transform: translateX(200%);
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
}
.details .detailItem .dInfo a.closeDetail {
  right: 60px;
  top: 210px;
}
.details .detailItem .dInfo table {
  width: 100%;
  border-spacing: 0;
}
.details .detailItem .dInfo table td {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  border-bottom: 1px solid #707070;
  padding: 10px 0;
}
.details .detailItem .dInfo table td:first-child {
  color: #A8A8A8;
}
.details .detailItem .dInfo a.web {
  float: right;
  margin-top: 40px;
  opacity: 0.5;
}
.details .detailItem .dInfo a.web:hover {
  opacity: 1;
}

/*FORM*/
a.closeForm {
  right: 30px;
  top: 30px;
}

.form-holder {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
  background: #9E0C4F;
  padding: 100px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.form-holder h1 {
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: 56px;
}
.form-holder .form-title {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding: 15px 0;
}
.form-holder.opened {
  right: 0;
}

.contact_form UL {
  margin: 0px;
  padding: 0px;
}

.contact_form li {
  margin: 0px 0px 20px;
  position: relative;
  display: block;
  width: 100%;
}
.contact_form li.bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.contact_form .form-text, .contact_form .form-textarea {
  width: 100%;
  height: 50px;
  padding-left: 0px;
  border: none;
  background: #fff;
  color: #919191;
  padding: 0 20px;
}

.form-submit {
  height: 50px;
  border: 0px;
  background-color: #ffffff;
  text-align: center;
  font-size: 17px;
  color: #9E0C4F;
  font-weight: bold;
  padding: 0 50px;
}

.form-submit:hover {
  opacity: 0.7;
  cursor: pointer;
}

INPUT.inputError, SELECT.inputError {
  border-bottom: 2px solid #f00 !important;
}

.contact_form LABEL a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #919191;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #919191;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #919191;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #919191;
}

input[type=checkbox]:not(old), input[type=radio]:not(old) {
  width: 28px;
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 1px;
  position: absolute;
}

input[type=checkbox]:not(old) + label, input[type=radio]:not(old) + label {
  display: inline-block;
  padding-left: 25px;
  background: url("../images/form/checks.png") no-repeat 0 0;
  line-height: 18px;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
  color: #fff;
}

input[type=checkbox]:not(old):checked + label {
  background-position: 0 -19px;
}

input[type=radio]:not(old):checked + label {
  background-position: 0 -15px;
}

.ajaxloader {
  width: 80px;
  text-align: center;
  margin: auto;
}

.bubblingG {
  text-align: center;
  width: 80px;
  height: 50px;
}

.bubblingG span {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  margin: 25px auto;
  background: #173c6e;
  -moz-border-radius: 50px;
  -moz-animation: bubblingG 1.3s infinite alternate;
  -webkit-border-radius: 50px;
  -webkit-animation: bubblingG 1.3s infinite alternate;
  -ms-border-radius: 50px;
  -ms-animation: bubblingG 1.3s infinite alternate;
  -o-border-radius: 50px;
  -o-animation: bubblingG 1.3s infinite alternate;
  border-radius: 50px;
  animation: bubblingG 1.3s infinite alternate;
}

#bubblingG_1 {
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

#bubblingG_2 {
  -moz-animation-delay: 0.39s;
  -webkit-animation-delay: 0.39s;
  -ms-animation-delay: 0.39s;
  -o-animation-delay: 0.39s;
  animation-delay: 0.39s;
}

#bubblingG_3 {
  -moz-animation-delay: 0.78s;
  -webkit-animation-delay: 0.78s;
  -ms-animation-delay: 0.78s;
  -o-animation-delay: 0.78s;
  animation-delay: 0.78s;
}

.radiovalidate {
  POSITION: ABSOLUTE;
  right: -16px;
  top: 6px;
}

.izin {
  margin: 5px auto;
  width: 140px;
}

@-moz-keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: #173c6e;
    -moz-transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    background-color: #579bcd;
    -moz-transform: translateY(-21px);
  }
}
@-webkit-keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: #173c6e;
    -webkit-transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    background-color: #579bcd;
    -webkit-transform: translateY(-21px);
  }
}
@-ms-keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: #173c6e;
    -ms-transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    background-color: #579bcd;
    -ms-transform: translateY(-21px);
  }
}
@-o-keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: #173c6e;
    -o-transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    background-color: #579bcd;
    -o-transform: translateY(-21px);
  }
}
@keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: #173c6e;
    transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    background-color: #579bcd;
    transform: translateY(-21px);
  }
}
/*flag*/
.intl-tel-input .selected-flag {
  height: 100% !important;
}

.intl-tel-input .country-list {
  width: 260px;
}

.intl-tel-input .country-list .country {
  font-size: 13px;
}

.intl-tel-input.separate-dial-code .selected-flag {
  background: #fff !important;
}

/*error*/
.contact-error {
  position: relative;
  right: 0px;
  top: 5px;
  z-index: 2;
  width: auto;
  height: 100%;
  display: inline-block;
}

.contact-error i {
  background-image: url("../images/form/info.png");
  background-size: 4px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 100%;
  display: inline-block;
  position: relative;
  top: 0px;
  background-color: #e92d2d;
}

.contact-error span {
  position: absolute;
  right: 0px;
  bottom: 100%;
  width: 170px;
  background-color: #fd4a4a;
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 5px 5px;
  box-sizing: border-box;
  font-family: arial;
  line-height: 15px;
  opacity: 0;
  visibility: visible;
  z-index: -9999;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.contact-error:hover span {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  display: block;
}

.contact_form input[type=submit][disabled] {
  text-indent: -9999px;
  background: url(//www.crmfys.com/public/loader.gif) no-repeat center #f2f2f2;
}

.mobileTools {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: none;
}
.mobileTools a {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 17px;
  background: #fff;
  line-height: 50px;
}
.mobileTools a.filterBtn {
  background: #BCAD7F;
}
.mobileTools a.filterBtn span {
  position: relative;
  padding-right: 30px;
}
.mobileTools a.filterBtn span:before {
  width: 20px;
  height: 20px;
  background: url(../images/icons/plusDark.svg) no-repeat center;
  background-size: 100%;
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.mobileTools a.filterBtn.closer span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

.cookie {
  border: 1px solid #7c7c7c;
  width: 28%;
  position: fixed;
  bottom: -1500px;
  left: 20px;
  background-color: #1e1e1e;
  z-index: 99;
  padding: 30px;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.cookie.active {
  bottom: 20px;
}
.cookie strong {
  font-size: 18px;
  color: white;
}
.cookie p {
  font-size: 13px;
  color: white;
  margin: 10px 0;
}
.cookie a.cookie-content {
  font-size: 13px;
  color: #a9b1ff;
  text-decoration: underline;
}
.cookie .btns {
  margin-top: 20px;
}
.cookie .btns .cookie-reject {
  padding: 5px 25px;
  background-color: #d8d8d8;
  color: #262626;
}
.cookie .btns .cookie-allow {
  padding: 5px 25px;
  background-color: #9e0c4f;
  color: white;
}

#cookie-content {
  z-index: 999999;
  width: 85%;
}
#cookie-content ul {
  margin: 20px 0 20px 20px;
}
#cookie-content ul li {
  list-style-type: disc;
}
#cookie-content ul li ul {
  margin: 10px 10px 10px;
}

/*General Elements */
/*General Elements */
@media screen and (max-width: 1580px) {
  header {
    padding-top: 50px;
  }
  header a.logo img {
    width: 120px;
  }

  .buttons a {
    font-size: 18px;
  }

  .pItem a strong {
    font-size: 24px;
  }
  .pItem a img {
    max-width: 140px;
  }
  .pItem a i {
    width: 140px;
  }
  .pItem a i small {
    font-size: 14px;
  }

  aside {
    bottom: 20px;
    padding: 40px 0 20px;
  }
  aside .toggleFilter {
    line-height: 60px;
    width: 190px;
    right: -190px;
    padding: 0 60px 0 20px;
  }
  aside .toggleFilter:before {
    width: 30px;
    right: 20px;
  }
  aside ul li label {
    line-height: 24px;
    padding-left: 35px;
  }
  aside ul li label:before {
    width: 24px;
    height: 24px;
  }
  aside.opened .toggleFilter {
    width: 60px;
  }

  a.close {
    width: 25px;
    height: 25px;
  }

  .details .detailItem .dInfo {
    padding: 60px;
  }
  .details .detailItem .dInfo a.closeDetail {
    top: 140px;
    right: 60px;
  }
  .details .detailItem .dInfo .buttons {
    margin-bottom: 50px;
  }
  .details .detailItem .dInfo table td {
    font-size: 18px;
  }

  .form-holder {
    padding: 50px 100px;
  }
  .form-holder h1 {
    font-size: 46px;
  }
  .form-holder .form-title {
    font-size: 14px;
  }

  .contact_form li {
    margin-bottom: 10px;
  }
  .contact_form .form-text, .contact_form .form-textarea {
    height: 40px;
  }
  .contact_form .bottom img {
    width: 100px;
  }
  .contact_form .form-submit {
    height: 40px;
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .cookie {
    width: 90%;
  }

  #cookie-content {
    width: 92%;
  }
}
@media screen and (max-width: 780px) {
  .campaign {
    padding: 0;
    margin-top: 0;
    padding-top: 100px;
  }
  .campaign .cItem {
    padding: 0 20px 20px;
  }
  .campaign .cItem p {
    font-size: 16px;
  }
  .campaign .cItem p span:first-child {
    margin-bottom: 10px;
  }

  .mobileTools {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }

  header {
    padding: 15px 30px 0;
    position: relative !important;
  }
  header a.logo img {
    width: 100px;
  }
  header .buttons {
    width: 140px;
    padding: 0;
  }

  .buttons {
    width: 140px;
  }
  .buttons a {
    width: 100%;
    line-height: 28px;
    height: 28px;
    font-size: 15px;
    margin-bottom: 0px;
  }
  .buttons a:last-child {
    margin-bottom: 0;
    display: none;
  }

  main {
    padding: 0 0 0;
    overflow: auto;
  }
  main .col {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  main .roll {
    padding: 0;
    position: relative;
  }

  .pItem {
    margin: 0;
    order: 11;
  }

  .pItem[data-mobile-order="1"] {
    order: 1;
  }

  .pItem[data-mobile-order="2"] {
    order: 2;
  }

  .pItem[data-mobile-order="3"] {
    order: 3;
  }

  .pItem[data-mobile-order="4"] {
    order: 4;
  }

  .pItem[data-mobile-order="5"] {
    order: 5;
  }

  .pItem[data-mobile-order="6"] {
    order: 6;
  }

  .pItem[data-mobile-order="7"] {
    order: 7;
  }

  .pItem[data-mobile-order="8"] {
    order: 8;
  }

  .pItem[data-mobile-order="9"] {
    order: 9;
  }

  .pItem[data-mobile-order="10"] {
    order: 10;
  }

  .form-holder {
    overflow: scroll;
    padding: 50px 30px 0;
  }
  .form-holder h1 {
    font-size: 32px;
  }

  input[type=checkbox]:not(old) + label, input[type=radio]:not(old) + label {
    font-size: 9px;
  }

  .form-submit {
    padding: 0 25px;
  }

  .details {
    top: 120px;
  }
  .details .buttons {
    display: none;
  }
  .details .detailItem {
    overflow: scroll;
  }
  .details .detailItem .dImg {
    width: 100%;
    height: auto;
    flex: auto;
  }
  .details .detailItem .dImg img {
    width: 100%;
    height: auto;
  }
  .details .detailItem .dInfo {
    width: 100%;
    height: auto;
    flex: auto;
    padding: 30px 30px 200px;
  }
  .details .detailItem .dInfo a.close {
    top: 5px;
    right: 5px;
  }

  aside {
    width: 100%;
    left: -100%;
    bottom: 60px;
    padding: 40px 0 20px 0;
  }
  aside .toggleFilter {
    line-height: 40px;
    font-size: 16px;
    width: 150px;
    right: -150px;
  }
  aside .toggleFilter:before {
    width: 20px;
  }
  aside ul {
    min-width: auto;
  }
  aside ul li {
    padding-left: 10px;
  }
  aside ul li label {
    padding-left: 20px;
    font-size: 12px;
    margin: 0;
    padding: 10px 0 10px 20px;
    line-height: 15px;
  }
  aside ul li label:before {
    width: 15px;
    height: 15px;
    top: 10px;
  }

  .content {
    padding-bottom: 60px;
  }

  .pItem.complement {
    display: none !important;
  }
}