@charset "UTF-8";
/*
*  MAIN
*/
/* =General
-----------------------------------------------------------------------------*/
:root {
  --titles-blue: #298891;
  --titles-lightblue: #2f8bfe;
  --titles-lighterblue: #4e9bff;
  --shop-button-color: #008bff;
}



.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes slideUp {
  to {
    height: 0;
    padding-top: 0;
    padding-bottom: 0; } }

@keyframes slideUp {
  to {
    height: 0;
    padding-top: 0;
    padding-bottom: 0; } }

.slideUp {
  overflow: hidden;
  -webkit-animation-name: slideUp;
  animation-name: slideUp; }

@-webkit-keyframes slideDown {
  from {
    height: 0;
    padding-top: 0;
    padding-bottom: 0; } }

@keyframes slideDown {
  from {
    height: 0;
    padding-top: 0;
    padding-bottom: 0; } }

.slideDown {
  overflow: hidden;
  -webkit-animation-name: slideDown;
  animation-name: slideDown; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(7px, 0, 0);
    transform: translate3d(7px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(7px, 0, 0);
    transform: translate3d(7px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.rotate {
  -webkit-animation-name: rotate;
  animation-name: rotate; }

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

a:active, a.nice-select.open,
a:hover {
  outline: 0; }

::-moz-focus-inner {
  border: 0;
  padding: 0; }

img,
video,
audio {
  max-width: 100%; }

img,
video {
  height: auto; }

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
  font-size: 110%;
  position: relative;
  margin-right: 3px;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; }

body {
  font-size: 17px;
  color: #565759;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal; }

a {
  color: #878787;
  -webkit-transition: color .5s ease-in-out;
  -o-transition: color .5s ease-in-out;
  transition: color .5s ease-in-out;
  text-decoration: none; }

a:hover {
  color: #008bff;
  -webkit-transition: color .5s ease-in-out;
  -o-transition: color .5s ease-in-out;
  transition: color .5s ease-in-out; }

h1.title, h1, h2, h3, h4, h5, h6 {
  font-family: "Gravity-Bold";
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #3e3e3e;
  margin-bottom: 12px; }

h1.title {
  font-size: 60px;
  line-height: 1.3; }

h1,
.h1 {
  font-size: 49px;
  line-height: 1.3; }

h2,
.h2 {
  font-size: 32px;
  line-height: 1.3; }

h3,
.h3 {
  font-size: 21px;
  line-height: 1.3; }

h4,
.h4 {
  font-size: 18px;
  line-height: 1.3; }

h5,
.h5 {
  font-size: 16px;
  line-height: 1.3; }

h6,
.h6 {
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .08em; }

p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6,
dl + h2,
dl + h3,
dl + h4,
dl + h5,
dl + h6,
blockquote + h2,
blockquote + h3,
blockquote + h4,
blockquote + h5,
blockquote + h6,
hr + h2,
hr + h3,
hr + h4,
hr + h5,
hr + h6,
pre + h2,
pre + h3,
pre + h4,
pre + h5,
pre + h6,
table + h2,
table + h3,
table + h4,
table + h5,
table + h6,
form + h2,
form + h3,
form + h4,
form + h5,
form + h6,
figure + h2,
figure + h3,
figure + h4,
figure + h5,
figure + h6 {
  margin-top: 32px; }

.subheading {
  margin-top: -8px;
  margin-bottom: 8px;
  font-weight: normal;
  font-style: normal; }

ul, ol,
ul ul,
ol ol,
ul ol,
ol ul {
  margin: 0 0 0 24px; }

ol ol li {
  list-style-type: lower-alpha; }

ol ol ol li {
  list-style-type: lower-roman; }

nav ul, nav ol {
  margin: 0;
  list-style: none; }

dl dt {
  font-weight: normal;
  font-style: normal; }

dd {
  margin-left: 24px; }

p, blockquote, hr, pre, ol, ul, dl, table, fieldset, figure, address, form {
  margin-bottom: 16px; }

hr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: -1px; }

blockquote {
  padding-left: 24px;
  border-left: 2px solid rgba(0, 0, 0, 0.125);
  font-family: "Gravity-BookItalic";
  font-style: normal;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.65); }

pre, code, samp, var, kbd {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 15px; }

pre {
  color: rgba(0, 0, 0, 0.85);
  background: #f8f8f8;
  padding: 20px;
  border-radius: 4px;
  line-height: 20px;
  overflow: none;
  white-space: pre-wrap; }

.small, time, cite, small, figcaption {
  font-size: 13px;
  line-height: 16px; }

cite {
  color: rgba(0, 0, 0, 0.5); }

figcaption {
  font-family: "Gravity-BookItalic";
  font-style: normal;
  font-weight: normal;
  padding-top: 4px;
  padding-bottom: 4px; }

figure figcaption {
  position: relative;
  top: -4px; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help; }

mark, code, samp, kbd {
  padding: 4px 8px 2px 8px;
  display: inline-block;
  line-height: 1;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.85); }

pre code {
  font-size: 100%;
  white-space: pre;
  padding: 0;
  background: none;
  line-height: 24px; }

mark {
  background-color: #fed443; }

code {
  background: #f4f4f4; }

var {
  color: rgba(0, 0, 0, 0.6);
  font-style: normal; }

strong, b {
  font-family: "Gravity-Bold";
  font-style: normal;
  font-weight: normal;
  line-height: 1; }
  strong em, strong i, b em, b i {
    font-family: "Gravity-BoldItalic";
    font-style: normal;
    font-weight: normal; }

em, i {
  font-family: "Gravity-BoldItalic";
  font-style: normal;
  font-weight: normal; }
  em strong, em b, i strong, i b {
    font-family: "Gravity-BoldItalic";
    font-style: normal;
    font-weight: normal; }

samp {
  color: #fff;
  background: #46b6e5; }

kbd {
  border: 1px solid rgba(0, 0, 0, 0.1); }

sub,
sup {
  font-size: x-small;
  line-height: 0;
  margin-left: 4px;
  position: relative; }

sup {
  top: -4px; }

sub {
  bottom: -2px; }

@media (min-width: 0) and (max-width: 1024px) {
  /*
	body {
		line-height: $line-height-small;
		font-size: $font-size-small;
	}
	*/
  h1.title {
    font-size: 32px;
    line-height: 1.3; }
  h1,
  .h1 {
    font-size: 30px;
    line-height: 1.3; }
  h2,
  .h2 {
    font-size: 24px;
    line-height: 1.3; }
  h3,
  .h3 {
    font-size: 20px;
    line-height: 1.3; }
  h4,
  .h4 {
    font-size: 18px;
    line-height: 1.3; }
  h5,
  .h5 {
    font-size: 16px;
    line-height: 1.3; }
  h6,
  .h6 {
    font-size: 12px;
    line-height: 1.3; } }

@media (min-width: 1600px) {
  /*
	body {
		line-height: $line-height-large;
		font-size: $font-size-large;
	}
	*/
  h1.title {
    font-size: 72px;
    line-height: 1.3; }
  h1,
  .h1 {
    font-size: 53px;
    line-height: 1.3; }
  h2,
  .h2 {
    font-size: 38px;
    line-height: 1.3; }
  h3,
  .h3 {
    font-size: 28px;
    line-height: 1.3; }
  h4,
  .h4 {
    font-size: 18px;
    line-height: 1.3; }
  h5,
  .h5 {
    font-size: 16px;
    line-height: 1.3; }
  h6,
  .h6 {
    font-size: 12px;
    line-height: 1.3; } }

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2%; }
  .row.centered {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center; }
    .row.centered .col {
      padding-left: 1%;
      padding-right: 1%; }
  .row.right {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -webkit-box-pack: end;
    justify-content: flex-end; }
  .row.bottom {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -webkit-box-align: end;
    align-items: flex-end; }
  .row.around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around; }
  .row.between {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between; }
  .row.equal .col {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex; }
    .row.equal .col > div {
      -ms-flex-grow: 1;
      -webkit-flex-grow: 1;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1; }
  .row.splice {
    margin-left: 0; }
    .row.splice .col {
      padding-left: 0; }

.col {
  -ms-flex-grow: 1;
  -webkit-flex-grow: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -ms-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
  padding-left: 2%; }
  .col.first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1; }
  .col.last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }

@media (max-width: 768px) {
  .col.first-on-small {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1; }
  .col.last-on-small {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; } }

.pull-right {
  margin-left: auto; }

.col-1 {
  -webkit-flex-basis: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%;
  width: 8.33333%; }

.col-2 {
  -webkit-flex-basis: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
  width: 16.66667%; }

.col-3 {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
  width: 25%; }

.col-4 {
  -webkit-flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
  width: 33.33333%; }

.col-5 {
  -webkit-flex-basis: 41.66667%;
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%;
  width: 41.66667%; }

.col-6 {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  width: 50%; }

.col-7 {
  -webkit-flex-basis: 58.33333%;
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%;
  width: 58.33333%; }

.col-8 {
  -webkit-flex-basis: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
  width: 66.66667%; }

.col-9 {
  -webkit-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
  width: 75%; }

.col-10 {
  -webkit-flex-basis: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
  width: 83.33333%; }

.col-11 {
  -webkit-flex-basis: 91.66667%;
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%;
  width: 91.66667%; }

