.common-form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 959px) {
  .common-form {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.common-form.sending {
  position: relative;
}
.common-form.sending:before {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../../../comum/assets/svg/preloader.svg') no-repeat center rgba(255, 255, 255, 0.7);
  background-size: 60px;
  content: '';
  z-index: 15;
}
.common-form .field {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 0 calc(50% - 20px);
  -ms-flex: 0 0 calc(50% - 20px);
  flex: 0 0 calc(50% - 20px);
  margin: 0 10px 20px;
}
.common-form .field.field-big {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 0 calc(100% - 20px);
  -ms-flex: 1 0 calc(100% - 20px);
  flex: 1 0 calc(100% - 20px);
}
.common-form .field.field-small {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 0 calc((100% / 3) - 20px);
  -ms-flex: 1 0 calc((100% / 3) - 20px);
  flex: 1 0 calc((100% / 3) - 20px);
}
.common-form .field h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
  color: #d21f34;
  text-transform: uppercase;
}
.common-form .field .input {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #333333;
  border-left-width: 8px;
  color: #d21f34;
  min-height: 42px;
  padding: 0 20px;
  width: 100%;
}
.common-form .field .input::-webkit-input-placeholder {
  color: rgba(210, 31, 52, 0.8);
  text-transform: uppercase;
}
.common-form .field .input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 42px #fff inset !important;
  -webkit-text-fill-color: #d21f34 !important;
}
.common-form .field .input.error {
  border-color: #B94A48;
}
.common-form .field .input.textarea {
  height: 120px;
  padding: 20px;
}
.common-form .field .input.file {
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.common-form .field .input.file input[type="file"] {
  display: none;
}
.common-form .field .input.file .file-name {
  text-transform: uppercase;
}
.common-form .field .input.file .common-button {
  font-size: 11px;
  font-size: 1.1rem;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #333333;
  border-color: #333333;
  color: #fff;
  cursor: pointer;
}
.common-form .button-placeholder {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
}
.common-form .submit {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 1.1rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #333333;
  color: #fff;
  min-height: 42px;
  padding: 0 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .common-form .submit {
    margin: 1.6rem 0 0 0;
  }
}
.common-form .submit:hover {
  background-color: #555;
}
/*
** Select 2
*/
.select2-container {
  width: 100% !important;
}
select.select2 {
  height: 42px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  border: 1px solid #333333;
  border-left-width: 8px;
  visibility: hidden;
}
select.select2 + .select2,
select.select2 + .select2-container--default {
  height: 42px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 1.1rem;
  display: inline-block;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid #333333;
  border-left-width: 8px;
  color: #d21f34;
  position: relative;
  z-index: 3;
}
select.select2 + .select2 .select2-selection--single,
select.select2 + .select2-container--default .select2-selection--single {
  background-color: #fff;
  border: none;
  border-radius: 0;
  height: 100%;
  padding: 0 20px;
}
select.select2 + .select2 .select2-selection--single .select2-selection__rendered,
select.select2 + .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 100%;
  width: calc(100% - 20px);
  font-size: 11px;
  font-size: 1.1rem;
  color: #d21f34;
  line-height: 40px;
  padding: 0;
}
select.select2 + .select2 .select2-selection--single .select2-selection__placeholder,
select.select2 + .select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 11px;
  font-size: 1.1rem;
  color: #d21f34;
  text-transform: uppercase;
}
select.select2 + .select2 .select2-selection--single .select2-selection__arrow,
select.select2 + .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 20px;
}
select.select2 + .select2 .select2-selection--single .select2-selection__arrow:before,
select.select2 + .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  font-size: 14px;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #d21f34;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
select.select2 + .select2 .select2-selection--single .select2-selection__arrow b,
select.select2 + .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
select.select2 + .select2.select2-container--open,
select.select2 + .select2-container--default.select2-container--open {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
select.select2 + .select2.select2-container--open .select2-selection--single .select2-selection__arrow:before,
select.select2 + .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before {
  content: '\f106';
}
select.select2 + .select2.select2-container--open.select2-container--above,
select.select2 + .select2-container--default.select2-container--open.select2-container--above {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
select.error {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
select.error ~ .select2 {
  border-color: #B94A48 !important;
  color: #B94A48 !important;
}
select.error ~ .select2 .select2-selection__placeholder {
  color: #B94A48 !important;
}
.select2-dropdown {
  background: #333333;
  border: 2px solid #d21f34;
  border-radius: 0;
  border-top: none;
}
.select2-dropdown .select2-search--dropdown .select2-search__field {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #d21f34;
  height: 42px;
  line-height: 42px;
  padding: 0 1.4rem;
}
.select2-dropdown.select2-dropdown--above {
  border-top: 2px solid #d21f34;
  border-bottom: none;
}
.select2-results {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  font-size: 1.1rem;
  color: #d21f34;
}
.select2-results .select2-results__option {
  height: 42px;
  line-height: 42px;
  padding: 0 1.4rem;
}
.select2-results .select2-results__option[aria-selected=true] {
  background: #eee !important;
  color: #d21f34;
}
.select2-results .select2-results__option--highlighted[aria-selected] {
  background: #d21f34 !important;
  color: #fff;
}
.pagination {
  font-size: 0;
  padding-top: 4rem;
  text-align: center;
}
.pagination li {
  color: #666666;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  height: 27px;
  line-height: 27px;
  min-width: 27px;
}
.pagination li:hover a,
.pagination li:hover span {
  color: #d21f34;
}
.pagination li a {
  display: block;
  color: #666666;
  -webkit-transition: color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -moz-transition: color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -o-transition: color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  transition: color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  text-align: center;
  z-index: 1;
}
.pagination li:first-child {
  margin-left: 0;
}
.pagination li.active span {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: block;
  color: #d21f34;
  line-height: 25px;
  z-index: 1;
}
.pagination li.prevNext {
  font-size: 15px;
}
@media screen and (max-width: 319px) {
  .pagination li {
    font-size: 15px;
    font-size: 1.5rem;
    margin-left: 0.2rem;
    height: 2.6rem;
    line-height: 2.6rem;
    min-width: 2.6rem;
  }
  .pagination li.prevNext {
    min-width: 2rem;
  }
  .pagination li.dots {
    min-width: auto;
  }
  .pagination li.active span {
    line-height: 2.5rem;
  }
}
/**
 * Contact
 */
#area_representante {
  padding-bottom: 70px;
}
#area_representante h5 {
  color: #333333;
  line-height: 150%;
  margin: 0 auto;
  max-width: 666px;
  text-align: center;
  font-weight: 600;
}
#area_representante .download {
  background-color: #dfdfdf;
}
#area_representante .menu {
  align-items: center;
  display: flex;
  justify-content: center;
}
#area_representante .menu .item-menu {
  padding: 0.7rem 1.5rem;
  margin-right: 2rem;
}
#area_representante .btn-esqueci-minha-senha {
  text-align: center;
  margin-top: 15px;
}
@media (max-width: 959px) {
  #area_representante .btn-esqueci-minha-senha {
    text-align: right;
  }
}
#area_representante .form h5 {
  color: #333333;
  line-height: 150%;
  margin: 0 auto;
  max-width: 666px;
  text-align: center;
}
#area_representante .form .common-form {
  margin-top: 30px;
}
#area_representante .align-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
#area_representante .downloads-items {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px -15px 0;
}
#area_representante .downloads-items .download-item {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 0 calc((100% / 3) - 30px);
  -ms-flex: 0 0 calc((100% / 3) - 30px);
  flex: 0 0 calc((100% / 3) - 30px);
  margin: 0 15px 30px;
}
@media (max-width: 959px) {
  #area_representante .downloads-items .download-item {
    -webkit-flex-basis: calc(100% - 30px);
    flex-basis: calc(100% - 30px);
  }
}
#area_representante .downloads-items .download-item .title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #d21f34;
  color: #fff;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
}
#area_representante .downloads-items .download-item .content {
  background-color: #eee;
  padding: 30px;
  text-align: center;
}
#area_representante .downloads-items .download-item .content .desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #333333;
}
#area_representante .downloads-items .download-item .content .buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 20px;
}
#area_representante .downloads-items .download-item .content .buttons .common-button {
  background-color: #333333;
  border-color: #333333;
  color: #fff;
  margin: 0 1px;
}
#area_representante .downloads-items .download-item .content .buttons .common-button:hover {
  background-color: #555;
}
#area_representante .downloads-items .download-item .content .buttons .common-button svg {
  height: 16px;
  fill: #fff;
  margin-right: 6px;
}