.col-12 {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  width: 100%; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

.row-layout {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center; }

.col-fluid {
  -ms-flex-grow: 1;
  -webkit-flex-grow: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%; }

@media (max-width: 768px) {
  .row-layout {
    display: block; }
  .col-fixed {
    -ms-flex: 1 !important;
    -webkit-flex: 1 !important;
    -webkit-box-flex: 1 !important;
    flex: 1 !important; }
  .row-layout > .col-fixed {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  .row-layout > .col-fluid {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; } }

@media (max-width: 768px) {
  .row {
    margin-left: 0; }
  .col,
  [class^="col-"],
  [class*=" col-"] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .col {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-left: 0; }
  .pull-right,
  [class^="offset-"],
  [class*=" offset-"] {
    margin-left: 0; } }

table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
  empty-cells: show;
  font-size: 16px; }

th {
  text-align: left;
  font-weight: 700;
  vertical-align: bottom; }

td {
  vertical-align: top; }

th,
td {
  padding: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee; }
  th:first-child,
  td:first-child {
    padding-left: 0; }
  th:last-child,
  td:last-child {
    padding-right: 0; }

tfoot th,
tfoot td {
  color: rgba(0, 0, 0, 0.5); }

table.bordered {
  margin-top: -1px; }
  table.bordered td,
  table.bordered th {
    border: 1px solid #eee; }

table.striped tr:nth-child(odd) td {
  background: #f4f4f4; }

table.bordered td:first-child,
table.bordered th:first-child,
table.striped td:first-child,
table.striped th:first-child {
  padding-left: 16px; }

table.bordered td:last-child,
table.bordered th:last-child,
table.striped td:last-child,
table.striped th:last-child {
  padding-right: 16px; }

table.flat td,
table.flat th {
  border: none;
  padding: 0; }

input,
select,
textarea,
fieldset {
  font-family: "Gravity-Book";
  font-size: 15px; }

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="date"],
input[type="tel"],
input[type="url"],
input[type="password"] {
  height: 40px;
  padding: 8px 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 2px; }

select,
textarea {
  display: block;
  width: 100%;
  line-height: 1.75;
  padding: 8px 10px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #dfdfdf; }

select:not([multiple]) {
  cursor: pointer;
  height: 40px;
  vertical-align: middle; }

label {
  vertical-align: middle; }

textarea:focus,
select:focus,
input:focus {
  outline: none;
  background: #fff;
  border-color: #bbb; }

textarea:disabled,
select:disabled,
input:disabled,
textarea.disabled,
select.disabled,
input.disabled {
  resize: none;
  opacity: 0.75;
  cursor: default;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5); }

fieldset {
  padding: 39px 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px; }

legend {
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  padding: 0 1em;
  margin-left: -1em;
  top: 2px;
  position: relative;
  line-height: 0; }

.form {
  margin-bottom: 0; }
  .form .form-item {
    margin-bottom: 24px; }
  .form input[type="email"],
  .form input[type="number"],
  .form input[type="search"],
  .form input[type="text"],
  .form input[type="date"],
  .form input[type="tel"],
  .form input[type="url"],
  .form input[type="password"],
  .form select,
  .form textarea {
    display: block;
    width: 100%; }
  .form input.width-50,
  .form textarea.width-50,
  .form select.width-50 {
    width: 50%; }
  .form label {
    font-size: 15px;
    color: #111;
    font-weight: normal;
    display: block; }
  .form .checkboxes label,
  .form label.checkbox {
    text-transform: none;
    font-weight: normal;
    cursor: pointer;
    color: inherit;
    font-size: 16px; }
  .form .checkboxes label {
    margin-bottom: 8px; }
    .form .checkboxes label:last-child {
      margin-bottom: 0; }
  .form .checkboxes-inline {
    display: block; }
    .form .checkboxes-inline label {
      font-size: inherit;
      color: inherit;
      display: inline-block;
      margin-right: 16px;
      text-transform: none;
      font-weight: normal; }
  .form span.error,
  .form div.error,
  .form span.success,
  .form div.success {
    text-transform: none;
    font-weight: normal;
    font-size: 12px; }
  .form span.error,
  .form span.success {
    margin-left: .4rem; }

.form-inline textarea,
.form-inline select,
.form-inline input[type="email"],
.form-inline input[type="number"],
.form-inline input[type="search"],
.form-inline input[type="text"],
.form-inline input[type="date"],
.form-inline input[type="tel"],
.form-inline input[type="url"],
.form-inline input[type="password"] {
  width: auto;
  display: inline-block; }

input.big,
select.big {
  font-size: 19px;
  height: 48px; }

input.big {
  padding: 16px 10px; }

select.big {
  padding: 6px 10px; }

.desc {
  text-transform: none;
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 20px;
  font-weight: normal; }

ul.desc {
  margin-bottom: 8px; }

span.desc {
  margin-left: 4px;
  line-height: 20px; }

input.error,
textarea.error,
select.error {
  margin-top: -1px;
  background: none;
  background-color: rgba(243, 66, 72, 0.1);
  border: 1px solid #f34248; }

input.success,
textarea.success,
select.success {
  margin-top: -1px;
  background: none;
  background-color: rgba(96, 174, 77, 0.1);
  border: 1px solid #60ae4d; }

.controls {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex; }
  .controls input {
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    margin-bottom: 0 !important; }
  .controls .button,
  .controls span {
    -ms-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .controls span {
    font-weight: normal;
    background-color: #eee;
    padding: 0 12px;
    color: #878787;
    font-size: 13px;
    line-height: 40px;
    white-space: nowrap; }
  .controls .button {
    border-radius: 0 4px 4px 0; }

@media (max-width: 768px) {
  .form input,
  .form textarea,
  .form select {
    font-size: 16px; }
    .form input.width-50,
    .form textarea.width-50,
    .form select.width-50 {
      width: 100%; } }

button,
.button {
  font-family: "Gravity-Book";
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  line-height: 38px;
  height: 40px;
  padding: 0 28px;
  border: 1px solid transparent;
  vertical-align: middle;
  -webkit-appearance: none;
  color: #000;
  background-color: #eee;
  border-radius: 4px; }

button:hover,
.button:hover {
  text-decoration: none; }

.button:disabled,
.button.disabled {
  cursor: default;
  font-style: normal;
  opacity: .5; }
  .button:disabled:hover,
  .button.disabled:hover {
    color: #000;
    -webkit-box-shadow: none;
    box-shadow: none; }

.button.outline {
  background: none;
  font-weight: normal; }

.button.outline:hover {
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none; }

.button.outline,
.button.outline:disabled:hover,
.button.outline.disabled:hover {
  color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.4); }

.button.small {
  font-size: 13px;
  line-height: 32px;
  height: 32px;
  padding: 0 20px; }
  .button.small.upper {
    font-size: 11px; }

.button.big {
  font-size: 19px;
  line-height: 46px;
  height: 48px;
  padding: 0 48px; }
  .button.big.upper {
    font-size: 14px; }

.button.upper {
  font-size: 12px; }

.button.primary {
  background: #27aae1;
  color: #fff; }
  .button.primary:focus, .button.primary:hover {
    color: rgba(255, 255, 255, 0.6); }
    .button.primary:focus:disabled, .button.primary:focus.disabled, .button.primary:hover:disabled, .button.primary:hover.disabled {
      color: #fff;
      background: #27aae1; }
  .button.primary.outline:hover {
    color: rgba(39, 170, 225, 0.6);
    border-color: rgba(39, 170, 225, 0.4); }
  .button.primary.outline, .button.primary.outline:disabled:hover, .button.primary.outline.disabled:hover {
    color: #27aae1;
    border-color: #27aae1;
    background: none; }

.button.inverted {
  background: #fff;
  color: #000; }
  .button.inverted:focus, .button.inverted:hover {
    color: rgba(0, 0, 0, 0.6); }
    .button.inverted:focus:disabled, .button.inverted:focus.disabled, .button.inverted:hover:disabled, .button.inverted:hover.disabled {
      color: #000;
      background: #fff; }
  .button.inverted.outline:hover {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4); }
  .button.inverted.outline, .button.inverted.outline:disabled:hover, .button.inverted.outline.disabled:hover {
    color: white;
    border-color: white;
    background: none; }

.buttons.group {
  display: inline-block;
  vertical-align: bottom; }
  .buttons.group .button {
    float: left;
    margin-left: -1px;
    border-radius: 0; }
    .buttons.group .button:first-child {
      border-radius: 4px 0 0 4px; }
    .buttons.group .button:last-child {
      border-radius: 0 4px 4px 0; }

.label {
  font-size: 10px;
  font-weight: normal;
  display: inline;
  line-height: 1;
  top: -1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
  color: #000;
  background: #f4f4f4;
  padding: 2px 8px;
  letter-spacing: .01em; }
  .label a,
  .label a:hover {
    color: #000;
    text-decoration: none; }

.label.primary {
  background: #27aae1; }
  .label.primary,
  .label.primary a {
    color: #fff; }
  .label.primary.outline {
    border-color: #27aae1; }
    .label.primary.outline,
    .label.primary.outline a {
      color: #27aae1; }
  .label.primary.tag {
    background: none; }
    .label.primary.tag,
    .label.primary.tag a {
      color: #27aae1; }

.label.error {
  background: #f34248; }
  .label.error,
  .label.error a {
    color: #fff; }
  .label.error.outline {
    border-color: #f34248; }
    .label.error.outline,
    .label.error.outline a {
      color: #f34248; }
  .label.error.tag {
    background: none; }
    .label.error.tag,
    .label.error.tag a {
      color: #f34248; }

.label.success {
  background: #60ae4d; }
  .label.success,
  .label.success a {
    color: #fff; }
  .label.success.outline {
    border-color: #60ae4d; }
    .label.success.outline,
    .label.success.outline a {
      color: #60ae4d; }
  .label.success.tag {
    background: none; }
    .label.success.tag,
    .label.success.tag a {
      color: #60ae4d; }

.label.warning {
  background: #fed443; }
  .label.warning,
  .label.warning a {
    color: #000; }
  .label.warning.outline {
    border-color: #fed443; }
    .label.warning.outline,
    .label.warning.outline a {
      color: #fed443; }
  .label.warning.tag {
    background: none; }
    .label.warning.tag,
    .label.warning.tag a {
      color: #fed443; }

.label.inverted {
  background: #fff; }
  .label.inverted,
  .label.inverted a {
    color: #000; }
  .label.inverted.outline {
    border-color: #fff; }
    .label.inverted.outline,
    .label.inverted.outline a {
      color: #fff; }
  .label.inverted.tag {
    background: none; }
    .label.inverted.tag,
    .label.inverted.tag a {
      color: #fff; }

.label.outline {
  background: none;
  padding: 1px 7px;
  border: 1px solid rgba(0, 0, 0, 0.2); }
  .label.outline,
  .label.outline a {
    color: rgba(0, 0, 0, 0.65); }

.badge {
  padding: 2px 6px;
  border-radius: 24px; }

.badge.outline {
  padding: 1px 5px; }

.label.tag {
  padding: 0;
  background: none;
  font-weight: bold;
  letter-spacing: .02em; }

.label.tag.primary,
.label.tag.primary a {
  color: #27aae1; }

.label.tag.error,
.label.tag.error a {
  color: #f34248; }

.label.tag.success,
.label.tag.success a {
  color: #60ae4d; }

.label.tag.warning,
.label.tag.warning a {
  color: #fed443; }

.label.tag.inverted,
.label.tag.inverted a {
  color: #fff; }

.button:hover .badge {
  opacity: .6; }

h6 .label {
  top: -3px; }

.alert {
  position: relative;
  padding: 15px 24px;
  padding-right: 40px;
  line-height: 20px;
  font-size: 15px;
  color: #000;
  background: #f4f4f4;
  border: 1px solid #dbdbdb;
  display: block;
  font-weight: normal;
  border-radius: 4px;
  margin-bottom: 24px; }
  .alert a {
    color: #000;
    font-weight: bold; }
    .alert a:hover {
      -moz-transition: all linear 0.2s;
      -webkit-transition: all linear 0.2s;
      -o-transition: all linear 0.2s;
      transition: all linear 0.2s;
      color: rgba(0, 0, 0, 0.6); }
  .alert h5 {
    margin-bottom: 4px; }
  .alert p,
  .alert ul,
  .alert ol {
    margin-bottom: 0; }
  .alert .close {
    position: absolute;
    top: 15px;
    right: 8px; }

.alert.primary {
  color: #27aae1;
  background-color: rgba(39, 170, 225, 0.15);
  border: 1px solid rgba(39, 170, 225, 0.15); }
  .alert.primary a,
  .alert.primary h5 {
    color: #27aae1; }
  .alert.primary a:hover {
    color: #000; }

.alert.error {
  color: #f34248;
  background-color: rgba(243, 66, 72, 0.15);
  border: 1px solid rgba(243, 66, 72, 0.15); }
  .alert.error a,
  .alert.error h5 {
    color: #f34248; }
  .alert.error a:hover {
    color: #000; }

.alert.success {
  color: #60ae4d;
  background-color: rgba(96, 174, 77, 0.15);
  border: 1px solid rgba(96, 174, 77, 0.15); }
  .alert.success a,
  .alert.success h5 {
    color: #60ae4d; }
  .alert.success a:hover {
    color: #000; }

.alert.warning {
  color: #c09501;
  background-color: rgba(254, 212, 67, 0.15);
  border: 1px solid rgba(254, 212, 67, 0.15);
  border-color: rgba(254, 212, 67, 0.5); }
  .alert.warning a,
  .alert.warning h5 {
    color: #c09501; }
  .alert.warning a:hover {
    color: #000; }

.message {
  display: none;
  position: fixed;
  border-radius: 4px;
  z-index: 500;
  top: 16px;
  right: 16px;
  width: 320px;
  line-height: 20px;
  font-size: 15px;
  padding: 16px 20px;
  color: rgba(0, 0, 0, 0.9);
  background: #f4f4f4; }
  .message .close {
    position: absolute;
    top: 6px;
    right: 6px; }
  .message h1,
  .message h2,
  .message h3,
  .message h4,
  .message h5,
  .message h6 {
    color: inherit; }

.message ul,
.message ol {
  margin-bottom: 0; }

.message.line {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  padding-right: 56px; }
  .message.line .close {
    top: 16px;
    right: 16px; }

.message .buttons {
  margin-top: 16px; }

.message .buttons a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  margin-right: 8px; }

.message.line .buttons {
  margin-top: 0;
  display: inline-block; }

.message.primary {
  background: #27aae1;
  color: rgba(255, 255, 255, 0.9); }

.message.error {
  background: #f34248;
  color: rgba(255, 255, 255, 0.9); }

.message.success {
  background: #60ae4d;
  color: rgba(255, 255, 255, 0.9); }

.message.warning {
  background: #fed443; }

.message.primary a,
.message.error a,
.message.success a {
  color: rgba(255, 255, 255, 0.9); }
  .message.primary a:hover,
  .message.error a:hover,
  .message.success a:hover {
    color: rgba(255, 255, 255, 0.7); }

.tabs {
  margin-bottom: 24px;
  font-size: 15px; }

.tabs li em,
.tabs li.active a {
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: default;
  text-decoration: none;
  background: none; }

.tabs em,
.tabs a {
  position: relative;
  top: 1px;
  font-style: normal;
  display: block;
  padding: 7px 24px;
  border: 1px solid transparent;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px; }

.tabs a:hover {
  -moz-transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #000;
  text-decoration: underline;
  background-color: #f2f2f2; }

@media (min-width: 768px) {
  .tabs ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    margin-top: -1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .tabs li em,
  .tabs li.active a {
    border-bottom: 1px solid #fff; } }

.breadcrumb {
  font-size: 13px;
  margin-bottom: 24px; }

.breadcrumb ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.breadcrumb.centered ul {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center; }

.breadcrumb em,
.breadcrumb a {
  font-style: normal;
  padding: 0 10px;
  display: inline-block;
  white-space: nowrap; }

.breadcrumb em {
  color: rgba(0, 0, 0, 0.5); }

.breadcrumb a {
  color: #000;
  text-decoration: none; }
  .breadcrumb a:hover {
    -moz-transition: all linear 0.2s;
    -webkit-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: underline; }

.breadcrumb li:after {
  display: inline-block;
  content: '/';
  color: rgba(0, 0, 0, 0.4); }

.breadcrumb li:last-child:after {
  display: none; }

.breadcrumb li:first-child em,
.breadcrumb li:first-child a {
  padding-left: 0; }

.breadcrumb li.active em,
.breadcrumb li.active a {
  text-decoration: none;
  cursor: text;
  color: rgba(0, 0, 0, 0.4); }

.pagination {
  margin: 24px 0;
  font-size: 15px; }

.pagination ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex; }

.pagination.centered ul {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center; }

.pagination em,
.pagination a {
  display: inline-block;
  font-style: normal;
  padding: 8px 16px;
  line-height: 1;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid transparent; }

.pagination a {
  text-decoration: none;
  color: #000; }
  .pagination a:hover {
    color: rgba(0, 0, 0, 0.5);
    background: #f4f4f4; }

.pagination em,
.pagination li.active a {
  color: rgba(0, 0, 0, 0.5);
  background: #f4f4f4;
  cursor: text; }

.pagination.upper {
  font-size: 11px; }

.pager em,
.pager a {
  border-radius: 24px;
  border-color: rgba(0, 0, 0, 0.1); }

.pager li {
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%; }

.pager li.next {
  text-align: right; }

.pager.centered li {
  -webkit-flex-basis: auto;
  -ms-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  margin-left: 4px;
  margin-right: 4px; }

.pager.flat em,
.pager.flat a {
  border: none;
  display: block;
  padding: 0; }

.pager.flat a {
  font-weight: bold; }
  .pager.flat a:hover {
    background: none;
    text-decoration: underline; }

@media (max-width: 768px) {
  .pager.flat ul {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; }
  .pager.flat li {
    -webkit-flex-basis: 100%;
    -ms-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 8px;
    text-align: left; } }

.dropdown {
  display: none;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  width: 280px;
  color: #000;
  font-size: 15px;
  background: #fff;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: auto;
  max-height: 300px;
  margin: 0;
  padding: 0; }

.dropdown.dropdown-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: none;
  border: none; }

.dropdown .close {
  margin: 20px auto; }

.dropdown ul {
  list-style: none;
  margin: 0; }
  .dropdown ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
    .dropdown ul li:last-child {
      border-bottom: none; }
  .dropdown ul a {
    display: block;
    padding: 8px 8px 7px 8px;
    text-decoration: none;
    color: #000; }
    .dropdown ul a:hover {
      background: rgba(0, 0, 0, 0.05); }

.modal-box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 200; }

.modal {
  position: relative;
  margin: auto;
  margin-top: 16px;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  color: #000; }
  @media (max-width: 768px) {
    .modal input[type="text"],
    .modal input[type="password"],
    .modal input[type="email"],
    .modal input[type="url"],
    .modal textarea {
      font-size: 16px; } }

.modal-header {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.modal-header:empty {
  display: none; }

.modal-body {
  padding: 36px 56px; }

.modal .close {
  line-height: 32.4px;
  height: 36px;
  width: 36px;
  font-size: 36px;
  position: absolute;
  top: 18px;
  right: 16px;
  opacity: .3; }
  .modal .close:hover {
    opacity: 1; }

@media (max-width: 768px) {
  .modal-header,
  .modal-body {
    padding: 24px; } }

.group:after {
  content: "";
  display: table;
  clear: both; }

.end {
  margin-bottom: 0 !important; }

.centered {
  margin-left: auto;
  margin-right: auto; }

.float-right {
  float: right; }
  @media (max-width: 768px) {
    .float-right {
      float: none; } }

.float-left {
  float: left; }
  @media (max-width: 768px) {
    .float-left {
      float: none; } }

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

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

.hide {
  display: none; }

@media (max-width: 768px) {
  .hide-on-small {
    display: none !important; } }

.show-on-small {
  display: none !important; }
  @media (max-width: 768px) {
    .show-on-small {
      display: block !important; } }

@media print {
  .hide-on-print {
    display: none !important; }
  .show-on-print {
    display: block !important; } }

.invisible {
  visibility: hidden; }

.visible {
  visibility: visible; }

.muted {
  color: rgba(0, 0, 0, 0.5) !important; }

.soft-muted {
  color: rgba(0, 0, 0, 0.7) !important; }

a.muted:hover,
a.soft-muted:hover {
  color: #000 !important; }

.error {
  color: #f34248; }

.success {
  color: #60ae4d; }

.upper {
  text-transform: uppercase;
  letter-spacing: .08em; }

.normal {
  font-weight: normal !important; }

.light {
  font-weight: 300 !important; }

.italic {
  font-style: italic !important; }

.bold {
  font-weight: bold !important; }

.highlight {
  background-color: rgba(39, 170, 225, 0.075); }

.round {
  border-radius: 56px; }

input.round {
  border-radius: 24px; }

.nowrap,
.nowrap td {
  white-space: nowrap; }

.req {
  font-weight: bold;
  color: #f34248;
  font-size: 1.1em;
  text-transform: none; }

.close {
  font-weight: normal;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  opacity: 0.5;
  border: none;
  line-height: 25.2px;
  height: 28px;
  width: 28px;
  font-size: 28px; }
  .close:before {
    content: '\00D7'; }
  .close:hover {
    opacity: 1;
    text-decoration: none !important; }
  .close.inverted {
    color: #fff; }

.close.small {
  line-height: 18px;
  height: 20px;
  width: 20px;
  font-size: 20px; }

.close.big {
  line-height: 32.4px;
  height: 36px;
  width: 36px;
  font-size: 36px; }

@media (min-width: 768px) {
  .fullwidth {
    -ms-flex: auto;
    -webkit-flex: auto;
    -webkit-box-flex: 1;
    flex: auto; }
  .fullwidth ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex; }
  .fullwidth li {
    -ms-flex: auto;
    -webkit-flex: auto;
    -webkit-box-flex: 1;
    flex: auto;
    text-align: center; }
    .fullwidth li em,
    .fullwidth li a {
      display: block; } }

.width-100 {
  width: 100%; }

.width-50 {
  width: 50%; }

@media (max-width: 768px) {
  .width-50 {
    width: 100% !important; } }

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%; }

.no-scroll {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important; }

.overlay {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9); }

.scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.search-icon {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  font-size: 18px;
  width: 16px;
  line-height: 1;
  font-style: normal;
  color: #000;
  position: relative;
  top: -1px;
  font-weight: bold;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg); }
  .search-icon:before {
    content: "\26B2"; }
  .search-icon.inverted {
    color: #fff; }

button .search-icon {
  top: 0; }

button:hover .search-icon {
  opacity: .6; }

.menu-icon {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  font-size: 15px;
  width: 16px;
  line-height: 1;
  font-style: normal;
  color: #000;
  font-weight: normal; }
  .menu-icon:before {
    content: "\2630"; }
  .menu-icon.inverted {
    color: #fff; }

button:hover .menu-icon {
  opacity: .6; }

.caret {
  position: relative;
  display: inline-block;
  height: 0;
  vertical-align: middle;
  width: 0;
  margin-left: 2px; }

.caret:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent; }

.caret.down:before {
  border-top: 4px solid #000; }

.caret.up:before {
  border-bottom: 4px solid #000; }

.caret.down.inverted:before {
  border-top-color: #fff; }

.caret.up.inverted:before {
  border-bottom-color: #fff; }

.button:hover .caret {
  opacity: .6; }

.offcanvas {
  background: #fff;
  position: fixed;
  padding: 24px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 300;
  overflow-y: scroll; }

.offcanvas .close {
  position: absolute;
  top: 8px;
  right: 8px; }

.offcanvas-left {
  border-right: 1px solid rgba(0, 0, 0, 0.1); }

.offcanvas-right {
  left: auto;
  right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1); }

.offcanvas-push-body {
  position: relative; }

@media print {
  * {
    background: transparent !important;
    color: black !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  h2, h3, h4 {
    page-break-after: avoid; }
  @page {
    margin: 0.5cm; } }

/*! Flickity v2.0.8
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #09F;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active, .flickity-prev-next-button.nice-select.open {
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

/* RoyalSlider v9.5.7
http://dimsemenov.com/plugins/royal-slider/documentation/
---------------------------------------------- */
/* v1.0.6 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
  width: 100%;
  height: 100%;
  position: relative;
  direction: ltr; }

.royalSlider > * {
  float: left; }

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none; }

.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: transparent; }

.rsVisibleNearbyWrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-tap-highlight-color: transparent; }

.rsVisibleNearbyWrap .rsOverflow {
  position: absolute;
  left: 0;
  top: 0; }

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent; }

.rsArrow,
.rsThumbsArrow {
  cursor: pointer; }

.rsThumb {
  float: left;
  position: relative; }

.rsArrow,
.rsNav,
.rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear; }

.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  -moz-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  -o-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  transition: visibility 0s linear 0.3s,opacity 0.3s linear; }

.rsGCaption {
  width: 100%;
  float: left;
  text-align: center; }

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
  position: fixed !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important; }

.royalSlider .rsSlide.rsFakePreloader {
  opacity: 1 !important;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  display: none; }

.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%; }

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
  height: auto; }

.rsContent {
  width: 100%;
  height: 100%;
  position: relative; }

.rsPreloader {
  position: absolute;
  z-index: 0; }

.rsNav {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.rsNavItem {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25); }

.rsThumbs {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  z-index: 22; }

.rsTabs {
  float: left;
  background: none !important; }

.rsTabs,
.rsThumbs {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent; }

.rsVideoContainer {
  /*left: 0;
	top: 0;
	position: absolute;*/
  /*width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	float: left;*/
  width: auto;
  height: auto;
  line-height: 0;
  position: relative; }

.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: .3s; }

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1; }

.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 44px; }

.rsABlock {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 15; }

img.rsImg {
  max-width: none; }

.grab-cursor {
  cursor: url("../images/grab.png") 8 8, move; }

.grabbing-cursor {
  cursor: url("../images/grabbing.png") 8 8, move; }

.rsNoDrag {
  cursor: auto; }

.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
  background: url("../images/blank.gif"); }

/******************************
*
*  RoyalSlider Default Skin
*
*    1. Arrows
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*
*  Sprite: 'rs-default.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
*
******************************/
/* Background */
/***************
*
*  1. Arrows
*
****************/
.rsDefault .rsArrow {
  height: 100%;
  width: 44px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21; }

.rsDefault.rsVer .rsArrow {
  width: 100%;
  height: 44px; }

.rsDefault.rsVer .rsArrowLeft {
  top: 0;
  left: 0; }

.rsDefault.rsVer .rsArrowRight {
  bottom: 0;
  left: 0; }

.rsDefault.rsHor .rsArrowLeft {
  left: 0;
  top: 0; }

.rsDefault.rsHor .rsArrowRight {
  right: 0;
  top: 0; }

.rsDefault .rsArrowIcn {
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  position: absolute;
  cursor: pointer;
  background: url("../images/rs-default.png");
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
  border-radius: 2px; }

.rsDefault .rsArrowIcn:hover {
  background-color: rgba(0, 0, 0, 0.9); }

.rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
  background-position: -64px -32px; }

.rsDefault.rsHor .rsArrowRight .rsArrowIcn {
  background-position: -64px -64px; }

.rsDefault.rsVer .rsArrowLeft .rsArrowIcn {
  background-position: -96px -32px; }

.rsDefault.rsVer .rsArrowRight .rsArrowIcn {
  background-position: -96px -64px; }

.rsDefault .rsArrowDisabled .rsArrowIcn {
  opacity: .2;
  filter: alpha(opacity=20);
  *display: none; }

/***************
*
*  2. Bullets
*
****************/
.rsDefault .rsBullets {
  position: absolute;
  z-index: 35;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 25px;
  margin: 0 auto;
  text-align: center;
  line-height: 8px;
  overflow: hidden; }

.rsDefault .rsBullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 7px 10px 7px; }

.rsDefault .rsBullet span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #777;
  background: rgba(255, 255, 255, 0.5); }

.rsDefault .rsBullet.rsNavSelected span {
  background-color: #FFF; }

/***************
*
*  3. Thumbnails
*
****************/
.rsDefault .rsThumbsHor {
  width: 100%;
  height: 72px; }

.rsDefault .rsThumbsVer {
  width: 96px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0; }

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  position: relative;
  height: 100%; }

.rsDefault.rsWithThumbsVer .rsThumbsContainer {
  position: relative;
  width: 100%; }

.rsDefault .rsThumb {
  float: left;
  overflow: hidden;
  width: 96px;
  height: 72px; }

.rsDefault .rsThumb img {
  width: 100%;
  height: 100%; }

.rsDefault .rsThumb.rsNavSelected {
  background: #02874a; }

.rsDefault .rsThumb.rsNavSelected img {
  opacity: 0.3;
  filter: alpha(opacity=30); }

.rsDefault .rsTmb {
  display: block; }

/* Thumbnails with text */
.rsDefault .rsTmb h5 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 20px;
  color: #FFF; }

.rsDefault .rsTmb span {
  color: #DDD;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 18px; }

/* Thumbnails arrow icons */
.rsDefault .rsThumbsArrow {
  height: 100%;
  width: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
  background: #000;
  background: rgba(0, 0, 0, 0.75); }

.rsDefault .rsThumbsArrow:hover {
  background: rgba(0, 0, 0, 0.9); }

.rsDefault.rsWithThumbsVer .rsThumbsArrow {
  width: 100%;
  height: 20px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft {
  top: 0;
  left: 0; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight {
  bottom: 0;
  left: 0; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
  left: 0;
  top: 0; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
  right: 0;
  top: 0; }

.rsDefault .rsThumbsArrowIcn {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  position: absolute;
  cursor: pointer;
  background: url("../images/rs-default.png"); }

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -128px -32px; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -128px -48px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -144px -32px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -144px -48px; }

.rsDefault .rsThumbsArrowDisabled {
  display: none !important; }

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px; }
  .rsDefault .rsThumbsHor {
    height: 44px; }
  .rsDefault .rsThumbsVer {
    width: 59px; } }

/***************
*
*  4. Tabs
*
****************/
.rsDefault .rsTabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-top: 12px;
  position: relative; }

.rsDefault .rsTab {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: auto;
  width: auto;
  color: #333;
  padding: 5px 13px 6px;
  min-width: 72px;
  border: 1px solid #D9D9DD;
  border-right: 1px solid #f5f5f5;
  text-decoration: none;
  background-color: #FFF;
  background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4));
  background-image: -o-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
  -webkit-box-shadow: inset 1px 0 0 #fff;
  box-shadow: inset 1px 0 0 #fff;
  *display: inline;
  *zoom: 1; }

.rsDefault .rsTab:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.rsDefault .rsTab:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #cfcfcf; }

.rsDefault .rsTab:active, .rsDefault .rsTab.nice-select.open {
  border: 1px solid #D9D9DD;
  background-color: #f4f4f4;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset; }

.rsDefault .rsTab.rsNavSelected {
  color: #FFF;
  border: 1px solid #999;
  text-shadow: 1px 1px #838383;
  -webkit-box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
  box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
  background: #ACACAC;
  background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
  background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ACACAC), to(#BBB));
  background-image: -o-linear-gradient(top, #ACACAC, #BBB);
  background-image: linear-gradient(to bottom, #ACACAC, #BBB); }

/***************
*
*  5. Fullscreen button
*
****************/
.rsDefault .rsFullscreenBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 22;
  display: block;
  position: absolute;
  cursor: pointer; }

.rsDefault .rsFullscreenIcn {
  display: block;
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url("../images/rs-default.png") 0 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
  border-radius: 2px; }

.rsDefault .rsFullscreenIcn:hover {
  background-color: rgba(0, 0, 0, 0.9); }

.rsDefault.rsFullscreen .rsFullscreenIcn {
  background-position: -32px 0; }

/***************
*
*  6. Play/close video button
*
****************/
.rsDefault .rsPlayBtn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  cursor: pointer; }

.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background: url("../images/rs-default.png") no-repeat 0 -32px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000; }

.rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
  background-color: rgba(0, 0, 0, 0.9); }

.rsDefault .rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%; }

.rsDefault .rsCloseVideoBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 500;
  position: absolute;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0); }

.rsDefault .rsCloseVideoBtn.rsiOSBtn {
  top: -38px;
  right: -6px; }

.rsDefault .rsCloseVideoIcn {
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url("../images/rs-default.png") -64px 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000; }

.rsDefault .rsCloseVideoIcn:hover {
  background-color: rgba(0, 0, 0, 0.9); }

/***************
*
*  7. Preloader
*
****************/
.rsDefault .rsPreloader {
  width: 20px;
  height: 20px;
  background-image: url("../images/preloader-white.gif");
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px; }

/***************
*
*  8. Global caption
*
****************/
.rsDefault .rsGCaption {
  position: absolute;
  float: none;
  bottom: 6px;
  left: 6px;
  text-align: left;
  background: black;
  background: rgba(0, 0, 0, 0.75);
  color: #FFF;
  padding: 2px 8px;
  width: auto;
  font-size: 12px;
  border-radius: 2px; }

/*****
*
*
* NICE SELECT
*
*
*****/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #878787;
    border-right: 2px solid #878787;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #bababa; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 15px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.11);
    box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.11);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      color: #3e3e3e; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }

/*!
	animate.css -http://daneden.me/animate
	Version - 3.5.1
!*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

/* =FONTS
-----------------------------------------------------------------------------*/
@font-face {
  font-family: 'Gravity-LightItalic';
  src: url("../fonts/gravity/Gravity-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/gravity/Gravity-LightItalic.otf") format("opentype"), url("../fonts/gravity/Gravity-LightItalic.woff") format("woff"), url("../fonts/gravity/Gravity-LightItalic.ttf") format("truetype"), url("../fonts/gravity/Gravity-LightItalic.svg#Gravity-LightItalic") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gravity-Light';
  src: url("../fonts/gravity/Gravity-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/gravity/Gravity-Light.otf") format("opentype"), url("../fonts/gravity/Gravity-Light.woff") format("woff"), url("../fonts/gravity/Gravity-Light.ttf") format("truetype"), url("../fonts/gravity/Gravity-Light.svg#Gravity-Light") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gravity-BookItalic';
  src: url("../fonts/gravity/Gravity-BookItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/gravity/Gravity-BookItalic.otf") format("opentype"), url("../fonts/gravity/Gravity-BookItalic.woff") format("woff"), url("../fonts/gravity/Gravity-BookItalic.ttf") format("truetype"), url("../fonts/gravity/Gravity-BookItalic.svg#Gravity-BookItalic") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gravity-Book';
  src: url("../fonts/gravity/Gravity-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/gravity/Gravity-Book.otf") format("opentype"), url("../fonts/gravity/Gravity-Book.woff") format("woff"), url("../fonts/gravity/Gravity-Book.ttf") format("truetype"), url("../fonts/gravity/Gravity-Book.svg#Gravity-Book") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gravity-BoldItalic';
  src: url("../fonts/gravity/Gravity-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/gravity/Gravity-BoldItalic.otf") format("opentype"), url("../fonts/gravity/Gravity-BoldItalic.woff") format("woff"), url("../fonts/gravity/Gravity-BoldItalic.ttf") format("truetype"), url("../fonts/gravity/Gravity-BoldItalic.svg#Gravity-BoldItalic") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gravity-Bold';
  src: url("../fonts/gravity/Gravity-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/gravity/Gravity-Bold.otf") format("opentype"), url("../fonts/gravity/Gravity-Bold.woff") format("woff"), url("../fonts/gravity/Gravity-Bold.ttf") format("truetype"), url("../fonts/gravity/Gravity-Bold.svg#Gravity-Bold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gravity-Regular';
  src: url("../fonts/gravity/Gravity-Regular.otf");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gontserrat-Black';
  src: url('../fonts/MONTSERRAT/Gontserrat-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gontserrat-Black';
  src: url('../fonts/MONTSERRAT/Gontserrat-SemiBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gontserrat-Black';
  src: url('../fonts/MONTSERRAT/Gontserrat-ExtraBold.ttf') format('truetype');
  font-weight: bolder;
  font-style: normal;
}

@font-face {
  font-family: 'Myriad-lighter';
  src: url('../fonts/myriad-pro/MyriadPro-Light.otf') format('opentype');
  font-weight: lighter;
  font-style: normal;
}

@font-face {
  font-family: 'Myriad-normal';
  src: url('../fonts/myriad-pro/MYRIADPRO-REGULAR.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Myriad-bold';
  src: url('../fonts/myriad-pro/MYRIADPRO-BOLD.OTF') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Myriad-bolder';
  src: url('../fonts/myriad-pro/MYRIADPRO-BOLDCOND.OTF') format('opentype');
  font-weight: bolder;
  font-style: normal;
}

body {
  font-family: 'Myriad-normal';
}

.gravity--regular, .nice-select .option, .noticiasSmall__absolute-blue h3, .noticiasSmall__absolute-gray h3, .new-directorio__cover__heading, .new-directorio__cover__subtitle, .new-directorio__cover__select .current, .perfil__datos-extra, .panel-perfil__input, input.panel-perfil__input, .panel-perfil__select, select.panel-perfil__select, .panel-perfil__textarea, textarea.panel-perfil__textarea, .verified-dialog__title, p.listado-datos, .listado-datos, p.listado-direccion, .listado-direccion, #login.uk-form .login__title, #login.uk-form input, .login__forgot-password, div .login__more-text, .reset__title, .events-home__article__text h4, .events-home__article__text p, .events-home__article__button a, .perfil__information a, .section__dashboard__user__item--button a, .perfil-section__orders__table table tbody tr td p span, .perfil-section__orders__table table tbody tr td p a, .perfil-section__cuenta__text h4, .perfil-section__cuenta__text p, .section__items__button a, .kirby-text-miembros p, .breadcrumbs, .miembros-sesiones__video p, .cirujanos__container__item__name h4, .cirujanos__container__item__phone p, .cirujanos__container__item__ubication p, .cirujanos__container__item__link a, .cirujanos__container__footer p, .cirujanos__container__footer a.button, .cart-payment__order tbody tr td p, .cart-payment__order__thumb__text p span, .cart-payment__order__footer p, .cart-payment__sidebar__item p, .cart-payment__sidebar__item__footer p, .cart-payment__forms p, .cart-payment__forms .form input[type=text],
.cart-payment__forms .form input[type=email],
.cart-payment__forms .form input[type=tel], .cart-payment__forms .form label, .cart-payment__forms__credit-card__exp span, .cart-payment__forms__modal__container__text p, .orders__section p strong, .button__download__pdf, .orders__payment__status, .cover__search__container__text p, .cover__search__container__options label, .cover__search__container__form form input[type="text"],
.cover__search__container__form form input[type="search"], .cover__search__container__help p, .cover__search__footer__item__text p, .cover__search__footer__item__result h4, .cover__search__footer__item__result p {
  font-family: 'Gravity-Regular';
  font-weight: normal;
  font-style: normal; }

.gravity, .content__page h1, .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6, .new-directorio__section h1, .new-directorio__section h2, .new-directorio__section h3, .new-directorio__section h4, .new-directorio__section h5, .new-directorio__section h6, .perfil__title, .perfil__datos-extra--icon-span, .pdf-download__text, .pdf-download__size {
  font-family: 'Gravity-Book';
  font-weight: normal;
  font-style: normal; }
  .gravity b, .content__page h1 b, .content__page h2 b, .content__page h3 b, .content__page h4 b, .content__page h5 b, .content__page h6 b, .new-directorio__section h1 b, .new-directorio__section h2 b, .new-directorio__section h3 b, .new-directorio__section h4 b, .new-directorio__section h5 b, .new-directorio__section h6 b, .perfil__title b, .perfil__datos-extra--icon-span b, .pdf-download__text b, .pdf-download__size b, .gravity strong, .content__page h1 strong, .content__page h2 strong, .content__page h3 strong, .content__page h4 strong, .content__page h5 strong, .content__page h6 strong, .new-directorio__section h1 strong, .new-directorio__section h2 strong, .new-directorio__section h3 strong, .new-directorio__section h4 strong, .new-directorio__section h5 strong, .new-directorio__section h6 strong, .perfil__title strong, .perfil__datos-extra--icon-span strong, .pdf-download__text strong, .pdf-download__size strong {
    font-family: 'Gravity-Bold';
    font-weight: normal;
    font-style: normal; }
    .gravity b i, .content__page h1 b i, .content__page h2 b i, .content__page h3 b i, .content__page h4 b i, .content__page h5 b i, .content__page h6 b i, .new-directorio__section h1 b i, .new-directorio__section h2 b i, .new-directorio__section h3 b i, .new-directorio__section h4 b i, .new-directorio__section h5 b i, .new-directorio__section h6 b i, .perfil__title b i, .perfil__datos-extra--icon-span b i, .pdf-download__text b i, .pdf-download__size b i, .gravity b em, .content__page h1 b em, .content__page h2 b em, .content__page h3 b em, .content__page h4 b em, .content__page h5 b em, .content__page h6 b em, .new-directorio__section h1 b em, .new-directorio__section h2 b em, .new-directorio__section h3 b em, .new-directorio__section h4 b em, .new-directorio__section h5 b em, .new-directorio__section h6 b em, .perfil__title b em, .perfil__datos-extra--icon-span b em, .pdf-download__text b em, .pdf-download__size b em, .gravity strong i, .content__page h1 strong i, .content__page h2 strong i, .content__page h3 strong i, .content__page h4 strong i, .content__page h5 strong i, .content__page h6 strong i, .new-directorio__section h1 strong i, .new-directorio__section h2 strong i, .new-directorio__section h3 strong i, .new-directorio__section h4 strong i, .new-directorio__section h5 strong i, .new-directorio__section h6 strong i, .perfil__title strong i, .perfil__datos-extra--icon-span strong i, .pdf-download__text strong i, .pdf-download__size strong i, .gravity strong em, .content__page h1 strong em, .content__page h2 strong em, .content__page h3 strong em, .content__page h4 strong em, .content__page h5 strong em, .content__page h6 strong em, .new-directorio__section h1 strong em, .new-directorio__section h2 strong em, .new-directorio__section h3 strong em, .new-directorio__section h4 strong em, .new-directorio__section h5 strong em, .new-directorio__section h6 strong em, .perfil__title strong em, .perfil__datos-extra--icon-span strong em, .pdf-download__text strong em, .pdf-download__size strong em {
      font-family: 'Gravity-BoldItalic';
      font-weight: normal;
      font-style: normal; }
  .gravity i, .content__page h1 i, .content__page h2 i, .content__page h3 i, .content__page h4 i, .content__page h5 i, .content__page h6 i, .new-directorio__section h1 i, .new-directorio__section h2 i, .new-directorio__section h3 i, .new-directorio__section h4 i, .new-directorio__section h5 i, .new-directorio__section h6 i, .perfil__title i, .perfil__datos-extra--icon-span i, .pdf-download__text i, .pdf-download__size i, .gravity em, .content__page h1 em, .content__page h2 em, .content__page h3 em, .content__page h4 em, .content__page h5 em, .content__page h6 em, .new-directorio__section h1 em, .new-directorio__section h2 em, .new-directorio__section h3 em, .new-directorio__section h4 em, .new-directorio__section h5 em, .new-directorio__section h6 em, .perfil__title em, .perfil__datos-extra--icon-span em, .pdf-download__text em, .pdf-download__size em {
    font-family: 'Gravity-BookItalic';
    font-weight: normal;
    font-style: normal; }
    .gravity i b, .content__page h1 i b, .content__page h2 i b, .content__page h3 i b, .content__page h4 i b, .content__page h5 i b, .content__page h6 i b, .new-directorio__section h1 i b, .new-directorio__section h2 i b, .new-directorio__section h3 i b, .new-directorio__section h4 i b, .new-directorio__section h5 i b, .new-directorio__section h6 i b, .perfil__title i b, .perfil__datos-extra--icon-span i b, .pdf-download__text i b, .pdf-download__size i b, .gravity i strong, .content__page h1 i strong, .content__page h2 i strong, .content__page h3 i strong, .content__page h4 i strong, .content__page h5 i strong, .content__page h6 i strong, .new-directorio__section h1 i strong, .new-directorio__section h2 i strong, .new-directorio__section h3 i strong, .new-directorio__section h4 i strong, .new-directorio__section h5 i strong, .new-directorio__section h6 i strong, .perfil__title i strong, .perfil__datos-extra--icon-span i strong, .pdf-download__text i strong, .pdf-download__size i strong, .gravity em b, .content__page h1 em b, .content__page h2 em b, .content__page h3 em b, .content__page h4 em b, .content__page h5 em b, .content__page h6 em b, .new-directorio__section h1 em b, .new-directorio__section h2 em b, .new-directorio__section h3 em b, .new-directorio__section h4 em b, .new-directorio__section h5 em b, .new-directorio__section h6 em b, .perfil__title em b, .perfil__datos-extra--icon-span em b, .pdf-download__text em b, .pdf-download__size em b, .gravity em strong, .content__page h1 em strong, .content__page h2 em strong, .content__page h3 em strong, .content__page h4 em strong, .content__page h5 em strong, .content__page h6 em strong, .new-directorio__section h1 em strong, .new-directorio__section h2 em strong, .new-directorio__section h3 em strong, .new-directorio__section h4 em strong, .new-directorio__section h5 em strong, .new-directorio__section h6 em strong, .perfil__title em strong, .perfil__datos-extra--icon-span em strong, .pdf-download__text em strong, .pdf-download__size em strong {
      font-family: 'Gravity-BoldItalic';
      font-weight: normal;
      font-style: normal; }

.gravity--bold, .header__top p, .main__navigation__list__item, a.main__navigation__login, .main__navigation__login, .current, a.content__page__sidebar-navigation__list__item--active, .panel-perfil__button, .new-directorio__cover__select .current, .detected-state, p.detected-state, .detected-state__go, a.detected-state__go, #login.uk-form .uk-button, .eventos-home__tag p, .events-home__article__views a, .perfil-section__orders__table table tbody tr td p, .miembros-sesiones__pagination a, .cirujanos__container__footer p a, .cart__ticket:before, .button-default, .button-primary, .cart-payment__order thead tr th, .cart-payment__order__thumb__text p, .cart-payment__order__thumb__text h5, .cart-payment__order__count input[type=text], .cart-payment__order__footer p span, .cart-payment__sidebar__item p label, .cart-payment__sidebar__item__footer p label, .cart-payment__forms h4, .cart-payment__forms__modal__container__text h4, .cart-payment__forms__modal__container__text button, .orders__section p span, .cover__search__container__help a {
  font-family: 'Gravity-Bold';
  font-weight: normal;
  font-style: normal; }
  .gravity--bold i, .header__top p i, .main__navigation__list__item i, .main__navigation__login i, .current i, a.content__page__sidebar-navigation__list__item--active i, .panel-perfil__button i, .new-directorio__cover__select .current i, .detected-state i, .detected-state__go i, #login.uk-form .uk-button i, .eventos-home__tag p i, .events-home__article__views a i, .perfil-section__orders__table table tbody tr td p i, .miembros-sesiones__pagination a i, .cirujanos__container__footer p a i, .cart__ticket:before i, .button-default i, .button-primary i, .cart-payment__order thead tr th i, .cart-payment__order__thumb__text p i, .cart-payment__order__thumb__text h5 i, .cart-payment__order__count input[type=text] i, .cart-payment__order__footer p span i, .cart-payment__sidebar__item p label i, .cart-payment__sidebar__item__footer p label i, .cart-payment__forms h4 i, .cart-payment__forms__modal__container__text h4 i, .cart-payment__forms__modal__container__text button i, .orders__section p span i, .cover__search__container__help a i, .gravity--bold em, .header__top p em, .main__navigation__list__item em, .main__navigation__login em, .current em, a.content__page__sidebar-navigation__list__item--active em, .panel-perfil__button em, .new-directorio__cover__select .current em, .detected-state em, .detected-state__go em, #login.uk-form .uk-button em, .eventos-home__tag p em, .events-home__article__views a em, .perfil-section__orders__table table tbody tr td p em, .miembros-sesiones__pagination a em, .cirujanos__container__footer p a em, .cart__ticket:before em, .button-default em, .button-primary em, .cart-payment__order thead tr th em, .cart-payment__order__thumb__text p em, .cart-payment__order__thumb__text h5 em, .cart-payment__order__count input[type=text] em, .cart-payment__order__footer p span em, .cart-payment__sidebar__item p label em, .cart-payment__sidebar__item__footer p label em, .cart-payment__forms h4 em, .cart-payment__forms__modal__container__text h4 em, .cart-payment__forms__modal__container__text button em, .orders__section p span em, .cover__search__container__help a em {
    font-family: 'Gravity-BoldItalic';
    font-weight: normal;
    font-style: normal; }

.gravity--book, .verified-dialog__text, .section__featured__items__text h4, .miembros-sesiones__title h1, .miembros-sesiones__item__text h3, .cover__search__container__text h1, .gravity--book i, .verified-dialog__text i, .section__featured__items__text h4 i, .miembros-sesiones__title h1 i, .miembros-sesiones__item__text h3 i, .cover__search__container__text h1 i, .gravity--book em, .verified-dialog__text em, .section__featured__items__text h4 em, .miembros-sesiones__title h1 em, .miembros-sesiones__item__text h3 em, .cover__search__container__text h1 em {
  font-family: 'Gravity-Book';
  font-weight: normal;
  font-style: normal; }

/*
  WLC-TOOLBOX
*/
html, body {
  width: 100%;
  height: 100% !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff; }

body {
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden; }

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
  /* non-prefixed version, currently
                                  not supported by any browser */ }

/*
* {
  -webkit-touch-callout: none; 
  -webkit-user-select: none;   
  -khtml-user-select: none;    
  -moz-user-select: none;      
  -ms-user-select: none;       
  user-select: none;
}
*/
::-moz-selection {
  color: #000;
  background: #ffe400; }

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

.main {
  position: relative;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto; }

.container {
  position: relative;
  z-index: 10; }

.full-image-container {
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  z-index: 5;
  width: 100%;
  height: 100%; }

.video-cover {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 25; }

.video-bg {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 5; }

.video-bg > video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* 1. No object-fit support: */
@media (min-aspect-ratio: 16 / 9) {
  .video-bg > video {
    height: 300%;
    top: -100%; } }

@media (max-aspect-ratio: 16 / 9) {
  .video-bg > video {
    width: 300%;
    left: -100%; } }

/* 2. If supporting object-fit, overriding (1): */
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .video-bg > video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; } }

.overlay-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: #000;
  opacity: .15;
  -webkit-transition: all .75s ease-out;
  -moz-transition: all .75s ease-out;
  -ms-transition: all .75s ease-out;
  -o-transition: all .75s ease-out;
  transition: all .75s ease-out; }

.padding-row .row {
  padding: 24px; }

.padding-row .row.between .col, .padding-row .between .col {
  margin-left: 0; }
  .padding-row .row.between .col:first-of-type, .padding-row .between .col:first-of-type {
    margin-left: 0;
    padding-left: 0; }

.padding-col .col {
  padding: 0 24px; }

.padding-col .row.between .col, .padding-col .between .col {
  margin-left: 0; }
  .padding-col .row.between .col:first-of-type, .padding-col .between .col:first-of-type {
    margin-left: 0;
    padding-left: 0; }

.padding-row-v .row {
  padding-top: 24px;
  padding-bottom: 24px; }

.padding-row-h .row {
  padding-left: 24px;
  padding-right: 24px; }

.padding-reset, .padding-0 {
  padding: 0; }
  .padding-reset .row, .padding-reset .col, .padding-0 .row, .padding-0 .col {
    padding: 0;
    margin: 0; }

.padding {
  padding: 24px; }

.padding-v {
  padding: 24px 0; }

.padding-h {
  padding: 0 24px; }

.padding-h-10 {
  padding: 0 10px; }

.padding-h-20 {
  padding: 0 20px; }

.padding-h-30 {
  padding: 0 30px; }

.padding-h-40 {
  padding: 0 40px; }

.padding-h-50 {
  padding: 0 50px; }

.padding-h-60 {
  padding: 0 60px; }

.padding-h-90 {
  padding: 0 90px; }

.padding-h-120 {
  padding: 0 120px; }

.padding-t-10 {
  padding-top: 10px; }

.padding-t-20 {
  padding-top: 20px; }

.padding-t-30 {
  padding-top: 30px; }

.padding-t-40 {
  padding-top: 40px; }

.padding-t-50 {
  padding-top: 50px; }

.padding-t-60 {
  padding-top: 60px; }

.padding-t-90 {
  padding-top: 90px; }

.padding-t-120 {
  padding-top: 120px; }

.padding-b-10 {
  padding-bottom: 10px; }

.padding-b-20 {
  padding-bottom: 20px; }

.padding-b-30 {
  padding-bottom: 30px; }

.padding-b-40 {
  padding-bottom: 40px; }

.padding-b-50 {
  padding-bottom: 50px; }

.padding-b-60 {
  padding-bottom: 60px; }

.padding-b-90 {
  padding-bottom: 90px; }

.padding-b-120 {
  padding-bottom: 120px; }

.padding-l-10 {
  padding-left: 10px; }

.padding-l-20 {
  padding-left: 20px; }

.padding-l-30 {
  padding-left: 30px; }

.padding-l-40 {
  padding-left: 40px; }

.padding-l-50 {
  padding-left: 50px; }

.padding-l-60 {
  padding-left: 60px; }

.padding-l-90 {
  padding-left: 90px; }

.padding-l-120 {
  padding-left: 120px; }

.margin-l-10 {
  margin-left: 10px; }

.margin-l-20 {
  margin-left: 20px; }

.margin-l-30 {
  margin-left: 30px; }

.margin-l-40 {
  margin-left: 40px; }

.margin-l-50 {
  margin-left: 50px; }

.margin-l-60 {
  margin-left: 60px; }

.margin-l-90 {
  margin-left: 90px; }

.margin-l-120 {
  margin-left: 120px; }

.margin-t-10 {
  margin-top: 10px; }

.margin-t-20 {
  margin-top: 20px; }

.margin-t-30 {
  margin-top: 30px; }

.margin-t-40 {
  margin-top: 40px; }

.margin-t-50 {
  margin-top: 50px; }

.margin-t-60 {
  margin-top: 60px; }

.margin-t-90 {
  margin-top: 90px; }

.margin-t-120 {
  margin-top: 120px; }

.margin-b-10 {
  margin-bottom: 10px; }

.margin-b-20 {
  margin-bottom: 20px; }

.margin-b-30 {
  margin-bottom: 30px; }

.margin-b-40 {
  margin-bottom: 40px; }

.margin-b-50 {
  margin-bottom: 50px; }

.margin-b-60 {
  margin-bottom: 60px; }

.margin-b-90 {
  margin-bottom: 90px; }

.margin-b-120 {
  margin-bottom: 120px; }

.width-10 {
  width: 10%; }

.width-20 {
  width: 20%; }

.width-30 {
  width: 30%; }

.width-40 {
  width: 40%; }

.width-60 {
  width: 60%; }

.width-70 {
  width: 70%; }

.width-80 {
  width: 80%; }

.width-90 {
  width: 90%; }

@media (max-width: 768px) {
  .width-60, .width-70, .width-80, .width-90 {
    width: 100% !important; } }

.index-5, .events-home__article__image, .section__featured__items, .cirujanos {
  z-index: 5; }

.index-10, .slider__img, .events-home__article__filter, .section__featured__items__image, .cirujanos__container {
  z-index: 10; }

.index-15 {
  z-index: 15; }

.index-20, .slider__center, .noticiasSmall__img-absolute, .events-home__article__text, .section__featured__items__filter {
  z-index: 20; }

.index-25 {
  z-index: 25; }

.index-30, .noticiasSmall__absolute-blue, .noticiasSmall__absolute-gray, .eventos-home__tag, .section__featured__items__text, .section__featured__items__tags, .section__featured__items__link {
  z-index: 30; }

.index-35 {
  z-index: 35; }

.lowerz {
  z-index: 5; }

.midz {
  z-index: 10; }

.upperz, .main {
  z-index: 20; }

.wow {
  visibility: hidden; }

.bg-img img {
  display: none; }

#conekta-iframe {
  display: none; }

.red-bg {
  background: red; }

.white-bg {
  background: #fff; }

.grid-1200 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto; }

.item-10 {
  width: 10px;
  height: 10px; }

.item-20 {
  width: 10px;
  height: 20px; }

.item-30 {
  width: 10px;
  height: 30px; }

.item-60 {
  width: 10px;
  height: 60px; }

.item-90 {
  width: 10px;
  height: 90px; }

.item-120 {
  width: 10px;
  height: 120px; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.fixed {
  position: fixed; }

.inline-block {
  display: inline-block; }

.vertical-align, .amcper-icon--link, .header__container__right-side__bottom__right-side__content {
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.horizontal-align, a.main__navigation__list__item--active:after, .main__navigation__list__item--active:after {
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.center-align, .amcper-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

/*
.clearfix {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}
*/
.sliding-u-l-r-l {
  display: inline-block;
  position: relative;
  padding-bottom: 3px; }

.sliding-u-l-r-l:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  -webkit-transition: width 0s ease, background .75s ease;
  -o-transition: width 0s ease, background .75s ease;
  transition: width 0s ease, background .75s ease; }

.sliding-u-l-r-l:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: #000;
  -webkit-transition: width .75s ease;
  -o-transition: width .75s ease;
  transition: width .75s ease; }

.sliding-u-l-r-l:hover:before {
  width: 100%;
  background: #000;
  -webkit-transition: width .75s ease;
  -o-transition: width .75s ease;
  transition: width .75s ease; }

.sliding-u-l-r-l:hover:after {
  width: 100%;
  background: transparent;
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease; }

@media (min-width: 0) and (max-width: 1024px) {
  .grid-1200 {
    position: relative;
    margin: 0 auto; } }

@media (min-width: 1600px) {
  .grid-1200 {
    position: relative;
    max-width: 75%; } }

.end-top-bottom {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.end--row {
  padding: 0 !important; }

.end--left {
  padding-left: 0 !important; }

.end .col {
  padding: 0 !important; }

.end--right {
  padding-right: 0 !important; }

/* =NAVIGATION
-----------------------------------------------------------------------------*/
.header__top {
  width: 100%;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #008bff;
  opacity: 1;
  z-index: 99; }
  .header__top p {
    color: white;
    font-size: 14px;
    margin: 0; }
    @media (min-width: 0) and (max-width: 768px) {
      .header__top p {
        font-size: 12px;
        text-align: center; } }

.header__top__container {
  width: 95%;
  margin: 0 auto; }
  @media (min-width: 1600px) {
    .header__top__container {
      width: 75%; } }

.amcper-icon {
  position: absolute; }

.svg-effect:hover {
  fill: #008bff;
  -webkit-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out; }

.header {
  position: fixed;
  width: 100%;
  height: 30vh;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform .5s ease-out;
  transition: -webkit-transform .5s ease-out;
  -o-transition: transform .5s ease-out;
  transition: transform .5s ease-out;
  transition: transform .5s ease-out, -webkit-transform .5s ease-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }
  .header .option-select select {
    position: absolute;
    visibility: hidden; }

.nav-up {
  -webkit-transform: translateY(-243px);
  -ms-transform: translateY(-243px);
  transform: translateY(-243px);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  -o-transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out; }

.header__container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 20; }

.header__container__left-side {
  position: relative;
  width: 12%;
  height: 100%;
  float: left; }
  @media (min-width: 0) and (max-width: 768px) {
    .header__container__left-side {
      top: 0; } }

.header__container__right-side {
  position: relative;
  width: 88%;
  height: 100%;
  float: left;
  top: 5vh;
}

.header__container__right-side__top {
  position: relative;
  margin: 0;
  list-style: none;
  width: 100%;
  height: 90px;
  overflow: hidden;
  border-bottom: 1px solid #ebebeb; }

.main__navigation {
  position: relative;
  height: 100%; }

.main__navigation__list {
  position: relative;
  margin: 0;
  list-style: none;
  height: 100%;
  padding: 0 30px; }

.main__navigation__list__item {
  position: relative;
  font-size: 14px;
  color: #565759;
  text-align: center; }
  .main__navigation__list__item a {
    position: relative;
    display: block;
    padding: 32px 10px;
    color: #60a3fd; }

a.main__navigation__list__item--active, .main__navigation__list__item--active {
  color: #008bff; }
  a.main__navigation__list__item--active:after, .main__navigation__list__item--active:after {
    content: '';
    position: absolute;
    display: block;
    width: 65%;
    height: 5px;
    bottom: 3px;
    background: #008bff; }

.amcper-icon--link {
  position: absolute;
  margin-left: 10px;
  width: 16px;
  fill: #008bff; }

.menu__logo-color {
  position: absolute;
  width: auto;
  height: 150px;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

a.main__navigation__search, .main__navigation__search {
  position: relative;
  float: right;
  width: 105px;
  height: 100%;
  background: #f8f8f8;
  overflow: hidden; }
  a.main__navigation__search:hover .amcper-icon--search__background, .main__navigation__search:hover .amcper-icon--search__background {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: -webkit-transform .35s ease-in-out;
    transition: -webkit-transform .35s ease-in-out;
    -o-transition: transform .35s ease-in-out;
    transition: transform .35s ease-in-out;
    transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out; }
  a.main__navigation__search:hover .amcper-icon--search, .main__navigation__search:hover .amcper-icon--search {
    fill: #fff;
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out; }

.amcper-icon--search {
  width: 15px;
  fill: #878787;
  z-index: 10;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out; }

.amcper-icon--search__background {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: #008bff;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  -o-transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out; }

a.main__navigation__cart, .main__navigation__cart {
  position: relative;
  height: 100%;
  margin: 0 40px 0 30px;
  display: block;
  float: right;
  padding: 42px 10px;
  overflow: hidden; }
  a.main__navigation__cart:hover .amcper-icon--cart, .main__navigation__cart:hover .amcper-icon--cart {
    fill: #008bff;
    -webkit-transition: fill .5s ease-in-out;
    -o-transition: fill .5s ease-in-out;
    transition: fill .5s ease-in-out; }

.amcper-icon--cart {
  width: 28px;
  fill: #878787;
  z-index: 10;
  -webkit-transition: fill .5s ease-in-out;
  -o-transition: fill .5s ease-in-out;
  transition: fill .5s ease-in-out; }

a.main__navigation__login, .main__navigation__login {
  position: relative;
  display: block;
  float: right;
  height: 100%;
  margin: 0 10px 0 0;
  padding: 33px 5px;
  font-size: 13px;
  color: #60a3fd;
  /*
	height: 100%;
	padding: 0 30px;
	margin: 0 20px;
	top: 0;
	display: block;
	float: right;
	background: red;
	*/ }
  a.main__navigation__login:hover, .main__navigation__login:hover {
    color: #008bff;
    -webkit-transition: color .5s ease-in-out;
    -o-transition: color .5s ease-in-out;
    transition: color .5s ease-in-out; }
  a.main__navigation__login:first-of-type, .main__navigation__login:first-of-type {
    margin-right: 30px; }

.header__container__right-side__bottom {
  position: relative;
  margin: 0;
  list-style: none;
  width: 100%;
  height: 95px; }

.header__container__right-side__bottom__right-side {
  position: absolute;
  right: 0;
  width: 200px;
  height: 100%;
  border-left: 1px solid #ebebeb; }

.header__container__right-side__bottom__right-side__content {
  margin: 0;
  position: relative;
  list-style: none;
  text-align: center; }

.header__container__right-side__bottom__left-side {
  position: absolute;
  right: 200px;
  height: 100%;
  border-left: 1px solid #ebebeb; }

.footer__social__option {
  position: relative;
  display: inline-block;
  margin-right: 10px; }
  .footer__social__option a {
    font-size: 14px;
    color: #e4e4e4;
    margin: 0;
    padding: 10px 5px; }
    .footer__social__option a:hover {
      color: #008bff; }
  .footer__social__option svg {
    height: 18px;
    fill: #e4e4e4;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out; }
  .footer__social__option p {
    font-size: 14px;
    color: #e4e4e4;
    margin: 0; }
  .footer__social__option:hover svg {
    fill: #008bff;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out; }
  .footer__social__option:nth-last-child(2) {
    margin-right: 0; }

.footer__social__option--small-icon svg {
  width: 22px;
  fill: #878787; }

/* =PROPERTIES SELECT
-----------------------------------------------------------------------------*/
.subnav__select-container {
  margin: 0;
  list-style: none;
  position: relative;
  height: 100%; }

.subnav__select-container__option {
  position: relative;
  float: right;
  height: 100%;
  border-bottom: 1px solid #ebebeb; }

.select-properties {
  position: relative;
  display: block;
  text-transform: none;
  border: none;
  border-radius: 0;
  font-size: 14px;
  background: none;
  background-color: none;
  height: 70px;
  padding: 0 45px 0 45px;
  border-right: 1px solid #ebebeb;
  color: #878787; }
  .select-properties .list {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0; }
  .select-properties span.current, .select-properties .current {
    position: relative;
    top: 15px; }

.select-properties--border-right {
  border-right: 1px solid #ebebeb; }

.select-properties--border-left {
  border-left: 1px solid #ebebeb; }

select {
  display: none; }

.nice-select {
  position: relative;
  height: 100%;
  border: none;
  border-radius: 0;
  padding-left: 50px;
  padding-right: 50px; }
  .nice-select .option {
    min-height: 50px;
    line-height: 50px; }

.nice-select:after {
  border-bottom: 1px solid #008bff;
  border-right: 1px solid #008bff;
  height: 7px;
  width: 7px;
  margin-right: 15px; }

.current {
  position: relative;
  color: #565759;
  top: 28px; }

.nice-select .list {
  margin: 0;
  border-radius: 0;
  background: #008bff;
  color: #fff;
  width: 100%; }

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #1580d9;
  color: #fff; }

.nice-select .option {
  border-bottom: 1px solid #1580d9;
  font-size: 13px; }

.nice-select .disabled {
  display: none;
  background: #8CB2D2;
  border-bottom: 1px solid #8CB2D2; }

/* =SUBMENU / SUBNAVIGATION
-----------------------------------------------------------------------------*/
.submenu__container {
  position: absolute;
  width: calc(100% - 200px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: 30;
  overflow: hidden;
  visibility: hidden; }

.submenu__container__navigation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 30;
  visibility: hidden; }

.submenu__container__list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.submenu__container__list__link {
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  margin-left: 30px;
  font-family: 'Gravity-Bold'; }
  .submenu__container__list__link:hover {
    color: #3e3e3e; }

.submenu__bg {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  background: #008bff;
  width: 100%;
  height: inherit; }

/* =RESPONSIVE UTILITIES
-----------------------------------------------------------------------------*/
/* =SMALL
-------------------------------------------*/
@media (min-width: 0) and (max-width: 768px) {
  a svg {
    height: auto; }
  .header {
    height: auto; }
    .header select.option-select {
      display: none !important; }
    .header .nice-select {
      width: 100%;
      padding: 0;
      text-align: center !important; }
      .header .nice-select .current {
        top: 0;
        text-align: center;
        margin: 0 auto;
        display: inline-block; }
        .header .nice-select .current:after {
          border-bottom: 2px solid #878787;
          border-right: 2px solid #878787;
          content: '';
          display: block;
          height: 5px;
          margin-top: -4px;
          pointer-events: none;
          position: absolute;
          right: 12px;
          top: 50%;
          -webkit-transform-origin: 66% 66%;
          -ms-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg);
          -webkit-transition: all 0.15s ease-in-out;
          -o-transition: all 0.15s ease-in-out;
          transition: all 0.15s ease-in-out;
          width: 5px; }
        .header .nice-select .current:after {
          border-bottom: 1px solid #008bff;
          border-right: 1px solid #008bff;
          height: 7px;
          width: 7px;
          margin-right: 15px;
          top: 20px;
          right: -40px; }
      .header .nice-select .list {
        width: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        top: auto;
        position: relative;
        max-height: 0; }
        .header .nice-select .list .option {
          text-align: center;
          font-family: 'Gravity-Bold';
          padding: 0; }
      .header .nice-select:after {
        display: none; }
    .header .nice-select.open .list {
      max-height: 9999px;
      margin-bottom: -10px; }
    .header .nice-select.open .current:after {
      -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
      transform: rotate(-135deg); }
  .header__container__left-side {
    width: 100%;
    float: none;
    text-align: center;
    height: 60px;
    border-bottom: 1px solid #ebebeb; }
    .header__container__left-side a {
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
      height: 50%; }
  .main__navigation__xs-menu {
    float: left;
    height: 100%;
    width: 60px;
    height: 60px;
    padding: 0;
    background: #fff;
    border-right-width: 1px;
    border-right-color: #ebebeb;
    border-right-style: solid;
    position: absolute;
    border-radius: 0;
    border-bottom: 1px solid #ebebeb; }
  .icon {
    display: inline-block; }
    .icon svg {
      display: block;
      height: inherit;
      width: inherit; }
  .icon--menu {
    height: 15px;
    width: inherit; }
  .main__navigation__search--responsive {
    height: 60px;
    width: 60px;
    border-bottom: 1px solid #ebebeb; }
  .header__container__right-side {
    width: 100%;
    background: #fff;
    float: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    border: 0; }
  .submenu__container {
    display: none; }
  .amcper-logo-small {
    display: inline-block !important;
    position: relative;
    height: 29px;
    text-align: center;
    margin: 0 auto; }
    .amcper-logo-small svg {
      width: auto;
      height: inherit; }
  .header__container__right-side__top {
    height: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 0; }
  .header__container__right-side__top__cart-login {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1; }
  .main__navigation__cart, a.main__navigation__cart {
    width: 50%;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    margin: 0;
    padding: 21px 0;
    border-bottom: 1px solid #ebebeb;
    height: inherit; }
  .main__navigation__login, a.main__navigation__login {
    width: 50%;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    margin: 0;
    text-align: center;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 21px 0; }
  .main__navigation__list {
    padding: 0; }
  .main__navigation__list__item a {
    padding: 23px 0;
    line-height: 1;
    border-bottom: 1px solid #ebebeb; }
  .header__container__right-side__bottom {
    height: auto; }
  .header__container__right-side__bottom__left-side {
    width: 100%;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    position: relative;
    right: auto;
    overflow: hidden;
    height: auto;
    border-left: 0; }
  .subnav__select-container__option {
    display: inline-block;
    float: none;
    width: 100%;
    background: #fff;
    height: auto;
    border-top: 0;
    border-left: 0;
    padding: 10px 0; }
  .header__container__right-side__bottom__right-side {
    width: 100%;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    position: relative;
    background: #fff;
    border: 0;
    height: 142px; }
  .header__container__right-side__bottom__right-side__content {
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%; }
  .header__container__right-side__bottom__right-side__content__more-info {
    font-size: 11px;
    line-height: 15px;
    margin-top: 30px; }
  .menu__nav {
    max-height: 0;
    opacity: 0; }
  .menu__nav-wrapper {
    overflow-y: auto;
    max-height: calc(100vh - 60px);
    position: absolute;
    width: 100%; }
  .header.nav-up {
    position: fixed;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .main__navigation__list__item .nice-select {
    border-bottom: 1px solid #ebebeb;
    padding: 11px 0; }
  .main__navigation__list__item--active:after, a.main__navigation__list__item--active:after {
    width: 100% !important; } }

/* =MEDIUM
-----------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  .main__navigation__list {
    padding: 0 10px; }
  .main__navigation__list__item {
    position: relative;
    font-size: 13px; } }

@media (min-width: 1600px) {
  .header {
    height: 243px; }
  .header__container__right-side__top {
    height: 105px; }
  .main__navigation__list__item a {
    padding: 42px 10px; }
  a.main__navigation__login, .main__navigation__login {
    padding: 40px 10px; } }

/* =Pages
-----------------------------------------------------------------------------*/
/* =HOME
-----------------------------------------------------------------------------*/
.home {
  position: relative;
  margin-top: 200px; }

.cover_text {
  width: 100%;
  text-align: center;
  color: white;
  font-size: xxx-large;
  font-weight: bolder;
}

.cover_subtext {
  width: 100%;
  text-align: center;
  color: white;
  font-size: large;
}

.link_event {
  text-align: center;
}

.link_event a {
  color: white;
  border-style: solid;
  border-color: var(--titles-lightblue);
  border-width: 2px;
  border-radius: 8px;
  padding: 1vh;
  font-size: small;
}

@media(max-width: 768px) {
  .cover_text {
    font-size: x-large;
    font-weight: bold;
  }

  .cover_subtext {
    display: none;
  }

  .link_event a {
    font-size: smaller;
  }
}

.default {
  position: relative;
  margin-top: 200px; }

.link-effect a:hover, .main__navigation__list__item a:hover {
  color: #008bff;
  -webkit-transition: color .5s ease-in-out;
  -o-transition: color .5s ease-in-out;
  transition: color .5s ease-in-out; }

#slider-main {
  width: 100%;
  height: 480px !important;
  position: relative;
  overflow: hidden; }
  @media (min-width: 0) and (max-width: 768px) {
    #slider-main {
      margin-top: 121px; } }
  @media (min-width: 1600px) {
    #slider-main {
      height: 680px !important; } }

.slider {
  width: 100%;
  height: 100%;
  position: relative; }

.slider__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.slider__img-img {
  max-width: 100%;
  height: auto; }

.slider__center {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }
  @media (min-width: 1600px) {
    .slider__center {
      width: 80%; } }
  @media (min-width: 1600px) {
    .slider__center {
      width: 60%; } }
  @media (min-width: 0) and (max-width: 768px) {
    .slider__center h2 {
      font-size: 18px; } }

.slider__center-content {
  display: block;
  width: 100%;
  padding-top: 200px; }

.slider__center-news {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 14px;
  text-transform: uppercase; }

.slider__center-title {
  font-size: 38px;
  line-height: 1.3;
  color: white; }
  @media (min-width: 0) and (max-width: 768px) {
    .slider__center-title {
      font-size: 18px;
      line-height: 1.5; } }
  @media (min-width: 1600px) {
    .slider__center-title {
      font-size: 60px; } }

.slider__center-footer {
  font-size: 17px;
  color: #fff;
  line-height: 24px; }

.slider__center-footer-proce {
  font-size: 12px;
  color: #fff;
  line-height: 19px; }

.slider__center-blue {
  color: #008bff;
  text-transform: uppercase; }

.slider__reserva {
  display: inline-block;
  border-radius: 30px;
  font-size: 15px;
  color: #fff;
  padding: 20px 50px;
  background-color: #008bff;
  cursor: pointer;
  line-height: 17px; }
  @media (min-width: 0) and (max-width: 768px) {
    .slider__reserva {
      padding: 10px 30px;
      font-size: 12px; } }

.position-relative {
  position: relative !important; }

.btn_articulos-home{
  color: var(--titles-blue);
  border: solid 2px;
  border-radius: 15px;
  padding: 3px 5px;
  font-size: larger;
  font-weight: 600;
}

/* eventsHome */
.eventsHome {
  padding: 0;
  height: 100%; }
  @media (min-width: 0) and (max-width: 768px) {
    .eventsHome {
      width: 100%;
      padding: 0 5%;
      margin: 0; } }

.eventsHome-shadow {
  position: absolute;
  -webkit-box-shadow: -10px 10px 50px #efefef;
  box-shadow: -10px 10px 50px #efefef;
  z-index: -1; }

.eventsHome__article {
  border-bottom: 1px solid #e1e1e1;
  background-color: #f8f8f8;
  margin-left: 0; }

.eventsHome__container {
  display: block;
  width: 90%;
  margin-left: 5%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 25px; }

.de {
  width: 100%;
  height: 100%; }

.eventHome__article-bottom {
  position: relative;
  bottom: 0; }

.eventsHome__article-absolute {
  position: absolute; }

.eventsHome__article-title {
  font-size: 28px;
  color: #3e3e3e;
  line-height: 33px;
  padding: 20px 0;
  margin-bottom: 0; }

.eventsHome__article-date {
  padding: 10px 0;
  color: #878787;
  font-size: 14px;
  line-height: 15px;
  margin-bottom: 0; }

.eventsHome__article-place {
  font-size: 14px;
  color: #878787;
  line-height: 15px; }

.eventsHome__article-more {
  font-size: 12px;
  line-height: 15px;
  color: #253746;
  margin-bottom: 0; }

.eventsHome__botteventsHome__bottomom {
  width: 100%; }

.eventsHome__bottom-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #878787;
  padding: 25px 40px;
  display: block;
  line-height: 12px;
  margin-bottom: 0;
  background-color: #ebebeb; }

.eventsHome__bottom-span {
  float: right;
  margin-top: -4px; }

.eventsHome__bottom-img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.eventsHome__background {
  width: 100%;
  height: 100%;
  overflow: hidden; }

.eventsHome__background:hover {
  background-color: rgba(0, 126, 230, 0.9) !important; }

.eventsHome__background-reserva {
  position: relative;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 126, 230, 0.9); }

.eventsHome__background-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff; }

.eventsHome__background:hover .eventsHome__background-reserva {
  display: block; }

.acomodo-top {
  margin-top: 0px; }

.no-padding-row {
  padding: 0 !important; }

/* AVISO */
.aviso {
  background-color: #f9e482;
  line-height: 0;
  color: #333; }
  .aviso p, .aviso h1, .aviso h2, .aviso h3, .aviso h4, .aviso h5, .aviso h6 {
    color: #333;
    line-height: 1.3; }
  .aviso svg {
    fill: #333; }
  .aviso a {
    text-decoration: underline; }

.aviso__header {
  font-size: 10px;
  background-color: #00295f;
  display: inline-block;
  padding: 5px 14px;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 12px; }
  .aviso__header p {
    color: #fff !important; }

.aviso__content {
  padding: 20px 30px; }

.aviso__content-title {
  font-size: 30px;
  line-height: 35px; }

.aviso__content-by {
  font-size: 12px;
  color: #9c9c9c; }

.aviso__content-text {
  font-size: 16px;
  line-height: 26px;
  color: #9c9c9c; }

.aviso__content-footer {
  display: block;
  margin-top: 50px; }

.aviso__content-date {
  font-size: 12px;
  color: #9c9c9c;
  display: inline-block;
  margin-bottom: 0;
  line-height: 20px; }

.aviso__content-ancor {
  line-height: 20px;
  float: right;
  font-size: 12px;
  color: #333;
  margin-bottom: 0;
  text-decoration: none; }

.aviso__content-ancor:hover {
  text-decoration: underline;
  color: #000; }

@media (max-width: 768px) {
  .articulos-section{
    padding: 0 !important;
    border-right: 0 !important;
  }
}

.articulos-section{
  padding-right: 30px;
  margin-right: 20px;
  margin-top: 20px;
  border-right: groove;
}

/* Sección Procedimiento */
.sectionProce {
  display: block;
  padding: 20px 30px 0 0px; }

.sectionProce__home-left-divider {
  display: block;
  background-color: #e8e8e8;
  height: 1px;
  margin-top: 20px; }

.sectionProce-extra {
  display: block;
  margin: 25px 0;
  border-left: groove;
  padding-left: 20px }

.sectionProce__title {
  font-size: 20px;
  line-height: 30px;
  color: var(--titles-blue);
  /* a {
		color: #565759;
		&:hover {
			color: #008bff;
		}
	} */ }

.sectionProce__text {
  font-size: 14px;
  color: #878787; }

.sectionProce__footer {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  color: var(--titles-blue); }

.sectionProce__footer-date {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 0; }

.sectionProce__footer-more {
  float: right;
  text-decoration: none;
  font-size: 12px;
  color: var(--titles-blue);
  -webkit-transition: all .75s ease-in-out;
  -o-transition: all .75s ease-in-out;
  transition: all .75s ease-in-out;
  border-bottom: 1px solid transparent; }
  .sectionProce__footer-more:hover {
    color: #007ee6;
    border-bottom: 1px solid #007ee6;
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out; }

.sectionProce__divider {
  display: block;
  width: 100%;
  border-top: 1px solid #f3f3f3;
  margin-bottom: 15px; }

.followWidget {
  padding: 40px 24px;
  text-align: center; }

.followWidget-title {
  font-size: 28px;
  color: #3e3e3e; }

.followWidget-subtitle {
  font-size: 14px;
  color: #878787; }

.followWidget-icons {
  fill: #f2f2f2;
  padding: 8px;
  border-radius: 50%;
  background-color: #3e3e3e; }

.followGray {
  background-color: #f2f2f2; }

.followWidget-ancor {
  cursor: pointer;
  padding: 0 5px; }

.findCirujano {
  position: relative;
  line-height: 0;
  margin-top: 50px; }

.findCirujano-img {
  height: 355px; }
  @media (min-width: 1600px) {
    .findCirujano-img {
      height: 450px; } }

.findCirujano__absolute {
  position: absolute;
  color: #fff;
  text-align: center; }

.findCirujano__absolute-index {
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 12px; }

.findCirujano__absolute-title {
  font-size: 50px;
  line-height: 50px;
  margin: 0 0 20px 0;
  color: #fff; }

.findCirujano__absolute-text {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 18px; }

.findCirujano__absolute-input {
  font-size: 20px;
  width: 100%;
  color: #3e3e3e !important;
  height: 60px !important;
  border-radius: 0 !important;
  border: 1px solid #ccc !important;
  background-image: url(../../pruebas/search.jpg) !important;
  background-repeat: no-repeat !important;
  background-position: right !important;
  padding-right: 45px; }

.findCirujano__absolute-input::-webkit-input-placeholder {
  color: #d1d1d1; }

.findCirujano__absolute-input:-moz-placeholder {
  /* Firefox 18- */
  color: #d1d1d1; }

.findCirujano__absolute-input::-moz-placeholder {
  /* Firefox 19+ */
  color: #d1d1d1; }

.findCirujano__absolute-input:-ms-input-placeholder {
  color: #d1d1d1; }

.noticiasCuadros {
  line-height: 0;
  position: relative; }

.noticiasCuadros__big {
  position: absolute;
  display: block;
  width: 100%;
  margin-left: -4%;
  height: 100%;
  padding-left: 10%;
  padding-right: 5%;
  background-color: rgba(0, 96, 152, 0.8); }

.noticiasCuadros__big__text {
  position: absolute;
  bottom: 0;
  color: #fff; }

.noticiasCuadros__big__text-title {
  font-size: 30px;
  line-height: 37px;
  width: 85%;
  margin-bottom: 0;
  padding-bottom: 30px;
  color: #fff; }

.noticiasCuadros__big__text-content {
  font-size: 16px;
  line-height: 22px;
  width: 85%;
  margin-bottom: 0;
  padding-bottom: 30px; }

.noticiasCuadros__big__text-footer {
  font-size: 13px;
  margin-bottom: 0;
  padding-bottom: 30px;
  line-height: 13px; }
  .noticiasCuadros__big__text-footer svg {
    width: 18px;
    height: 18px;
    fill: white;
    position: relative;
    margin-right: 5px;
    top: 3px; }

.noticiasCuadros__big__text-footerRight {
  float: right;
  text-decoration: none;
  color: #fff;
  padding-right: 35px;
  position: relative;
  margin: 0;
  top: 7px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none; }
  .noticiasCuadros__big__text-footerRight:hover {
    letter-spacing: 2px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.noticiasSmall {
  line-height: 0; }

.noticiasSmall__relative {
  position: relative;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .noticiasSmall__relative:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .noticiasSmall__relative:hover .noticiasSmall__absolute-gray {
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      opacity: 1; }
    .noticiasSmall__relative:hover .noticiasSmall__absolute-blue {
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      opacity: 1; }

.noticiasSmall__img-absolute {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 3%;
  background-color: rgba(0, 96, 152, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.noticiasSmall__relative-top {
  position: relative;
  display: block; }

.noticiasSmall__absolute {
  position: absolute;
  width: 100%;
  color: #fff; }

/* BLUE */
.noticiasSmall__absolute-blue {
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #00bdff;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .noticiasSmall__absolute-blue h3 {
    color: white;
    font-size: 28px; }
  .noticiasSmall__absolute-blue p {
    font-size: 12px;
    color: white;
    line-height: 1.5;
    margin: 0; }
    .noticiasSmall__absolute-blue p svg {
      width: 18px;
      height: 18px;
      fill: white;
      position: relative;
      margin-right: 5px;
      top: 3px; }

/* GRAY */
.noticiasSmall__absolute-gray {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  background-color: #f6f6f6 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .noticiasSmall__absolute-gray h3 {
    color: #3e3e3e;
    font-size: 28px; }
  .noticiasSmall__absolute-gray p {
    font-size: 12px;
    color: #878787;
    line-height: 1.5;
    margin: 0; }
    .noticiasSmall__absolute-gray p svg {
      width: 18px;
      height: 18px;
      fill: #878787;
      position: relative;
      margin-right: 5px;
      top: 3px; }

.noticiasSmall__links {
  width: 80%;
  position: absolute;
  top: 90%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }
  .noticiasSmall__links p.text--left {
    text-align: left; }
  .noticiasSmall__links p.text--right {
    top: 5px;
    position: relative;
    text-align: right; }

.noticiasSmall__absolute-gray .noticiasSmall__absolute-title {
  font-size: 28px;
  line-height: 34px;
  color: #3e3e3e; }

.noticiasSmall__absolute-gray .noticiasSmall__absolute-text {
  font-size: 16px;
  line-height: 25px;
  color: #878787; }

.noticiasSmall__absolute-gray .noticiasSmall__absolute-more {
  text-decoration: none;
  color: #878787;
  float: right; }

.noticiasSmall__absolute-gray .noticiasSmall__absolute-more:hover {
  text-decoration: underline;
  color: #878787; }

.noticiasSmall__absolute__center {
  position: absolute;
  width: 80%;
  left: 50%;
  top: 40%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.noticiasSmall__absolute-title {
  font-size: 28px;
  line-height: 34px;
  color: #fff; }

.noticiasSmall__absolute-text {
  font-size: 16px;
  line-height: 25px; }

.noticiasSmall__absolute-more {
  text-decoration: none;
  color: #fff;
  float: right; }

.noticiasSmall__absolute-more:hover {
  text-decoration: underline;
  color: #fff; }

.noticiasSmall__img {
  position: relative; }

.noticiasSmall__img-img {
  padding: 3%; }

.noticiasSmall__img-absolute__center {
  color: #fff;
  text-align: center; }

.noticiasSmall__img-absolute__center-date {
  font-size: 30px;
  line-height: 35px;
  color: #fff; }

.noticiasSmall__img-absolute-divider {
  width: 50px;
  height: 2px;
  margin: 15px auto 15px auto;
  position: relative;
  background-color: white; }

.noticiasSmall__img-absolute__center-title {
  font-size: 15px;
  line-height: 24px; }

.noticiasButton {
  padding-top: 50px;
  text-align: right;
  padding-bottom: 100px; }
  .noticiasButton a {
    text-decoration: none; }
    .noticiasButton a:hover {
      text-decoration: none; }

.noticiasButton-ancor {
  font-size: 14px;
  color: #fff;
  padding: 15px 35px 17px 35px;
  border-radius: 30px;
  background-color: #006098;
  text-decoration: none; }

.noticiasButton-ancor:hover {
  text-decoration: underline;
  color: #fff; }

/* RSS Full */
.rssFull {
  position: relative; }

.rssFull_imgLiquid {
  min-height: 563px; }

.rssFull__center {
  position: absolute;
  padding: 30px 20px;
  text-align: center; }

.rssFull__submit {
  font-size: 13px;
  color: #000;
  background-color: #fff;
  padding: 10px 20px;
  margin-top: 15px; }

.rssFull__submit-right {
  float: right;
  background-color: #fff;
  padding: 14px 35px;
  letter-spacing: 0.5px;
  color: #3e3e3e;
  font-size: 14px !important; }

.rssFull__submit-right-nuevo {
  float: right;
  background-color: #fff;
  padding: 14px 35px;
  letter-spacing: 0.5px;
  color: #3e3e3e;
  font-size: 14px !important; }

.rssFull__submit-right-nuevo-mobile {
  background-color: #fff;
  padding: 14px 35px;
  letter-spacing: 0.5px;
  color: #3e3e3e;
  font-size: 14px !important;
  display: none; }

.rssFull__submit-left {
  overflow: hidden; }

.rssFull__submit-left-input {
  background: transparent !important;
  color: #fff;
  font-size: 13px;
  border-radius: 0 !important;
  border: 1px solid #fff !important;
  height: 45px !important;
  font-size: 20px !important;
  text-align: left; }

.rssFull__submit-left-input-align {
  background: transparent !important;
  color: #fff;
  font-size: 13px;
  border-radius: 0 !important;
  border: 1px solid #fff !important;
  height: 45px !important;
  font-size: 20px !important;
  text-align: left; }

.rssFull__center-title {
  line-height: 40px;
  font-size: 30px;
  color: #fff; }

.rssFull__center-title-big {
  line-height: 50px;
  font-size: 50px;
  color: #fff; }

.rssFull__center-suscribete {
  font-size: 14px;
  color: #fff; }

.rssFull__center-suscribete-big {
  font-size: 20px;
  color: #fff; }

.rssFull__mail {
  background: transparent !important;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  border-radius: 0 !important;
  border: 1px solid #fff !important; }

.rssFull_img {
  font-size: 14px; }

.bannerHome {
  margin: 60px 0;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 0; }

.afiliate {
  position: relative;
  line-height: 0;
  width: 100%;
  height: 100%; }

.afiliate__img {
  min-height: 635px; }

.afiliate-absolute {
  position: absolute;
  color: #fff;
  width: 50%;
  text-align: center;
  line-height: 25px; }

.afiliate-absolute-title {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 50px;
  color: #fff; }
  @media (min-width: 0) and (max-width: 768px) {
    .afiliate-absolute-title {
      font-size: 28px;
      line-height: 1.3; } }

.afiliate-absolute-text {
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-top: 20px;
  padding-bottom: 5px; }

.afiliate-absolute-text:hover {
  color: #fff; }

.afiliate-absolute-text p {
  display: inline-block; }

.label {
  text-align: center;
  display: block; }

.label-inactive {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin: 0 4px; }

.label-active {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #a1a1a1;
  border-radius: 50%;
  margin: 0 4px; }

.--reloj {
  fill: #9c9c9c;
  margin-top: 3px;
  margin-right: 3px;
  float: left; }

input[type=radio]:checked + label:before {
  content: "\2022";
  color: #3e3e3e;
  font-size: 30px;
  text-align: center;
  line-height: 11px; }

select:not([multiple]) {
  height: 50px;
  font-weight: 600; }

select {
  border-radius: 0 !important;
  -webkit-appearance: none;
  background-image: url(../images/arrow-small.jpg);
  background-repeat: no-repeat;
  background-position: right;
  padding-right: 45px; }

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

.--padding-30 {
  padding: 30px 0; }

.--black {
  fill: black; }

.--gray {
  fill: #878787; }

.--gray-darken {
  color: #878787; }

.--italic {
  font-style: italic; }

.--height-100 {
  height: 100%; }

.center-align, .amcper-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

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

:-moz-placeholder {
  /* Firefox 18- */
  color: #fff; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff; }

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

.responsive-img {
  max-width: 100%;
  height: auto; }

.divider-home {
  display: block;
  height: 1px;
  background-color: #000; }

.footer {
  color: #fff;
  background-color: #222; }

.footer__image {
  position: relative;
  width: 100%;
  height: 450px; }

/*.image__footer__bg{
	position: absolute;
	width: 100%;
	max-height: 700px;
}*/
.footer__text {
  background: url(../img/footer.jpg);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.footer__info {
  padding: 70px 0;
  width: 70%;
  margin-left: 15%; }

.footer__info-row {
  margin-right: auto;
  margin-left: auto; }

.footer__info-logo {
  width: 20%;
  float: left; }

.footer__info-text {
  width: 80%;
  float: left; }

.footer__content {
  width: 25%;
  float: left; }

.footer__list {
  padding-right: 20px;
  margin: 0; }

.footer__list-title {
  font-size: 17px;
  color: #fff;
  text-transform: uppercase; }

.footer__list-line {
  font-size: 14px;
  list-style: none;
  line-height: 20px;
  color: #828282;
  text-decoration: none; }

.footer__list-line:hover {
  color: #fff; }

.footer__list-line:hover:before {
  content: "—"; }

.footer__center {
  width: 50%;
  color: #fff;
  text-align: center; }

.footer__center-title {
  font-size: 40px;
  color: #fff; }

.footer__center-text {
  font-size: 18px; }

.footer__copyright {
  font-size: 12px; }

.footer__bottom {
  font-size: 12px;
  color: #fff;
  text-align: center; }

.mdi:hover {
  color: #008bff; }

.-link {
  color: #fff;
  text-decoration: none; }

.-link-black {
  color: #3e3e3e;
  text-decoration: none; }

.-link-black:hover {
  color: #008bff;
  text-decoration: none; }

.-box {
  padding: 15px 50px;
  border-radius: 40px;
  border: 3px solid #fff;
  display: inline-block; }

.-clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both; }

.-no-line-height {
  line-height: 0; }

.extra-col {
  padding-left: 40px; }

.carousel-btn {
  padding: 0px 5px !important;
  background-color: transparent;
}

.tagTitle_btn_eventos{
  color: var(--titles-blue) !important;
  border: solid;
  border-radius: 10px;
  padding: 3px 5px;
  border-width: thin;
  font-size: larger;
  font-weight: 600;
}

.tagTitle {
  display: inline-flex;
  width: 100%; }

.tagTitle__buttons{
  align-content: end;
  width: 100%;
  text-align-last: end;
}

.tagTitle__text {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--titles-blue);
  padding: 5px 0px;
  display: inline-block;
  margin: 34px 0 0 0px; }

.tagTitle__text-big {
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  background-color: #007ee6;
  padding: 5px 15px;
  display: inline-block; }

.slider__bottom {
  display: none; }

.es_activo {
  display: inline-block; }

.disable-slider {
  fill: #e3e3e3;
  border: 1px solid #e3e3e3 !important; }

.ancor__articulos-div {
  display: block;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px; }

.ancor__articulos-home {
  font-size: 12px;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  background-color: #006098;
  border-radius: 30px; }

.prueba {
  padding-bottom: 2%; }

#conekta-iframe {
  display: none; }

/* =RESPONSIVE UTILITIES
-----------------------------------------------------------------------------*/
/* =CONTENT PAGE
-----------------------------------------------------------------------------*/
.section {
  position: relative; }

.section-margin {
  margin-top: 40px; }
  @media (min-width: 1600px) {
    .section-margin {
      margin-top: 40px; } }

.main-section {
  padding-top: 43px; }

.responsive-margin-menu {
  margin-top: 0px; }


/* =RESPONSIVE UTILITIES
-----------------------------------------------------------------------------*/
/* =CONTENT PAGE
-----------------------------------------------------------------------------*/
.section {
  position: relative; }

/* =RESPONSIVE UTILITIES
-----------------------------------------------------------------------------*/
/* =CONTENT PAGE
-----------------------------------------------------------------------------*/
.content {
  position: relative;
  margin-top: 40px; }
  @media (min-width: 0) and (max-width: 768px) {
    .content {
      margin-top: 0px; } }

@media (min-width: 0) and (max-width: 768px) {
  .trabajos__container {
    width: 85%;
    margin: 0 auto; } }

@media (min-width: 0) and (max-width: 768px) {
  .articulo__container {
    width: 85%;
    margin: 0 auto; } }

.general-cover {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  height: auto;
  z-index: 5;
  text-align: center; }
  .general-cover img {
    width: 100%;
    height: auto; }

.general-cover--section {
  position: relative;
  top: 0;
  height: 500px;
  overflow: hidden; }

.multiply-bg {
  background-color: #008bff;
  background-blend-mode: multiply; }

.gray {
  -webkit-filter: gray;
  filter: gray;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }

.decorator--square {
  position: relative;
  width: 10px;
  height: 10px;
  background: #008bff;
  margin: 30px 0; }

.content__page {
  position: relative;
  padding-bottom: 90px; }
  .content__page h1 {
    margin-bottom: 60px; }
  .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6 {
    margin-bottom: 20px; }

.content__page--text p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #b6b6b6; }

.content__page--text__container {
  position: relative;
  display: block;
  margin-bottom: 10px; }

.content__page--text__read-more {
  text-decoration: none;
  font-size: 12px;
  color: #3c709a;
  -webkit-transition: all .75s ease-in-out;
  -o-transition: all .75s ease-in-out;
  transition: all .75s ease-in-out; }
  .content__page--text__read-more:hover {
    color: #007ee6;
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out; }

.content__page__sidebar {
  position: relative;
  width: 85%;
  z-index: 20; }

.content__page__sidebar-navigation {
  position: relative;
  border: 1px solid #ebebeb; }
  .content__page__sidebar-navigation ul {
    margin: 0;
    list-style: none; }

.content__page__sidebar-navigation__list__item {
  padding: 15px 20px;
  position: relative;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #ebebeb; }
  .content__page__sidebar-navigation__list__item:last-of-type {
    border: none; }
  .content__page__sidebar-navigation__list__item a {
    color: #878787; }
  .content__page__sidebar-navigation__list__item:hover a {
    color: #008bff; }

a.content__page__sidebar-navigation__list__item--active {
  color: #3e3e3e; }

/* =RESPONSIVE UTILITIES
-----------------------------------------------------------------------------*/
@media (min-width: 0) and (max-width: 768px) {
  .content__page__sidebar {
    width: 100%; } }

@media (min-width: 1600px) {
  .content__page {
    position: relative;
    padding-top: 90px; } }

.article {
  width: 90%;
  margin-left: 5%;
  padding: 0 15px;
  background-color: #fff;
  color: #878787;
  -webkit-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease; }

.article:hover {
  background-color: #555;
  color: #c8c8c8; }

.article-cursor {
  cursor: pointer; }

.article:hover .article__info-index {
  color: #878787; }

.article:hover .article__info-index-span {
  color: #878787 !important; }

.article:hover .article__info-footer {
  color: #878787;
  fill: #878787; }

.article:hover .--reloj {
  fill: #878787; }

.article__image {
  line-height: 0;
  height: 225px;
  margin: 0 -15px; }

.article__info {
  display: block;
  padding: 0 5%;
  min-height: 200px; }

.article-margin {
  padding: 15px 0; }

.article__info-index {
  margin-top: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.article__info-index-span {
  margin-top: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #008bff; }

.article:hover .article__info-index span {
  color: #008bff; }

.article__info-title {
  font-size: 29px;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #3e3e3e; }

.article__info-content {
  font-size: 15px; }

.article__info-footer {
  font-size: 12px;
  padding-bottom: 20px;
  fill: #878787; }

.cardEvents {
  width: 100%;
  margin-top: 20px;
  background-color: #013368; }

.cardEvents-acomodo {
  background-color: #013368;
  margin-left: 0;
  margin-right: 0; }

.cardEvents__top {
  min-height: 230px; }

.cardEvents-responsive-ds-editorial {
  padding: 10px 24px; }

.cardEvents-no-padd {
  background-color: #013368;
  width: 100%;
  margin-left: 0;
  margin: 15px 0; }

.cardEvents__top-index {
  display: inline-block;
  position: absolute;
  background-color: #008bff; }

.cardEvents__top-title {
  font-size: 11px;
  color: #fff;
  margin-bottom: 0;
  padding: 10px 15px;
  text-transform: uppercase; }

.cardEvents__footer {
  padding: 20px;
  min-height: 200px; }

.cardEvents__footer-divider {
  display: block;
  width: 33.3333%;
  border-top: 1px solid #007eff; }

.cardEvents__footer-date {
  font-size: 13px;
  color: #fff; }

.cardEvents__footer-title {
  font-size: 20px;
  line-height: 32px;
  padding-top: 30px;
  color: #fff; }

.pagination {
  margin: 0; }

.btn {
  cursor: pointer;
  margin: 60px 0;
  background-color: #fff;
  border-left: 0;
  height: 52px;
  width: 52px;
  display: block;
  float: left;
  font-size: 14px;
  color: #878787;
  border-radius: 0;
  padding: 0; }

.-first {
  border-radius: 40px 0 0 40px;
  color: #878787;
  fill: #878787;
  line-height: 0; }

.-last {
  border-radius: 0 40px 40px 0;
  fill: #878787;
  line-height: 0; }

.filter__section {
  background-color: #f8f8f8;
  width: 100%; }

.filter {
  display: block;
  width: 75%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto; }

.filter__link {
  float: left;
  padding: 26px 50px;
  text-decoration: none;
  color: #333;
  font-size: 14px; }

.-plus {
  font-size: 20px;
  color: #905bff; }

.-right-search {
  float: right;
  background-color: #eeeeee;
  padding: 31px 40px;
  fill: #905bff;
  line-height: 0; }

/* news_ancor */
.news {
  width: 100%;
  padding: 40px;
  background-color: #fff;
  -webkit-transition: all .75s ease-in-out;
  -o-transition: all .75s ease-in-out;
  transition: all .75s ease-in-out; }
  .news:hover {
    background-color: #f3f3f3;
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out; }
    .news:hover .news__info-title {
      color: #008bff;
      -webkit-transition: color .35s ease-in-out;
      -o-transition: color .35s ease-in-out;
      transition: color .35s ease-in-out; }

.news__anchor {
  position: relative;
  display: block; }
  .news__anchor:hover {
    background-color: #f3f3f3;
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out; }

.news__title {
  font-size: 28px; }

.news__info-title {
  font-size: 28px;
  line-height: 30px;
  -webkit-transition: color .75s ease-in-out;
  -o-transition: color .75s ease-in-out;
  transition: color .75s ease-in-out; }

.news__info-date {
  font-size: 12px;
  color: #878787; }

.news__info-content {
  font-size: 17px;
  color: #878787; }

.news__info-footer {
  font-size: 12px;
  color: #878787;
  margin-bottom: 0; }

.news__border-bottom {
  padding-top: 60px;
  width: 100%;
  border-bottom: 1px solid #ebebec;
  margin: 0 24px 20px 24px; }

.news__border-bottom-min {
  padding-top: 60px;
  width: 100%;
  border-bottom: 1px solid #ebebec;
  margin: 0 24px 20px 24px; }

.news__titulo-uppercase {
  color: #3e3e3e;
  text-transform: uppercase;
  background-color: #f3f3f3;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 20px;
  margin-bottom: 0; }

.general-svg__container {
  position: relative;
  display: inline-block;
  height: auto;
  width: 24px;
  line-height: 1;
  margin: 0;
  padding: 0; }

.general-svg {
  position: relative;
  display: inline-block;
  height: auto;
  line-height: 1;
  margin: 0 2px 0 0;
  width: 24px; }

.general-svg--small-icon {
  width: 18px;
  fill: #878787; }

.general-svg--clock {
  position: relative;
  top: 3px; }

.section-container {
  position: relative;
  width: 100%; }

.contentArticle {
  padding-top: 200px; }

.cardEvents__anchor {
  cursor: pointer; }

.contentArticle__article {
  padding-right: 25px;
  padding-top: 30px;
  border-top: 1px solid #f1f1f1; }

.contentArticle-eventos {
  padding-top: 200px !important;
  margin-left: 0; }

.contentArticle-eventos-cero-padd {
  padding-left: 0 !important; }

.contentArticle__article__header {
  padding: 10px 0; }

.contentArticle__article__header-index {
  font-size: 12px;
  color: #008bff;
  text-transform: uppercase; }

.contentArticle__article__header-span {
  color: #3e3e3e; }

.contentArticle__article__header-title {
  color: #3e3e3e; }
  @media (min-width: 0) and (max-width: 768px) {
    .contentArticle__article__header-title {
      font-size: 26px;
      line-height: 1.5; } }
  @media (min-width: 1600px) {
    .contentArticle__article__header-title {
      color: #3e3e3e;
      font-size: 40px;
      line-height: 43px; } }

.contentArticle__article__header-publ {
  font-size: 15px;
  color: #9d9d9d; }

.contentArticle__article__quote {
  padding: 0; }

.contentArticle__cube {
  height: 13px;
  width: 13px;
  background-color: #e4e4e4;
  float: left;
  margin-top: 13px; }

.contentArticle__contentPhoto {
  padding-top: 5px; }

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

.contentArticle__photo {
  color: #878787;
  font-size: 13px;
  display: inline-block;
  padding-left: 10px; }

.contentArticle__article__quote-text {
  border-left: 1px solid #008bff;
  font-size: 20px;
  padding-left: 30px;
  line-height: 30px; }

.contentArticle__article__body p, .contentArticle__article__body li {
  font-size: 17px;
  color: #3e3e3e;
  line-height: 1.8; }

.contentArticle__article__body p, .contentArticle__article__body ul, .contentArticle__article__body ol {
  margin-bottom: 23px; }

.contentArticle__article__body h1, .contentArticle__article__body h2, .contentArticle__article__body h3, .contentArticle__article__body h4, .contentArticle__article__body h5 {
  margin-bottom: 35px; }

.contentArticle__article__body figure {
  width: 100%;
  max-width: 100%;
  margin: 0 auto; }

.contentArticle__article__body img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto; }

.contentArticle__article__body iframe {
  width: 100% !important;
  min-height: 320px !important;
  height: auto !important;
  margin: 0 auto; }

.contentArticle__article__slider {
  text-align: center;
  padding-top: 20px; }

.contentArticle__article__slider-icon {
  position: relative;
  width: 100%;
  height: 100%; }

.contentArticle__article__slider-button {
  line-height: 0;
  height: 50px;
  width: 50px;
  padding: 0;
  background-color: transparent;
  border: 1px solid #878787;
  border-radius: 0; }

.--border-bottom {
  border-bottom: 1px solid #eee; }

.sectionSocial {
  display: block;
  width: 100%;
  text-align: center; }

.sectionSocial__title {
  color: #878787;
  font-size: 12px;
  letter-spacing: 0.8px; }

.sectionSocial__containter {
  padding: 20px 30px 10px 30px;
  display: inline-block;
  border: 1px solid #e4e4e4; }

.sectionSocial__containter-anchor {
  text-decoration: none;
  cursor: pointer; }

.sectionSocial__containter-svg {
  fill: #e4e4e4;
  margin: 0 5px; }

.sectionSocial__containter-svg:hover {
  fill: #007eff; }

.shadowPay {
  -webkit-box-shadow: 1px 2px 40px #eaeaea;
  box-shadow: 1px 2px 40px #eaeaea;
  margin-top: 20px; }

.sectionPay {
  width: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  -webkit-box-shadow: 1px 2px 40px #eaeaea;
  box-shadow: 1px 2px 40px #eaeaea;
  margin-top: 20px;
  z-index: 30; }

.sectionPay__title {
  font-size: 10px;
  color: #905bff;
  padding-top: 15px;
  margin-bottom: 7px;
  text-transform: uppercase;
  display: block; }

.sectionPay__index {
  font-size: 18px;
  color: #878787;
  margin-bottom: 3px; }

.sectionPay__content {
  display: block;
  width: 100%;
  height: 50px; }

.sectionPay__add {
  height: 50px;
  width: 50px;
  border-radius: 0;
  padding: 0;
  border: 1px solid #ccc;
  background-color: transparent;
  float: left;
  font-size: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .sectionPay__add:hover {
    background-color: #905bff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .sectionPay__add:hover svg {
      fill: white;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.sectionPay__add-icon {
  fill: #a2a2a2;
  margin-top: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.sectionPay__input-add {
  height: 50px !important;
  width: 50px !important;
  border-top: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  text-align: center;
  color: #a2a2a2;
  font-size: 15px;
  float: left;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .sectionPay__input-add:focus {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.sectionPay__verify {
  height: 50px !important;
  border: 1px solid #ccc !important;
  border-radius: 0 !important; }

.sectionPay__total-number {
  font-size: 30px;
  margin-bottom: 30px;
  color: #878787; }

.sectionPay__button {
  display: block;
  width: 100%; }

.sectionPay__button-input {
  color: white;
  font-size: 13px;
  line-height: 1;
  height: 52px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
  background-color: #905bff;
  -webkit-box-shadow: -6px 6px 30px #b490ff;
  box-shadow: -6px 6px 30px #b490ff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .sectionPay__button-input:hover {
    background-color: #A2A2A2;
    -webkit-box-shadow: -6px 6px 30px #A2A2A2;
    box-shadow: -6px 6px 30px #A2A2A2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.sectionPay__select {
  width: 100%;
  height: 50px;
  color: #a2a2a2;
  font-size: 12px;
  border: 1px solid #ccc; }

.select--payment {
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 18px; }
  .select--payment .current {
    color: #a2a2a2;
    font-size: 12px;
    top: 0; }
  .select--payment .selected,
  .select--payment .focus,
  .select--payment .option {
    color: #a2a2a2 !important;
    font-size: 12px;
    background-color: #FFF !important; }
  .select--payment .list {
    border: 1px solid #ccc;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: white; }
    .select--payment .list li {
      color: #a2a2a2;
      font-size: 12px;
      border: 0;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .select--payment .list li:hover {
        color: white;
        background-color: #ccc;
        opacity: 0.8;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
  .select--payment:after {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    height: 7px;
    width: 7px;
    margin-right: 15px; }

.fondoArticulos {
  position: relative;
  width: 100%; }

.fondoArticulos__container {
  width: 100%;
  position: absolute;
  height: 100%; }

.fondoArticulo__container__index {
  text-align: left;
  padding-left: 0px;
  padding-right: 0; }

.fondoArticulos__container__index-title {
  position: relative;
  display: block;
  font-size: 15px;
  background-color: #ebebeb;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 20px 15px;
  margin-bottom: 0px;
  color: #b4b4b4;
  line-height: 22px; }

.fondoArticulos__container__index-img {
  float: right;
  vertical-align: middle;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fondoArticulos__container__center {
  position: relative;
  height: 100%; }

.fontArticulos__container__center-text {
  font-size: 20px;
  color: #fff;
  width: 100%;
  line-height: 27px; }

.no-line-height {
  line-height: 0; }

.disqus-container {
  position: relative;
  background: #f8f8f8;
  padding: 90px 0; }

/* Tab News */
.items__news {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden; }
  @media (min-width: 1600px) {
    .items__news {
      height: 250px; } }

.items__news__view {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .items__news__view:hover .items__news__image__filter {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.items__news__image__filter {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  overflow: hidden;
  z-index: 10;
  background-color: #3e3e3e;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.items__news__image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  overflow: hidden;
  z-index: 5; }

.items__news__text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }
  .items__news__text svg {
    width: 18px;
    height: 18px;
    fill: #878787;
    position: relative;
    margin-right: 5px;
    top: 3px; }

.tabNews__back {
  background-color: #3e3e3e; }

.tabNews {
  margin-left: 0; }

.tabNews__container {
  width: 100%;
  background-color: #3e3e3e;
  position: relative;
  overflow: hidden; }

.tabNews__img {
  max-width: 100%;
  height: auto;
  z-index: -1;
  position: absolute; }

.tabNews__text {
  padding: 45px 20px; }

.padd-tabs {
  margin: 40px 0; }

.tabNews__index {
  font-size: 12px;
  text-transform: uppercase;
  color: #5e5e5e;
  letter-spacing: 0.5px; }

.tabNews__title {
  font-size: 22px;
  color: #fff;
  line-height: 28px; }

.tabNews__date {
  color: #939393;
  font-size: 12px; }

.tabNews__footer {
  display: block;
  background-color: #ddd;
  text-align: center; }

.tabNews__footer-text {
  padding: 10px 0px;
  font-size: 15px;
  margin-bottom: 0;
  color: #878787; }

.float__news {
  display: block;
  margin-top: -40px;
  z-index: -1; }

.float__news-acomodo {
  height: 44px;
  width: 92%;
  margin-left: 4%; }

.float__news-left {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  float: left;
  padding: 10px 20px;
  background-color: #3e3e3e;
  color: #fff;
  cursor: pointer; }

.float__news-right {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  float: left;
  padding: 10px 20px;
  background-color: #3e3e3e;
  color: #fff;
  cursor: pointer; }

.float__news-active {
  background-color: #fff;
  color: #3e3e3e; }

/* noticias */
.noticias__base-title {
  font-size: 50px;
  color: #3e3e3e;
  padding: 80px 0 20px 24px; }
  @media (min-width: 0) and (max-width: 768px) {
    .noticias__base-title {
      font-size: 40px;
      padding-top: 30px;
      padding-bottom: 0; } }

.noticias {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  color: #000;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease; }

.noticias__info-title {
  font-size: 32px;
  color: #3e3e3e;
  margin-bottom: 5px;
  line-height: 32px; }

.noticias__info-date {
  font-size: 13px;
  color: #878787;
  margin-bottom: 10px; }

.noticias__info-content {
  font-size: 15px;
  color: #878787; }

.noticias__info-index {
  font-size: 12px;
  text-transform: uppercase;
  color: #007eff;
  letter-spacing: 0.5px;
  margin-bottom: 10px; }

.noticias__info-subindex {
  color: #3e3e3e; }

/* Ir a las noticias */
.goNews {
  position: relative;
  min-height: 100px;
  line-height: 0; }

.goNews__img {
  max-width: 100%;
  height: auto;
  z-index: -1; }

.goNews__text {
  position: absolute;
  width: 100%;
  text-align: center; }

.goNews__text-center {
  padding: 20px 25px;
  font-size: 15px;
  background-color: #222;
  color: #fff;
  margin: 0;
  display: inline-block;
  letter-spacing: 0.3px;
  line-height: 20px; }
  @media (min-width: 0) and (max-width: 768px) {
    .goNews__text-center {
      font-size: 12px; }
      .goNews__text-center img {
        width: 50%; } }

.goNews__text-ancor {
  text-decoration: none; }

.goNews__text-left {
  padding-right: 10em;
  vertical-align: middle; }

.goNews__text-right {
  padding-right: 10em;
  vertical-align: middle;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

/* RSS Full */
.rssFull {
  position: relative; }

.rssFull__center {
  position: absolute;
  padding: 30px 20px;
  text-align: center; }

.rssFull__submit {
  font-size: 13px;
  color: #000;
  background-color: #fff;
  padding: 10px 20px;
  margin-top: 15px; }

.rssFull__submit-right {
  float: right;
  background-color: #fff;
  padding: 13px 35px;
  letter-spacing: 0.5px;
  color: #3e3e3e; }

.rssFull__submit-left {
  overflow: hidden; }

.rssFull__submit-left-input {
  background: transparent !important;
  text-align: center;
  color: #fff;
  font-size: 13px;
  border-radius: 0 !important;
  border: 1px solid #fff !important;
  height: 43px !important; }

.rssFull__center-title {
  line-height: 40px;
  font-size: 30px;
  color: #fff; }

.rssFull__center-suscribete {
  font-size: 14px;
  color: #fff;
  line-height: 17px; }

.rssFull__mail {
  background: transparent !important;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  border-radius: 0 !important;
  border: 1px solid #fff !important; }

.rssFull_img {
  font-size: 14px; }

.divider_editorial {
  display: block;
  background-color: #e8e8e8;
  min-height: 1px; }

/* Section New */
.sectionNews__article-container {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #e4e4e4; }

.sectionNews__content-title {
  font-size: 32px;
  line-height: 35px; }

.sectionNews__content-date {
  font-size: 12px;
  color: #bebebe; }

.sectionNews__content-text {
  font-size: 15px;
  line-height: 24px; }

.sectionNews__img {
  padding-left: 24px; }

.sectionNews__content {
  padding: 10px; }

/* RSS */
.rss {
  position: relative;
  margin: 40px 0; }

.rss_acomodo-imagen {
  height: 500px; }

.rss__center {
  position: absolute;
  padding: 30px 20px;
  text-align: center; }

.rss__submit {
  font-size: 13px;
  color: #000;
  background-color: #fff;
  padding: 10px 20px;
  margin-top: 15px; }

.rss__center-title {
  line-height: 40px;
  font-size: 30px;
  color: #fff; }

.rss__center-suscribete {
  font-size: 14px;
  color: #fff; }

.rss__mail {
  background: transparent !important;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  border-radius: 0 !important;
  border: 1px solid #fff !important; }

.rss_img {
  font-size: 14px; }

/* Mala Practica seccion */
.mala__section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.mala__section-center {
  text-align: center;
  padding: 60px 60px;
  background-color: #f4f3f3; }

.mala__section-title {
  font-size: 30px;
  line-height: 35px; }

.mala__section-text {
  font-size: 15px;
  margin-bottom: 30px;
  color: #878787; }

.mala__section-button {
  font-size: 12px;
  padding: 10px 15px;
  background-color: #00609c;
  border-radius: 20px;
  color: #fff;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out; }
  .mala__section-button:hover {
    color: #515151;
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    background-color: #fff; }

.resultadosText {
  color: #905bff;
  font-size: 16px;
  padding-top: 80px;
  padding-left: 0px;
  margin-bottom: 10px; }

.resultadosText span {
  color: #3e3e3e;
  font-size: 16px; }

.search {
  width: 100%; }

.search__form {
  display: block; }

.search__form__title {
  font-size: 30px; }

.search__form__input {
  width: 100%;
  color: #d6d6d6 !important;
  height: 60px !important;
  border-radius: 0 !important;
  border: 2px solid #ccc !important;
  background-image: url(/amcper-portal/pruebas/search.jpg) !important;
  background-repeat: no-repeat !important;
  background-position: right !important;
  padding-right: 45px; }

.search__form__input::-webkit-input-placeholder {
  color: #d6d6d6 !important;
  font-size: 18px; }

.search__form__input:-moz-placeholder {
  /* Firefox 18- */
  color: #d6d6d6 !important;
  font-size: 20px; }

.search__form__input::-moz-placeholder {
  /* Firefox 19+ */
  color: #d6d6d6 !important;
  font-size: 20px; }

.search__form__input:-ms-input-placeholder {
  color: #d6d6d6 !important;
  font-size: 18px; }

.filtros {
  width: 100%;
  padding-right: 50px;
  padding-top: 10px; }

.filtros__top {
  padding-top: 80px; }

.filtros__section {
  display: block;
  border-bottom: 1px solid #e1e1e1; }

.filtros__section-title {
  font-size: 15px;
  color: #353535;
  padding-left: 20px; }

.filtros__section-text {
  font-size: 15px;
  padding: 20px;
  color: #878787;
  display: block;
  margin: 0; }

.filtros__section-input {
  float: right;
  margin-top: 4px; }

.articleFiltros__content-title {
  font-size: 25px;
  color: #3e3e3e; }

.articleFiltros__content-tag {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  background-color: #008bff;
  color: #fff; }

.articleFiltros__content-date {
  font-size: 13px;
  color: #878787;
  display: inline-block; }

.articleFiltros__content-or {
  padding: 0 10px; }

.articleFiltros__content-text {
  font-size: 15px;
  line-height: 24px;
  color: #878787; }

.articleFiltros__content-footer {
  display: block; }

.articleFiltros__img {
  padding-top: 10px; }

.articleFiltros__content {
  padding: 15px 30px; }

.articlesFiltros__border {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 30px; }

.filtros__section-label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-size: 13px;
  padding-left: 25px; }

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

.filtros__section-label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 30px;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: #fff; }

.radio .filtros__section-label:before {
  border-radius: 8px;
  border: 1px solid #8a8a8a;
  top: 3px;
  left: 0;
  float: left; }

.radio {
  margin: 0; }

.mientrasBack {
  background: url(../images/backPraxis.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.containerPraxis {
  width: 70%;
  margin-left: 15%; }

@media (min-width: 0) and (max-width: 768px) {
  .container__praxis {
    width: 85%; } }

.padding-Praxis {
  padding: 70px 0;
  color: #fff; }

.headerPraxis-denuncia {
  color: #013368;
  font-size: 20px;
  padding-top: 190px;
  padding-bottom: 20px; }
  @media (min-width: 0) and (max-width: 768px) {
    .headerPraxis-denuncia {
      font-size: 18px;
      padding-top: 50px; } }

.headerPraxis-info {
  font-size: 17px;
  color: #013368;
  padding-top: 25px; }

.headerPraxis-title {
  font-size: 70px;
  color: #fff;
  line-height: 80px; }
  @media (min-width: 0) and (max-width: 768px) {
    .headerPraxis-title {
      font-size: 36px;
      line-height: 1.3; } }

.formPraxis__content-label {
  display: block;
  font-size: 17px;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 25px; }

.formPraxis__content-input {
  background-color: #1164a9 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #76c1ff !important;
  width: 100%; }

.formPraxis__content-textarea {
  background-color: #1164a9;
  border: none; }

.formPraxis__content-button {
  font-size: 15px;
  letter-spacing: 1px;
  color: #008aff;
  background-color: #fff;
  padding: 22px 70px;
  border-radius: 30px;
  margin-top: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .formPraxis__content-button:hover {
    color: white;
    background-color: #bbb;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.formPraxis__content-button:hover {
  cursor: pointer;
  text-decoration: underline; }

.infoPraxis-contacta {
  font-size: 28px;
  color: #fff; }

.infoPraxis-datos {
  font-size: 17px;
  color: #fff; }
  .infoPraxis-datos a {
    color: #fff;
    -webkit-transition: all .75s ease-in-out;
    -o-transition: all .75s ease-in-out;
    transition: all .75s ease-in-out; }
    .infoPraxis-datos a:hover {
      color: #000;
      -webkit-transition: all .5s ease-in-out;
      -o-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }

.cardAnchor {
  width: 33.3333%;
  cursor: pointer; }

.card {
  position: relative;
  float: left;
  width: 100%; }

@media (max-width: 901px) {
  .cardAnchor {
    position: relative;
    float: left;
    width: 50%; } }

@media (max-width: 601px) {
  .cardAnchor {
    position: relative;
    float: left;
    width: 100%; } }

.card__container {
  position: relative;
  margin: 0px; }

.card__front {
  width: 100%;
  height: 100%; }

.card__front-relative {
  position: relative;
  line-height: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .card__front-relative:hover {
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.card__front-img {
  z-index: -1; }

.card__front-index {
  position: absolute;
  font-size: 14px;
  padding-left: 20px;
  z-index: 1;
  line-height: 1.8; }

.card__front-text {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10%; }

.card-containers {
  margin: 10px 10px; }

.card__front-title {
  font-size: 45px;
  line-height: 40px;
  color: #fff;
  line-height: 1.3; }

@media (max-width: 1280px) {
  .card__front-title {
    font-size: 30px;
    line-height: 30px; } }

.card__back {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%; }

.card__back-relative {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 40px;
  background-color: #008bff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .card__back-relative:hover {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.card__back-index {
  position: absolute;
  font-size: 14px;
  padding-left: 20px;
  z-index: 1;
  padding-top: 10px; }

.card__back-text {
  position: absolute;
  width: 80%;
  margin-left: 10%;
  bottom: 10px; }

.card__back-title {
  font-size: 28px;
  color: #fff; }

.card__back-p {
  font-size: 15px; }

@media (max-width: 1280px) {
  .card__back-title {
    font-size: 20px; }
  .card__back-p {
    font-size: 12px; } }

.footer__image {
  position: relative;
  width: 100%;
  height: 450px; }

/*.image__footer__bg{
	position: absolute;
	width: 100%;
	max-height: 700px;
}*/
.footer__text {
  background: url(../images/footer.jpg);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.padding-left-24-inverso {
  padding: 24px; }

.padding-left-24-fijo-mobile {
  padding: 24px; }

.padding-clear-185 {
  margin-top: 185px; }

.padding-clear-200 {
  margin-top: 200px; }

.padding-left-24 {
  padding-left: 24px; }

.padding-left-24-cambios {
  padding-left: 40px; }

.padding-left-40 {
  padding-left: 40px; }

.padding-left-30 {
  padding-left: 30px; }

.margin-24 {
  margin: 0 24px; }

.margin-40 {
  margin: 0 40px; }

@media (max-width: 1600px) {
  .padding-clear-200 {
    margin-top: 185px; } }

.contentProced {
  margin-top: 60px; }
  @media (min-width: 0) and (max-width: 768px) {
    .contentProced {
      margin: 0; } }

.contentProced__article {
  padding-right: 25px; }

.contentProced__article__header {
  padding: 20px 0; }

.contentProced__article__header-index {
  font-size: 12px;
  color: #008bff; }

.contentProced__article__header-span {
  color: #878787;
  text-transform: uppercase; }

.contentProced__article__header-title {
  color: #3e3e3e;
  font-size: 50px; }

.contentProced__article__header-publ {
  font-size: 15px;
  color: #878787; }

.contentProced__article__quote {
  padding: 30px 10px 30px 60px; }
  @media (min-width: 0) and (max-width: 768px) {
    .contentProced__article__quote {
      padding: 30px 10px 30px 30px; } }

.contentProced__article__quote-text {
  border-left: 1px solid #008bff;
  font-size: 20px;
  padding-left: 30px;
  line-height: 30px; }
  @media (min-width: 0) and (max-width: 768px) {
    .contentProced__article__quote-text {
      font-size: 18px; } }

.contentProced__article__body p {
  font-size: 17px;
  color: #3e3e3e;
  line-height: 30px; }

.contentProced__article__slider {
  text-align: center; }

.contentProced__article__slider-icon {
  position: relative;
  width: 100%;
  height: 100%; }

.contentProced__article__slider-button {
  line-height: 0;
  height: 50px;
  width: 50px;
  padding: 0;
  background-color: transparent;
  border: 1px solid #878787;
  border-radius: 0; }

.contentProced__widget {
  margin-left: 20px;
  -webkit-box-shadow: 1px 2px 40px #eaeaea;
  box-shadow: 1px 2px 40px #eaeaea; }

.contentProced__widget__title {
  padding: 20px 40px;
  text-align: center; }

.contentProced__widget__duracion {
  padding: 20px 40px; }

.contentProced__widget__recuperacion {
  padding: 20px 40px; }

.contentProced__widget__recomendaciones {
  padding: 20px 40px; }

.--border-bottom {
  border-bottom: 1px solid #eee; }

.contentProced__widget__text-blue {
  color: #008bff;
  font-size: 12px;
  margin-bottom: 0; }

.contentProced__widget__text {
  font-size: 15px;
  color: #3e3e3e;
  margin-bottom: 0px; }

.contentProced__widget__icon {
  fill: #3e3e3e;
  margin-top: 5px; }

.hide-arrow-desktop {
  display: none; }
  @media (min-width: 0) and (max-width: 768px) {
    .hide-arrow-desktop {
      display: none; } }

.contact_image {
  position: relative;
  display: inline-block;
}

.contact_image div {
  position: relative;
  width: 100%;
  text-align: center;
}

.contact_image_text {
  position: absolute;
  text-transform: uppercase;
  font-size: xxx-large;
  font-weight: bolder;
  top: 80%;
  width: 100%;
  color: white;
}

@media(max-width: 768px) {
  .contact_image_text {
    font-size: xx-large;
  }
}

.contacto {
  background: url(/amcper-portal/pruebas/header-contacto.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.contacto--container {
  width: 90%;
  margin-left: 5%; }

.contacto__form {
  padding-bottom: 100px; }

.contacto__form-title {
  font-size: 50px;
  line-height: 60px;
  color: var(--titles-lightblue);
  padding-top: 10vh;
  padding-bottom: 20px; }
  @media (min-width: 0) and (max-width: 768px) {
    .contacto__form-title {
      font-size: 38px;
      line-height: 1.2; } }
  @media (min-width: 1600px) {
    .contacto__form-title {
      font-size: 70px;
      line-height: 80px; } }

.contacto label {
  font-size: 17px;
  color: var(--titles-lighterblue);
  display: block;
  padding-top: 40px;
  padding-bottom: 20px; }

.contacto input {
  background-color: #f2f2f2;
  display: block;
  width: 100%;
  border: solid;
  border-width: 2px;
  border-color: black;
  border-radius: 10px;
  background-color: white;
  height: 50px;
  color: black; }

.contacto textarea {
  background-color: #f2f2f2;
  display: block;
  width: 100%;
  border: solid;
  border-width: 2px;
  border-color: black;
  border-radius: 10px;
  background-color: white;
  resize: none;
  color: #3e3e3e; }

.contacto__info-title {
  font-size: 27px;
  color: var(--titles-lightblue);
  padding-top: 40px; }

.contacto__info h4 {
  padding-top: 20px;
  font-size: 17px;
  color: var(--titles-lightblue);
  margin-bottom: 5px; }

.contacto__info p {
  font-size: 17px;
  color: var(--titles-lighterblue);
  margin-bottom: 5px; }

.contacto__from-submit_container {
  width: 100%;
  text-align: end;
}

.contacto__form-submit {
  cursor: pointer;
  margin-top: 30px;
  display: inline-block !important;
  font-size: x-large !important;
  color: #fff !important;
  border: none !important;
  background-color: #008bff !important;
  padding: 27px 3vh;
  letter-spacing: 1px;
  border-radius: 10px !important;
  width: auto !important;
  line-height: 1px; }

.contact_info_container{
  max-width: 90%;
  margin-left: 3%;
}

.rightConocenos {
  width: 100%; }

.rightConocenos__secciones {
  display: block;
  border: 1px solid #008bff;
  text-align: right; }

.rightConocenos__secciones-text {
  font-size: 10px;
  margin-bottom: 0;
  padding: 5px;
  text-transform: uppercase;
  color: #008bff; }

.rightConocenos__listado {
  border-bottom: 1px solid #e1e1e1;
  display: block; }

.rightConocenos__info-title-icon {
  font-size: 15px;
  color: #878787;
  margin-bottom: 40px; }

.rightConocenos__listado-text {
  font-size: 15px;
  color: #878787;
  margin-bottom: 0;
  padding: 15px 25px; }

.active-conocenos {
  background-color: #008bff;
  border-bottom: 1px solid #008bff; }

.active-conocenos p {
  color: #fff; }

.rightConocenos__divider {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 40px;
  margin-bottom: 20px;
  background-color: #008bff; }

.rightConocenos__divider-noSpace {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #008bff; }

.rightConocenos__info p, .rightConocenos__info ul, .rightConocenos__info ol {
  font-size: 14px;
  margin-bottom: 0px;
  padding-bottom: 20px;
  color: #3e3e3e; }

.rightConocenos__info ul, .rightConocenos__info ol {
  margin-left: 0;
  list-style: none; }

p.rightConocenos__info-title, .rightConocenos__info-title {
  font-size: 21px;
  color: #3e3e3e;
  margin-bottom: 0;
  padding-bottom: 25px;
  line-height: 25px; }

p.rightConocenos__info-subtitle, .rightConocenos__info-subtitle {
  font-size: 14px;
  margin-bottom: 0px;
  color: #3e3e3e; }

.rightConocenos__info-text {
  font-size: 14px;
  margin-bottom: 0px;
  padding-bottom: 20px;
  color: #3e3e3e; }

.rightConocenos__tabs {
  width: 100%;
  display: block; }

.rightConocenos__tabs-title {
  font-size: 15px;
  color: #878787;
  border-left: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  padding: 15px 25px;
  margin-bottom: 0; }

.rightConocenos__divider-icon-div {
  display: block; }

.rightConocenos__divider-icon {
  font-size: 15px;
  color: #878787;
  padding-top: 10px; }

.rightConocenos__tabs-active {
  color: #353535 !important; }

.rightConocenos__tabs-listado {
  font-size: 15px;
  color: #878787;
  border: 1px solid #e1e1e1;
  padding: 15px 25px;
  margin-bottom: 0; }

.padd-conocenos-top {
  padding-top: 40px; }

.divider-maqueta {
  display: block;
  width: 100%;
  border-bottom: 1px solid #555;
  min-height: 1px;
  margin: 30px 0; }

.news__responsive-padd {
  padding-left: 24px;
  padding-right: 24px; }

.white-sobreescrito {
  background-color: #fff; }

.only-padding-left-24 {
  padding-left: 24px; }

.only-padding-left-0 {
  padding-left: 0; }

.only-padding-left-0-imp {
  padding-left: 0 !important; }

.no-margin-lateral {
  margin-right: 0;
  margin-left: 0; }

.no-padding-lateral {
  padding-right: 0;
  padding-left: 0; }

.no-margin-left {
  margin-right: 0;
  margin-left: 0; }

.no-margin-only-left {
  margin-left: 0; }

.padding-top-50 {
  padding-top: 50px !important; }

.no-margin-width-full {
  width: 100%;
  margin-left: 0; }

.row {
  margin-left: 0; }

.margin-lateral-24 {
  margin-right: 24px;
  margin-left: 24px; }

.padding-lateral-24 {
  padding-right: 24px;
  padding-left: 24px; }

.margin-top-100 {
  margin-top: 100px; }

.margin-top-50 {
  margin-top: 50px; }

.extra-margin-bottom-60 {
  margin-bottom: 60px; }

.margin-top-4 {
  margin-top: 4px; }

.margin-top-8 {
  margin-top: 8px; }

.aviso-responsive {
  padding-left: 40px; }

.default {
  margin-top: 0; }

.padding-left-articulo {
  padding-left: 65px; }

.hide-on-desktop {
  display: none; }

.flechas_acomodo {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  width: 50%;
  height: 100px; }

.contentArticle__article-responsive {
  -webkit-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
  width: 75%; }

.contentArticle__article-responsive-right {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
  width: 25%; }

.fondoArticulos-responsive {
  height: 455px; }

.top-200 {
  margin-top: 185px; }

.width-flickty {
  width: 100%;
  height: auto; }

.flickity-prev-next-button {
  display: none; }

.flickity-prev-next-button {
  height: 56px; }

.flickity-page-dots {
  bottom: 55px;
  left: 0; }

/* white circles */
.flickity-page-dots .dot {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #fff;
  border: 2px solid #fff;
  /*
  -webkit-box-shadow: 0 2px 5px 2px rgba(0,0,0,.3);
  box-shadow: 0 2px 5px 2px rgba(0,0,0,.3);
  */
  background: #d9d9d9;
  border: 2px solid #d9d9d9; }

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: #008bff;
  border: 2px solid #008bff;
  background: #a1a1a1;
  border: 2px solid #a1a1a1; }

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

.carousel-cell {
  width: 100%;
  margin-right: 10px;
  border-radius: 5px; }

/* cell number */
.carousel-cell:before {
  display: block;
  text-align: center; }

.active {
  background-color: #3e3e3e;
  color: #fff; }

@media (max-width: 1600px) {
  a.main__navigation__list__item--active:after, .main__navigation__list__item--active:after {
    content: '';
    position: absolute;
    display: block;
    width: 65%;
    height: 4px;
    bottom: -2px;
    background: #008bff; } }

@media (max-width: 1100px) {
  .sectionProce-responsive {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    width: 80%;
    margin-top: 0;
    margin-left: 10%; }
  .aviso-responsive {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    width: 80%;
    margin-top: 40px;
    margin-left: 10%;
    padding-left: 0px; }
  .noticiasButton {
    text-align: center; }
  .noticiasSmall {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    width: 80%;
    margin-top: 0;
    margin-left: 10%; }
  .noticiasCuadros {
    -webkit-flex-basis: 78%;
    -ms-flex-preferred-size: 78%;
    flex-basis: 78%;
    max-width: 78%;
    width: 78%;
    margin-top: 0;
    margin-left: 12%;
    margin-bottom: 20px; }
  .findCirujano__absolute {
    width: 80%; }
  .noticiasSmall__img-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 3% 0; }
  .noticiasSmall__img-img {
    padding: 0; }
  .noticiasSmall__absolute {
    padding: 0; }
  .goNews__text-right {
    padding-right: 6em; }
  .goNews__text-left {
    padding-right: 6em;
    vertical-align: middle; }
  .tabNews__index {
    font-size: 10px; }
  body {
    line-height: 1.7;
    font-size: 15px; }
  .footer__center {
    width: 85%; }
  .news__anchor--acomodo {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    width: 33.3333%; }
  .sectionNews {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    width: 66.6666%; }
  .right-edit-noticias {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    width: 33.3333%; }
  .news__responsive {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    width: 33.3333%; }
  .contentArticle__article-responsive {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    width: 66.6666%; }
  .contentArticle__article-responsive-right {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    width: 33.3333%; }
  .padding-left-24-cambios {
    padding-left: 32px; }
  .noticiasCuadros__big {
    position: absolute;
    width: 100%;
    margin-left: -2.6%;
    height: 100%;
    padding-left: 10%;
    padding-right: 5%; }
  .sectionProce {
    padding: 20px 0 0 0; }
  .tagTitle__text {
    margin: 34px 0 0 0; }
  .news__responsive-padd {
    padding-left: 24px;
    padding-right: 24px;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    width: 50%; }
  a.main__navigation__list__item--active:after, .main__navigation__list__item--active:after {
    content: '';
    position: absolute;
    display: block;
    width: 65%;
    height: 4px;
    bottom: -3px;
    background: #008bff; } }

@media (max-width: 768px) {
  .contentArticle__article {
    padding-right: 0px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1; }
  .sectionProce-responsive {
    -webkit-flex-basis: 90%;
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
    width: 90%;
    margin-top: 0;
    margin-left: 5%; }
  .findCirujano__absolute {
    width: 90%; }
  .rssFull__center-title-big {
    line-height: 42px;
    font-size: 40px;
    color: #fff; }
  .rssFull_imgLiquid {
    min-height: 500px; }
  .afiliate-absolute {
    position: absolute;
    color: #fff;
    width: 80%;
    text-align: center;
    line-height: 25px; }
  .afiliate__img {
    min-height: 580px; }
  .findCirujano__absolute-title {
    font-size: 45px;
    line-height: 45px;
    margin: 0 0 20px 0;
    color: #fff; }
  .slider__img {
    height: 800px; }
  .goNews__text-right {
    padding-right: 8em; }
  .goNews__text-left {
    padding-right: 8em;
    vertical-align: middle; }
  .tabNews__back {
    display: none; }
  .footer__center-title {
    font-size: 30px; }
  .footer__center-text {
    font-size: 16px;
    line-height: 23px; }
  .cardEvents-responsive {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .news__anchor--acomodo {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    width: 50%; }
  .-box {
    padding: 10px 30px;
    border-radius: 40px;
    border: 3px solid #fff;
    display: inline-block; }
  .sectionNews__acomodo-img {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    width: 33.3333%; }
  .sectionNews__acomodo-text {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    width: 66.6666%; }
  .sectionNews__img {
    padding-left: 0; }
  .sectionNews {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .right-edit-noticias {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .rss__center-title {
    line-height: 28px;
    font-size: 22px;
    color: #fff; }
  .resultadosText {
    padding-left: 0px; }
  .padding-left-24 {
    padding-left: 0px; }
  .news__responsive {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    width: 50%; }
  .hide-on-mobile {
    display: none; }
  .hide-on-desktop {
    display: block; }
  .contentArticle {
    padding-top: 100px; }
  .contentArticle__article-responsive {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .contentArticle__article-responsive-right {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .padding-left-24-cambios {
    padding-left: 24px; }
  .fondoArticulo__container__index {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px; }
  .fontArticulos__container__center-text {
    padding: 0 24px;
    font-size: 15px;
    line-height: 20px; }
  .fondoArticulos__container__center {
    position: inherit; }
  .imagen-sin-espacio {
    padding: 0 !important; }
  .contentProced__widget {
    margin-left: 0; }
  .news__border-bottom-min {
    margin-left: 24px;
    margin-right: 24px; }
  .contentProced__article__header-title {
    font-size: 40px; }
  .contacto__form-title {
    padding-top: 200px; }
  .-right-search {
    float: left; }
  .articleFiltros {
    padding: 0 !important; }
  .articleFiltros__img {
    display: none; }
  .articleFiltros__content {
    padding: 0; }
  .footer-section-responsive {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    width: 50%;
    text-align: -webkit-center; }
  .aviso-responsive {
    -webkit-flex-basis: 90%;
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
    width: 90%;
    margin-top: 40px;
    margin-left: 5%;
    padding-left: 0px; }
  .noticiasCuadros {
    -webkit-flex-basis: 90%;
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
    width: 90%;
    margin-top: 0;
    margin-left: 5%; }
  .noticiasSmall {
    -webkit-flex-basis: 90%;
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
    width: 90%;
    margin-top: 0;
    margin-left: 5%; }
  .noticiasCuadros__big {
    position: absolute;
    width: 100%;
    margin-left: 0%;
    height: 100%;
    padding-left: 10%;
    padding-right: 5%;
    background-color: rgba(0, 0, 0, 0.7); }
  .cardEvents-acomodo {
    margin-left: 24px;
    margin-right: 24px; }
  .news__responsive-padd {
    padding-left: 24px;
    padding-right: 24px;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .padding-top-50 {
    padding-top: 200px !important; } }

@media (max-width: 600px) {
  .noticiasCuadros__big__text-content {
    display: none; }
  .rssFull__center-title-big {
    line-height: 35px;
    font-size: 30px;
    color: #fff; }
  .rssFull__submit-right-nuevo {
    float: none;
    display: none; }
  .rssFull__submit-right-nuevo-mobile {
    display: inline-block;
    margin-top: 30px; }
  .rssFull_imgLiquid {
    min-height: 430px; }
  .afiliate-absolute {
    position: absolute;
    color: #fff;
    width: 90%;
    text-align: center;
    line-height: 25px; }
  .afiliate__img {
    min-height: 430px; }
  .findCirujano__absolute-title {
    font-size: 35px;
    line-height: 35px;
    margin: 0 0 20px 0;
    color: #fff; }
  .slider__img {
    height: 700px; }
  .cardEvents-responsive {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 1000%; }
  .news__anchor--acomodo {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .goNews__text-right {
    padding-right: 6em; }
  .goNews__text-left {
    padding-right: 6em;
    vertical-align: middle; }
  .card-containers {
    margin: 10px 0; }
  .sectionNews__acomodo-img {
    display: none; }
  .sectionNews__acomodo-text {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .sectionNews {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .news__responsive {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .padding-left-24-inverso {
    padding: 24px; }
  .contentProced__article__header-title {
    font-size: 35px; }
  .footer-section-responsive {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%; }
  .site-footer__holder {
    text-align: center; } }

/*
	FOOTER
*/
.site-footer {
  position: relative;
  width: 100%;
  background: linear-gradient(
        135deg,
        var(--titles-blue) 0%,
        var(--titles-blue) 10%,
        #84d4db 40%,
        #84d4db 100%
      );
  z-index: 30; }

.site-footer__dark-footer {
  position: relative;
  width: 100%;
  background-color: #222222; }

.site-footer__dark-footer__text {
  font-size: 12px;
  letter-spacing: 0.03em;
  margin: 0;
  color: #fff; }
  .site-footer__dark-footer__text span {
    font-size: 14px;
    margin: 0 3px; }

.site-footer__holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.site-footer__copyright {
  font-size: 12px;
  color: #aaaaaa;
  margin-bottom: 5px; }

.site-footer__legal {
  margin: 0; }
  .site-footer__legal ol, .site-footer__legal ul {
    margin: 0; }
  .site-footer__legal li {
    margin: 0;
    position: relative;
    display: inline-block;
    line-height: 1; }
    .site-footer__legal li a {
      color: #4a4c57;
      color: #676767;
      font-size: 12px;
      letter-spacing: 0.01em;
      text-decoration: none; }
      .site-footer__legal li a:hover {
        color: #fff; }
    .site-footer__legal li:after {
      content: "|";
      margin-left: 5px; }
    .site-footer__legal li:last-of-type:after {
      content: "";
      margin-left: 5px; }

.site-footer__navigation {
  justify-content: left;
  margin: 0; }
  .site-footer__navigation ol, .site-footer__navigation ul {
    margin: 0; }
  .site-footer__navigation li {
    margin: 0;
    position: relative;
    display: block;
    line-height: 1.5; }
    .site-footer__navigation li a {
      color: #4a4c57;
      color: #FFF;
      font-size: 13px;
      letter-spacing: 0.01em;
      text-decoration: none; }
      .site-footer__navigation li a:before {
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        content: "";
        display: inline-block;
        width: 0;
        height: 2px;
        margin-bottom: 3px;
        background-color: #fff;
        margin-right: 0; }
      .site-footer__navigation li a:hover {
        color: #fff; }
        .site-footer__navigation li a:hover:before {
          -webkit-transition: all .25s ease-in-out;
          -moz-transition: all .25s ease-in-out;
          -ms-transition: all .25s ease-in-out;
          -o-transition: all .25s ease-in-out;
          transition: all .25s ease-in-out;
          width: 20px;
          margin-right: 5px; }

@media(max-width: 768px){
  .site-footer__navigation {
    justify-content: center;
  }
}

.site-footer__social-separator {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  top: -8px; }

.site-footer__title {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.02em;
  margin-bottom: 20px; }

.site-footer-social-label{
  margin-left: 10px;
  margin-bottom: 5px;
  color: white;
}

.site-footer__social-link {
  position: relative;
  display: flex;
  text-decoration: none;
  margin-left: 20px; }
  .site-footer__social-link:hover .site-footer__social-icon {
    fill: #008bff;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out; }

.site-footer__social-icon {
  fill: #fff;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out; }

@media (min-width: 0) and (max-width: 768px) {
  .site-footer__dark-footer__text {
    font-size: 13px; }
    .site-footer__dark-footer__text span {
      font-size: 18px; }
  .site-footer__holder {
    padding-top: 0px !important;
    padding-bottom: 30px; } }

/* =DIRECTORIO PAGE
-----------------------------------------------------------------------------*/
.link-effect--white, .new-directorio__cover__row a {
  color: #fff;
  opacity: 1;
  -webkit-transition: color .5s ease-in-out;
  -o-transition: color .5s ease-in-out;
  transition: color .5s ease-in-out; }
  .link-effect--white:hover, .new-directorio__cover__row a:hover {
    color: #013368;
    -webkit-transition: color .5s ease-in-out;
    -o-transition: color .5s ease-in-out;
    transition: color .5s ease-in-out; }

.new-directorio {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 30;
  overflow: hidden; }

.new-directorio__cover {
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  background: #0088fa;
  overflow: hidden; }

.new-directorio__cover__container {
  position: relative;
  height: auto; }

.new-directorio__cover__row {
  position: relative;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 120px;
  margin-top: 200px; }
  @media (min-width: 0) and (max-width: 768px) {
    .new-directorio__cover__row {
      margin-top: 100px; } }
  .new-directorio__cover__row a {
    border-bottom: 2px solid #013368; }

.new-directorio__cover__heading {
  font-size: 42px;
  color: #fff; }
  @media (min-width: 0) and (max-width: 768px) {
    .new-directorio__cover__heading {
      font-size: 26px; } }
  @media (min-width: 1600px) {
    .new-directorio__cover__heading {
      font-size: 64px; } }

.new-directorio__cover__subtitle, .new-directorio__cover__select .current {
  font-size: 17px;
  color: #fff; }
  @media (min-width: 1600px) {
    .new-directorio__cover__subtitle, .new-directorio__cover__select .current {
      font-size: 20px; } }

/* =DIRECTORIO - SECTION
-----------------------------------------------------------------------------*/
.new-directorio__section {
  position: relative;
  background: #fff;
  padding-bottom: 120px;
  padding-top: 120px; }
  .new-directorio__section h1 {
    margin-bottom: 60px; }
  .new-directorio__section h2, .new-directorio__section h3, .new-directorio__section h4, .new-directorio__section h5, .new-directorio__section h6 {
    margin-bottom: 20px; }
  @media (min-width: 0) and (max-width: 768px) {
    .new-directorio__section {
      padding-top: 30px;
      padding-bottom: 50px; } }

.new-directorio__section__list {
  position: relative;
  list-style: none;
  margin: 0; }

.new-directorio__section__list__item {
  position: relative;
  margin-bottom: 10px; }
  .new-directorio__section__list__item a {
    font-size: 16px; }
    @media (min-width: 1600px) {
      .new-directorio__section__list__item a {
        font-size: 20px; } }

/* =DIRECTORIO - LIST
-----------------------------------------------------------------------------*/
.new-directorio__list-section {
  position: relative;
  background: #fff;
  /* h1 {
        @extend .gravity;
        margin-bottom: 60px;
    }
    h2, h3, h4, h5, h6 {
        @extend .gravity;
        margin-bottom: 20px;
    } */
  padding-bottom: 60px;
  margin-top: 180px; }
  @media (min-width: 1600px) {
    .new-directorio__list-section {
      margin-top: 200px; } }

/* =DIRECTORIO - PERFIL
-----------------------------------------------------------------------------*/
.perfil {
  position: relative;
  width: 100%;
  height: auto;
  background: #f8f8f8; }

.perfil-section {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 50px;
  margin-bottom: 60px; }
  @media (min-width: 1600px) {
    .perfil-section {
      margin-top: 300px;
      margin-bottom: 100px; } }
  @media (min-width: 0) and (max-width: 768px) {
    .perfil-section {
      margin-top: 60px;
      margin-bottom: 60px; } }

.perfil-section__container {
  background: #fff;
  -webkit-box-shadow: 0px 0px 11.84px 4.16px rgba(135, 135, 135, 0.04);
  box-shadow: 0px 0px 11.84px 4.16px rgba(135, 135, 135, 0.04); }
  @media (min-width: 0) and (max-width: 768px) {
    .perfil-section__container {
      margin-bottom: 60px; } }

.perfil-section__container__column {
  padding: 50px 40px 20px 40px; }

.perfil__mini-title {
  font-size: 12px;
  color: #a7a7a8;
  margin-bottom: 20px; }

.perfil__avatar {
  position: relative;
  background: #f8f8f8;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden; }
  @media (min-width: 1600px) {
    .perfil__avatar {
      width: 150px;
      height: 150px; } }

.perfil__title {
  font-size: 28px;
  color: #666768; }
  @media (min-width: 1600px) {
    .perfil__title {
      font-size: 36px; } }

.perfil__bio {
  color: #878787; }

.perfil__datos-extra {
  position: relative;
  margin-bottom: 5px;
  font-size: 17px;
  color: #008bff;
  word-break: break-all;
  /* Non standard for WebKit */
  word-break: break-word; }
  .perfil__datos-extra span {
    margin-left: 10px;
    color: #565759; }

.perfil__datos-extra--icon-span {
  position: relative;
  display: block;
  padding-left: 20px;
  color: #565759;
  font-size: 15px; }

span.perfil__datos-extra--icon-span-to-confirm, .perfil__datos-extra--icon-span-to-confirm {
  color: #C7C9CE; }

.perfil-section__container__column--right-border {
  border-right: 1px solid #ebebeb; }
  @media (min-width: 0) and (max-width: 768px) {
    .perfil-section__container__column--right-border {
      border-right: none; } }

.perfil__datos-extra__icon {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  width: 20px;
  fill: #008bff; }

.perfil__datos-extra--right-side-data {
  margin-bottom: 30px; }

/* =DIRECTORIO - LEGACY CODE (FROM FIRST API "JUANAPI")
-----------------------------------------------------------------------------*/
/* =PANEL DE CONTROL - PERFIL 
-----------------------------------------------------------------------------*/
.perfil-section--panel {
  margin-top: 190px; }
  @media (min-width: 1600px) {
    .perfil-section--panel {
      margin-top: 230px; } }
  @media (min-width: 0) and (max-width: 768px) {
    .perfil-section--panel {
      margin-top: 60px; } }

.panel-perfil__small-text {
  font-size: 13px;
  color: #828282; }

.panel-perfil__border-top {
  border-top: 1px solid #ebebeb; }

.panel-perfil__input, input.panel-perfil__input {
  display: inline-block;
  width: 100%;
  height: 54px;
  color: #666768;
  font-size: 14px;
  padding-left: 20px;
  border-color: #e1e1e1; }
  .panel-perfil__input::-webkit-input-placeholder, input.panel-perfil__input::-webkit-input-placeholder {
    color: #878787;
    opacity: .5; }
  .panel-perfil__input::-moz-placeholder, input.panel-perfil__input::-moz-placeholder {
    color: #878787;
    opacity: .5; }
  .panel-perfil__input:-ms-input-placeholder, input.panel-perfil__input:-ms-input-placeholder {
    color: #878787;
    opacity: .5; }
  .panel-perfil__input:-moz-placeholder, input.panel-perfil__input:-moz-placeholder {
    color: #878787;
    opacity: .5; }
  .panel-perfil__input:focus, input.panel-perfil__input:focus {
    border-color: #008bff; }
  .panel-perfil__input:disabled, input.panel-perfil__input:disabled {
    background: #e1e1e1; }

.panel-perfil__select, select.panel-perfil__select {
  font-weight: normal;
  display: inline-block;
  width: 100%;
  height: 54px;
  color: #666768;
  font-size: 14px;
  padding-left: 20px;
  border-color: #e1e1e1;
  background-image: url(../images/arrow-small.jpg);
  background-repeat: no-repeat;
  background-position: right; }
  .panel-perfil__select:focus, select.panel-perfil__select:focus {
    border-color: #008bff; }
  .panel-perfil__select:disabled, select.panel-perfil__select:disabled {
    background: #e1e1e1; }

.panel-perfil__textarea, textarea.panel-perfil__textarea {
  display: inline-block;
  width: 100%;
  min-height: 108px;
  color: #666768;
  font-size: 14px;
  padding-left: 20px;
  border-color: #e1e1e1; }
  .panel-perfil__textarea::-webkit-input-placeholder, textarea.panel-perfil__textarea::-webkit-input-placeholder {
    color: #878787;
    opacity: .5; }
  .panel-perfil__textarea::-moz-placeholder, textarea.panel-perfil__textarea::-moz-placeholder {
    color: #878787;
    opacity: .5; }
  .panel-perfil__textarea:-ms-input-placeholder, textarea.panel-perfil__textarea:-ms-input-placeholder {
    color: #878787;
    opacity: .5; }
  .panel-perfil__textarea:-moz-placeholder, textarea.panel-perfil__textarea:-moz-placeholder {
    color: #878787;
    opacity: .5; }
  .panel-perfil__textarea:focus, textarea.panel-perfil__textarea:focus {
    border-color: #008bff; }
  .panel-perfil__textarea:disabled, textarea.panel-perfil__textarea:disabled {
    background: #e1e1e1; }

.panel-perfil__row .col {
  margin-bottom: 20px; }

.panel-perfil__inner-padding {
  padding-right: 24px; }
  @media (min-width: 0) and (max-width: 768px) {
    .panel-perfil__inner-padding {
      padding-right: 0; } }

.panel-perfil__button {
  background-color: #008bff;
  color: #fff;
  border-radius: 26.5px;
  font-size: 14px;
  width: 197px;
  height: 53px;
  line-height: 53px; }

.panel-perfil__small-text--success {
  color: #008bff; }

.panel-perfil__small-text--error {
  color: #CE1313; }

.perfil__avatar {
  position: relative;
  background: #f8f8f8;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden; }
  .perfil__avatar input {
    display: none; }
  @media (min-width: 1600px) {
    .perfil__avatar {
      width: 150px;
      height: 150px; } }

.perfil__avatar__image-upload {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block; }

.profile__icon-more {
  pointer-events: none;
  fill: #008bff;
  stroke: #fff;
  height: 24px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 4px;
  width: 24px;
  stroke-width: 4px; }
  .profile__icon-more svg, .profile__icon-more span {
    height: inherit;
    width: auto;
    display: block; }
  .profile__icon-more .icon-more__circle {
    fill: inherit;
    stroke: none; }
  .profile__icon-more .icon-more__cross {
    stroke: inherit;
    stroke-width: inherit; }

/* =Alep
----------------------------------------------------------------------------*/
/* =COMMON PROPERTIES / ASSETS 
** AND ALL YOUR PERSONAL TRICKS THAT ARE PROJECT SPECIFIC
**
** If any of these tricks is a candidate for the Toolbox, please discuss it with the Team.
**
-----------------------------------------------------------------------------*/
/* =RESPONSIVE UTILITIES
-----------------------------------------------------------------------------*/
.filter__section {
  margin-bottom: 30px; }

.filter {
  position: relative;
  height: 77px;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px; }
  .filter .-plus {
    display: inline-block;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    line-height: 1; }

p.filter__link {
  margin-bottom: 0; }

.filter__parent {
  position: relative;
  border: 1px solid #ebebeb;
  border-top: 0; }
  .filter__parent + .filter__parent {
    border-left: 0; }

.filter__toggle {
  cursor: pointer; }

.filter__container {
  height: 87px;
  max-height: 0;
  position: relative; }

.filter__child-container {
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 20;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
  overflow: hidden; }

.filter__bg {
  background: #905bff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.filter__child-list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: static; }

.filter__child {
  display: inline-block;
  width: auto;
  visibility: hidden;
  margin-left: 40px;
  margin-bottom: 5px;
  margin-top: 5px; }

.filter__child__link, a.filter__child__link {
  color: #fff;
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }
  .filter__child__link:hover, a.filter__child__link:hover {
    color: #3e1d83; }

.filter__child__select {
  background: none; }
  .filter__child__select .current {
    top: 0;
    color: #fff; }
  .filter__child__select .list {
    background: #f3f3f3; }
  .filter__child__select .option {
    text-align: center;
    color: #3e1d83;
    border-bottom: 1px solid  #3e1d83; }
    .filter__child__select .option:hover {
      background: #905bff; }
  .filter__child__select:after {
    border-color: #fff !important; }

.new-directorio__cover__select {
  float: none;
  background-color: transparent;
  padding-left: 1em;
  padding-right: 1em;
  border-bottom-color: #013368;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  line-height: 1.3;
  min-width: 160px;
  text-align: center !important; }
  .new-directorio__cover__select.nice-select {
    display: inline-block; }
  .new-directorio__cover__select.disabled {
    opacity: .5; }
  .new-directorio__cover__select .current {
    top: -3px;
    line-height: 1;
    text-align: center;
    display: inline-block; }
    .new-directorio__cover__select .current:hover {
      color: #013368; }
  .new-directorio__cover__select .list {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: -35px;
    z-index: 99;
    color: #3e3e3e;
    background-color: #fff; }
    .new-directorio__cover__select .list:hover .option.selected:not(:hover) {
      background-color: #1580d9 !important; }
  .new-directorio__cover__select .option {
    border-bottom-color: #ebebeb; }
  .new-directorio__cover__select:after {
    border-color: #fff;
    display: none; }
  .new-directorio__cover__select:hover, .new-directorio__cover__select:focus {
    border-bottom-color: #013368; }

.new-directorio__list-section {
  margin-top: 0; }

.new-directorio__cover__row--list {
  padding-top: 26px;
  padding-bottom: 26px; }

.new-directorio__cover--list {
  overflow: visible; }

.new-directorio__cover--list {
  z-index: 11; }

.new-directorio__cover__subtitle--filters {
  line-height: 2.6; }
  @media (min-width: 0) and (max-width: 768px) {
    .new-directorio__cover__subtitle--filters {
      padding-left: 5px;
      padding-right: 5px; } }

.new-directorio__cover__subtitle--geopos {
  visibility: hidden;
  opacity: 0; }

.new-directorio__cover__subtitle--select-state {
  line-height: 2; }

.row.centered .padding-h {
  padding: 0 24px; }

.icon--verified {
  position: relative; }
  .icon--verified path {
    fill: #008bff; }

.icon--verified:hover > .verified-dialog {
  visibility: visible;
  opacity: 1; }

.verified-dialog {
  background-color: #3e3e3e;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-100%) translateX(202px);
  -ms-transform: translateY(-100%) translateX(202px);
  transform: translateY(-100%) translateX(202px);
  min-width: 265px;
  padding: 15px;
  border-radius: 5px; }
  .verified-dialog:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #3e3e3e; }

.verified-dialog__title {
  font-size: 14px;
  display: block;
  z-index: 99;
  line-height: 1;
  margin-bottom: 13px; }

.verified-dialog__text {
  color: #878787;
  font-size: 12px;
  display: block;
  line-height: 1.5; }

p.listado-datos, .listado-datos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 21px;
  min-height: 21px;
  color: #3e3e3e; }
  p.listado-datos path, .listado-datos path {
    fill: #008bff; }
  p.listado-datos span, .listado-datos span {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 13px;
    position: relative;
    width: 18px; }
    p.listado-datos span svg, .listado-datos span svg {
      display: block;
      position: absolute;
      top: 0;
      left: 0; }

.listado-acomodo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .listado-acomodo .getvalue p {
    color: #008bff; }
  @media (min-width: 0) and (max-width: 768px) {
    .listado-acomodo {
      position: relative;
      top: auto;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; } }

p.listado-direccion, .listado-direccion {
  color: #3e3e3e; }
  p.listado-direccion span, .listado-direccion span {
    display: inline-block;
    vertical-align: top; }
    p.listado-direccion span svg, .listado-direccion span svg {
      display: block; }
      p.listado-direccion span svg path, .listado-direccion span svg path {
        fill: #008bff; }

.detected-state__go, a.detected-state__go {
  border-bottom-color: #013368; }
  .detected-state__go:hover, a.detected-state__go:hover {
    color: #013368;
    border-bottom-color: #013368; }

.pdf-download {
  display: inline-block;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 25px;
  padding-right: 25px;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid  #E1E1E1;
  background-color: #fff; }
  @media (min-width: 0) and (max-width: 768px) {
    .pdf-download {
      padding-left: 0;
      padding-right: 0; } }

.pdf-download__icon {
  display: inline-block;
  height: 55px;
  width: 55px;
  margin-right: 18px;
  float: left; }
  @media (min-width: 0) and (max-width: 768px) {
    .pdf-download__icon {
      display: block;
      float: none; } }
  .pdf-download__icon svg {
    display: block;
    height: inherit;
    width: inherit; }
    @media (min-width: 0) and (max-width: 768px) {
      .pdf-download__icon svg {
        height: 48px !important;
        width: 48px !important; } }

.pdf-download__text {
  color: #008BFF;
  display: block;
  line-height: 1;
  vertical-align: top;
  font-size: 19px; }
  .pdf-download__text:first-letter {
    text-transform: capitalize; }

.pdf-download__size {
  display: block;
  vertical-align: bottom;
  font-size: 10px;
  margin-top: 12px; }
  @media (min-width: 0) and (max-width: 768px) {
    .pdf-download__size {
      margin-top: 5px; } }

.video-full {
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px; }
  .video-full video {
    width: 100%;
    height: auto; }

#login.uk-form {
  width: 35vw;
  min-height: 515px;
  text-align: center;
  margin: 0 auto;
  background-color: #eeeeee;
  -webkit-box-shadow: 0px 3px 14.04px 3.96px rgba(183, 180, 180, 0.15);
  box-shadow: 5px 5px 20px lightgrey, -5px -5px 20px lightgrey;
  position: relative;
  padding-top: 5vh;
  padding-bottom: 30px;
  padding-right: 54px;
  padding-left: 51px;
  position: relative;
  left: 0;
  right: 0;
  top: 0; }
  @media (min-width: 0) and (max-width: 768px) {
    #login.uk-form {
      padding-top: 50px; } }
  #login.uk-form .round-icon {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    background-color: #f8f8f8;
    -webkit-box-shadow: 0px 0px 6.8px 3.2px rgba(183, 180, 180, 0.36);
    box-shadow: 0px 0px 6.8px 3.2px rgba(183, 180, 180, 0.36);
    line-height: 75px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0; }
    #login.uk-form .round-icon .icon {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%); }
  #login.uk-form .icon--person {
    height: 29px;
    display: inline-block;
    vertical-align: text-bottom; }
  #login.uk-form .icon--person__svg {
    fill: #008bff;
    display: block;
    height: inherit;
    width: inherit; }
  #login.uk-form .login__title {
    color: #37b2bc;
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 0; }
  #login.uk-form input {
    display: inline-block;
    width: 100%;
    height: 54px;
    color: #666768;
    font-size: 14px;
    padding-left: 20px;
    border-color: #e1e1e1;
    border-radius: 10px; }
    #login.uk-form input::-webkit-input-placeholder {
      color: #878787;
      opacity: .5; }
    #login.uk-form input:-moz-placeholder {
      color: #878787;
      opacity: .5; }
    #login.uk-form input::-moz-placeholder {
      color: #878787;
      opacity: .5; }
    #login.uk-form input:-ms-input-placeholder {
      color: #878787;
      opacity: .5; }
  #login.uk-form #email {
    margin-bottom: 26px; }
  #login.uk-form .uk-button {
    background-color: #008bff;
    color: #fff;
    border-radius: 15px;
    font-size: 5vh;
    height: 53px;
    line-height: 53px; }

.members_cover {
  position: relative;
}

.members_cover_subtitle {
  position: absolute;
  color: white;
  font-size: xxx-large;
  font-weight: bolder;
  width: 100%;
  text-align: center;
  top: 60%;
}

.forgot__password {
  display: block; }

.login__forgot-password {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #878787;
  line-height: 1;
  display: block;
  text-align: right;
  margin-top: 7px; }

.login__users-info {
  margin-bottom: 69px; }
  @media (min-width: 0) and (max-width: 768px) {
    .login__users-info {
      margin-bottom: 40px; } }

.col-nopadd {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.content__page--nologin {
  padding-bottom: 0; }

.members--nologin__image {
  height: 492px;
  background-color: #005f97;
  background-image: url("../images/nologin_bg.jpg");
  background-size: cover; }

.members--nologin__info {
  position: relative;
  padding-top: 10vh !important;
  padding-bottom: 10vh !important;
  text-align: center;
  padding-bottom: 10vh; }

.members--nologin__info p {
  color: var(--titles-lightblue);
  font-size: x-large;
}

div .login__more-text {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #828282; }
  div .login__more-text a {
    color: #262626; }

@media (min-width: 0) and (max-width: 768px) {
  .uk-panel-divider {
    padding-top: 5vh;
  }

  .members_cover_subtitle {
    top: 45%;
    font-size: xx-large;
  }

  #login.uk-form {
    width: 90%;
    padding-left: 25px;
    padding-right: 25px;
    position: relative; }
    #login.uk-form input {
      width: 100%; }
    #login.uk-form .login__title {
      font-size: 30px; }
  .members--nologin__image {
    height: 200px;
    margin-top: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center; }
  div .login__more-text {
    font-size: 13px; }
  .members--nologin__info {
    padding-top: 0 !important;
    padding-bottom: 30px !important;
    height: auto; }
  p.login__fail {
    font-size: 13px;
    margin-top: 30px;
    margin-bottom: 20px; } }

.uk-alert-warning p {
  color: #CE1313; }

.forRobots {
  visibility: hidden;
  z-index: -1;
  position: absolute; }

/*
** RESET PASSWORD SECTION
********************************************************************/
.reset__title {
  color: #008bff;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0; }

.icon--reset__svg {
  position: relative;
  fill: #008bff;
  display: inline-block;
  vertical-align: text-bottom; }

@media (min-width: 0) and (max-width: 768px) {
  .miembros-section .item-60 {
    height: 0; }
  .miembros-section .item-30 {
    height: 0; } }

.search-bar {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(248, 248, 248, 0.9);
  text-align: center;
  z-index: 99;
  height: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.search-bar__vertical-align-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  width: 100%; }

.search__form {
  width: 80%;
  display: inline-block; }

.search__nav, input.search__nav {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #dadada;
  background-color: transparent;
  font-size: 28px;
  color: #6f6f6f; }

.icon {
  display: inline-block;
  vertical-align: text-bottom;
  vertical-align: middle; }
  .icon svg {
    display: block;
    height: inherit;
    width: inherit; }

.search-bar__close {
  margin-left: 20px;
  cursor: pointer; }
  .search-bar__close svg * {
    fill: #007ee6; }

/* = Jorge
----------------------------------------------------------------------------*/
/*=Calculate
----------------------------------------------------------------------*/
.end-top-bottom {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.end--left {
  padding-left: 0 !important; }

.end .col {
  padding: 0 !important; }

.end--right {
  padding-right: 0 !important; }

.eventos-home__tag {
  position: absolute; }
  .eventos-home__tag p {
    color: white;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    background-color: #4f3075; }

.events-home__article {
  width: 100%;
  height: 250px;
  max-height: 250px;
  position: relative; }
  @media (min-width: 1600px) {
    .events-home__article {
      height: 250px;
      max-height: 250px; } }

.events-home__article__subtext {
  color: white;
  font-size: 13px;
}

.events-home__article__text {
  width: 100%;
  height: 100%;
  padding: 5%;
  align-content: end;
  text-align: center;
  overflow: hidden;
  position: absolute; }

  .events-home__article__text h4 {
    color: white;
    font-size: 17px;
    text-align: center;
    margin: 0; }
    @media (min-width: 0) and (max-width: 768px) {
      .events-home__article__text h4 {
        font-size: 20px; } }
    .events-home__article__text h4 a {
      color: white;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .events-home__article__text h4 a:hover {
        color: #008BFF;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
  .events-home__article__text p {
    color: white;
    font-size: 12px;
    margin-bottom: 10px; }
    .events-home__article__text p svg {
      width: 15px;
      height: 15px;
      fill: white;
      top: 2px;
      position: relative;
      margin-right: 5px; }

.events-home__article__button {
  text-align: right; }
  .events-home__article__button a {
    color: white;
    font-size: 13px;
    text-align: center;
    background: #008BFF;
    border-radius: 30px;
    margin-top: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .events-home__article__button a:hover {
      background: #006098;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    @media (min-width: 0) and (max-width: 768px) {
      .events-home__article__button a {
        font-size: 12px; } }

.events-home__article__image {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.events-home__article__filter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 30px; }

.events-home__article__views {
  width: 100%;
  position: relative;
  padding-left: 30px;
  padding-right: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e9e9e9; }
  .events-home__article__views a {
    font-size: 10px;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0; }
    .events-home__article__views a svg {
      width: 40.7px;
      height: 8.9px;
      fill: none;
      stroke: #000000;
      stroke-miterlimit: 10;
      float: right;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .events-home__article__views a svg:hover {
        stroke: #008BFF;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }

.miembros {
  padding-bottom: 100px;
  position: relative; }

.miembros-container {
  width: 75%;
  margin: 0 auto; }
  @media (min-width: 0) and (max-width: 768px) {
    .miembros-container {
      width: 88%; } }

.miembros__container {
  width: 90%;
  margin: 0 auto; }

.row--user {
  padding-bottom: 0 !important; }

/*= P R O F I L E
--------------------------------------------------------------------------------*/
.section__dashboard__user {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
  max-height: 375px; }
  @media (min-width: 0) and (max-width: 768px) {
    .section__dashboard__user {
      max-height: none; } }
  @media (min-width: 1600px) {
    .section__dashboard__user {
      max-height: 400px; } }

.section__dashboard__user__perfil {
  position: relative;
  padding-left: 30px; }

.section__gray {
  background-color: #fbfbfb; }

.perfil__avanter__container {
  position: relative;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px; }
  @media (min-width: 0) and (max-width: 768px) {
    .perfil__avanter__container {
      margin-bottom: 35px; } }
  .perfil__avanter__container .perfil__avatar {
    margin: 0 auto; }

.perfil__information {
  width: 100%;
  position: relative;
  text-align: center;
  padding-bottom: 30px; }
  .perfil__information .perfil__mini-title {
    margin: 0; }
  .perfil__information .perfil__datos-extra {
    margin-bottom: 30px; }
  .perfil__information a {
    color: white;
    font-size: 13px;
    border-radius: 30px;
    background-color: #008BFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .perfil__information a:hover {
      color: white;
      background-color: #006098;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.section__dashboard__user__item {
  width: 100%;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px; }
  .section__dashboard__user__item .row {
    padding: 0; }
  .section__dashboard__user__item .perfil__mini-title {
    margin: 0; }
  .section__dashboard__user__item .perfil__bio {
    margin: 0; }
  .section__dashboard__user__item .perfil__title {
    font-size: 26px;
    margin: 0;
    margin-bottom: 5px;
    line-height: 1; }
    .section__dashboard__user__item .perfil__title a {
      color: #3e3e3e;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .section__dashboard__user__item .perfil__title a:hover {
        color: #008BFF;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
    @media (min-width: 1600px) {
      .section__dashboard__user__item .perfil__title {
        font-size: 30px; } }

.section__dashboard__user__item--button {
  text-align: center;
  padding-top: 70px; }
  .section__dashboard__user__item--button a {
    color: white;
    font-size: 13px;
    border-radius: 30px;
    background-color: #008BFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .section__dashboard__user__item--button a:hover {
      color: white;
      background-color: #006098;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.row--orders {
  padding-top: 0 !important; }

.perfil-section__orders {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  margin-top: 24px; }

.perfil-section__orders__table table thead tr th {
  border: 0; }

.perfil-section__orders__table table tbody tr td p {
  color: #484848;
  font-size: 14px;
  margin-bottom: 5px; }
  .perfil-section__orders__table table tbody tr td p span {
    color: #6b6b6b; }
  .perfil-section__orders__table table tbody tr td p a {
    color: #6b6b6b;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .perfil-section__orders__table table tbody tr td p a svg {
      width: 15px;
      height: 15px;
      fill: #6b6b6b;
      position: relative;
      top: 3px;
      margin-right: 5px;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .perfil-section__orders__table table tbody tr td p a:hover {
      color: #008bff;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .perfil-section__orders__table table tbody tr td p a:hover svg {
        fill: #008bff;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }

.perfil-section__cuenta {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  margin-bottom: 22px; }

.perfil-section__cuenta__icon {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 45px; }
  .perfil-section__cuenta__icon svg {
    width: 45px;
    height: 45px;
    fill: #008bff;
    margin-bottom: 25px; }

.perfil-section__cuenta__text {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 30px; }
  .perfil-section__cuenta__text h4 {
    font-size: 26px;
    color: #008bff;
    line-height: 1; }
    @media (min-width: 1600px) {
      .perfil-section__cuenta__text h4 {
        font-size: 30px; } }
  .perfil-section__cuenta__text p {
    color: #6b6b6b;
    font-size: 14px; }

.perfil-section__cuenta__button {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 8px; }
  .perfil-section__cuenta__button a {
    text-align: center; }

/*GENERAL*/
.miembros__title {
  padding-top: 50px;
  padding-bottom: 50px; }
  .miembros__title h1 {
    margin: 0; }

/*FEATURED*/
.section__featured {
  width: 100%;
  position: relative; }

.section__featured__items {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background-color: white; }
  @media (min-width: 0) and (max-width: 768px) {
    .section__featured__items {
      margin-bottom: 25px; } }
  @media (min-width: 1600px) {
    .section__featured__items {
      height: 380px; } }

.section__featured__items__filter {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0.8;
  background-color: #008bff; }

.section__featured__items__image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute; }

.section__featured__items__text {
  width: 80%;
  top: 50%;
  left: 50%;
  position: absolute;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: left; }
  .section__featured__items__text h4 {
    color: white;
    font-size: 26px;
    text-align: left; }
    .section__featured__items__text h4 a {
      color: white;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .section__featured__items__text h4 a:hover {
        color: #e9e9e9;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
    @media (min-width: 1600px) {
      .section__featured__items__text h4 {
        font-size: 30px; } }

.section__featured__items__tags {
  top: 50px;
  left: 45px;
  position: absolute;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media (min-width: 0) and (max-width: 768px) {
    .section__featured__items__tags {
      left: 25px; } }
  .section__featured__items__tags p {
    color: white;
    font-size: 14px;
    text-transform: capitalize; }

.section__featured__items__link {
  bottom: 20px;
  right: 0px;
  position: absolute;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .section__featured__items__link a {
    color: white;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .section__featured__items__link a:hover {
      color: #e9e9e9;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

/*ITEMS*/
.section__items__content {
  width: 100%;
  position: relative;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 30px;
  height: 280px;
  max-height: 280px;
  overflow: hidden;
  margin-bottom: 20px; }
  @media (min-width: 0) and (max-width: 768px) {
    .section__items__content {
      height: 380px;
      max-height: 380px;
      padding-top: 30px;
      padding-left: 30px;
      padding-right: 30px; } }

.section__items__text h3 {
  margin-bottom: 10px; }

.section__items__text p {
  color: #878787;
  font-size: 16px; }

.section__items__button {
  position: absolute;
  right: 50px;
  bottom: 50px;
  text-align: right; }
  .section__items__button a {
    color: white;
    font-size: 13px;
    line-height: 0.5;
    border-radius: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #008BFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .section__items__button a:hover {
      color: white;
      background-color: #006098;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.kirby-text-miembros {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 35px; }
  @media (min-width: 0) and (max-width: 768px) {
    .kirby-text-miembros {
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 50px;
      padding-bottom: 50px; } }
  .kirby-text-miembros h2 {
    font-size: 30px;
    color: #3e3e3e;
    word-break: break-all; }
    @media (min-width: 0) and (max-width: 768px) {
      .kirby-text-miembros h2 {
        font-size: 22px; } }
    @media (min-width: 1600px) {
      .kirby-text-miembros h2 {
        font-size: 35px; } }
  @media (min-width: 0) and (max-width: 768px) {
    .kirby-text-miembros p {
      font-size: 14px; } }
  .kirby-text-miembros p em {
    color: #c1c0c0;
    font-size: 12px; }
  .kirby-text-miembros p strong {
    color: #393939;
    font-size: 16px;
    font-weight: normal; }
    @media (min-width: 1600px) {
      .kirby-text-miembros p strong {
        font-size: 18px; } }

@media (min-width: 0) and (max-width: 768px) {
  .miembros-sesiones__pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px; } }

.miembros-sesiones__pagination a {
  font-size: 12px;
  color: #3d3d3d;
  line-height: 1.8;
  opacity: 1;
  text-decoration: none;
  border-radius: 0;
  background-color: #e4e4e4;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (min-width: 0) and (max-width: 768px) {
    .miembros-sesiones__pagination a {
      font-size: 10px; } }
  .miembros-sesiones__pagination a:hover {
    color: #c1c0c0;
    opacity: 1;
    background-color: #f5f5f5;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .miembros-sesiones__pagination a:hover svg {
      fill: #c1c0c0;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
  .miembros-sesiones__pagination a svg {
    width: 16px;
    height: 16px;
    fill: #3d3d3d;
    position: relative;
    top: 4px; }
    @media (min-width: 0) and (max-width: 768px) {
      .miembros-sesiones__pagination a svg {
        width: 13px;
        height: 13px;
        top: 3px; } }

@media (min-width: 0) and (max-width: 768px) {
  .padding-col .col {
    padding: 0 !important; } }

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px; }
  .breadcrumbs ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .breadcrumbs li {
    position: relative; }
  .breadcrumbs span,
  .breadcrumbs a {
    color: #c1c0c0;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
    white-space: nowrap;
    background-color: #f5f5f5;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    @media (min-width: 0) and (max-width: 768px) {
      .breadcrumbs span,
      .breadcrumbs a {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px; } }
    .breadcrumbs span:hover,
    .breadcrumbs a:hover {
      color: #3d3d3d;
      background-color: #e4e4e4;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
  .breadcrumbs li.active a {
    color: #3d3d3d;
    text-decoration: none;
    cursor: text;
    background-color: #e4e4e4; }

.miembros-sesiones {
  padding-bottom: 100px;
  position: relative; }

.miembros-sesiones__title {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 20px; }
  .miembros-sesiones__title h1 {
    color: #3e3e3e;
    font-size: 35px;
    margin: 0; }
    @media (min-width: 0) and (max-width: 768px) {
      .miembros-sesiones__title h1 {
        font-size: 26px; } }

.miembros-sesiones__items {
  width: 100%;
  position: relative;
  margin-top: 50px;
  padding-left: 30px;
  padding-right: 30px; }
  @media (min-width: 0) and (max-width: 768px) {
    .miembros-sesiones__items {
      margin-top: 35px; } }

.miembros-sesiones__item {
  width: 100%;
  position: relative;
  padding-top: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e1e1; }

.miembros-sesiones__item__text h3 {
  color: #3e3e3e;
  font-size: 30px; }
  @media (min-width: 0) and (max-width: 768px) {
    .miembros-sesiones__item__text h3 {
      font-size: 26px; } }

.miembros-sesiones__item__button {
  text-align: right; }
  .miembros-sesiones__item__button a {
    font-size: 13px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    line-height: 1;
    width: auto;
    height: auto; }
    @media (min-width: 0) and (max-width: 768px) {
      .miembros-sesiones__item__button a {
        font-size: 12px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px; } }

.miembros-sesiones__video {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 35px; }
  @media (min-width: 0) and (max-width: 768px) {
    .miembros-sesiones__video {
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 50px;
      padding-bottom: 50px; } }
  .miembros-sesiones__video h1 {
    color: #3e3e3e;
    font-size: 30px;
    margin-bottom: 10px; }
    .miembros-sesiones__video h1 a {
      color: #3e3e3e;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .miembros-sesiones__video h1 a:hover {
        color: #008BFF;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
    @media (min-width: 0) and (max-width: 768px) {
      .miembros-sesiones__video h1 {
        font-size: 26px; } }
    @media (min-width: 1600px) {
      .miembros-sesiones__video h1 {
        font-size: 35px; } }
  .miembros-sesiones__video p {
    color: #393939;
    font-size: 16px; }
  .miembros-sesiones__video hr {
    margin-top: 10px;
    margin-bottom: 30px; }
  .miembros-sesiones__video time {
    color: #c1c0c0;
    font-size: 12px; }
    .miembros-sesiones__video time svg {
      width: 15px;
      height: 15px;
      fill: #c1c0c0;
      position: relative;
      top: 2px; }

.miembros__container__video {
  width: 90%; }
  @media (min-width: 1600px) {
    .miembros__container__video {
      width: 100%; } }

.miembros-sesiones__video__content {
  width: 100%;
  height: 400px;
  max-height: 400px;
  overflow: hidden;
  margin-top: 45px; }
  @media (min-width: 0) and (max-width: 768px) {
    .miembros-sesiones__video__content {
      height: 200px;
      max-height: 200px; } }
  @media (min-width: 1600px) {
    .miembros-sesiones__video__content {
      height: 650px;
      max-height: 650px; } }
  .miembros-sesiones__video__content img {
    width: 100%;
    height: auto; }
  .miembros-sesiones__video__content iframe {
    width: 100%;
    height: 100%; }

.miembros-sesiones__video__content__link {
  opacity: 1;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .miembros-sesiones__video__content__link:hover {
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.cirujanos {
  width: 100%;
  position: relative;
  padding-bottom: 80px; }
  @media (min-width: 0) and (max-width: 768px) {
    .cirujanos {
      padding: 0; } }

.cirujanos__container {
  width: 60%;
  margin: 0 auto;
  position: relative;
  top: -80px; }
  @media (min-width: 0) and (max-width: 768px) {
    .cirujanos__container {
      width: 85%; } }
  @media (min-width: 1600px) {
    .cirujanos__container {
      top: -100px; } }

.cirujanos__container__items {
  width: 100%;
  position: relative;
  background: #f7f7f7; }

.cirujanos__container__item {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-left: 10px;
  margin-bottom: 25px;
  height: 280px;
  max-height: 280px; }

.cirujanos__container__item__image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  background-color: white;
  margin-bottom: 20px; }

.cirujanos__container__item__name {
  margin-bottom: 10px; }
  .cirujanos__container__item__name h4 {
    color: #3e3e3e;
    font-size: 22px;
    margin: 0; }

.cirujanos__container__item__phone {
  margin-bottom: 8px; }
  .cirujanos__container__item__phone p {
    color: #828282;
    font-size: 14px;
    margin: 0; }
    .cirujanos__container__item__phone p svg {
      width: 18px;
      height: 18px;
      fill: #008BFF; }

.cirujanos__container__item__ubication {
  margin-bottom: 8px; }
  .cirujanos__container__item__ubication p {
    color: #828282;
    font-size: 14px;
    margin: 0; }
    .cirujanos__container__item__ubication p svg {
      width: 18px;
      height: 18px;
      fill: #008BFF; }

.cirujanos__container__item__link {
  position: absolute;
  right: 0;
  bottom: 0; }
  .cirujanos__container__item__link a {
    color: #828282;
    font-size: 12px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .cirujanos__container__item__link a:hover {
      color: #008BFF;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.cirujanos__container__footer {
  width: 100%;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e9e9e9;
  text-align: center; }
  .cirujanos__container__footer p {
    color: #565656;
    font-size: 18px;
    margin: 0; }
    .cirujanos__container__footer p a {
      color: #008BFF;
      text-decoration: none;
      border-bottom: 2px solid #008BFF; }
      .cirujanos__container__footer p a:hover {
        color: #006098;
        border-bottom: 2px solid #006098;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
  .cirujanos__container__footer a.button {
    color: white;
    font-size: 13px;
    text-align: center;
    border-radius: 30px;
    margin-top: 10px;
    background-color: #008BFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .cirujanos__container__footer a.button:hover {
      color: white;
      background-color: #006098;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.events-carousel-wrapper::before,
.events-carousel-wrapper::after{
  content: "";
  position: absolute;
  top: 0;
  width: 3rem;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.events-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.events-carousel-wrapper::after{
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.events-carousel-wrapper{
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.events_carousel{
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-columns: 45%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none; 
}

.procedimiento__slider {
  width: 100%;
  position: relative; }
  .procedimiento__slider .carousel {
    width: 50%;
    position: relative;
    text-align: center;
    margin: 0 auto; }
    @media (min-width: 0) and (max-width: 768px) {
      .procedimiento__slider .carousel {
        width: 100%; } }
    .procedimiento__slider .carousel .carousel-cell {
      width: 100%;
      height: 380px;
      position: relative;
      text-align: center; }
      @media (min-width: 0) and (max-width: 768px) {
        .procedimiento__slider .carousel .carousel-cell {
          height: 200px; } }
      @media (min-width: 1600px) {
        .procedimiento__slider .carousel .carousel-cell {
          height: 380px; } }
  .procedimiento__slider .flickity-page-dots {
    display: none; }

.procedimiento__slider__navs {
  position: absolute;
  top: 50%;
  z-index: 10; }
  .procedimiento__slider__navs button {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid #878787; }
    @media (min-width: 0) and (max-width: 768px) {
      .procedimiento__slider__navs button {
        width: 30px;
        height: 30px;
        padding: 0;
        background-color: #878787; } }
    .procedimiento__slider__navs button svg {
      position: absolute;
      fill: #878787;
      -moz-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      -o-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%); }
      @media (min-width: 0) and (max-width: 768px) {
        .procedimiento__slider__navs button svg {
          width: 25px;
          height: 25px;
          fill: white; } }

.nav--left {
  left: 0; }

.nav--right {
  right: 0; }

.cart__ticket {
  position: relative;
  display: block;
  float: right;
  height: 100%;
  margin: 0 10px 0 0;
  padding: 33px 5px;
  font-size: 13px;
  color: #565759; }
  @media (min-width: 1600px) {
    .cart__ticket {
      padding: 40px 10px; } }
  .cart__ticket svg {
    width: 30px;
    height: 20px;
    fill: #565759; }
  .cart__ticket:before {
    content: attr(data-num);
    position: absolute;
    top: 22px;
    right: -5px;
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background-color: #1394FF;
    color: #FFFFFF;
    font-size: 10px;
    text-align: center;
    line-height: 2; }
    @media (min-width: 1600px) {
      .cart__ticket:before {
        top: 30px;
        right: 0px; } }

.button-default {
  color: #878787;
  font-size: 14px;
  line-height: 0;
  padding-top: 22px;
  padding-bottom: 22px;
  border: 1px solid #878787;
  border-radius: 30px;
  background-color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .button-default:hover {
    color: white;
    background-color: #878787;
    border: 1px solid #878787;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  @media (min-width: 1600px) {
    .button-default {
      padding-left: 45px;
      padding-right: 45px; } }

.button-primary {
  color: white;
  font-size: 14px;
  line-height: 0;
  padding-top: 22px;
  padding-bottom: 22px;
  border-radius: 30px;
  background-color: #905BFF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .button-primary:hover {
    color: white;
    background-color: #878787;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  @media (min-width: 1600px) {
    .button-primary {
      padding-left: 60px;
      padding-right: 60px; } }

.button-payment-margin {
  margin-left: 25px; }

.cart-process {
  width: 100%;
  position: relative;
  padding-top: 150px;
  padding-bottom: 200px; }

.cart-payment {
  width: 100%;
  position: relative;
  padding-top: 350px;
  padding-bottom: 200px;
  background-color: #f8f8f8; }
  @media (min-width: 0) and (max-width: 768px) {
    .cart-payment {
      padding-top: 180px;
      padding-bottom: 100px; } }
  .cart-payment h1 {
    margin-bottom: 90px; }
    @media (min-width: 0) and (max-width: 768px) {
      .cart-payment h1 {
        font-size: 35px; } }

.cart-payment__order {
  width: 100%;
  position: relative;
  padding-left: 40px; }
  .cart-payment__order thead tr th {
    color: #3E3E3E;
    font-size: 12px;
    text-transform: uppercase; }
  .cart-payment__order tbody tr td {
    padding-top: 40px;
    padding-bottom: 40px; }
    .cart-payment__order tbody tr td p {
      color: #878787;
      font-size: 14px; }

.cart-payment__order__thumb {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.cart-payment__order__thumb__img {
  width: 50px;
  height: 50px;
  position: relative;
  overflow: hidden;
  margin-right: 15px;
  z-index: 5; }
  .cart-payment__order__thumb__img img {
    width: 100%; }
  .cart-payment__order__thumb__img:bebore {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10; }

.cart-payment__order__thumb__text {
  width: 100%;
  position: relative; }
  .cart-payment__order__thumb__text p {
    color: #878787;
    font-size: 14px;
    margin: 0; }
  .cart-payment__order__thumb__text h5 {
    color: #878787;
    font-size: 14px;
    margin: 0; }

.cart-payment__order__count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .cart-payment__order__count input[type=text] {
    color: #878787;
    font-size: 14px;
    width: 60px;
    height: 35px;
    border-radius: 0;
    border: 1px solid #878787;
    background-color: white;
    text-align: center;
    cursor: not-allowed;
    margin: 0 auto; }
    .cart-payment__order__count input[type=text]:focus {
      border: 1px solid #905BFF; }
  .cart-payment__order__count button {
    width: 35px;
    height: 35px;
    border: 1px solid #878787;
    border-radius: 0;
    background-color: #ffffff;
    padding: 0;
    text-align: center; }
    .cart-payment__order__count button svg {
      fill: #a2a2a2;
      width: 20px;
      height: 20px;
      margin: 0 auto;
      position: relative;
      top: 2.5px;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .cart-payment__order__count button:hover svg {
      fill: #905BFF;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.cart-payment__order__delete button {
  border: 0;
  border-radius: 0;
  background-color: transparent; }
  .cart-payment__order__delete button svg {
    fill: #3E3E3E;
    width: 20px;
    height: 20px; }
  .cart-payment__order__delete button:hover svg {
    fill: #905BFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.cart-payment__order__footer {
  width: 100%;
  position: relative;
  padding-top: 50px; }
  .cart-payment__order__footer p {
    color: #878787;
    font-size: 14px; }
    .cart-payment__order__footer p span {
      color: #3E3E3E;
      font-size: 16px;
      padding-top: 50px; }

.cart-payment__order__footer__table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.cart-payment__order__footer__buttons {
  text-align: right;
  padding-right: 100px;
  margin-top: 50px; }
  @media (min-width: 0) and (max-width: 768px) {
    .cart-payment__order__footer__buttons {
      text-align: center;
      padding: 0; }
      .cart-payment__order__footer__buttons a {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px; } }

.cart-payment__order__footer__table__labels {
  margin-right: 50px;
  text-align: left; }

.cart-payment__order__footer__table__cant {
  text-align: left;
  padding-right: 100px; }

.cart__sidebar__total {
  display: none; }
  .cart__sidebar__total.active--select {
    display: block; }

.cart-payment__sidebar {
  width: 100%;
  position: relative;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 11.84px 4.16px rgba(135, 135, 135, 0.04);
  box-shadow: 0px 0px 11.84px 4.16px rgba(135, 135, 135, 0.04); }
  .cart-payment__sidebar h4 {
    color: #3e3e3e;
    font-size: 14px;
    text-transform: uppercase; }

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

.cart-payment__sidebar__item {
  width: 100%;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb; }
  .cart-payment__sidebar__item p {
    color: #878787;
    font-size: 14px; }
    .cart-payment__sidebar__item p span {
      font-size: 12px; }
    .cart-payment__sidebar__item p label {
      color: #3e3e3e;
      vertical-align: baseline;
      margin-left: 8px; }
  .cart-payment__sidebar__item button {
    border: 0;
    line-height: 0;
    height: auto;
    border-radius: 0;
    padding: 2px;
    background-color: #f1f1f1; }
    .cart-payment__sidebar__item button svg {
      width: 10px;
      height: 10px;
      fill: #cbcbcb; }

.cart-payment__sidebar__item__tag {
  margin: 0; }

.cart-payment__sidebar__item__total {
  margin-top: 15px; }

.cart-payment__sidebar__item__name {
  margin: 0; }

.cart-payment__sidebar__item__footer {
  width: 100%;
  position: relative;
  padding-top: 50px; }
  .cart-payment__sidebar__item__footer div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px; }
  .cart-payment__sidebar__item__footer p {
    color: #878787;
    font-size: 14px;
    margin-bottom: 0; }
    .cart-payment__sidebar__item__footer p + p {
      right: 0;
      position: absolute; }
    .cart-payment__sidebar__item__footer p span {
      color: #ff6d6d; }
    .cart-payment__sidebar__item__footer p label {
      color: #3e3e3e;
      font-size: 16px;
      margin: 0; }

.cart-payment__method__options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 50px; }
  .cart-payment__method__options div {
    margin-right: 30px; }
    @media (min-width: 1600px) {
      .cart-payment__method__options div {
        margin-right: 30px; } }
  .cart-payment__method__options .checkbox {
    width: 18px;
    height: 18px;
    display: table;
    position: relative;
    top: -30px;
    border-radius: 50%;
    border: 2px solid #e1e1e1;
    z-index: 5; }
    .cart-payment__method__options .checkbox:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      -moz-transform: translateX(-50%) translateY(-50%);
      -webkit-transform: translateX(-50%) translateY(-50%);
      -o-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      background-color: #878787;
      opacity: 0; }
  .cart-payment__method__options input[type=radio] {
    opacity: 0;
    width: 100%;
    height: 50px;
    display: block;
    position: relative;
    z-index: 20; }
    .cart-payment__method__options input[type=radio]:checked + label:before {
      content: '';
      opacity: 1; }
  .cart-payment__method__options img {
    position: relative;
    top: -54px;
    margin-left: 30px; }
    @media (min-width: 1600px) {
      .cart-payment__method__options img {
        margin-left: 40px; } }

.cart-payment__forms {
  width: 100%;
  position: relative;
  padding-left: 30px; }
  .cart-payment__forms h4 {
    color: #3e3e3e;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 30px; }
  .cart-payment__forms p {
    color: #878787;
    font-size: 14px; }
  .cart-payment__forms .form input[type=text],
  .cart-payment__forms .form input[type=email],
  .cart-payment__forms .form input[type=tel] {
    color: #3e3e3e;
    height: 43px;
    border-radius: 0;
    border: 1px solid #ebebeb;
    background-color: #ebebeb;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .cart-payment__forms .form input[type=text]:focus,
    .cart-payment__forms .form input[type=email]:focus,
    .cart-payment__forms .form input[type=tel]:focus {
      border: 1px solid #d8d8d8;
      background-color: #d8d8d8;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
  .cart-payment__forms .form label {
    color: #878787;
    font-size: 14px;
    margin-bottom: 15px; }

#email-disabled {
  position: relative;
  z-index: 5; }
  #email-disabled:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10; }

.cart-payment__forms__credit-card {
  width: 100%;
  position: relative;
  padding-top: 30px;
  border-top: 1px solid #ebebeb; }

.cart-payment__forms__credit-card__exp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .cart-payment__forms__credit-card__exp input[type=text] {
    width: 10%; }
  .cart-payment__forms__credit-card__exp span {
    color: #878787;
    font-size: 14px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px; }

.cart-payment__forms__buttons {
  width: 100%;
  position: relative;
  margin-top: 50px; }
  .cart-payment__forms__buttons a {
    padding-left: 65px;
    padding-right: 65px;
    margin-right: 25px; }
  .cart-payment__forms__buttons button {
    padding-left: 65px;
    padding-right: 65px; }

.cart-payment__forms__modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: rgba(51, 50, 50, 0.92);
  z-index: 100;
  display: none;
  opacity: 0; }

.cart-payment__forms__modal__container {
  width: 44.44444%;
  max-width: 850px;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: white;
  -webkit-box-shadow: 0px 7px 36.18px 17.82px rgba(39, 39, 39, 0.43);
  box-shadow: 0px 7px 36.18px 17.82px rgba(39, 39, 39, 0.43); }

.cart-payment__forms__modal__container__header {
  width: 100%;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  border-bottom: 1px solid #d3d3d3; }
  .cart-payment__forms__modal__container__header button {
    height: auto;
    border: 0;
    border-radius: 0;
    padding: 0;
    line-height: 0;
    background-color: transparent; }
    .cart-payment__forms__modal__container__header button svg {
      width: 25px;
      height: 25px;
      fill: #3e3e3e;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .cart-payment__forms__modal__container__header button:hover svg {
      fill: #008BFF;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.cart-payment__forms__modal__container__icon {
  width: 100%;
  position: relative;
  margin-bottom: 25px; }
  .cart-payment__forms__modal__container__icon svg {
    width: 90px;
    height: 90px;
    fill: #008BFF; }

.cart-payment__forms__modal__container__text {
  padding-top: 65px;
  padding-bottom: 65px;
  text-align: center; }
  .cart-payment__forms__modal__container__text h4 {
    color: #3e3e3e;
    font-size: 32px;
    margin-bottom: 15px; }
  .cart-payment__forms__modal__container__text p {
    color: #949494;
    font-size: 32px;
    margin-bottom: 35px; }
  .cart-payment__forms__modal__container__text button {
    color: white;
    font-size: 15px;
    line-height: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 60px;
    padding-right: 60px;
    border-radius: 28px;
    background-color: #008BFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .cart-payment__forms__modal__container__text button:hover {
      color: white;
      background-color: #3e3e3e;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.gateway {
  opacity: 0;
  display: none; }

.order__status {
  display: inline-block;
  line-height: 38px;
  height: 40px;
  padding: 0 28px;
  border: 1px solid transparent;
  vertical-align: middle;
  -webkit-appearance: none; }
  .order__status.warning {
    background-color: #e9e9e9; }
  .order__status.primary {
    background-color: #e9e9e9; }
  .order__status.success {
    background-color: #e9e9e9; }

.orders__section {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 11.84px 4.16px rgba(135, 135, 135, 0.04);
  box-shadow: 0px 0px 11.84px 4.16px rgba(135, 135, 135, 0.04); }
  .orders__section p {
    color: #878787;
    font-size: 12px;
    margin: 0; }
    .orders__section p strong {
      font-weight: normal;
      color: #565759;
      font-size: 12px;
      text-transform: uppercase; }
    .orders__section p span {
      color: #3e3e3e; }
    @media (min-width: 1600px) {
      .orders__section p {
        font-size: 14px; } }

.orders__header {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px; }

.orders__body {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb; }

.button__download__pdf {
  color: #878787;
  font-size: 12px;
  text-align: left;
  padding: 5px;
  border: 0;
  background-color: #ffffff; }
  .button__download__pdf svg {
    width: 18px;
    height: 18px;
    fill: #878787;
    position: relative;
    top: 3px; }
  .button__download__pdf:hover {
    color: #905BFF; }
    .button__download__pdf:hover svg {
      fill: #905BFF; }

.orders__payment__status {
  color: #878787;
  font-size: 10px !important;
  line-height: 2;
  height: auto;
  border-radius: 0;
  background-color: #cccccc;
  border: 1px solid #e9e9e9;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 8px;
  padding-right: 8px; }

.orders__margin__profile {
  margin-top: 25px; }

.account {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px; }

.account__error__icon {
  width: 100%;
  position: relative;
  margin-bottom: 30px; }
  .account__error__icon svg {
    width: 90px;
    height: 90px;
    fill: #008BFF; }

.button__account {
  margin-top: 30px; }

.cover__search {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #f8f8f8;
  z-index: 5; }
  @media (min-width: 0) and (max-width: 768px) {
    .cover__search {
      height: auto;
      padding-bottom: 6.41026vh; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .cover__search {
      margin-top: 80px; } }
  @media (min-width: 1024px) and (max-width: 1600px) {
    .cover__search {
      margin-top: 100px; } }
  @media (min-width: 1600px) {
    .cover__search {
      margin-top: 0; } }

.cover__search__image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute; }
  .cover__search__image img {
    width: 100%; }

.cover__search__container {
  width: 50%;
  top: 50%;
  left: 50%;
  position: absolute;
  z-index: 10;
  text-align: center;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  padding-top: 240px; }
  @media (min-width: 0) and (max-width: 768px) {
    .cover__search__container {
      width: 88%;
      top: 0;
      left: 0;
      padding-top: 180px;
      position: relative;
      margin: 0 auto;
      text-align: center;
      -moz-transform: translateX(0) translateY(0);
      -webkit-transform: translateX(0) translateY(0);
      -o-transform: translateX(0) translateY(0);
      -ms-transform: translateX(0) translateY(0);
      transform: translateX(0) translateY(0); } }

.cover__search__container__text {
  width: 100%;
  position: relative; }
  .cover__search__container__text h1 {
    color: #3e3e3e;
    font-size: 48px;
    position: relative;
    margin: 0;
    padding-bottom: 2.77778vh; }
    @media (min-width: 0) and (max-width: 768px) {
      .cover__search__container__text h1 {
        font-size: 26px; } }
    @media (min-width: 1024px) and (max-width: 1600px) {
      .cover__search__container__text h1 {
        font-size: 48px; } }
    @media (min-width: 1600px) {
      .cover__search__container__text h1 {
        font-size: 68px; } }
  .cover__search__container__text p {
    color: #828282;
    font-size: 18px;
    position: relative;
    margin: 0; }
    @media (min-width: 0) and (max-width: 768px) {
      .cover__search__container__text p {
        font-size: 14px; } }
    @media (min-width: 1600px) {
      .cover__search__container__text p {
        font-size: 22px; } }

.cover__search__container__options {
  width: 100%;
  position: relative;
  padding-top: 6.48148vh; }
  @media (min-width: 0) and (max-width: 768px) {
    .cover__search__container__options {
      text-align: left; } }
  .cover__search__container__options input[type="radio"] {
    display: none;
    opacity: 0; }
    .cover__search__container__options input[type="radio"]:focus ~ label::before {
      outline: thin dotted;
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
    .cover__search__container__options input[type="radio"]:checked + label::before {
      content: ''; }
    .cover__search__container__options input[type="radio"]:checked ~ label::after {
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1); }
  .cover__search__container__options label {
    cursor: pointer;
    color: #828282;
    font-size: 16px;
    position: relative;
    padding-left: 25px; }
    .cover__search__container__options label::before {
      content: "";
      display: inline-block;
      position: absolute;
      width: 24px;
      height: 24px;
      top: 0;
      left: 0;
      margin-left: -20px;
      border-radius: 50%;
      border: 1px solid #e1e1e1;
      background-color: #ffffff;
      -webkit-transition: border 0.15s ease-in-out;
      -o-transition: border 0.15s ease-in-out;
      transition: border 0.15s ease-in-out; }
      @media (min-width: 0) and (max-width: 768px) {
        .cover__search__container__options label::before {
          width: 18px;
          height: 18px;
          margin-left: 0; } }
    .cover__search__container__options label::after {
      display: inline-block;
      position: absolute;
      content: " ";
      width: 9px;
      height: 9px;
      left: 7px;
      top: 7px;
      margin-left: -20px;
      border-radius: 50%;
      background-color: #008BFF;
      -webkit-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
      -o-transform: scale(0, 0);
      transform: scale(0, 0);
      -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      -o-transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33), -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
      @media (min-width: 0) and (max-width: 768px) {
        .cover__search__container__options label::after {
          margin-left: 0;
          width: 6px;
          height: 6px;
          left: 6px;
          top: 6px; } }
    @media (min-width: 0) and (max-width: 768px) {
      .cover__search__container__options label {
        font-size: 12px; } }
    @media (min-width: 1600px) {
      .cover__search__container__options label {
        font-size: 20px; } }

.cover__search__container__form {
  width: 100%;
  position: relative;
  padding-top: 4.16667vh; }
  .cover__search__container__form form {
    margin: 0; }
    .cover__search__container__form form input[type="text"],
    .cover__search__container__form form input[type="search"] {
      color: #3e3e3e;
      font-size: 16px;
      width: 100%;
      height: auto;
      padding-left: 18px;
      padding-right: 18px;
      padding-top: 20px;
      padding-bottom: 20px;
      max-height: 60px;
      border-radius: 0;
      border-top: 1px solid #e1e1e1;
      border-left: 1px solid #e1e1e1;
      border-right: 1px solid #ffffff;
      border-bottom: 1px solid #e1e1e1;
      background-color: #ffffff;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .cover__search__container__form form input[type="text"]::-webkit-input-placeholder,
      .cover__search__container__form form input[type="search"]::-webkit-input-placeholder {
        color: #c5c3c3; }
      .cover__search__container__form form input[type="text"]:-ms-input-placeholder,
      .cover__search__container__form form input[type="search"]:-ms-input-placeholder {
        color: #c5c3c3; }
      .cover__search__container__form form input[type="text"]::placeholder,
      .cover__search__container__form form input[type="search"]::placeholder {
        color: #c5c3c3; }
      .cover__search__container__form form input[type="text"]::focus,
      .cover__search__container__form form input[type="search"]::focus {
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
      @media (min-width: 0) and (max-width: 768px) {
        .cover__search__container__form form input[type="text"],
        .cover__search__container__form form input[type="search"] {
          font-size: 14px; } }
      @media (min-width: 1600px) {
        .cover__search__container__form form input[type="text"],
        .cover__search__container__form form input[type="search"] {
          font-size: 18px; } }
    .cover__search__container__form form button {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      border-radius: 0;
      height: auto;
      max-height: 60px;
      position: relative;
      border-top: 1px solid #e1e1e1;
      border-left: 1px solid #ffffff;
      border-right: 1px solid #e1e1e1;
      border-bottom: 1px solid #e1e1e1;
      background-color: #ffffff; }
      .cover__search__container__form form button svg {
        width: 22px;
        fill: #008BFF;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
      .cover__search__container__form form button:hover svg {
        fill: #006098;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }

.cover__search__container__form__align {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.cover__search__container__help {
  width: 100%;
  position: relative;
  padding-top: 3.84615vh; }
  @media (min-width: 1600px) {
    .cover__search__container__help {
      padding-top: 6.94444vh; } }
  .cover__search__container__help p {
    color: #828282;
    font-size: 16px;
    position: relative;
    margin: 0; }
    @media (min-width: 0) and (max-width: 768px) {
      .cover__search__container__help p {
        font-size: 12px; } }
    @media (min-width: 1600px) {
      .cover__search__container__help p {
        font-size: 20px; } }
  .cover__search__container__help a {
    color: #008BFF;
    text-decoration: none;
    position: relative;
    padding-bottom: 1px;
    border-bottom: 2px solid #008BFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .cover__search__container__help a:hover {
      color: #006098;
      text-decoration: none;
      border-bottom: 2px solid #006098;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.cover__search__footer {
  width: 100%;
  position: relative; }

.cover__search__footer__item {
  width: 100%;
  position: relative;
  top: -15%;
  z-index: 20;
  background-color: #008BFF;
  padding-top: 6.48148vh;
  padding-bottom: 6.48148vh;
  padding-left: 3.64583vw;
  padding-right: 3.64583vw; }
  @media (min-width: 0) and (max-width: 768px) {
    .cover__search__footer__item {
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 1.95313vw;
      padding-right: 1.95313vw; } }
  @media (min-width: 1600px) {
    .cover__search__footer__item {
      top: -25%; } }
  @media (min-width: 0) and (max-width: 768px) {
    .cover__search__footer__item {
      top: 0; } }

.cover__search__footer__item__text {
  width: 100%;
  position: relative; }
  @media (min-width: 0) and (max-width: 768px) {
    .cover__search__footer__item__text {
      text-align: center; } }
  .cover__search__footer__item__text p {
    color: #ffffff;
    font-size: 22px;
    margin: 0;
    position: relative; }
    @media (min-width: 0) and (max-width: 768px) {
      .cover__search__footer__item__text p {
        font-size: 16px;
        padding-bottom: 1.38889vh; } }
    @media (min-width: 1600px) {
      .cover__search__footer__item__text p {
        font-size: 28px; } }

.cover__search__footer__item__result {
  width: 100%;
  position: relative; }
  .cover__search__footer__item__result h4 {
    color: #ffffff;
    font-size: 32px;
    margin: 0;
    position: relative; }
    @media (min-width: 0) and (max-width: 768px) {
      .cover__search__footer__item__result h4 {
        font-size: 24px; } }
    @media (min-width: 1600px) {
      .cover__search__footer__item__result h4 {
        font-size: 60px; } }
  .cover__search__footer__item__result p {
    color: #ffffff;
    font-size: 16px;
    position: relative;
    margin: 0; }
    @media (min-width: 0) and (max-width: 768px) {
      .cover__search__footer__item__result p {
        font-size: 14px;
        padding-bottom: 1.38889vh; } }
    @media (min-width: 1600px) {
      .cover__search__footer__item__result p {
        font-size: 20px; } }

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.cover_wrapper {
  overflow: hidden;
  position: relative;
}

.cover_image {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.cover_info_elements{
  position: absolute;
  width: 100%;
  height: 100%;
  align-content: center;
}

.cover_info_link{
  position: absolute;
  padding-left: 5vw;
  width: 80%;
  height: 100%;
  align-content: center;
}

.ch_100vh{
  height: 100vh !important;
}@media (max-width: 768px){
  .ch_100vh{
    height: 50vh !important;
  }
}

.ch_90vh{
  height: 90vh !important;
}@media (max-width: 768px){
  .ch_90vh{
    height: 45vh !important;
  }
}

.ch_80vh{
  height: 80vh !important;
}@media (max-width: 768px){
  .ch_80vh{
    height: 40vh !important;
  }
}

.ch_70vh{
  height: 70vh !important;
}@media (max-width: 768px){
  .ch_70vh{
    height: 35vh !important;
  }
}

.ch_60vh{
  height: 60vh !important;
}@media (max-width: 768px){
  .ch_60vh{
    height: 30vh !important;
  }
}

.ch_50vh{
  height: 50vh !important;
}@media (max-width: 768px){
  .ch_50vh{
    height: 25vh !important;
  }
}

.ch_40vh{
  height: 40vh !important;
}@media (max-width: 768px){
  .ch_40vh{
    height: 20vh !important;
  }
}

.ch_30vh{
  height: 30vh !important;
}@media (max-width: 768px){
  .ch_30vh{
    height: 15vh !important;
  }
}

.ch_20vh{
  height: 20vh !important;
}@media (max-width: 768px){
  .ch_20vh{
    height: 10vh !important;
  }
}

.ch_10vh{
  height: 10vh !important;
}@media (max-width: 768px){
  .ch_10vh{
    height: 5vh !important;
  }
}

.shop__product__button{
  display: flex;
  margin-bottom: 2vh;
  align-items: center;
}

.shop__product__button p{
  margin: 0 10px 0 0 !important;
  font-size: 17px;
  color: #3e3e3e;
  line-height: 1.8;
}

.shop__product__button a{
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 5px;
}

/* =Elements
-----------------------------------------------------------------------------*/