/* !Base (Author: mail@jandousek.cz) */

/*
 Bodies
 ***
*/

html, body {
  margin: 0;
}
html {
  background: #3c3533;
}
body {
  max-width: 1920px;
  position: relative;
  margin: 0 auto;
  background: #efecea;
  box-shadow: 0 0 90px rgba(0,0,0,0.3);
  line-height: 1;
  font: 200 16px 'Axiforma', Helvetica, sans-serif;
  color: #3d3d3d;
}

/*
 a
 ***
*/

a {
  color: #df2e22;
}
a:hover {
  color: #26100f;
}

/*
 fields
 ***
*/

input, select, textarea, button {
  font: 300 16px 'Axiforma', Helvetica, sans-serif;
  color: #3d3d3d;
}
textarea {
  line-height: 1.6;
}

/*
  placeholder
  ***
 */

/* ::-webkit-input-placeholder {color:#373737;}
::-moz-placeholder {color:#373737;}
:-ms-input-placeholder {color:#373737;}
:-moz-placeholder {color:#373737;} */

/*
  link
  ***
 */

.link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

/*
  type-button
  ---
 */

.link.type-button {
  background-color: #ee3124;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}
.link.type-button span {
  position: relative;
  display: block;
  padding: 17px 60px 16px 25px;
}
.link.type-button.size-small {
  font-size: 14px;
}
.link.type-button.size-small span {
  padding: 14px 44px 14px 20px;
}
.link.type-button span:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  right: 17px;
  top: 50%;
  margin-top: -15px;
  background: url('../img/icons.png') -30px top no-repeat;
}
.link.type-button.size-small span:after {
  right: 8px;
  top: 48%;
}
.link.type-button.icon-plus span:after {
  background-position: -150px -60px;
}

.ref-btn-wrapper .link.type-button span:after {
  display: none;
}

.ref-btn-wrapper  .link.type-button span {
 padding: 17px 25px 16px 25px;
}

.row {
  width: 100%;
}

.col-3 {
  width: 25%;
  float: left;
}

/*
  icon
  ---
 */

.link.type-button.icon-none span{
  padding-right: 25px;
}
.link.type-button.icon-none span:after {
  display: none;
}

/*
  bg
  ---
 */

.link.type-button.bg-white {
  background-color: #fff;
  color: #ee3124;
}
.link.type-button.bg-transparent {
  background-color: transparent;
  color: #ee3124;
}
.link.type-button.bg-gradient:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%);
  border-radius: 100px;
}

/*
  border
 */

.link.type-button[class*="border-"] {
  border: 2px solid #ee3124;
}
.link.type-button[class*="border-"] span {
  padding: 16px 58px 14px 23px;
}

/*
  shadow
 */

.link.type-button.shadow-grey {
  box-shadow: 0 7px 10px rgba(43, 11, 9, 0.2);
}

/*
  adjust arrows
 */

.link.type-button.bg-white span:after, .link.type-button.bg-transparent span:after {
  background-position: -60px top;
}
/* .link.type-button.bg-gradient span:after {
  background-position: -90px top;
} */

/* actions */

.link.type-button:hover {
  opacity: 0.9;
  filter: grayscale(100%);
}


/*
  input
  ***
*/

.input {
  width: 100%;
  position: relative;
  padding: 19px 60px 19px 20px;
  background: #fff right center no-repeat;
  box-shadow: 0 3px 4px rgba(47,49,54,0.15);
  border: none;
  border-radius: 4px;
  font-weight: 300;
  font-size: 15px;
}

/*
  adjust select
  ---
*/

select.input {
  background-image: url('../img/input-select.png');
  cursor: pointer;
}

/*
  adjust textarea
  ---
*/

textarea.input {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  line-height: 1.5;
}

/*
  adjust checkbox, radio
  ---
*/
#acceptance,
.input[type="checkbox"], .input[type="radio"],
input[type="checkbox"], input[type="radio"] {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  padding: 0;
  cursor: pointer;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 1px 4px rgba(0,0,0,.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input[type="radio"],
input[type="radio"] {
  border-radius: 100%;
}
#acceptance:after,
.input[type="checkbox"]:after, .input[type="radio"]:after,
input[type="checkbox"]:after, input[type="radio"]:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  display: none;
  margin: -14px 0 0 -14px;
  background: url('../img/icons.png') 1000px 1000px no-repeat;
}
#acceptance:after,
.input[type="checkbox"]:after,
input[type="checkbox"]:after {
  background-position: -330px top;
}
.input[type="radio"]:after,
input[type="radio"]:after {
  background-position: -360px top;
}

/*
  + span
*/

#acceptance + span,
.input[type="checkbox"] + span, .input[type="radio"] + span,
input[type="checkbox"] + span, input[type="radio"] + span {
  display: inline-block;
  margin-bottom: -6px;
  vertical-align: middle;
}
#acceptance + span {
  color: #fff;
}

/* actions */

#acceptance:checked:after,
.input[type="checkbox"]:checked:after, .input[type="radio"]:checked:after,
input[type="checkbox"]:checked:after, input[type="radio"]:checked:after {
  display: block;
}

/*
  CF7
  ***
*/

.wpcf7-list-item {
  display: block;
}

/*
  field
  ***
*/

.field {
  margin-bottom: 30px;
}
.field-inset {
  display: block;
  font-size: 15px;
}

/*
  label
  ---
*/

.field-label, .field label {
  display: inline-block;
  padding-bottom: 10px;
  font-size: 14px;
  color: #3d3d3d;
  cursor: pointer;
}
.field-label strong {
  color: #ee3124;
}

/*
  error + CF7
  ---
*/

.field-error, .field .wpcf7-not-valid-tip {
  position: relative;
  display: block;
  margin-top: -4px;
  padding: 13px 7px 7px 30px;
  background-color: #ff0000;
  border-radius: 0 0 4px 4px;
  font-size: 12px;
  color: #fff;
}
.field-error:before, .field .wpcf7-not-valid-tip:before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -13px;
  background: url('../img/icons.png') -300px top no-repeat;
}

/*
  adjust input
  ---
*/

.field .input {
  z-index: 1;
}

/*
  Group
  ---
*/

.field_Group {
  margin: 0 -25px;
  font-size: 0;
}

/*
  adjust field
*/

.field_Group .field {
  display: inline-block;
  vertical-align: top;
}
.field_Group .field-inset {
  margin: 0 25px;
}

/* size */

.field_Group .field.size-3 {
  width: 33.33%;
}
.field_Group .field.size-6 {
  width: 66.66%;
}



.shop-modal-flash-response-output {
  position: relative;
  margin-bottom: 30px;
  padding: 11px 25px 11px 45px;
  background-color: #156cc5;
  box-shadow: 0 3px 4px rgba(47,49,54,0.15);
  border-radius: 3px;
  line-height: 1.6;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.shop-modal-flash-response-output:before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -16px;
  background: url('../img/icons.png') 1000px 1000px no-repeat;
}
.shop-modal-flash-display-none {
  display: none;
}

.shop-modal-flash-response-output.shop-modal-flash-validation-errors {
  background-color: #ff0000;
}

.shop-modal-flash-response-output.shop-modal-flash-validation-errors:before {
  background-position: -240px top;
}

.shop-modal-flash-response-output:before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -16px;
  background: url('../img/icons.png') 1000px 1000px no-repeat;
}

.shop-modal-flash-response-output.shop-modal-flash-mail-sent-ok {
  background-color: #15c521;
}

.shop-modal-flash-response-output.shop-modal-flash-mail-sent-ok:before {
  background-position: -270px top;
}

/*
  flashMessage + CF7
  ***
 */

.flashMessage, .wpcf7-response-output {
  position: relative;
  margin-bottom: 30px;
  padding: 11px 25px 11px 45px;
  background-color: #156cc5;
  box-shadow: 0 3px 4px rgba(47,49,54,0.15);
  border-radius: 3px;
  line-height: 1.6;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.flashMessage:before, .wpcf7-response-output:before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -16px;
  background: url('../img/icons.png') 1000px 1000px no-repeat;
}
.wpcf7-form.init .wpcf7-response-output, .wpcf7-display-none {
  display: none;
}

/*
  type
  ---
 */

.flashMessage.type-danger,
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-response-output.wpcf7-acceptance-missing {
  background-color: #ff0000;
}
.flashMessage.type-danger:before,
.wpcf7-response-output.wpcf7-validation-errors:before,
.wpcf7-response-output.wpcf7-mail-sent-ng:before,
.wpcf7-response-output.wpcf7-acceptance-missing:before {
  background-position: -240px top;
}
.flashMessage.type-happy,
.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #15c521;
}
.flashMessage.type-happy:before,
.wpcf7-response-output.wpcf7-mail-sent-ok:before {
  background-position: -270px top;
}

/*
  breadcrumbs
  ***
 */

.breadcrumbs {
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
}
.breadcrumbs > a, .breadcrumbs > span {
  position: relative;
  display: inline-block;
  margin-right: 0;
  padding: 11px 4px 10px 30px;
  border: 1px solid #fff;
  border-right: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 14px;
}
.breadcrumbs > a:first-child, .breadcrumbs > span:first-child {
  padding-left: 12px;
}
.breadcrumbs > a {
  background-color: #d92d21;
  text-decoration: none;
  color: #fff;
}
.breadcrumbs > span {
  background-color: #fff;
  color: #ee3124;
}
.breadcrumbs > a:after, .breadcrumbs > span:after {
  content: '';
  width: 26px;
  height: 26px;
  position: absolute;
  right: -14px;
  top: 50%;
  z-index: 0;
  margin-top: -14px;
  transform: rotate(45deg);
  box-shadow: 2px -2px 0 #d92d21;
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}
.breadcrumbs > a:last-child:after, .breadcrumbs > span:last-child:after {
  box-shadow: none;
}
.breadcrumbs > a:before {
  content: '';
  width: 4px;
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  z-index: 1;
  border: 1px solid #fff;
  border-left: none;
  border-right: none;
}
.breadcrumbs > a:after {
  background-color: #d92d21;
}
.breadcrumbs > span:after {
  background-color: #fff;
}
.breadcrumbs > a > span, .breadcrumbs > span > span {
  max-width: 150px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
  index
  ---
 */

.breadcrumbs > a:nth-child(5), .breadcrumbs > span:nth-child(5) {
  z-index: 1;
}
.breadcrumbs > a:nth-child(4), .breadcrumbs > span:nth-child(4) {
  z-index: 2;
}
.breadcrumbs > a:nth-child(3), .breadcrumbs > span:nth-child(3) {
  z-index: 3;
}
.breadcrumbs > a:nth-child(2), .breadcrumbs > span:nth-child(2) {
  z-index: 4;
}
.breadcrumbs > a:nth-child(1), .breadcrumbs > span:nth-child(1) {
  z-index: 5;
}

/*
  separator
  ***
 */

.separator {
  height: 1px;
  overflow: hidden;
  clear: both;
  background-color: #ccc;
}

/*
  pull
  ***
 */

.pull {
  display: block;
  background-color: #fff;
  box-shadow: 0 15px 80px rgba(43,11,9,0.15);
}

/*
  contain
  ---
 */

.pull.contain-content {
  padding: 65px 200px 40px 200px;
}
.pull.contain-image {
  font-size: 0;
}

/*
  format
 */

.pull.contain-image img {
  width: 100%;
  float: none !important;
  display: block;
  margin: 0 !important;
}

/*
  pager + bx-pager
  ***
 */

.pager, .bx-pager {
  font-size: 0;
}
.pager a, .bx-pager div {
  display: inline-block;
  margin-right: 15px;
}
.pager a, .bx-pager a {
  padding: 10px 14px;
  border: 1px solid #e1dcda;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  color: #26100f;
}

/*
  pager-load
  ---
 */

.pager a.pager-load {
  position: relative;
  display: none;
  margin: 0 auto;
  padding: 19px 28px 17px 28px;
  background-color: #fff !important;
  font-weight: 600;
  font-size: 16px;
}
html.js .pager a.pager-load {
  display: table;
}
.pager a.pager-load span {
  position: relative;
  bottom: -2px;
  display: inline-block;
  margin: -6px 5px 0 0;
  font-weight: 300;
  font-size: 22px;
}

/*
  is-loading
*/

.pager a.pager-load.is-loading {
  padding-left: 49px;
  background: url('../img/loader.gif') 10px center no-repeat;
}
.pager a.pager-load.is-loading span {
  display: none;
}

/*
  pages
  ---
 */

html.js .pager-pages {
  display: none;
}

/* actions */

.pager a:hover, .bx-pager a:hover {
  background-color: #fff;
}
.pager a.is-active, .bx-pager a.active {
  padding: 9px 13px;
  background: #e83529;
  background: linear-gradient(to bottom, rgba(239,59,47,1) 0%,rgba(226,50,37,1) 100%);
  box-shadow: 0 7px 10px rgba(43, 11, 9, 0.2);
  border-color: transparent;
  text-decoration: none;
  color: #fff;
}
.pager a.pager-load:hover {
  color: #e83529;
}

/*
  bx-controls-direction
  ***
*/

.bx-controls-direction a {
  width: 48px;
  height: 48px;
  position: relative;
  overflow: hidden;
  display: block;
  background-color: #fff;
  border-radius: 100%;
  white-space: nowrap;
  text-indent: 200%;
}
.bx-controls-direction a:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  background: url('../img/icons.png');
}
.bx-controls-direction a.bx-prev:after {
  background-position: -270px -30px;
}
.bx-controls-direction a.bx-next:after {
  background-position: -60px top;
}


/*
  anchorNav
  ***
 */

.anchorNav {
  width: 150px;
  position: relative;
  padding-top: 86px;
  text-align: center;
}

/*
  icon
  --
 */

.anchorNav-icon {
  width: 100%;
  height: 83px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: block;
  background: #fff center center no-repeat;
  box-shadow: 0 7px 10px rgba(43,11,9,0.2);
}

/*
  list
  ---
 */

.anchorNav-list {
  position: relative;
}
.anchorNav-list li {
  position: relative;
  margin-bottom: 3px;
}
.anchorNav-list li a {
  position: relative;
  display: block;
  padding: 34px 10px 26px 10px;
  background-color: #efecea;
  border: 1px solid #ccc;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  color: #3c3533;
}
.anchorNav-list li a:before, .anchorNav-list li a:after {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  z-index: 1;
  transform:  scaleX(1.3) rotate(45deg);
  margin-left: -9px;
  background-color: #efecea;
  border: 1px solid #ccc;
  border-left: none;
  border-top: none;
}
.anchorNav-list li a:before {
  top: -9px;
}
.anchorNav-list li:first-child a:before {
  display: none;
}
.anchorNav-list li a:after {
  bottom: -10px;
}
.anchorNav-list li:last-child a:after {
  display: none;
}

/*
  order
 */

.anchorNav-list li:nth-child(1) {
  z-index: 10;
}
.anchorNav-list li:nth-child(2) {
  z-index: 9;
}
.anchorNav-list li:nth-child(3) {
  z-index: 8;
}
.anchorNav-list li:nth-child(4) {
  z-index: 7;
}
.anchorNav-list li:nth-child(5) {
  z-index: 6;
}
.anchorNav-list li:nth-child(6) {
  z-index: 5;
}
.anchorNav-list li:nth-child(7) {
  z-index: 4;
}
.anchorNav-list li:nth-child(8) {
  z-index: 3;
}
.anchorNav-list li:nth-child(9) {
  z-index: 2;
}
.anchorNav-list li:nth-child(10) {
  z-index: 1;
}

/* actions */

.anchorNav-list li a:hover, .anchorNav-list li a:hover:after {
  background-color: #fff;
}

/*
  bumSlider
  ***
*/

.bumSlider {
  position: relative;
  background-color: #ae0b20;
  font-weight: 400;
  font-size: 28px;
  color: #fff;
}
.bumSlider ul li {
  background: #d00a25 center center no-repeat;
  background-size: cover;
}
.bumSlider ul li div {
  max-width: 1150px;
  margin: 0 auto;
  position: absolute;
  right: 160px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}
.bumSlider ul li div span {
  display: inline-block;
  margin-bottom: 40px;
  line-height: 1.2 !important;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 64px;
}
.bumSlider ul li div span b {
  font-weight: 800;
}

/* controls */

.bumSlider .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 60;
}
.bumSlider .bx-controls-direction a.bx-prev {
  left: 60px;
}
.bumSlider .bx-controls-direction a.bx-next {
  right: 60px;
}

/*
  filter
  ***
 */

.filter {
  font-size: 14px;
  color: #695f5c;
}
.filter-inset {
  position: relative;
  background-color: #fff;
  box-shadow: 0 15px 80px rgba(43,11,9,0.15);
}
.filter-inset:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: 270px;
  top: 0;
  background-color: #ddd8d6;
}

/*
  alphabet
  ---
 */

.filter-alphabet {
  margin-right: 271px;
  padding: 20px 15px;
}
.filter-alphabet ul {
  width: 100%;
  display: table;
}
.filter-alphabet ul li {
  position: relative;
  overflow: hidden;
  display: table-cell;
  text-align: center;
  font-weight: bold;
}
.filter-alphabet ul li:first-child, .filter-alphabet ul li:last-child {
  padding-right: 5px;
}
.filter-alphabet ul li input {
  position: absolute;
  left: -100px;
}
.filter-alphabet ul li label, .filter-alphabet ul li span {
  display: inline-block;
  padding: 7px 8px 5px 8px;
  border: 2px solid transparent;
  border-radius: 100px;
  text-transform: uppercase;
  color: #26100f;
}
.filter-alphabet ul li label {
  color: #26100f;
  cursor: pointer;
}
.filter-alphabet ul li span {
  color: #cac4c4;
}
.filter-alphabet ul li:first-child label, .filter-alphabet ul li:first-child span  {
  padding-left: 10px;
  padding-right: 10px;
}

/* actions */

.filter-alphabet ul li input:checked + label {
  background-color: #fff;
  border-color: #ee3124;
  color: #ee3124;
}
.filter-alphabet ul li label:hover {
  background-color: #ee3124;
  border-color: #ee3124;
  color: #fff;
}

/*
  search
  ---
 */

.filter-search {
  width: 270px;
  float: right;
}
.filter-search input {
  width: 100%;
  height: 70px;
  padding: 0 90px 0 25px;
  font-weight: 300;
  font-size: 14px;
  color: #695f5c;
}

/*
  submit
  ---
 */

.filter-submit {
  width: 70px;
  height: 70px;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  background: transparent;
  white-space: nowrap;
  text-indent: 200%;
}
.filter-submit:before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  background: url('../img/icons.png') -180px top no-repeat;
}

/* actions */

.filter-submit:hover:before {
  background-position: -210px top;
}

/*
  result
  ---
 */

.filter-result {
  margin-top: 25px;
  line-height: 1.6;
  text-align: center;
}

/*
  realCare
  ***
 */

.realCare {
  position: relative;
  margin-bottom: 120px;
  padding: 120px 50px 0 50px;
}
.realCare-inset {
  max-width: 1050px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 52px 50px 40px 50px;
  background-color: #fff;
  box-shadow: 0 15px 80px rgba(43,11,9,0.15);
}
.realCare-inset-inset {
  width: 45%;
  width: calc(50% - 50px);
  float: left;
}
.realCare.type-prices .realCare-inset-inset {
  width: auto;
  float: none;
}

/*
  sest
  ---
 */

.realCare-sest {
  overflow: hidden;
  margin: 85px 0 -40px 0;
  text-align: center;
  font-size: 0;
}
.realCare-sest li {
  width: 220px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
}
.realCare-sest li:after {
  content: '';
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1000px;
  background-color: #ccc;
}
.realCare-sest li:last-child:after {
  display: none;
}
.realCare-sest li span {
  position: relative;
  display: block;
  padding: 90px 20px 30px 20px;
  line-height: 1.5;
}
.realCare-sest li span:after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 15px;
  margin-left: -30px;
  background: url('../img/icons.png') 100px 100px no-repeat;
}

/*
  icons
 */

.realCare-sest li.icon-temple span:after {
  background-position: left -570px;
}
.realCare-sest li.icon-wallet span:after {
  background-position: -60px -570px;
}
.realCare-sest li.icon-cards span:after {
  background-position: -120px -570px;
}
.realCare-sest li.icon-bp span:after {
  background-position: -180px -570px;
}

/*
  strip
  ---
 */

.realCare-strip {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 185px;
  background: #e82c1f url('../img/placeholders/6.jpg') center top no-repeat;
  background-size: cover;
}
.realCare.type-prices .realCare-strip {
  height: 320px;
  bottom: auto;
}

/*
  title
  ---
 */

.realCare-title {
  margin-bottom: 25px;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
  color: #26100f;
}
.realCare.type-prices .realCare-title {
  float: left;
}
.realCare-title b {
  color: #ee3124;
}

/*
  excerpt
  ---
 */

.realCare-excerpt {
  margin-bottom: 30px;
  line-height: 1.7;
}
.realCare.type-prices .realCare-excerpt {
  float: right;
  margin-top: 18px;
}

/*
  boxes
  ---
 */

.realCare-boxes {
  margin: 15px -15px -10px -15px;
  font-size: 0;
}
.realCare-boxes li {
  width: 33.33%;
  display: inline-block;
}
.realCare-boxes li span {
  position: relative;
  display: block;
  margin: 0 15px 30px 15px;
  padding: 32px 20px 26px 20px;
  border: 2px solid #efecea;
  text-align: center;
  font-size: 16px;
}
.realCare-boxes li span:after {
  content: attr(data-separate);
  width: 46px;
  position: absolute;
  left: -43px;
  top: 50%;
  margin-top: -23px;
  padding: 16px 0;
  background-color: #fff;
  box-shadow: 0 -12px 0 #fff, 0 12px 0 #fff;
  border: 2px solid #efecea;
  border-radius: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  color: #3c3533;
}
.realCare-boxes li:first-child span:after {
  display: none;
}
.realCare-boxes li span strong {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: #ee3124;
}
.realCare-boxes li span strong small {
  position: absolute;
  left: 100%;
  top: 5px;
  margin-left: -29px;
  font-size: 15px;
  color: #3c3533;
}

/*
  prices
  ---
 */

.realCare-prices {
  overflow: hidden;
  float: right;
  margin: 55px 0 25px 0;
  padding-top: 60px;
  padding-right: 30px;
  border-top: 1px solid #efecea;
  color: #3c3533;
}
.realCare-prices li.first {
  position: relative;
  float: left;
  text-align: left;
}
.realCare-prices li.first strong {
  font-size: 60px;
  color: #ee3124;
}
.realCare-prices li.first small {
  position: absolute;
  right: -24px;
  top: 3px;
  font-weight: bold;
  font-size: 15px;
}
.realCare-prices li.last {
  float: right;
  text-align: right;
  line-height: 1.6;
}
.realCare-prices li.last small {
  position: relative;
  top: -3px;
  margin-left: 5px;
  font-size: 14px;
}
.realCare-prices li.last strong {
  font-size: 26px;
  color: #26100f;
}

/*
  services
  ---
 */

.realCare-services {
  width: 45%;
  width: calc(50% - 50px);
  float: right;
  font-size: 0;
  color: #3c3533;
}
.realCare-services li {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  margin: 0 -1px -1px 0;
}
.realCare-services li span {
  position: relative;
  display: block;
  padding: 120px 10px 35px 10px;
  border: 1px solid #ddd9d7;
  line-height: 1.5;
  text-align: center;
  font-size: 13px;
}
.realCare-services li span:after {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  left: 50%;
  top: 20px;
  margin-left: -45px;
  background: url('../img/icons.png') 100px 100px no-repeat;
}


.company-services {
  width: 45%;
  width: calc(50% - 50px);
  font-size: 0;
  color: #3c3533;
}

.company-services li {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  margin: 0 -1px -1px 0;
}

.company-services li span {
  position: relative;
  display: block;
  padding: 120px 10px 35px 10px;
  border: 1px solid #ddd9d7;
  line-height: 1.5;
  text-align: center;
  font-size: 13px;
}

.company-services li span:after {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  left: 50%;
  top: 20px;
  margin-left: -45px;
  background: url('../img/icons.png') 100px 100px no-repeat;
}



.homepage-video-bg {
  /*background: url('../img/bg-company.jpg') center center no-repeat;*/
  background: url('../img/video-bg.jpg') center center no-repeat;
}

.promo-non-stop-doctor-wrapper-bg {
  background: url('../img/non-stop-doctor-bg.jpg') center center no-repeat;
}


.video-play-btn {
  width: 100px;
  height: 100px;
  background: radial-gradient( rgba(0, 0, 0, 0.6) 60%, rgba(255, 255, 255, 1) 62%);
  border-radius: 50%;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.2);
  transition: all .2s ease;
}

.video-play-btn:hover {
  background: radial-gradient( rgba(0, 0, 0, 0.7) 60%, rgba(255, 255, 255, 1) 62%);
  transition: all .2s ease;
}


/* triangle */
.video-play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.video-play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .75);
  top: -26%;
  left: -28%;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}


#hp-video-wrapper {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 450px;
  padding: 0px;
  margin-bottom: 90px;
}

.homepage-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 450px;
  position: relative;
  background-size: cover;
  background-position: top center;
  transition: all 1s ease;
}

#hp-video-wrapper:hover .homepage-video-bg {
  transform: scale(1.05);
  transition: all 1s ease;
}

.homepage-video-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right:0;
  background: rgba(0,0,0,0);
  z-index: 0;
  transition: all 1s ease;
}

#hp-video-wrapper:hover .homepage-video-fade {
  background: rgba(0,0,0,.2);
  transition: all 1s ease;
}


/*
  icons
 */

.company-services li.icon-earth span:after {
  content: '';
  width: 86px;
  height: 86px;
  background: url('../img/icons/earth.svg') center center no-repeat;
}

.company-services li.icon-heart-case span:after {
  content: '';
  width: 80px;
  height: 80px;
  background: url('../img/icons/heart-case.svg') center center no-repeat;
}

.company-services li.icon-job-category span:after {
  content: '';
  width: 85px;
  height: 85px;
  background: url('../img/icons/job-category.svg') center center no-repeat;
}

.company-services li.icon-time span:after {
  content: '';
  width: 90px;
  height: 90px;
  background: url('../img/icons/time.svg') center center no-repeat;
}


.company-services li.icon-healthy-days span:after {
  content: '';
  width: 85px;
  height: 85px;
  background: url('../img/icons/healthy-days.svg') center center no-repeat;
}

.company-services li.icon-heart-hands span:after {
  content: '';
  width: 90px;
  height: 90px;
  background: url('../img/icons/heart-hands.svg') center center no-repeat;
}

.company-services li.icon-stethoscope span:after {
  content: '';
  width: 82px;
  height: 82px;
  margin-top: 2px;
  background: url('../img/icons/stethoscope.svg') center center no-repeat;
}


.company-services li.icon-heart-pulse span:after {
  content: '';
  width: 85px;
  height: 85px;
  background: url('../img/icons/heart-pulse.svg') center center no-repeat;
}


.company-services li.icon-tooth span:after {
  content: '';
  width: 90px;
  height: 90px;
  background: url('../img/icons/tooth.svg') center center no-repeat;
}

.company-services li.icon-eye span:after {
  content: '';
  width: 90px;
  height: 90px;
  background: url('../img/icons/eye.svg') center center no-repeat;
}


.realCare-services li.icon-syringe span:after {
  background-position: -360px -420px;
}
.realCare-services li.icon-nurse span:after {
  background-position: -450px -420px;
}
.realCare-services li.icon-building span:after {
  background-position: -540px -420px;
}
.realCare-services li.icon-heart span:after {
  background-position: -630px -420px;
}
.realCare-services li.icon-hands span:after {
  background-position: -720px -420px;
}
.realCare-services li.icon-cardiogram span:after {
  background-position: -810px -420px;
}
.realCare-services li.icon-healt span:after {
  background-position: -900px -420px;
}
.realCare-services li.icon-cardiograph span:after {
  background-position: -990px -420px;
}
.realCare-services li.icon-airplane span:after {
  background-position: -1080px -420px;
}
.realCare-services li.icon-discount span:after {
  background-position: -1170px -420px;
}
.realCare-services li.icon-bell span:after {
  background-position: -1260px -420px;
}
.realCare-services li.icon-cardiogram_mobile span:after {
  background-position: -1350px -420px;
}
.realCare-services li.icon-staff span:after {
  background-position: -1440px -420px;
}

.company-services li.icon-staff span:after {
  background-position: -1440px -420px;
}

/*
.realCare-services li.icon-crosses span:after {
  background-position: left -420px;
}
.realCare-services li.icon-blazon span:after {
  background-position: -90px -420px;
}
.realCare-services li.icon-percent span:after {
  background-position: -180px -420px;
}
.realCare-services li.icon-support span:after {
  background-position: -270px -420px;
}
*/

/*
  slider
*/

.realCare-services_Slider {
  position: relative;
}
.realCare-services_Slider.just-scrollable {
  position: relative;
}
.realCare-services_Slider.just-scrollable ul {
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}
.realCare-services_Slider.just-scrollable ul li {
  width: 14.28% !important;
  display: inline-block;
}
.realCare-services_Slider .realCare-services {
  margin-bottom: 0 !important;
  border-bottom: none !important;
}

/* controls */

.realCare-services_Slider .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin: -24px;
}
.realCare-services_Slider .bx-controls-direction a.bx-prev {
  left: -50px;
}
.realCare-services_Slider .bx-controls-direction a.bx-next {
  right: -50px;
}

/*
  slider
*/

.company-services_Slider {
  position: relative;
}
.company-services_Slider.just-scrollable {
  position: relative;
}
.company-services_Slider.just-scrollable ul {
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}
.company-services_Slider.just-scrollable ul li {
  width: 14.28% !important;
  display: inline-block;
}
.company-services_Slider .realCare-services {
  margin-bottom: 0 !important;
  border-bottom: none !important;
}

/* controls */

.company-services_Slider .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin: -24px;
}
.company-services_Slider .bx-controls-direction a.bx-prev {
  left: -50px;
}
.company-services_Slider .bx-controls-direction a.bx-next {
  right: -50px;
}

/*
  adjusts
  ---
 */

.realCare .link.type-button {
  position: absolute;
  left: 50px;
  bottom: -24px;
}
.realCare.type-prices .link.type-button {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*
  type-simple
  ---
 */

.realCare.type-simple {
  padding: 100px 0 0 0;
}
html.home .realCare.type-simple {
  padding: 0;
}
.realCare.type-simple .realCare-inset-inset {
  width: auto;
  float: none;
}
.realCare.type-simple .realCare-services {
  width: auto;
  float: none;
  margin-bottom: 40px;
  border-top: 1px solid #efecea;
  border-bottom: 1px solid #efecea;
}
.realCare.type-simple .realCare-services li {
  width: 25%;
}
.realCare.type-simple .realCare-services li span {
  border: none;
}
.realCare.type-simple .realCare-prices {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
html.home .realCare.type-simple .realCare-strip {
  display: none;
}


.realCare.type-simple {
  padding: 100px 0 0 0;
}
html.home .realCare.type-simple {
  padding: 0;
}
.realCare.type-simple .realCare-inset-inset {
  width: auto;
  float: none;
}
.realCare.type-simple .compnay-services {
  width: auto;
  float: none;
  margin-bottom: 40px;
  border-top: 1px solid #efecea;
  border-bottom: 1px solid #efecea;
}
.realCare.type-simple .company-services li {
  width: 25%;
}
.realCare.type-simple .company-services li span {
  border: none;
}

/*
  heroItem
  ***
*/

.heroItem {
  position: relative;
  background: #c62a1f url('../img/heroItem.jpg') center center no-repeat;
  background-size: cover;
}
/* .heroItem:after {
  content: '';
  width: 40%;
  position: absolute;
  top: 125px;
  right: 60px;
  bottom: 60px;
  border: 1px solid #ed5146;
  border-left: none;
  border-top: none;
} */
.heroItem-inset {
  max-width: 800px;
  padding: 220px 200px 90px 120px;
  font-size: 20px;
  color: #fff;
}

/*
  title
  ---
 */

.heroItem-title {
  margin-bottom: 35px;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 60px;
}
.heroItem-title b {
  font-weight: 800;
}

/*
  excerpt
  ---
 */

.heroItem-excerpt {
  margin-bottom: 35px;
  line-height: 1.5;
}


/*
  tel
  ---
 */

 .heroItem-tel {
   margin: 70px 0 36px -2px;
 }
 .heroItem-tel + .heroItem-tel {
   margin-top: -20px;
 }

/*
  format
 */

.heroItem-tel b {
  max-width: 650px;
  display: inline-block;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
}
.heroItem-tel a {
  position: relative;
  display: inline-block;
  margin: 14px 0 0 3px;
  padding: 20px 32px 14px 87px;
  border-radius: 100px;
  background: #fff;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(230,230,230,1) 100%);
  box-shadow: 0 7px 10px rgba(43,11,9,0.4);
  text-decoration: none;
  font-weight: 800;
  font-size: 26px;
  color: #34201f;
}
.heroItem-tel a:before, .heroItem-tel a:after {
  content: '';
  position: absolute;
}
.heroItem-tel a:before {
  width: 66px;
  height: 100%;
  left: 0;
  top: 0;
  margin-left: -2px;
  background: #ed4438;
  background: linear-gradient(to bottom, rgba(240,70,58,1) 1%,rgba(214,45,33,1) 100%);
  border-radius: 100px 0 0 100px;
}
.heroItem-tel a:after {
  width: 30px;
  height: 30px;
  left: 20px;
  top: 50%;
  margin-top: -15px;
  background: url('../img/icons.png') -90px -60px no-repeat;
}
.heroItem-tel.icon-plus a:after {
  background-position: -120px -60px;
}

.heroItem-company a {
  position: relative;
  display: inline-block;
  margin: 14px 0 0 3px;
  padding: 20px 32px 14px 87px;
  border-radius: 100px;
  background: #fff;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(230,230,230,1) 100%);
  box-shadow: 0 7px 10px rgba(43,11,9,0.4);
  text-decoration: none;
  font-weight: 800;
  font-size: 26px;
  color: #34201f;
}
.heroItem-company a:before, .heroItem-company a:after {
  content: '';
  position: absolute;
}
.heroItem-company a:before {
  width: 66px;
  height: 100%;
  left: 0;
  top: 0;
  margin-left: -1px;
  background: #ed4438;
  background: linear-gradient(to bottom, rgba(240,70,58,1) 1%,rgba(214,45,33,1) 100%);
  border-radius: 100px 0 0 100px;
}
.heroItem-company a:after {
  width: 30px;
  height: 30px;
  left: 20px;
  top: 50%;
  margin-top: -15px;
  background: url('../img/icons.png') -90px -60px no-repeat;
}


.heroItem-button-1 a,
.heroItem-button-2 a,
.heroItem-button-3 a  {
  position: relative;
  display: inline-block;
  margin: 14px 0 0 3px;
  padding: 20px 32px 14px 87px;
  border-radius: 100px;
  background: #fff;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(230,230,230,1) 100%);
  box-shadow: 0 7px 10px rgba(43,11,9,0.4);
  text-decoration: none;
  font-weight: 800;
  font-size: 26px;
  color: #34201f;
}
.heroItem-button-1 a:before, .heroItem-button-1 a:after,
.heroItem-button-2 a:before, .heroItem-button-2 a:after,
.heroItem-button-3 a:before, .heroItem-button-3 a:after {
  content: '';
  position: absolute;
}

.heroItem-button-1 a:before,
.heroItem-button-2 a:before,
.heroItem-button-3 a:before {
  width: 66px;
  height: 100%;
  left: 0;
  top: 0;
  margin-left: -1px;
  background: #ed4438;
  background: linear-gradient(to bottom, rgba(240,70,58,1) 1%,rgba(214,45,33,1) 100%);
  border-radius: 100px 0 0 100px;
}

.heroItem-button-1 a:after {
  width: 30px;
  height: 30px;
  left: 30px;
  top: 50%;
  margin-top: -10px;
  content: '1.';
  color: #fff;
}

.heroItem-button-2 a:after {
  width: 30px;
  height: 30px;
  left: 28px;
  top: 50%;
  margin-top: -10px;
  content: '2.';
  color: #fff;
}

.heroItem-button-3 a:after {
  width: 30px;
  height: 30px;
  left: 28px;
  top: 50%;
  margin-top: -10px;
  content: '3.';
  color: #fff;
}

.slide-shop-now-btn a {
  position: relative;
  display: inline-block;
  margin: 14px 0 0 3px;
  padding: 20px 32px 14px 87px;
  border-radius: 100px;
  background: #fff;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(230,230,230,1) 100%);
  box-shadow: 0 7px 10px rgba(43,11,9,0.4);
  text-decoration: none;
  font-weight: 800;
  font-size: 26px;
  color: #34201f;
}

.slide-shop-now-btn a:before, .slide-shop-now-btn a:after {
  content: '';
  position: absolute;
}

.slide-shop-now-btn a:before {
  width: 66px;
  height: 100%;
  left: 0;
  top: 0;
  margin-left: -1px;
  background: #ed4438;
  background: linear-gradient(to bottom, rgba(240,70,58,1) 1%,rgba(214,45,33,1) 100%);
  border-radius: 100px 0 0 100px;
}

.slide-shop-now-btn a:after {
  width: 30px;
  height: 30px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f291";
  color: #fff;
  font-size: 26px;
}

/*
  doctor
  ---
*/

.heroItem-doctor {
  position: absolute;
  right: 100px;
  bottom: 0;
}
.heroItem-doctor > img {
  max-width: 800px;
  display: block;
}

/*
  sig
*/

.heroItem-doctor-sig {
  position: absolute;
  right: 140px;
  bottom: 120px;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}
.heroItem-doctor-sig > img {
  display: block;
  margin: 0 auto 15px auto;
}

/*
  Slider
  ---
*/

.heroItem_Slider {
  position: relative;
  background: #9b241c url('../img/heroItem.jpg') center center no-repeat;
  background-size: cover;
}

/*
  controls
*/

.heroItem_Slider .bx-controls-direction {
  position: absolute;
  right: 110px;
  top: 160px;
  z-index: 60;
}
.heroItem_Slider .bx-controls-direction a {
  margin-bottom: 15px;
  opacity: 0.4;
}

/* actions */

.heroItem_Slider .bx-controls-direction a:hover {
  opacity: 1;
}

/*
  personItem
  ***
 */

.personItem-inset {
  padding: 68px 100px 38px 450px;
  background: #fff left bottom no-repeat;
  background-size: auto 90%;
  box-shadow: 0 15px 80px rgba(43,11,9,0.15);
  font-size: 16px;
}

/*
  title
  ---
 */

.personItem-title {
  margin-bottom: 37px;
  line-height: 1.35;
  text-transform: uppercase;
  font-size: 40px;
  color: #ee3124;
}
.personItem-title small {
  text-transform: none;
  font-size: 26px;
  color: #26100f;
}

/*
  excerpt
  ---
 */

.personItem-excerpt {
  margin-bottom: 37px;
  line-height: 1.7;
}

/*
  adjusts
  ---
 */

.personItem .link {
  margin-bottom: 37px;
}

/*
  personItem2
  ***
*/

.personItem2-inset {
  text-align: center;
  font-size: 16px;
}

/*
  thumb
  ---
*/

.personItem2-thumb, .personItem2-thumb img {
  display: block;
}
.personItem2-thumb {
  position: relative;
  margin-bottom: 35px;
}
.personItem2-thumb img {
  max-width: none;
  height: 230px;
  margin: 0 auto;
}
.personItem2-thumb img:nth-child(2) {
  position: absolute;
  right: 10px;
  bottom: 5px;
  height: 58px;

}

/*
  title
  ---
*/

.personItem2-title {
  max-width: 225px;
  margin: 0 auto 30px auto;
  line-height: 1.3;
  font-weight: bold;
  font-size: 26px;
  color: #26100f;
}

/*
  desc
  ---
*/

.personItem2-desc {
  margin-bottom: 20px;
  line-height: 1.7;
}

/*
  List
  ---
*/

.personItem2_List {
  padding: 0 50px;
}
.personItem2_List-inset {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0 80px 0;
  text-align: center;
}

/*
  title
  ---
*/

.personItem2_List-title {
  margin: 0 0 50px 25px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
  color: #26100f;
}

/*
  adjust personItem2
*/

.personItem2_List .personItem2 {
  width: 25%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 40px;
  margin-top: 40px;
}
.personItem2_List .personItem2-inset {
  margin: 0 25px;
}

/*
  personItem3
  ***
*/

.personItem3-inset-inset {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 3%;
}
.personItem3.align-left .personItem3-inset-inset {
  padding-left: 0;
  padding-right: 3%;
}

/*
  thumb
  ---
*/

.personItem3-thumb {
  width: 45%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.personItem3-thumb img {
  display: block;
  margin: 0 auto;
}
.personItem3-thumb img:nth-child(2) {
  position: absolute;
  right: 30px;
  bottom: 50px;
}
.personItem3.align-left .personItem3-thumb img:nth-child(2) {
  right: auto;
  left: 30px;
}

/*
  title
  ---
*/

.personItem3-title {
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 40px;
  color: #26100f;
}
/*
  List
  ---
*/

.personItem3_List {
  padding: 0 50px;
}
.personItem3_List-inset {
  max-width: 1250px;
  margin: 0 auto;
  padding: 100px 0 20px 0;
}

/*
  adjust personItem3
*/

.personItem3_List .personItem3 {
  margin-bottom: 100px;
}

/*
  postItem
  ***
 */

.postItem-inset {
  position: relative;
  display: block;
  padding: 50px 50px 25px 50px;
  background-color: #fff;
  text-decoration: none;
  font-size: 14px;
  color: #3c3533;
}
.postItem-inset:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #fff;
}

/* actions */

.postItem-inset:hover {
  box-shadow: 0 7px 10px rgba(43, 11, 9, 0.2);
  color: #26100f;
}
.postItem-inset:hover:before {
  border-color: #efecea;
}

/*
  icon
  ---
 */

.postItem-icon, .postItem-icon span {
  width: 90px;
  height: 90px;
  display: block;
  background: center center no-repeat;
}
.postItem-icon {
  margin: 0 0 25px -7px;
}
.postItem-icon span {
  display: none;
}

/* actions */

.postItem-inset:hover {
  background-position: -1000px -1000px;
}
.postItem-inset:hover .postItem-icon span {
  display: block;
}

/*
  title
  ---
 */

.postItem-title {
  width: 100%;
  min-height: 58px;
  display: table;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 20px;
  color: #26100f;
}
.postItem-title span {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.6;
}
.postItem-title b, .postItem-title strong {
  font-weight: 600;
}

/* actions */

.postItem-inset:hover .postItem-title {
  text-decoration: underline;
  color: #ee3124;
}

/*
  excerpt
  ---
 */

.postItem-excerpt {
  margin-bottom: 25px;
  line-height: 1.8;
}

/*
  adjusts
  ---
 */

.postItem .link.type-button {
  margin-bottom: 25px;
}

/*
  List
  ---
 */

.postItem_List {
  padding: 0 50px;
  font-size: 0;
}
html.category .postItem_List {
  max-width: 1150px;
  position: relative;
  margin: -35px auto 60px auto;
}
.postItem_List-inset {
  margin: 0 -10px;
}

/*
  boxItem
  ***
 */

.boxItem-inset-inset {
  overflow: hidden;
  padding: 35px 40px 15px 40px;
  border: 1px solid #ccc;
  border: 0px;
  background: #fff;
}

/*
  bg
  ---
*/

.boxItem.type-colored.bg-white .boxItem-title {
  background-color: #e8362a;
  color: #fff;
}

/*
  title
  ---
 */

.boxItem-title {
  position: relative;
  overflow: hidden;
  padding: 42px 120px 39px 40px;
  background-color: #fff;
  box-shadow: 0 15px 80px rgba(43,11,9,0.15);
  line-height: 1.3;
  font-weight: 600;
  font-size: 20px;
  color: #26100f;
}
.boxItem.icon-default .boxItem-title {
  padding-right: 80px;
}
.boxItem-title:after {
  content: '';
  width: 90px;
  height: 90px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -45px;
  background: url('../img/icons.png') 100px 100px no-repeat;
}

/*
  icon
 */

.boxItem.icon-default .boxItem-title:after {
  display: none;
}
.boxItem.icon-todo .boxItem-title:after {
  background-position: left -330px;
}
.boxItem.icon-cardio .boxItem-title:after {
  background-position: -90px -330px;
}
.boxItem.icon-patch .boxItem-title:after {
  background-position: -180px -330px;
}
.boxItem.icon-ct .boxItem-title:after {
  background-position: -270px -330px;
}
.boxItem.icon-hands .boxItem-title:after {
  background-position: -720px -420px;
}

/*
  type-colored
  ---
*/

.boxItem.type-colored .boxItem-inset-inset {
  border: none;
}
.boxItem.type-colored.bg-white .boxItem-inset-inset {
  background-color: #fff;
}
.boxItem.type-colored.bg-orange .boxItem-inset-inset {
  background-color: #e8362a;
  color: #fff;
}

/*
  adjust title
*/

.boxItem.type-colored .boxItem-title {
  padding-top: 31px;
  padding-bottom: 27px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 20px;
}
.boxItem.type-colored .boxItem-title b {
  font-weight: bold;
}
.boxItem.type-colored.bg-orange .boxItem-title b {
  color: #e8362a;
}

/*
  adjust format
*/

.boxItem.type-colored.bg-orange .format ul > li:before {
  background-color: #fff;
}

/*
  List
  ---
 */

.boxItem_List {
  margin: 0 -20px;
  font-size: 0;
}

/*
  title
*/

.boxItem_List-title {
  margin: 0 0 40px 20px;
  line-height: 1.3;
  text-transform: uppercase;
  font-size: 40px;
  color: #26100f;
}
.boxItem_List .boxItem + .boxItem_List-title {
  margin-top: 60px;
}

/*
  adjusts
 */

.boxItem_List .boxItem {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 40px;
}
.boxItem_List .boxItem-inset {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px;
}

/*
  adjusts
 */

.postItem_List .postItem {
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}
.postItem_List .postItem-inset {
  margin: 0 10px;
}
.postItem_List .filter {
  margin-bottom: 43px;
}
.postItem_List .pager {
  margin: 35px 0 0 10px;
}

/*
  revItem
  ***
 */

.revItem-inset {
  margin: 0 25px;
  padding: 40px 40px 20px 40px;
  border: 1px solid #e0dbd9;
}

/*
  title
  ---
 */

.revItem-title {
  margin-bottom: 20px;
  line-height: 1.3;
  font-size: 20px;
  color: #26100f;
}

/*
  excerpt
  ---
 */

.revItem-excerpt {
  margin-bottom: 20px;
  line-height: 1.7;
}

/*
  Slider
  ---
 */

.revItem_Slider {
  position: relative;
  margin: 0 -25px;
}

/*
  adjusts
 */

.revItem_Slider .pager, .revItem_Slider .bx-pager {
  margin: 50px 0 0 25px;
}

/*
  boxes
  ***
 */

.boxes {
  font-size: 0;
}
.boxes li {
  width: 20%;
  display: inline-block;
  vertical-align: top;
  margin: 0 -1px -1px 0;
}
.boxes li span {
  position: relative;
  display: block;
  padding: 110px 10px 30px 10px;
  border: 1px solid #ccc;
  line-height: 1.6;
  text-align: center;
  font-size: 16px;
}
.boxes li span:before {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 33px;
  margin-left: -30px;
  background: url('../img/icons.png') 100px 100px no-repeat;
}

/*
  icons
  ---
 */

.boxes li.icon-1 span:before {
  background-position: left -510px;
}
.boxes li.icon-todo span:before {
  background-position: -60px -510px;
}
.boxes li.icon-2 span:before {
  background-position: -120px -510px;
}
.boxes li.icon-drop span:before {
  background-position: -180px -510px;
}
.boxes li.icon-20 span:before {
  background-position: -240px -510px;
}
.boxes li.icon-10 span:before {
  background-position: -300px -510px;
}

/*
  pageHead
  ***
 */

.pageHead {
  width: 100%;
  background: #c3281e url('../img/placeholders/1.jpg') center center no-repeat;
  background-size: cover;
}
html.single-post .pageHead {
  background-image: url('../img/placeholders/post.png');
}
.pageHead:before, html.home .pageHead:after {
  content: '';
  position: absolute;
}
/*.pageHead:before {
  width: 30px;
  height: 60px;
  left: 50%;
  bottom: 30px;
  margin-left: -15px;
  background: url('../img/icons.png') left -30px no-repeat;
} */
html.category .pageHead:before {
  display: none;
}
html.home .pageHead:after {
  left: 50%;
  right: 59px;
  top: 120px;
  bottom: 60px;
  margin-left: 50px;
  border: 1px solid #ed5146;
  border-left: none;
  border-top: none;
}
.pageHead-inset {
  padding: 350px 200px 200px 120px;
  font-size: 20px;
  color: #fff
}
.pageHead-inset-inset {
  max-width: 800px;
}

/*
  title
  ---
 */

.pageHead-title {
  margin-bottom: 36px;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 60px;
}
.pageHead-title b {
  font-weight: 800;
}

/*
  excerpt
  ---
 */

.pageHead-excerpt {
  margin-bottom: 36px;
  line-height: 1.5;
}

/*
  adjust breadcrumbs
  ---
 */

.pageHead .breadcrumbs {
  margin-bottom: 120px;
}

/*
  pageDetail
  ***
 */

.pageDetail {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 50px;
}
.pageDetail-inset {
  padding: 100px 200px 70px 200px;
}

/*
  has-nav
  ---
 */

.pageDetail.has-nav {
  /* TODO */
}
.pageDetail.has-nav .anchorNav {
  float: right;
  margin: -83px 50px 0 0;
}
.pageDetail.has-nav .pageDetail-inset {
  padding-left: 0;
  padding-right: 400px;
}

/*
  adjusts
  ---
 */

.pageDetail .pull {
  margin: 70px -200px 70px -200px;
}
.pageDetail .separator {
  margin: 100px -585px 90px -585px;
}
.pageDetail .personItem {
  margin: 20px 0 120px 0;
}

/*
  priceList
  ***
 */

.priceList {
  max-width: 1150px;
  margin: 0 auto;
  padding: 100px 20px 70px 20px;
}

/*
  nav
  ---
 */

.priceList-nav {
  margin-bottom: 85px;
}
.priceList-nav div {
  width: 100%;
  display: table;
  table-layout: fixed;
}
.priceList-nav div a {
  display: table-cell;
  vertical-align: top;
  padding: 13px 20px 20px 20px;
  border: 1px solid #ccc;
  border-right: none;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #3c3533;
}

.priceList-nav div a.pricelist-icon-red:before {
  content: '';
  width: 90px;
  height: 90px;
  display: block;
  margin: 0 auto 5px auto;
  background:  url('../img/icons-red.png') 100px 100px no-repeat;
}

.priceList-nav div a.pricelist-icon-black:before {
  content: '';
  width: 90px;
  height: 90px;
  display: block;
  margin: 0 auto 5px auto;
  background: url('../img/icons.png') 100px 100px no-repeat;
}

.priceList-nav div a:last-child {
  border-right: 1px solid #ccc;
}

/*
  icon
 */

.priceList-nav div a.icon-tooth:before {
  background-position: -540px -330px;
}
.priceList-nav div a.icon-stethoscope:before {
  background-position: -450px -330px;
}
.priceList-nav div a.icon-doctor:before {
  background-position: -360px -330px;
}
.priceList-nav div a.icon-cardiogram:before {
  background-position: -270px -330px;
}
.priceList-nav div a.icon-ct:before {
  background-position: -180px -330px;
}
.priceList-nav div a.icon-patch:before {
  background-position: -90px -330px;
}
.priceList-nav div a.icon-todo:before {
  background-position: left -330px;
}

.priceList-nav div a.icon-default:before {
 background-position: -630px -420px;
}

.priceList-nav div a.icon-hands:before {
 background-position: -720px -420px;
}

/* actions */

.priceList-nav div a:hover, .priceList-nav div a.is-active {
  color: #ee3124;
}
.priceList-nav div a.is-active {
  background-color: #fff;
  box-shadow: 0 7px 10px rgba(43,11,9,0.2);
  border-color: #fff;
}
.priceList-nav div a.is-active.icon-tooth:before {
  background-position: -540px -630px;
}
.priceList-nav div a.is-active.icon-stethoscope:before {
  background-position: -450px -630px;
}
.priceList-nav div a.is-active.icon-doctor:before {
  background-position: -360px -630px;
}
.priceList-nav div a.is-active.icon-cardiogram:before {
  background-position: -270px -630px;
}
.priceList-nav div a.is-active.icon-ct:before {
  background-position: -180px -630px;
}
.priceList-nav div a.is-active.icon-patch:before {
  background-position: -90px -630px;
}
.priceList-nav div a.is-active.icon-todo:before {
  background-position: left -630px;
}
.priceList-nav div a.is-active.icon-hands:before {
  background-image: url('../img/icons-red.png') !important;
}

/*
  title
  ---
 */

.priceList-title {
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 700;
  color: #26100f;
}

/*
  excerpt
  ---
 */

.priceList-excerpt {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 14px;
}

/*
  adjust format
  ---
 */

.priceList .format {
  margin-top: 40px;
}

/*
  adjust format - table
  ---
 */


.priceList .format table thead tr th:nth-child(2), .priceList .format table thead tr td:nth-child(2) {
  width: 120px;
}
.priceList .format table thead tr th:last-child, .priceList .format table thead tr td:last-child {
  width: 210px;
  position: relative;
  vertical-align: top;
  padding-top: 0;
  background-color: #ee3124;
  border-color: #ee3124 !important;
  text-transform: uppercase;
  font-size: 16px;
}
.priceList .format table thead tr th:last-child:before, .priceList .format table thead tr td:last-child:before {
  content: '';
  height: 20px;
  position: absolute;
  left: 0;
  top: -20px;
  right: -1px;
  background-color: #ee3124;
}
.priceList .format table tbody tr th:last-child, .priceList .format table tbody tr td:last-child {
  background-color: #fff;
  border-left: 1px solid #ccc;
}

/*
  infoPage
  ***
 */

.infoPage {
  padding: 0 50px;
  background: center center no-repeat;
  background-size: cover;
}
.infoPage-inset {
  max-width: 1150px;
  margin: 0 auto;
  padding: 100px 0 80px 0;
}
html.page-template-page-real_care .infoPage.pos-1 {
  background: url('../img/handphone.png') right 20% bottom no-repeat;
  border-bottom: 1px solid #ccc;
}
html.page-template-page-real_care .infoPage.pos-1 .infoPage-inset-inset {
  margin-right: 480px;
}

/*
  align
  ---
 */

.infoPage.align-left .infoPage-inset-inset, .infoPage.align-right .infoPage-inset-inset {
  max-width: 45%;
  max-width: calc(50%);
  float: left;
}
.infoPage.align-left .infoPage-inset-inset {
  float: left;
}
.infoPage.align-right .infoPage-inset-inset {
  float: right;
}

/*
  bg
  ---
 */

.infoPage.bg-default, .infoPage.bg-white {
  background-color: #fff;
}
.infoPage.bg-grey {
  background-color: #efecea;
}
.infoPage.bg-orange {
  background-color: #ee3124;
}

/*
  color
  ---
 */

.infoPage.color-default, .infoPage.color-black {
  color: #3d3d3d;
}
.infoPage.color-white, .infoPage.color-white .format h2, .infoPage.color-white .format h3  {
  color: #fff;
}

/*
  adjusts
  ---
 */

.infoPage .postItem_List {
  margin-top: 50px;
  padding-left: 0;
  padding-right: 0;
}
.infoPage .revItem_Slider {
  margin-top: 25px;
  margin-bottom: 20px;
}

/*
  adjusts
  ---
 */

.infoPage .realCare {
  display: none;
}
.infoPage.tpl-services.align-left {
  position: relative;
}
.infoPage.tpl-services.align-left .realCare {
  width: 600px;
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  margin: 90px 0 0 50px;
}
.infoPage .boxes {
  margin-bottom: 30px;
}

/*
  notice
  ***
 */

.notice {
  padding: 0 50px;
  background-color: #fff;
}
.notice-inset {
  position: relative;
  max-width: 1150px;
  overflow: hidden;
  margin: 0 auto;
  padding: 40px 0 30px 0;
  font-size: 20px;
}
.notice-inset:before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  background: url('../img/icons.png') -300px -30px no-repeat;
}

/*
  date
  ---
 */

.notice-date {
  float: left;
  margin: 0 25px 0 50px;
  line-height: 1.3;
  font-weight: 300;
  color: #ee3124;
}

/*
  title
  ---
 */

.notice-title {
  max-width: 60%;
  float: left;
  overflow: hidden;
  padding-left: 45px;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.3;
  font-weight: 600;
  color: #26100f;
}
.notice-title b {
  margin-left: 50px;
  font-weight: 600;
}

/*
  adjusts
  ---
 */

.notice .link.type-button {
  float: right;
  margin: -16px 0;
}

/*
  insures
  ***
 */

.insures {
  padding: 30px 20px 5px 20px;
  background-color: #302d2c;
  text-align: center;
  font-size: 0;
}
.insures li {
  display: inline-block;
  margin: 0 30px 35px 30px;
}
.insures li a, .insures li img {
  display: block;
}

/* actions */

.insures li a:hover img {
  opacity: 0.7;
}

/*
  register
  ***
 */

.register {
  background: #bb1b12 url('../img/placeholders/2.jpg') center center no-repeat;
  background-size: cover;
}
.register-inset {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  padding: 70px 50px 40px 50px;
  color: #fff;
}
.register-inset-inset {
  width: 40%;
  width: calc(50% - 50px);
  float: left;
  margin: 40px 0;
  position: relative;
}

/*
  title
  ---
 */

.register-title {
  margin: 0 0 30px -1px;
  line-height: 1.3;
  text-transform: uppercase;
  font-size: 40px;
}

/*
  excerpt
  ---
 */

.register-excerpt {
  margin-bottom: 35px;
  line-height: 1.7;
}

/*
  address
  ---
 */

.register-address {
  margin-bottom: 30px;
  line-height: 1.8;
  font-style: normal;
  font-size: 14px;
}
.register-address b {
  font-size: 16px;
}

/*
  links
  ---
 */

.register-links {
  margin: 0 0 15px 4px;
}
.register-links li {
  position: relative;
  display: inline-block;
  margin: 0 25px 30px 0;
  background: rgb(255,255,255);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
  box-shadow: 0 7px 10px rgba(43,11,9,0.4);
  border-radius: 100px;
}
.register-links li:before, .register-links li:after {
  content: '';
  position: absolute;
}
.register-links li:before {
  width: 60px;
  height: 100%;
  left: -4px;
  top: 0;
  background: rgb(239,70,58);
  background: linear-gradient(to bottom, rgba(239,70,58,1) 0%,rgba(215,45,33,1) 100%);
  border-radius: 100px 0 0 100px;
}
.register-links li:after {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 13px;
  top: 50%;
  margin-top: -15px;
  background: url('../img/icons.png') 100px 100px no-repeat;
}
.register-links li a {
  position: relative;
  display: block;
  padding: 19px 30px 17px 80px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 16px;
  color: #ee3124;
}
.register-links li a[href*="http"] {
  padding-right: 55px;
}
.register-links li a[href*="http"]:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -15px;
  background: url('../img/icons.png') -60px top no-repeat;
}

/*
  icons
 */

.register-links li.icon-tel:after {
  background-position: left top;
}
.register-links li.icon-person:after {
  background-position: -120px top;
}
.register-links li.icon-email:after {
  background-position: -150px top;
}

/* actions */

.register-links li:hover {
  background: #fff;
}
.register-links li:hover a {
  color: #26100f;
}

/*
  socials
  ---
 */

.register-socials {
  margin-bottom: 15px;
  font-size: 0;
}
.register-socials li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px 15px 0;
}
.register-socials li a {
  width: 48px;
  height: 48px;
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  background: linear-gradient(to bottom,rgba(255,255,255,1) 0,rgba(229,229,229,1) 100%);
  box-shadow: 0 7px 10px rgba(43,11,9,0.4);
  border-radius: 100%;
  white-space: nowrap;
  text-indent: 200%;
  font-size: 16px;
  color: #fff;
}
.register-socials li a:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  background: url('../img/icons.png') 100px 100px no-repeat;
}

/*
  icon
 */

.register-socials li.icon-fb a:after {
  background-position: -240px -30px;
}
.register-socials li.icon-insta a:after {
  background-position: -150px -30px;
}

/* actions */

.register-socials li a:hover {
  box-shadow: 0 0 15px rgba(43,11,9,0.4);
}
.register-socials li.icon-fb a:hover:after {
  background-position: -180px -30px;
}
.register-socials li.icon-insta a:hover:after {
  background-position: -90px -30px;
}

/*
  map
  ---
 */

.register-map {
  width: 47%;
  position: absolute;
  top: 80px;
  bottom: 80px;
  right: 0;
}
/*
.register-map:before, .register-map:after, .register-map:before, .register-map img {
  box-shadow: 0 7px 10px rgba(43, 11, 9, 0.2);
}
.register-map:before, .register-map:after {
  content: '';
  position: absolute;
  background-color: #fff;
}
.register-map:before {
  left: 20px;
  top: 100%;
  right: 20px;
  bottom: -20px;
  margin-top: 10px;
}
.register-map:after {
  left: 10px;
  top: 100%;
  right: 10px;
  bottom: -10px;
}
*/
.register-map img {
  position: relative;
  z-index: 1;
  display: block;
}
.register-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/*
  logos
  ---
 */

.register-logos {
  padding: 30px 20px 5px 20px;
  background-color: #b72016;
  background-color: rgba(183, 32, 22, 0.7);
  border-top: 1px solid #ed5146;
  text-align: center;
  font-size: 0;
}
.register-logos li {
  display: inline-block;
  margin: 0 30px 35px 30px;
}
.register-logos li a, .register-logos li img {
  display: block;
}

/* actions */

.register-logos li a:hover img {
  opacity: 0.7;
}

/*
  registerForm
  ***
*/

.registerForm {
  padding: 0 130px;
}
.registerForm-inset {
  max-width: 1150px;
  margin: 0 auto;
  padding: 90px 0 50px 0;
}

/*
  title
  ---
*/

.registerForm-title {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
  color: #26100f;
}

/*
  excerpt
  ---
*/

.registerForm-excerpt {
  margin-bottom: 35px;
  line-height: 1.6;
}

/*
  section
  ---
*/

.registerForm-section {
  margin-top: 30px;
}

/*
  is-first
*/


.registerForm-section.is-first {
  margin-top: 0;
}

/*
  title
*/

.registerForm-section-title {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 26px;
  color: #26100f;
}

/*
  excerpt
*/

.registerForm-section-excerpt {
  margin: -20px 0 30px 0;
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: #868482;
}

/*
  foot
  ---
*/

.registerForm-foot {
  overflow: hidden;
  margin: 40px 0 65px 0;
  padding: 15px;
  padding-right: 40px;
  /*background-color: #faf9f9;*/
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 4px rgba(47,49,54,0.15);
}

/*
  adjust field
*/

.registerForm-foot .field {
  float: left;
  margin: 8px 0 0 10px;
}

/*
  adjust link
*/

.registerForm-foot .link {
  float: right;
}

/*
  adjust flashMessage + CF7
*/

.registerForm-foot + .flashMessage, .registerForm-foot + .wpcf7-response-output {
  border-radius: 100px;
}

.webMain {
  position: relative;
}

/*
  webHead
  ***
 */

.webHead {
  position: relative;
  margin: 0 60px -95px 0;
  z-index: 999999;
}
.webHead:before {
  content: '';
  height: 1px;
  position: absolute;
  left: 0;
  right: 160px;
  bottom: 0;
  background-color: #ed5146;
}

/*
  adjust link
  ---
*/

.webHead .link.type-button {
  float: left;
  margin: 24px 0 0 8px;
}

/*
  logo
  ---
 */

.webHead-logo {
	float: right;
	margin-top: 40px;
	margin-left: 25px;
}

.webHead-logo img {
	display: block;
	width: 165px;
}

/*
  nav
  ---
 */

.webHead-nav {
  float: left;
  padding-left: 29px;
  font-size: 0;
}

.webHead-nav a {
  display: inline-block;
  padding: 45px 20px 40px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

/* actions */

.webHead-nav a:hover, .webHead-nav a.is-active {
  color: #ff8880;
}

/*
  adjust burger
  ---
 */

.webHead .burger {
  float: right;
  margin-top: 17px;
  display: none;
}

/*
  webFoot
  ---
 */

.webFoot {
  margin-top: -1px;
  padding: 25px 20px;
  border-top: 1px solid #e0dbd9;
  text-align: center;
  font-size: 14px;
  color: #6d6d6d;
}

/*
  format
  ---
 */

.webFoot p {
  line-height: 1.6;
}
.webFoot p span {
  margin-left: 35px;
}
.webFoot p span img {
  display: inline-block;
  position: relative;
  bottom: -4px;
  margin-left: 1px;
}
.webFoot p span:last-child img {
  margin-bottom: -5px;
}

/* Flexbox */
.posts-wrapper-flex {
  display: flex;
}

.postItem_List .postItem {
  display: flex;
}

.homepage-post-cat-wrapper .postItem_List-inset {
  display: flex !important;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .posts-wrapper-flex {
    display: initial;
  }

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

  .postItem_List .postItem a {
    min-height: 400px;
  }

  .homepage-post-cat-wrapper .postItem_List-inset .postItem:last-child {
    display: none;
  }
}

@media screen and (max-width: 767px) {

  .posts-wrapper-flex {
    display: block;
  }

  .homepage-post-cat-wrapper .postItem_List-inset {
    display: block !important;
  }

}

.pricelist-table .ta-r {
  text-align: right;
}

.pricelist-table .true-care-col {
  width: 210px;
  max-width: 210px;
}

.pricelist-table .registered-patient-col {
  width: 120px;
  max-width: 120px;
}

.pricelist-table .visitor-col {
  width: 110px;
  max-width: 110px;
}

.priceList {
  padding: 100px 20px 20px 20px;
}

.realCare .mobile-price {
  display: none;
}

@media screen and (max-width: 800px) {

  .realCare .mobile-price {
    display: block;
    text-align: center;
    font-size: 20px;
    padding-top: 7px;
    padding-bottom: 5px;
  }

  .realCare .mobile-price strong {
    color: #c3180b;
  }

  .realCare.type-simple {
    padding: 20px 0px 0px 0px;
  }

  .priceList {
    padding-bottom: 0px;
  }

}

.homepage-second-slider li {
  height: 632px ! important;
}

.webHead-nav a {
  padding: 40px 25px 33px 25px;
}

.heroItem_Slider {
  min-height: auto;
}

@media screen and (min-width: 1101px) and (max-width: 1200px) {
  nav.webHead-nav a {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media screen and (min-width: 901px) and (max-width: 1100px) {
  nav.webHead-nav a {
    padding-right: 6px;
    padding-left: 6px;
  }
}

@media screen and (min-width: 1101px) and (max-width: 1199px) {
  span.carret-down {
    right: 0px!important;
  }

  .sl-inner-menu li:last-child a {
    padding-right: 15px!important;
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {

  nav.webHead-nav .sl-inner-menu li:last-child a {
    padding-right: 11px;
  }
  span.carret-down {
    right: 0px!important;
  }
  .sl-inner-menu {
    margin-top: 0px !important;
  }
}

@media screen and (min-width: 901px) and (max-width: 959px) {
  .sl-inner-menu {
    margin-top: 0px !important;
  }

  span.carret-down {
    right: 0px!important;
  }

  nav.webHead-nav .sl-inner-menu li:last-child a {
    padding-right: 11px;
  }
}

@media screen and (min-width: 850px) and (max-width: 900px) {

  span.carret-down {
    top: 45% !important;
    right: 0px !important;
  }
}

@media screen and (max-width: 850px) {
  nav.webHead-nav li:last-child a {
    float: none;
    display: block;
    text-align: center;
  }
}

.service-row-wrapper {
  display: flex;
}

.boxItem_List .boxItem {
  display: flex;
}

.boxItem-inset-inset {
  height: calc(100% - 150px);
}

.second-service-headline {
  margin-top: 30px;
}

@media screen and (max-width: 901px) {
  .boxItem_List .boxItem {
    display: block;
    width: 100%;
  }

  .service-row-wrapper {
    display: block;
  }
}


.priceList {
  margin-bottom: 50px;
}

.field_Group .field.size-25 {
  width: 25%;
}

.registerForm-foot {
  position: relative;
  padding-top: 20px;
  padding-left: 15px;
}

.registerForm-foot button {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

.input {
  height: 54px;
  line-height: 54px;
  padding: 0px 20px 0px 20px;
}

select option {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 900px) {
  .field_Group .field.size-25 {
    width: 100%;
  }
  .input {
    height: 54px;
    line-height: 54px;
    padding: 0px 65px 0px 13px!important;
  }

  .registerForm-foot button {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  input[type="checkbox"].input {
    padding: 0px!important;
  }
}

.wpcf7-response-output-gdpr {
  position: relative;
  margin-bottom: 30px;
  padding: 11px 25px 11px 45px;
  box-shadow: 0 3px 4px rgba(47,49,54,0.15);
  border-radius: 3px;
  line-height: 1.6;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: #ee3124;
}

.wpcf7-response-output-gdpr::before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -16px;
  background: url('../img/icons.png') 1000px 1000px no-repeat;
  background-position: -240px top;
}

.flashMessage.type-danger, .wpcf7-response-output.wpcf7-validation-errors, .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7-response-output.wpcf7-acceptance-missing {
  background: #ee3124;
}

.field-error, .field .wpcf7-not-valid-tip {
 background: #ee3124;
}

.registerForm-foot+.flashMessage, .registerForm-foot+.wpcf7-response-output {
  border-radius: 4px;
}

@media screen and (min-width: 901px) and (max-width: 1199px) {
  .field_Group .field.md-size-50 {
    width: 50% !important;
  }
}

@media screen and (max-width: 1199px) {
  .registerForm-foot {
    padding-left: 15px;
  }

  .registerForm-foot button {
    right: 15px;
  }

}
@media screen and (max-width: 900px) {
  .registerForm-foot {
    box-shadow: none;
  }

  .registerForm-foot p {
    width: 100%;
  }

  .registerForm-foot .link {
    float: left;
    margin-left: 25px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .registerForm-foot span.wpcf7-list-item-label {
    margin-top: 0px!important;
    margin-bottom: 10px;
    float: right;
    width: 92%;
    display: block;
    text-align: left;
  }

  .registerForm-foot span.wpcf7-form-control-wrap,
  .registerForm-foot span.wpcf7-form-control,
  .registerForm-foot span.wpcf7-list-item,
  .registerForm-foot span.wpcf7-list-item label {
    width: 100% !important;
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .registerForm-foot span.wpcf7-list-item-label {
    width: 88%;
  }
}

@media screen and (max-width: 600px) {
  .registerForm-foot span.wpcf7-list-item-label {
    width: 86%;
  }
}

@media screen and (max-width: 360px) {
  .registerForm-foot span.wpcf7-list-item-label {
    width: 84%;
  }
}

@media screen and (min-width: 1200px) {
  .realCare-services {
    display: flex!important;
  }
}

.realCare-services li span {
  font-size: 12px;
}

.form-long-description {
  float: right;
  width: calc(100% - 44px);
  line-height: 26px;
}

select#insurance {
  padding-right: 60px;
}

.form-clearfix {
  display: block;
  clear: both;
  overflow-x: hidden;
  overflow-y: hidden;
}

.w-100 {
  width: 100%;
}


.w-100 input[type="checkbox"]{
  float:left;
}

.registerForm-foot span.wpcf7-list-item-label {
  margin-top: 5px;
}

/*
.realCare-title b,
.boxItem.type-colored.bg-orange .boxItem-title b,
.realCare .mobile-price strong,
.realCare-prices li.first strong {
  color: #e2533e;
}

.boxItem.type-colored.bg-white .boxItem-title,
.boxItem.type-colored.bg-orange .boxItem-inset-inset {
  background: #e2533e;
}
*/

.realCare-prices li.first span.curency {
  font-weight: bold;
  padding-right: 7px;
}


@media screen and (max-width: 900px) {
  .mobile-price span.curency {
    font-size: 12px;
  }

  .realCare .mobile-price {
    display: block;
    text-align: center;
    font-size: 20px;
    padding-top: 7px;
    padding-bottom: 5px;
  }

  .realCare .mobile-price strong {
    color: #ee3124;
  }

}

.text-red {
  color: #ee3124;
}

.refs-wrapper a {
  width: 48px;
  height: 48px;
  position: relative;
  overflow: hidden;
  display: block;
  background-color: #fff;
  border-radius: 100%;
  white-space: nowrap;
  text-indent: 200%;
}
.refs-wrapper a:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  background: url('../img/icons.png');
}
.refs-wrapper a.bx-prev:after {
  background-position: -270px -30px;
}
.refs-wrapper a.bx-next:after {
  background-position: -60px top;
}

.companyForm br {
  content: '';
}

.companyForm input {
  height: 52px;
  line-height: 52px;
}

.companyForm textarea {
  padding: 10px 25px;
  height: 125px;
  resize: none;
}

.companyForm .input[type="checkbox"]+span,
.companyForm .input[type="radio"]+span {
  color: #fff;
  padding-top: 4px;
}

.companyForm a {
  color: #fff;
}

.mobile-lang-handler {
  display: none;
}



@media screen and (max-width: 850px) {
  .mobile-lang-handler {
    display: block;
  }

  .mobile-lang-handler a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    float: right;
    margin-top: 32px;
    margin-right: 20px;
  }

  nav.webHead-nav a:last-child {
    display: none;
  }
}

/* TRUE DENTIST BANNER - start */

.true-dentist-banner-bg {
  background-image: url('../img/skutecny-zubar-bg-white.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: block;
  height: 120px;
  width: 100%;
  border-top: 1px solid #dedede;
}

.true-dentist-banner-bg-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0);
  transition: all .5s ease;
}

.true-dentist-banner-content-wrapper {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  overflow: hidden;
}

.true-dentist-banner-content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-weight: 300;
  font-size: 30px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
}

.true-dentist-banner-content-wrapper h3 {
  margin-top: 5px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 21px;
  color: #000;
  z-index: 9999;
}

.true-dentist-banner-content-wrapper h2 b,
.true-dentist-banner-content-wrapper h3 b {
  color: #3f9dd8;
  font-weight: 700;
}

.true-dentist-banner-link:hover .true-dentist-banner-bg-fade {
  background: rgba(255,255,255, .5);
  transition: all .5s ease;
}

.true-dentist-banner-link:active,
.true-dentist-banner-link:focus {
  outline: none;
}

.true-dentist-banner-link:hover .true-dentist-banner-bg {
  background: #fafafa;
  background-image: url('../img/skutecny-zubar-bg-white.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all .2s ease;
}

.sl-outer-menu li {
  display: inline-block;
  position: relative;
}

.sl-inner-menu {
  display: none;
  position: absolute;
  margin-top: 5px;
}


.sl-inner-menu li {
  display: block;
}

.sl-inner-menu li a {
  background: rgba(0,0,0,.7);
  padding-top: 20px;
  padding-bottom: 20px;
  width: 200px;
}

.sl-inner-menu li a:hover {
  background: rgba(0,0,0,.9);
  color: #fff;
}

.sl-inner-menu li:last-child {
  float: none;
}

.sl-inner-menu li:last-child a {
  padding-right: 25px;
}

span.carret-down {
  background: url(../img/carret-down.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  display: inline-block;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 48%;
  right: 8px;
}

.sl-outer-menu a:hover span.carret-down,
.sl-outer-menu a.is-active span.carret-down {
  background: url(../img/carret-down-active.svg);
}

.companyLogoSlider .bx-viewport {
  padding-top: 50px;
  padding-bottom: 50px;
}

#reviewswrapper {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  margin-bottom: 90px;
}

#reviewswrapper h2.realCare-title {
  text-align: center;
}

#reviewswrapper .review-cta-text {
  text-align: center;
  font-size: 18px;
}

.ref-box-wrapper {
  display: flex;
}


#reviewswrapper .ref-box-item {
  display: flex;
  width: 180px;
  padding-left: 4px;
  padding-right: 4px;
  vertical-align: top;
}

#reviewswrapper .ref-box-item .ref-box-inner {
  position: relative;
  display: block;
  background: #fff;
  text-decoration: none;
  color: #3c3533;
  width: 180px;
  height: 180px;
  box-shadow: 0 4px 10px rgba(43,11,9,0.15);
  text-align: center;
}

#reviewswrapper .ref-box-item .ref-box-inner img {
  width: 60%;
  margin-top: 30px;
}

#reviewswrapper .ref-btn-wrapper {
  text-align: center;
}

#reviewswrapper .ref-btn-wrapper a.type-button {
  background: none;
  color: #ee3124;
  border: 2px solid #ee3124;
  font-weight: 400px;
}

.business-register-wrapper h2.register-title {
  text-align: center;
}

.business-register-wrapper .register-excerpt {
  font-size: 20px;
  font-weight: 400;
}

.hp-business-banner-wrapper {
  display: block;
  width: 100%;
  background: #fff;
}

.hp-business-banner-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0px;
}

.companyLogoSlider .bx-controls .bx-prev {
  position: absolute;
  left: -75px;
  top: 50%;
  transform: translateY(-10%);
}

.companyLogoSlider .bx-controls .bx-next {
  position: absolute;
  right: -75px;
  top: 50%;
  transform: translateY(-10%);
}

.true-dentist-logo-wrapper img {
  margin-top: 25px;
  height: 70px;
  margin-bottom: 25px;
}

.swal2-popup {
  border-radius: 0px !important;
}

.swal2-popup .swal2-styled:focus {
  box-shadow: none !important;
}

.swal2-popup .swal2-styled.swal2-confirm {
  border-radius: 3px!important;
}


.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  background-color: #c0392b !important;
  background-color: #ee3124 !important;
}

.swal2-icon.swal2-error {
  border-color: #c0392b !important;
  border-color: #ee3124 !important;
}


.swal2-popup #swal2-content {
  line-height: 26px;
  font-size: 18px !important;
  font-weight: 100 !important;
  color: #333 !important;
}

.swal2-popup .swal2-title {
  color: #000 !important;
}

.swal2-popup .swal2-styled.swal2-confirm {
  background: #ee3124 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: #27ae60 !important;
}

@media screen and (min-width: 740px) {
  .col-sm-8 {
    width: 66.667%;
    display: inline-block;
    float: left;
  }

  .col-sm-4 {
    float: right;
    width: 33.33%;
    display: inline-block;
    text-align: right;
  }
}

@media screen and (max-width: 1099px) {
  .company-services-wrapper .realCare-inset {
    padding-right: 80px;
  }
}

@media screen and (max-width: 1099px) {
  .company-services_Slider .bx-controls-direction a.bx-prev {
    left: -25px;
  }

  .company-services_Slider .bx-controls-direction a.bx-next {
    right: -25px;
  }

  .company-services li span {
    padding-left: 25px;
    padding-right: 25px;
  }

  .company-services-wrapper {
    height: 444px;
    overflow-y: hidden;
  }
}

@media screen and (max-width: 800px) {
  .company-services-wrapper .realCare-inset {
    padding-right: 20px;
  }

  .company-services_Slider .bx-controls-direction a.bx-prev {
    display: none;
  }

  .company-services_Slider .bx-controls-direction a.bx-next {
    right: 4px;
  }

  .company-services-wrapper .realCare-inset {
    height: 372px;
    overflow-y: hidden;
  }

  .company-services_Slider .bx-controls-direction a {
    top: 87px;
  }
}

.business-video-h2 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-top: 75px;
  font-size: 40px;
  text-transform:uppercase;
}

.business-video-h2 span {
  font-weight: 300;
}

.video-play-btn-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 100px;
  width: 100%;
  text-align: center;
}

.video-cta-text {
  padding-top: 220px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  font-size: 24px;
}


@media screen and (max-width: 800px) {
  .companyLogoSlider {
    margin-left: auto;
    margin-right: auto;
  }

  .companyLogoSlider .bx-wrapper {
    width: 190px;
    max-width: 190px;
    max-height: 280px;
    overflow-y: hidden;
    margin-left: auto;
    margin-right: auto;
  }

  .companyLogoSlider .bx-controls .bx-next {
    right: 10px;
  }

  .companyLogoSlider .bx-controls .bx-prev {
    left: 10px;
  }

  .companyForm input {
    padding-right: 15px !important;
  }

  .companyForm textarea {
    padding: 10px 15px!important;
  }
  .businessForm-section .field {
    width: 100% !important;
  }

  .businessForm-foot {
    padding-bottom: 30px;
  }

  .homepage-video-fade h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .business-video-h2 {
    font-size: 25px;
  }

  .heroItem-company a {
    margin-bottom: 25px;
  }
}


@media screen and (min-width: 740px) and (max-width: 768px) {
  .true-dentist-banner-content-wrapper {
    padding: 0px 26px;
  }
  .true-dentist-banner-content-wrapper h2 {
    font-size: 22px !important;
  }

  .true-dentist-banner-bg {
    height: 134px !important;
  }

  .true-dentist-logo-wrapper img {
    height: 52px!important;
  }

  .true-dentist-logo-wrapper img {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .companyLogoSlider .bx-viewport {
    max-width: 617px!important;
    width: 617px !important;
  }

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


  .companyLogoSlider .bx-controls .bx-next {
    right: 40px;
  }

  .companyLogoSlider .bx-controls .bx-prev {
    left: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {

  .company-services_Slider .bx-wrapper {
    padding-right: 130px;
  }

  .company-services_Slider .bx-controls-direction a.bx-next {
    right: 30px;
  }
}

@media screen and (max-width: 768px) {
  .homepage-video-fade h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

.businessForm-wrapper .wpcf7-not-valid-tip {
  display: none;
}

.companyForm .wpcf7-response-output {
  display: none !important;
}

.hp-business-left {
  width: 75%;
  float: left;
}

.hp-business-right {
  width: 25%;
  float: right;
  padding-top: 85px;
}

.hp-business-cols {
  clear: both;
  overflow: hidden;
  display: block;
}

.hp-business-right a {
  width: 248px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hp-business-cols {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hp-business-left {
    width: 100%;
    text-align: left;
    float: none;
  }

  .hp-business-right {
    width: 100%;
    text-align: left;
    float: none;
    padding-top: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1099px) {
  .hp-business-cols {
    padding-right: 50px;
    padding-left: 50px;
  }

  .true-dentist-banner-content-wrapper h2 {
    font-size: 26px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .hp-business-cols {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.swal2-icon {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #27ae60!important;
}

@media screen and (max-width: 333px) {
  .mobile-english-height {
    height: 275px !important;
  }
}

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

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

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

.shopPage-inset {
  padding-top: 100px;
  padding-bottom: 70px;
}
.strikethrough-diagonal {
  position: relative;
  padding: 7px;
  color: #333;
}
.strikethrough-diagonal:before {
  position: absolute;
  content: "";
  left: 0;
  top: 45%;
  right: 0;
  border-top: 1px solid;
  border-color: inherit;
  -webkit-transform: skewY(-10deg);
  -moz-transform: skewY(-10deg);
  transform: skewY(-10deg);
}

.shop-item-buy-btn {
  display: block;
  background: #ee3124;
  color: #fff;
  width: 200px;
  margin-top: 20px;
  padding: 15px 25px;
  float: right;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.shop-item-buy-btn:hover {
  background: #C3180B;
  color: #fff;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-black {
  color: #000;
}

.shop-item {
  margin-bottom: 50px;
}

.remodal-close {
  left: auto !important;
  right: 5px;
  top: 5px;
}

.modal-headline {
  font-size: 36px;
  margin-top: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.modal-p {
  margin-bottom: 20px;
}

.modal-input-wrapper-50 {
  padding-top: 7px;
  padding-bottom: 7px;
  width: 50%;
  display: inline-block;
}

.modal-input-wrapper-40 {
  padding-top: 7px;
  padding-bottom: 7px;
  width: 40%;
  display: inline-block;
}

.modal-input-wrapper-20 {
  padding-top: 7px;
  padding-bottom: 7px;
  width: 20%;
  display: inline-block;
}

.modal-input-wrapper-100 {
  padding-top: 7px;
  padding-bottom: 7px;
  width: 100%;
  display: inline-block;
}

.modal-form * {
  box-sizing: border-box;
}

.modal-form label {
  display: none;
}

.modal-form input {
  max-width: 100%;
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 3px 4px rgba(47,49,54,.15);
}

.modal-input-checkbox {
  margin-top: 15px;
}

.modal-form .modal-input-checkbox label {
  display: block;
}

/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.modal-form .pr-7 {
  padding-right: 7px;
}

.modal-form .pl-7 {
  padding-left: 7px;
}

.modal-receiver-purchase,
.modal-company-purchase {
  margin-top: 0px;
  margin-bottom: 0px;
}

.modal-select-receiver
.modal-select-company {
  margin-bottom: 5px;
}

.modal-shop-receiver-section,
.modal-shop-company-section {
  display: none;
}

.modal-product-table th,
.modal-product-table td {
  line-height: 26px;
  padding-bottom: 7px;
}

.modal-product-table th {
  padding-right: 15px;
}


.remodal.top-offer-modal {
  max-width: 1000px!important;
}

.remodal-wrapper {
  padding: 0px !important;
}

.remodal.shop-now-modal {
  max-width: 100% !important;
  width: 100%!important;
  min-height: 100%!important;
  margin-bottom: 0px !important;
}

.modal-left-part {
  width: 50%;
  padding-right: 15px;
}

.modal-right-part {
  width: 50%;
  padding-left: 15px;
}

.modal-content {
  display: flex;
}

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

.modal-input-checkbox .form-long-description {
  text-align: left;
  padding-top: 4px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modal-p {
  line-height: 28px;
}

.modal-product-buy h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.modal-right-part h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.modal-input-wrapper-100 button[type="submit"] {
  width: 50%;
  min-width: 300px;
  float: right;
  background: #ee3124;
  border: 1px solid #ee3124;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 3px 4px rgba(47,49,54,.15);
}

.modal-input-wrapper-100 button[type="submit"] svg {
  margin-right: 15px;
}

.modal-input-wrapper-50 input[type="text"]:disabled {
    background: #fff;
}

.modal-input-wrapper-100 input[type="text"]:disabled {
    background: #fff;
}

.modal-input-wrapper-100 input[type=text].has-error,
.modal-input-wrapper-50 input[type=text].has-error {
  border-color: #ee3124 !important;
}

.modal-input-wrapper-100 button[type="submit"]:hover {
  background: #c3180b;
  border: 1px solid #c3180b;
  color: #fff;
}

.modal-input-wrapper-100 button[type="submit"]:disabled {
    background: #aaa;
    border-color: #aaa;
}

#shop-tabs * {
  box-sizing: border-box;
}

#shop-tabs {
  width: 100%;
  padding-right: 2px;
  margin-top: 30px;
  margin-bottom: 40px;
  list-style: none;
  overflow: hidden;
}

#shop-tabs a {
  cursor:pointer;
}

#shop-tabs li:before {
  display: none;
}

#shop-tabs li {
  float:left;
  list-style: none;
  width: 20%;
  padding: 0px;

  outline:none;
}

#shop-tabs li:first-child a {
  border-left: 1px solid #ccc;
}

#shop-tabs li a {
  padding: 25px;
  height: 100%;
  display: block;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  background: #fff;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #ee3124;
  text-decoration: none;
  line-height: 22px;
  outline: none;
  box-shadow: 0 2px 2px rgba(43,11,9,.2);
}

#shop-tabs li a.inactive{
  padding: 25px;
  font-weight: 600;
  text-decoration: none;
  color: #3c3533;
  text-transform: uppercase;
  background: #efecea;
  outline: none;
  box-shadow: none;
}

#shop-tabs li a.inactive:hover {
  color: #ee3124;
  outline: none;
}


.cycle-navigation {
  position: absolute;
  top: 50%;
  z-index: 150;
  font-size: 60px;
  width: 100%;
}

.cycle-nav-left {
  position: absolute;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  left: 30px;
}

.cycle-nav-right {
  position: absolute;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  right: 30px;
}

.cycle-nav-left:hover {
  color: rgba(255,255,255,1);
}

.cycle-nav-right:hover {
  color: rgba(255,255,255,1);
}

.top-offer-modal h2 {
  color: #000;
  font-size: 36px;
  margin-bottom: 27px;
}

.top-offer-right-part h3 {
  margin-top: 10px;
  font-size: 22px;
  margin-bottom: 15px;
}

.top-offer-right-part p {
  font-size: 16px;
  line-height: 30px;
}

.top-offer-price-wrapper .previous-price {
  color: #777;
}

.top-offer-price-wrapper .new-price {
  margin-left: 20px;
  font-size: 30px;
  font-weight: 700;
}

.top-modal-countdown-wrapper {
  font-size: 20px;
}

.top-modal-countdown-text {
  color: #000;
  font-weight: 700;
}

.top-modal-countdown-expired-text {
  font-weight: 700;
}

.top-offer-buy-btn {
  background: #ee3124;
  color: #fff;
  display: block;
  float: right;
  text-align: left;
  width: 200px;
  padding: 12px 25px;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
}

.top-offer-buy-btn:hover {
  background: #c3180b;
  color: #fff;
}

.true-care-buy-now {
  float: right;
  width: 100%;
  padding: 15px 25px;
  text-align: center;
  background: #ee3124;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.true-care-buy-now:hover {
  background: #c3180b;
  color: #fff;
}

.realCare-pay-box * {
  box-sizing: border-box;
}

.top-offer-prices-wrapper {
  padding-top: 8px;
  display: inline-block;
  float: left;
  text-align: left;
  width: 50%;
}

.top-offer-modal-buy-wrapper {
  display: inline-block;
  float: right;
  width: 50%;
}

.top-offer-buy-btn i {
  float: left;
}


.top-offer-buy-btn span {
  float: right;
  text-transform: uppercase;
  line-height: 20px;
}

#countdown-modal-offer span {
  margin-left: 3px;
}

.top-offer-modal-expired {
  display: none;
}

.top-offer-modal-buy-expired-txt {
  display: none;
  padding-top: 13px;
}

.shop-top-offer-expired {
  display: none;
}

.shop-top-offer-countdown {
  font-weight: 300;
}

.shop-top-offer-countdown-text {
  font-weight: 700;
}

.shop-top-offer-countdown-wrapper {
  font-weight: 700;
  padding-bottom: 25px;
  font-size: 20px;
  text-align: center;
}

.shop-top-offer-countdown-text {
  color: #000;
}

#countdown-shop-top-offer span {
  margin-left: 3px;
}

.shop-top-offer-buy-expired-txt {
  display: none;
  width: 215px;
  padding-top: 30px;
}

.shop-modul-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0px;
}

.shop-modul-title {
  margin-bottom: 25px;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
  color: #26100f;
  text-align: center;
}

.shop-modul-title b {
  color: #ee3124;
}

.shop-modul-wrapper {
  width: 100%;
  height: 250px;
  background: #fff;
  display: block;
  clear: both;
  height: auto;
}

.shop-modul-product-item {
  width: 33.3%;
  text-align: center;
  vertical-align: top;
  position: relative;
  padding-bottom: 60px;
}

.shop-modul-product-headline {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 30px;
  display: block;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  padding: 0px 15px;
}

.shop-modul-product-headline.mb-10 {
  margin-bottom: 10px;
}

p.shop-modul-product-slogan {
  margin-bottom: 10px;
}

.shop-modul-price-wrapper {
  width: 300px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.shop-modul-price-wrapper .shop-modul-price {
  width: 50%;
  display: inline-block;
  text-align: left;
  float: left;
  padding-top: 32px;
}

.shop-modul-buy {
  width: 50%;
  display: inline-block;
  float: right;
}

.shop-modul-buy-product i,
.shop-modul-buy-product svg {
  float: left !important;
  margin-top: 1px;
}

.shop-modul-buy-product span {
  float: right;
  margin-top: 2px;
}
.shop-modul-product-text {
  line-height: 26px;
  display: block;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.shop-modul-products-wrapper {
  margin-top: 50px;
  display: flex;
}

.shop-modul-product-photo {
  width: 300px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
}

.shop-modul-buy-product {
  background: #ee3124;
  color: #fff;
  display: block;
  float: right;
  text-align: center;
  width: 100%;
  padding: 12px 15px;
  text-transform: uppercase;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
}

.swal2-container {
  z-index: 9999998 !important;
  background: rgba(0,0,0,.7) !important;
}
.swal2-show {
  z-index: 9999999 !important;
}

.shop-now-modal .remodal-close {
  top: 15px;
  right: 15px;
}

.remodal-close:before {
  font-size: 45px;
}


.shop-modul-buy-product:hover {
  background: #c3180b;
  color: #fff;
}

.shop-modul-real-price {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  display: block;
  padding-bottom: 5px;
}

.infoPage-inset .realCare-excerpt {
  width: 100% !important;
}

.infoPage-inset .real-care-buy-now {
  display: none;
}

.main-menu-lang {
	float: right;
}

.main-menu-lang li {
  display: inline;
  height: 94px;
}

.main-menu-lang a {
  color: #fff;
  text-decoration: none;
  padding: 43px 25px 30px 25px;
  font-weight: 600;
  display: inline-block;
}

.main-menu-lang a:hover {
  color: #ff8880;
}

.slide-product-item {
  width: 100%;
  min-height: 810px;
   color: #fff;
   position: relative;
   background-size: cover !important;
   background-position: center center !important;
}

.slide-product-item-fade {
  background: rgba(238,49,36,.85);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}

.slide-product-item-wrapper-content {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  font-size: 20px;
  padding: 217px 0px 99px 0px;
  display: table-cell;
  vertical-align: middle;
}

.slide-product-item-wrapper-content-inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  display: table-cell;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 120px;
}

.slide-product-item-wrapper-content h1 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
  max-width: 800px;
}

.slide-product-item-wrapper-content p.product-slogan {
  margin-bottom: 20px;
}

.slide-product-item-wrapper-content p.product-description {
  max-width: 800px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.slide-product-item-wrapper-content p.product-price {
  margin-bottom: 36px;
  font-weight: 800;
}

.limited-offer-shop-item {
  background: #fff;
  width: 100%;
  box-shadow: 0 15px 80px rgba(43,11,9,.15);
}

.shop-item-detail {
  position: relative;
}

.shop-item-company {
  position: absolute;
  bottom: 30px;
  right: 40px;
}

.limited-offer-shop-item .shop-item-detail {
  display: flex;
}

.limited-offer-shop-item .shop-item-col-3.limited-offer-photo {
  width: 25%;
  background: #fff;
  padding: 35px 15px 30px 40px;
}

.limited-offer-shop-item .limited-offer-product-photo {
  max-width: 100%;
  width: 240px;
  height: 160px;
}

.limited-offer-shop-item .shop-item-col-6 {
  width: 55%;
  background: #fff;
  padding: 30px 15px 30px 15px;
}

.limited-offer-shop-item .shop-item-col-6 h3 {
  font-size: 22px;
  display: block;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 7px;
}

.limited-offer-shop-item .shop-item-col-6 p.limited-product-slogan {
  margin-bottom: 7px;
}

.limited-offer-shop-item .shop-item-col-6 p.limited-product-description {
  display: block;
  width: 100%;
}

.limited-product-col {
  width: 20%;
  background: #fff;
  padding: 30px 40px 30px 40px;
}

.limited-product-col .shop-item-price {
  font-size: 30px;
  margin-top: 25px;
  display: block;
  clear: both;
}

.limited-product-col .shop-item-price .text-red {
  font-weight: 600;
}

.limited-product-col .shop-item-prev-price {
  font-size: 16px;
  margin-top: 15px;
  display: block;
  clear: both;
  font-weight: 300;
}

.limited-product-col .shop-item-buy {
  display: block;
  clear: both;
  text-align: right;
}

.shop-top-offer-item-buy-btn i {
  float: left;
}

.shop-top-offer-wrapper {
  padding: 0px 40px;
}

.shop-top-offer-counter-divider {
  display: block;
  clear: both;
  width: 100%;
  height: 1px; background: #ccc; margin-bottom: 25px;
}

.shop-top-offer-countdown .ml-5 {
  margin-left: 5px;
}

#shop-tabs {
  display: flex;
}

.common-product-item {
  background: #fff;
  width: 100%;
  box-shadow: 0 15px 80px rgba(43,11,9,.15);
}

.common-product-item .shop-item-detail {
  display: flex;
}

.common-product-item .common-product-item-img-wrapper {
  width: 25%;
  background: #fff;
  padding: 40px 15px 30px 40px;
}

.common-product-item .common-product-item-img-wrapper img {
  max-width: 100%;
  width: 240px;
  height: 160px;
}

.common-product-item .shop-item-col-6 {
  width: 55%;
  background: #fff;
  padding: 30px 15px 30px 15px;
}

.common-product-item .shop-item-col-6 h3 {
  font-size: 22px;
  display: block;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 7px;
}

.common-product-slogan {
  margin-bottom: 7px !important;
  line-height: 26px!important;
}

.common-product-description {
  display: block;
  width: 100%;
  line-height: 28px!important;
}

.common-product-text-part {
  width: 20%;
  background: #fff;
  padding: 30px 40px 30px 40px;
}

.common-product-text-part .shop-item-price {
  font-size: 30px;
  margin-top: 35px;
  display: block;
  clear: both;
}

.common-product-text-part .shop-item-prev-price {
  font-size: 16px;
  margin-top: 15px;
  display: block;
  clear: both;
  font-weight: 300;
}

.common-product-text-part .shop-item-price .text-black {
  font-weight: 600;
}

.common-product-text-part .shop-item-buy {
  display: block;
  clear: both;
  text-align: right;
}

.shop-now-modal .modal-left-part{
  padding-left: 60px;
  padding-right: 50px;
}

.shop-now-modal .modal-headline {
  margin-bottom: 60px;
  margin-top: 30px;
  color: #000;
}

.shop-now-modal .modal-product-buy {
  display: flex;
}

.shop-now-modal .modal-product-buy .modal-product-left-part {
  min-width: 230px;
}

.shop-now-modal .modal-product-buy .modal-product-left-part img {
  max-width: 100%;
  width: 200px;
  height: 133px;
  margin-bottom: 15px;
  margin-right: 30px;
}

.shop-now-modal .modal-product-buy .modal-product-left-part-text {
  text-align: left;
}

.modal-product-left-part-text .modal-receiver-purchase,
.modal-product-left-part-text .modal-company-purchase {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 26px;
}

.modal-product-left-part-text .modal-company-slogan {
  margin-bottom: 10px;
  line-height: 26px;
}

.modal-product-left-part-text .product-description {
  display: block;
  text-align: left;
  line-height: 26px;
  margin-bottom: 10px;
}

.modal-product-left-part-text .modal-product-table {
  width: 100%;
  line-height: 26px;
}

.shop-now-modal .modal-right-part {
  padding-left: 50px;
  padding-right: 60px;
}

.top-offer-modal .top-offer-left-part {
  display: inline-block;
  width: 35%;
  float: left;
  height: 100%;
}

.top-offer-modal .top-offer-left-part img{
  max-width: 100%;
  width: 300px;
  height: 200px;
  margin-top: 2px;
}

.top-offer-modal .top-offer-right-part {
  display: inline-block;
  width: 65%;
  text-align: left;
  float: right;
  height: 100%;
  padding-left: 20px;
}

.top-offer-modal .top-offer-right-part .top-product-name {
  line-height: 30px;
  margin-bottom: 5px;
}

.top-offer-modal .top-offer-right-part .top-product-slogan {
  margin-top: 0px;
  margin-bottom: 7px;
}

.top-offer-right-part .top-offer-price-wrapper {
  width: 100%;
  text-align: right;
  padding-top: 12px;
}

.top-offer-modal-buy-wrapper svg,
.top-offer-modal-buy-wrapper i,
.top-offer-modal-buy-wrapper span {
  margin-top: 2px;
}

.top-modal-counter-divider {
  display: block;
  clear: both;
  width: 100%;
  height: 1px;
  background: #ccc;
  margin-top: 40px;
  margin-bottom: 35px;
}

.top-modal-countdown-text .ml-5 {
  margin-left: 5px;
}

.realCare-pay-box .realCare-excerpt {
  float: left;
  width: 80%;
  padding-right: 20px;
}

.realCare-pay-box .real-care-buy-now {
  width: 20%;
  float: right;
}

.real-care-buy-now svg,
.real-care-buy-now i {
  float: left; margin-top: 2px;
}

.real-care-buy-now span {
  float: right;
  margin-top: 3px;
}


@media screen and (max-width: 1400px) {
  .webHead-nav a {
    padding-left: 15px;
    padding-right: 15px;
  }
  span.carret-down {
    top: 48%;
    right: 0;
  }
}

@media screen and (max-width: 1199px) {
  .menu-mobile-none {
    display: none !important;
  }
}

@media screen and (max-width: 850px) {
  .main-menu-lang {
    display: none !important;
  }
}

@media screen and (min-width: 851px) and (max-width: 950px) {
  .main-menu-lang {
    right: 0;
    top: -7px;
  }
  .webHead-nav a {
    padding: 36px 9px !important;
  }

  nav.webHead-nav li:last-child a {
    margin-right: 40px;
  }
}

@media screen and (min-width: 901px) and (max-width: 1000px) {
  .main-menu-lang {
    right: 160px;
    top: -7px;
  }

  .webHead-nav a {
    padding: 36px 9px !important;
  }

  span.carret-down {
    top: 46%;
    right: 0px;
  }

  nav.webHead-nav li:last-child a {
    margin-right: 40px;
  }
}


@media screen and (max-width: 767px) {
  nav.webHead-nav li:last-child a {
    padding-right: 0px;
  }
}

@media screen and (max-width: 1024px) {
  .shop-modul-product-photo {
    max-width: 250px;
    height: 166px;
  }

  .shop-modul-buy-product i, .shop-modul-buy-product svg {
    display: inline;
  }

  .shop-modul-buy-product span {
    float: none;
  }

  .shop-modul-buy-product {
    width: 90%;
  }
}

@media screen and (max-width: 992px) {
  .shop-modul-product-photo {
    max-width: 190px;
    height: auto;
  }

  .shop-modul-price-wrapper {
    width: 100%;
  }

  .shop-modul-buy,
  .shop-modul-price-wrapper .shop-modul-price {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: block;
  }

  .shop-modul-buy {
    padding-left: 15px;
    padding-right: 15px;
  }

  .shop-modul-buy-product {
    box-sizing: border-box;
  }

  .shop-modul-product-item {
    padding-bottom: 105px;
  }

  .realCare-pay-box .realCare-excerpt {
    width: 70%;
  }

  .realCare-pay-box .real-care-buy-now {
    width: 30%;
  }
}

@media screen and (max-width: 767px) {
  .shop-modul-product-item {
    width: 100%;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 40px;
  }

  .shop-modul-products-wrapper {
    display: block;
  }

  .shop-modul-product-item p {
    padding-left: 15px;
    padding-right: 15px;
  }

  .realCare-pay-box .realCare-excerpt,
  .real-care-buy-now {
    width: 100%;
    float: none;
  }

  .realCare-pay-box .real-care-buy-now {
    margin-top: 5px;
    width: 100%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .pageDetail {
    max-width: 970px !important;
  }

  .common-product-item .common-product-item-img-wrapper img {
    height: auto;
  }

  .shop-item-buy-btn {
    width: 90%;
    max-width: 250px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}

@media screen and (max-width: 992px) {
  .slide-product-item-wrapper-content-inner {
    padding-right: 100px;
  }

  .pageDetail {
    max-width: 740px !important;
  }

  .common-product-text-part .shop-item-price span {
    font-size: 24px;
  }

  .common-product-text-part .shop-item-price {
    margin-top: 20px;
  }

  .shop-now-modal .modal-product-buy .modal-product-left-part img {
    width: 150px;
    height: auto;
  }

  .limited-offer-shop-item .limited-offer-product-photo {
    height: auto;
  }

  .shop-top-offer-countdown-text {
    display: block;
    margin-bottom: 15px;
  }

  .shop-now-modal .modal-product-buy .modal-product-left-part {
    min-width: 170px;
  }

  .shop-now-modal .modal-left-part {
    padding: 0px;
  }

  .shop-now-modal .modal-right-part {
    padding-right: 0px;
  }

  .top-offer-modal .top-offer-left-part img {
    height: auto;
    width: 250px;
  }

  .top-offer-price-wrapper .new-price {
    margin-left: 5px;
  }
}


@media screen and (max-width: 767px) {
  #shop-tabs {
    display: block;
    width: 100%;
  }

  #shop-tabs li {
    width: 100%;
  }

  #shop-tabs li a,
  #shop-tabs li a.inactive {
    padding: 6px;
  }

  .common-product-item .shop-item-detail {
    display: block;
  }

  .limited-offer-shop-item .shop-item-detail {
    display: block;
  }

  .limited-offer-shop-item .shop-item-col-3.limited-offer-photo,
  .common-product-item .common-product-item-img-wrapper {
    width: 100%;
    padding: 0px;
  }

  .limited-offer-shop-item .limited-offer-product-photo,
  .common-product-item .common-product-item-img-wrapper img {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 250px;
  }

  .common-product-item .common-product-item-img-wrapper {
    text-align: center;
  }

  .common-product-item .shop-item-detail {
    padding-top: 30px;
  }

  .common-product-item .shop-item-col-6 {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 0px;
  }

  .common-product-text-part {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-top: 0px;
  }

  .common-product-text-part .shop-item-price {
    margin-top: 0px;
    text-align: center;
  }

  .cycle-navigation {
    display: none;
  }

  .slide-product-item-wrapper-content-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .slide-product-item {
    min-height: 850px;
  }

  .slide-product-item-wrapper-content h1 {
    font-size: 26px;
    line-height: 1.6;
  }

  .slide-product-item-wrapper-content-inner .slogan {
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .common-product-text-part .shop-item-buy {
    height: 70px;
    width: 100%;
    box-sizing: border-box;
  }

  .shop-item-buy-btn {
    box-sizing: border-box;
    width: 100%;
  }

  .common-product-text-part .shop-item-prev-price {
    text-align: center;
  }

  #shop-tabs li a {
    border-left: 1px solid #ccc;
  }

  .limited-offer-shop-item .shop-item-col-6 {
    width: 100%;
    box-sizing: border-box;
  }

  .limited-offer-shop-item .shop-item-col-3.limited-offer-photo,
  .common-product-item .common-product-item-img-wrapper {
    text-align: center;
  }

  .limited-offer-shop-item {
    padding-top: 25px;
  }

  .common-product-item .shop-item-col-6,
  .limited-offer-shop-item .shop-item-col-6 {
    padding-top: 10px;
  }

  .limited-product-col {
    width: 100%;
    box-sizing: border-box;
  }

  .limited-product-col .shop-item-price {
    text-align: center;
  }
  .limited-product-col .shop-item-prev-price {
    text-align: center;
  }

  .limited-product-col {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .limited-offer-shop-item .shop-item-col-6 {
    padding-bottom: 0px;
  }
  .shop-top-offer-countdown-text {
    display: block;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .shop-item-buy-btn svg {
    float: left;
  }

  .shop-now-modal .modal-headline {
    margin-bottom: 30px;
  }

  .shop-now-modal .modal-content {
    display: block;
  }

  .shop-now-modal .modal-left-part {
    width: 100%;
    margin-bottom: 20px;
  }

  .shop-now-modal .modal-right-part {
    width: 100%;
  }

  .shop-now-modal .modal-right-part {
    padding-left: 0px;
  }

  .shop-now-modal .modal-product-buy {
    display: block;
  }

  .shop-now-modal .modal-product-buy .modal-product-left-part img {
    width: 250px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .modal-input-wrapper-100 button[type=submit] {
    float: none;
  }

  .top-offer-modal .top-offer-left-part {
    width: 100%;
    float: none;
    display: block;
  }
  .top-offer-modal .modal-content {
    display: block;
  }
  .top-offer-modal .top-offer-right-part {
    display: block;
    width: 100%;
  }
  .top-offer-prices-wrapper {
    display: block;
    width: 100%;
    float: none;
    text-align: center;
  }

  .top-offer-modal-buy-wrapper {
    width: 100%;
    display: block;
    float: none;
  }

  .top-offer-buy-btn {
    margin-left: auto;
    margin-right: auto;
    float: none;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .top-modal-countdown-text {
    display: block;
    margin-bottom: 10px;
  }
}

.boxItem.icon-heart .boxItem-title:after {
  background-position: -630px -420px;
}





@media screen and (min-width: 850px) and (max-width: 900px) {
  .webHead-logo {
    width: 92px !important;
    margin-top: 25px !important;
  }
}


@media screen and (max-width: 1350px) {


  .main-menu-lang a {
    padding: 43px 15px 30px;
  }
}


.slide-product-item-wrapper-content-inner .slogan {
  margin-bottom: 20px;
}

.shop-top-offer-item-buy-btn svg {
  float: left;
}

@media screen and (max-width: 800px) {
  .realCare-pay-box .real-care-buy-now {
    display: inline-block!important;
    float: right!important;
  }

  .realCare .mobile-price {
    float: left!important;
    padding-top: 15px!important;
  }

  .mobile-clear-none {
    clear: none!important;
  }

  .top-offer-buy-btn {
    width: 150px!important;
  }
}

@media screen and (max-width: 760px) {

  .realCare-pay-box .real-care-buy-now {
    float: right;
    width: 200px;
  }

  .realCare .mobile-price {
    width: 50%;
    float: left;
    text-align: left;
    margin-top: 11px;
  }

  .top-offer-modal h2{
    line-height: 44px;
  }
}

@media screen and (min-width: 768px) {
  .mobile-only {display: none!important;}
}
@media screen and (max-width: 768px) {
  .shop-modul-buy-product {
    text-align: right !important;
    padding-top: 15px;
    padding-bottom: 15px;
  }

}

@media screen and (max-width: 768px) {
  .true-care-buy-now,
  .shop-modul-buy-product {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    float: none;
    box-sizing: border-box;
  }

  .shop-modul-buy {
    box-sizing: border-box;
  }


  .real-care-buy-now.mobile-display-none {
    display: none !important;
  }

  .real-care-buy-now.mobile-only {
    display: block;
  }

  .realCare .mobile-price {
    display: block;
    width: 100%;
    text-align: center;
  }

  .true-care-buy-now {
    margin-top: 20px;
    margin-bottom: 20px;
    float: none;
    display: block;
    overflow: auto;
    box-sizing: border-box;
  }

  .slide-shop-now-btn a {
    padding: 10px 36px 8px 82px;
  }

  .slide-product-item {
    min-height: 900px;
  }

  .shopPage-inset {
    padding-top: 45px;
    padding-bottom: 0px;
  }

  .shopPage-inset .limited-offer-headline {
    margin-bottom: 30px;
  }

  .shop-top-offer-item-buy-btn {
    margin-bottom: 25px;
  }
  .modal-input-wrapper-100 button[type=submit] {
    max-width: 100%;
    min-width: 250px;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .modal-input-wrapper-100 {
    box-sizing: border-box;
  }

  .slide-product-item-wrapper-content-inner {
    top: 110px;
    transform: none;
  }

}

.product-buyable-online-not {
  margin-top: 20px;
  display: block;
  line-height: 20px;
}

.business-shop-item-wrapper {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-bottom: 60px;
  box-sizing: border-box;
}

.business-shop-headline-wrapper {
  width: 100%;
  text-align: center;
}

.business-shop-item-wrapper .common-product-item .shop-item-col-6 h3 {
  color: #000;
}

.business-shop-item-wrapper .shop-item-price {
  text-align: right;
}

.business-shop-headline-wrapper .realCare-title {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {

  .business-shop-headline-wrapper .realCare-title {
    margin-top: 50px;
  }

  .business-shop-item-wrapper .shop-item-detail {
    padding: 0px 15px;
  }
}

@media screen and (max-width: 767px) {
  .business-shop-item-wrapper .shop-item-price {
    text-align: center;
    margin-top: 15px;
  }

  .business-shop-headline-wrapper .realCare-title {
    margin-top: 50px;
  }

  .business-shop-item-wrapper {
    padding-bottom: 0px;
  }

  .business-shop-headline-wrapper .shop-item {
    margin-bottom: 0px;
  }

  .business-shop-item-wrapper .common-product-item {
    margin-bottom: 20px;
  }

  .company-services-wrapper .realCare-inset {
    box-shadow: none;
  }

  .company-services-wrapper {
    box-sizing: border-box;
  }

  .business-shop-item-wrapper .common-product-item .shop-item-col-6 h3 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 1199px) {
  .shop-item-company {
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .shop-item-company {
    bottom: 5px;
    right: 5px;
  }

  .shop-item-company img {
    height: 25px;
  }

  .limited-offer-shop-item .shop-item-company img {
    display: none;
  }
}

/*
.btn-switch {
  font-size: 20px;
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-switch__radio {
  display: none;
}
.btn-switch__label {
  display: inline-block;
  padding: 20px;
  vertical-align: top;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #666;
  cursor: pointer;
  transition: color .2s ease-in-out;
}
.btn-switch__label + .btn-switch__label {
  padding-right: .75em;
  padding-left: 0;
}
.btn-switch__txt {
  position: relative;
  z-index: 2;
  display: inline-block;
  min-width: 30px;
  opacity: 1;
  pointer-events: none;
  transition: opacity .2s ease-in-out;
}
.btn-switch__radio_no:checked ~ .btn-switch__label_yes .btn-switch__txt,
.btn-switch__radio_yes:checked ~ .btn-switch__label_no .btn-switch__txt {
  opacity: 0;
}
.btn-switch__label:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #efecea;
  border-radius: 44px;
  box-shadow: inset 0 .0715em .3572em rgba(43,43,43,.05);
  transition: background .2s ease-in-out;
}
.btn-switch__radio_yes:checked ~ .btn-switch__label:before {
  background: #df2e22;
}
.btn-switch__label_no:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: .5em;
  bottom: .5em;
  left: .5em;
  width: 2em;
  background: #fff;
  border-radius: 1em;
  pointer-events: none;
  box-shadow: 0 .1429em .2143em rgba(43,43,43,.2), 0 .3572em .3572em rgba(43,43,43,.1);
  transition: left .2s ease-in-out, background .2s ease-in-out;
}
.btn-switch__radio_yes:checked ~ .btn-switch__label_no:after {
  left: calc(100% - 2.5em);
  background: #fff;
}
.btn-switch__radio_no:checked ~ .btn-switch__label_yes:before,
.btn-switch__radio_yes:checked ~ .btn-switch__label_no:before {
  z-index: 1;
}
.btn-switch__radio_yes:checked ~ .btn-switch__label_yes {
  color: #fff;
}
*/

.btn-switch {
  font-size: 20px;
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-switch__radio {
  display: none;
}
.btn-switch__label {
  display: inline-block;
  padding: 20px;
  vertical-align: top;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #666;
  cursor: pointer;
  transition: color .2s ease-in-out;
}
.btn-switch__label + .btn-switch__label {
  padding-right: .75em;
  padding-left: 0;
}
.btn-switch__txt {
  position: relative;
  z-index: 2;
  display: inline-block;
  min-width: 30px;
  opacity: 1;
  pointer-events: none;
  transition: opacity .2s ease-in-out;
}
.btn-switch__radio_no.checked ~ .btn-switch__label_yes .btn-switch__txt,
.btn-switch__radio_yes.checked ~ .btn-switch__label_no .btn-switch__txt {
  opacity: 0;
}
.btn-switch__label:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #efecea;
  border-radius: 44px;
  box-shadow: inset 0 .0715em .3572em rgba(43,43,43,.05);
  transition: background .2s ease-in-out;
}
.btn-switch__radio_yes.checked ~ .btn-switch__label:before {
  background: #df2e22;
}
.btn-switch__label_no:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  text-align: center;
  line-height: 42px;
  z-index: 2;
  top: .5em;
  bottom: .5em;
  left: .5em;
  width: 2em;
  background: #fff;
  color: #e52f11;
  border-radius: 1em;
  pointer-events: none;
  box-shadow: 0 .1429em .2143em rgba(43,43,43,.2), 0 .3572em .3572em rgba(43,43,43,.1);
  transition: left .2s ease-in-out, background .2s ease-in-out;
}
.btn-switch__radio_yes.checked ~ .btn-switch__label_no:after {
  left: calc(100% - 2.5em);
  background: #fff;
}
.btn-switch__radio_no.checked ~ .btn-switch__label_yes:before,
.btn-switch__radio_yes.checked ~ .btn-switch__label_no:before {
  z-index: 1;
}
.btn-switch__radio_yes.checked ~ .btn-switch__label_yes {
  color: #fff;
}

.registrationTypeSelector * {
  box-sizing: border-box;
}

.registrationTypeSelector {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  margin: 40px 0 25px 0;
  background-color: #faf9f9;
  border-radius: 4px;
  box-shadow: 0 3px 4px rgba(47,49,54,0.15);
}

.registrationTypeSelectorBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.registrationTypeSelector-registerPatient,
.registrationTypeSelector-trueCare {
  cursor: pointer;
}

.registrationTypeSelector-registerPatient {
  width: 50%;
  display: flex;
  padding: 30px 80px 45px 30px;
  float: left;
  transition: all .2s ease;
}

.registrationTypeSelector-trueCare {
  width: 50%;
  padding: 30px 30px 45px 80px;
  display: flex;
  text-align: right;
  float: right;
  transition: all .2s ease;
}

.registrationTypeSelector-registerPatient:not(.checked),
.registrationTypeSelector-trueCare:not(.checked) {
  background: #f7f5f4;
}

.registrationTypeSelector-registerPatient.checked,
.registrationTypeSelector-trueCare.checked {
  background: #fff;
}

.registrationTypeSelector-registerPatient:not(.checked):hover,
.registrationTypeSelector-trueCare:not(.checked):hover {
  background-color: #fafafa;
  transition: all .2s ease;
}

.registrationTypeSelector-trueCare  .registrationTypeSelector-headline {
  font-size: 33px;
  margin-top: 20px;
  margin-bottom: 7px;
  color: #e52f11;
}

.registrationTypeSelector-registerPatient  .registrationTypeSelector-headline {
  font-size: 33px;
  margin-top: 20px;
  margin-bottom: 7px;
  color: #111;
}

.registrationTypeSelector-trueCare  .registrationTypeSelector-subheadline,
.registrationTypeSelector-registerPatient  .registrationTypeSelector-subheadline {
  display: block;
  font-style: italic;
}

.registrationTypeSelector-registerPatient  .registrationTypeSelector-text {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 50px;
  line-height: 26px;
}

.registrationTypeSelector-trueCare  .registrationTypeSelector-text {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 60px;
  line-height: 26px;
}

.registrationTypeSelector-price {
  font-weight: 700;
  font-size: 20px;
  color: #e52f11;
}

.registrationTypeSelector-price-term {
  font-weight: 300;
  font-size: 20px;
}

.registerForm-send-btn-wrapper {
  display: block;
  text-align: left;
}

.registerForm-send-btn-wrapper button {
    margin-bottom: 15px;
}

.registerForm-bottom-error .wpcf7-response-output {
  margin-bottom: 55px;
}

.registerForm-foot .w-100 input[type=checkbox] {
  box-shadow: 0 0px 5px rgba(47, 49, 54, .4);
}

.registerForm-register-benefits-list-reg-patient,
.registerForm-register-benefits-list-true-care {
  margin-bottom: 25px;
}

.registerForm-register-benefits-list-reg-patient li,
.registerForm-register-benefits-list-true-care li {
  display: block;
  line-height: 30px;
}

.registerForm-register-benefits-list-reg-patient li svg {
  margin-right: 10px;
}

.registerForm-register-benefits-list-true-care li svg {
  margin-left: 10px;
}

.registerForm-register-benefits-list-reg-patient li.benefit-plus,
.registerForm-register-benefits-list-true-care li.benefit-plus {
  color: #000;
  font-weight: 700;
}

.registerForm-register-benefits-list-true-care li.benefit-plus  {
  color: #e52f11;
  color: #000;
}

.registerForm-register-benefits-list-reg-patient li.benefit-minus {
  color: #bbb;
  font-weight: 700;
}

.registrationForm-notes-afterTypeSelector {
  margin-bottom: 35px;
  margin-top: 35px;
  display: block;
  font-size: 16px;
  text-align: center;
  color: #666;
}

@media screen and (max-width: 1200px) {
  .registerForm .registerForm-inset {
    max-width: 900px;
  }

  .registrationTypeSelector-registerPatient .registrationTypeSelector-headline,
  .registrationTypeSelector-trueCare .registrationTypeSelector-headline {
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .registrationTypeSelector-trueCare-inner .registrationTypeSelector-headline {
    padding-left: 50px;
  }

  .registerForm-register-benefits-list-reg-patient {
    padding-right: 40px;
    font-size: 14px;
  }

  .registerForm-register-benefits-list-true-care {
    padding-left: 40px;
    font-size: 14px;
  }

  .registerForm-register-benefits-list-true-care li svg {
    margin-left: 3px;
  }

  .registerForm-register-benefits-list-reg-patient li svg {
    margin-right: 3px;
  }
}

.registrationForm-mobile-label {
  display: none;
}

.registrationForm-mobile-selectbox {
  display: none;
}

@media screen and (max-width: 767px) {

  .registrationForm-notes-afterTypeSelector {
    margin-bottom: 20px;
  }

  .registrationForm-mobile-selectbox {
    display: block;
    margin-bottom: 25px;
  }

  .mobile-select-box-checked {
    display: none;
  }

  .mobile-select-box-select {
    display: none;
  }


  .registrationForm-mobile-selectbox svg {
    margin-right: 5px;
  }

  .registrationForm-mobile-label  {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-size: 15px;
    padding-left: 3px;
  }

  .registrationTypeSelectorBtn {
    display: none;
  }


  .registrationTypeSelector {
    display: block;
    flex-direction: initial;
    margin-top: 10px;
  }

  .registrationTypeSelector-trueCare,
  .registrationTypeSelector-registerPatient {
    display: block;
    width: 100%;
  }

  .registrationTypeSelector-registerPatient .registrationTypeSelector-headline, .registrationTypeSelector-trueCare .registrationTypeSelector-headline {
    font-size: 20px;
  }

  .registrationTypeSelector-subheadline {
    font-size: 14px;
  }
  .registerForm-bottom-error .wpcf7-response-output {
    margin-bottom: 30px;
  }

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

 .registrationTypeSelector-trueCare .registrationTypeSelector-text {
    padding-left: 0px;
 }
 .registerForm-register-benefits-list-true-care li svg {
  float: left;
  margin-right: 10px;
  margin-left: 0px;
  width: 15%;
 }

  .registrationTypeSelector-registerPatient li svg {
    float: left;
    margin-right: 10px;
    margin-left: 0px;
    width: 15%;
  }
  .registrationTypeSelector-registerPatient li .benefit-text {
    float: right;
    text-align: left;
    width: 85%;
    font-size: 14px;
    line-height: 20px;
  }

 .registerForm-register-benefits-list-true-care li .benefit-text {
  float: right;
  text-align: left;
  width: 85%;
  font-size: 14px;
  line-height: 20px;
 }

 .registrationTypeSelector-registerPatient li,
 .registerForm-register-benefits-list-true-care li {
  clear: both;
  overflow: hidden;
  margin-bottom: 12px;
 }

 .registrationTypeSelector-text,
 .registrationTypeSelector-registerPatient .registrationTypeSelector-text {
  font-size: 14px;
 }

 .btn-switch__label.btn-switch__label_yes,
 .btn-switch__label.btn-switch__label_no {
  display: none;
 }

 .btn-switch__radio {
  display: block;
 }

  .mobile-select-box-select {
    font-size: 20px;
  }

  .mobile-select-box-checked {
    color: #6dbd1f;
    font-size: 20px;
  }
 #registerForm-register-patient .mobile-select-box-checked {
  display: block;

 }

 #registerForm-true-care .mobile-select-box-select {
  display: block;
 }

 #registerForm-register-patient {
  margin-bottom: 25px;
 }

 .registrationTypeSelector {
  background: none;
  box-shadow: none;
 }

}

.shop-voucher-promo-text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.shop-page .shop-all-products-headline {
  margin-bottom: 10px;
}

.modal-shop-receiver-section .modal-input-wrapper-50 {
  width: 100%;
}

.registerForm-send-btn-wrapper .link.type-button:disabled,
.registerForm-send-btn-wrapper .link.type-button:disabled:hover {
  background: #595959;
  cursor: default;
}

.link.type-button:disabled span:after {
  display: none;
}

.link.type-button:disabled:hover{
  opacity: 1;
}

.link.type-button:disabled span {
  padding-right: 22px;
}

.registerForm-send-btn-wrapper .link.type-button svg {
  margin-left: 23px;
}

.shop-checkbox-margin-bottom {
  margin-bottom: 15px;
}

.modal-select-company,
.modal-select-receiver {
  margin-top: 15px;
  margin-bottom: 0px;
}

.modal-shop-company-section h3,
.modal-shop-receiver-section h3 {
  margin-top: 15px;
}

.modal-shop-company-section {
  padding-bottom: 15px;
  margin-bottom: 5px;
  border-bottom: 1px solid #e1e1e1;
}

.modal-shop-receiver-section {
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}

.modal-select-send-voucher {
  margin-bottom: 12px;
}

input[disabled="disabled"],
select[disabled="disabled"],
textarea[disabled="disabled"] {
  background-color: #f7f5f4 !important;
}
.form-long-description {
  width: auto;
  float: left;
  max-width: calc(100% - 44px);
}
.wpcf7-acceptance .wpcf7-not-valid-tip {
  float: left;
  margin-top: 0;
  border-radius: 4px;
  height: 5px;
  padding: 8px 10px 12px 35px;
  margin: 3px 10px 0 0;
}
.wpcf7-acceptance .wpcf7-not-valid-tip:before {
  top: 45%;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .registrationTypeSelector-registerPatient {
    padding: 30px 80px 45px 30px;
  }

  .registrationTypeSelector-trueCare {
    padding: 30px 30px 45px 80px;
  }

}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .registrationTypeSelector-registerPatient {
    padding: 30px 40px 45px 30px;
  }

  .registrationTypeSelector-trueCare {
    padding: 30px 30px 45px 40px;
  }

}

@media screen and (max-width: 767px) {
  .registrationTypeSelector .registrationTypeSelector-registerPatient {
    padding: 30px 30px 45px 30px;
  }

  .registrationTypeSelector .registrationTypeSelector-trueCare {
    padding: 30px 30px 45px 30px;
  }
}

@media screen and (min-width: 768px) {

  .registrationTypeSelector-registerPatient li,
  .registerForm-register-benefits-list-true-care li {
    overflow: hidden;
    clear: both;
    margin-bottom: 15px;
    box-sizing: border-box;
    position: relative;
  }

  .registrationTypeSelector-registerPatient * {
    box-sizing: border-box;
  }

  .registrationTypeSelector-registerPatient li svg {
    float: left;
    top: 0px;
    margin-right: 0px;
    margin-top: 6px;
    width: 15%;
    box-sizing: border-box;
  }

  .registrationTypeSelector-registerPatient li .benefit-text {
    float: right;
    width: 85%;
    text-align: left;
    line-height: 24px;
    box-sizing: border-box;
  }

  .registrationTypeSelector-trueCare li svg {
    float: right;
    top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 6px;
    width: 15%;
    box-sizing: border-box;
  }

  .registrationTypeSelector-trueCare li .benefit-text {
    float: left;
    width: 85%;
    text-align: right;
    line-height: 24px;
    box-sizing: border-box;
  }
}


@media screen and (min-width: 992px) and (max-width: 1199px){
  .registrationTypeSelector-registerPatient li svg {
    width: 12%;
    margin-top: 4px;
  }

  .registrationTypeSelector-trueCare li svg {
    width: 12%;
    margin-top: 4px;
  }

  .registrationTypeSelector-trueCare li .benefit-text {
    width: 88%;
  }

  .registrationTypeSelector-registerPatient li .benefit-text {
    width: 88%;
  }
}

@media screen and (min-width: 1200px){
  .registrationTypeSelector-registerPatient li svg {
    width: 9%;
    margin-top: 4px;
  }

  .registrationTypeSelector-trueCare li svg {
    width: 9%;
    margin-top: 4px;
  }

  .registrationTypeSelector-trueCare li .benefit-text {
    width: 91%;
  }

  .registrationTypeSelector-registerPatient li .benefit-text {
    width: 91%;
  }
}

@media screen and (min-width: 1200px){
  .registrationTypeSelector-registerPatient .registrationTypeSelector-text {
    padding-right: 5px;
  }

  .registrationTypeSelector-trueCare .registrationTypeSelector-text {
    padding-left: 5px;
  }
}

@media screen and (min-width: 435px) and (max-width: 624px) {
  .registrationTypeSelector-registerPatient li .benefit-text {
    width: 90%;
  }

  .registerForm-register-benefits-list-true-care li .benefit-text {
    width: 90%;
  }
}

@media screen and (min-width: 625px) and (max-width: 767px) {
  .registrationTypeSelector-registerPatient li .benefit-text {
    width: 94%;
  }

  .registerForm-register-benefits-list-true-care li .benefit-text {
    width: 94%;
  }
}

@media screen and (max-width: 900px) {
  .registerForm-send-btn-wrapper  {
    margin-top: 40px;
  }

  .registerForm-foot {
    box-shadow: 0 3px 4px rgba(47,49,54,.15);
  }

}

@media screen and (max-width: 500px) {
  .registerForm-send-btn-wrapper span {
    line-height: 19px;
  }

}

@media screen and (max-width: 767px) {
  #registerForm-register-patient{
    box-shadow: 0 3px 4px rgba(47,49,54,.15);
    border-radius: 4px;
  }

  #registerForm-true-care {
   box-shadow: 0 3px 4px rgba(47,49,54,.15);
   border-radius: 4px;
  }

  .registrationTypeSelector {
    padding-bottom: 10px;
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 4px;
    padding-right: 4px;
    box-sizing: content-box;
  }

  .registrationForm-notes-afterTypeSelector {
    margin-top: -10px;
  }
}

/*
.modal-shop-company-section input::placeholder,
.modal-shop-company-section input {
  line-height: 35px;
  padding-top: 3px;
  padding-bottom: 3px;
}
*/

.shop-now-modal input::placeholder,
.shop-now-modal input {
  line-height: 35px;
  padding-top: 5px;
  padding-bottom: 0px;
}


.true-dentist-bg-top {
  border-top: 0px;
  border-bottom: 1px solid #dedede;
}

.hp-hero-position-label {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  text-align: left;
  text-transform: lowercase;
}

.bg-service-color-red {
  background: #e8362a;
  color: #fff;
}

.bg-service-color-red:after {
  background: url('../img/icons-inverted.png') 100px 100px no-repeat;
}

.priceList-nav div a.pricelist-icon-red {
  color: #ee3124;
}


.opening-hours-table th {
  width: 120px;
}

.opening-hours-table th,
.opening-hours-table td {
  padding: 6px 0px;
  font-weight: 300;
  font-size: 14px;
}

.opening-hours-table {
  margin: 8px 0px 30px 0px;
}

.register-address h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.register-address .address-paragraph {
  line-height: 26px;
  font-size: 14px;
}

@media screen and (max-width: 850px) {
  .sl-outer-menu li:last-child {
    display: block !important;
  }
}


.physiotherapy-banner-bg {
  background: #fff;
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid #dedede;
}

.physiotherapy-banner-content-wrapper {
  max-width: 100%;
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  overflow: hidden;
  padding-top: 32px;
  padding-bottom: 32px;
}

.physiotherapy-banner-link {
  text-decoration: none;
}

@media screen and (max-width: 1250px) {
  .physiotherapy-banner-bg {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
  }

}

.physiotherapy-banner-content-text h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
}

.physiotherapy-banner-content-text h3 {
  margin-top: 5px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 17px;
  color: #000;
}

.physiotherapy-banner-content-text h3 b {
  color: #ee3124;
}

.physiotherapy-price-banner {
  color: #000;
  font-size: 26px;
  font-weight: 600;
  margin-top: 16px;
  text-transform: uppercase;
}

.physiotherapy-price-banner b {
  color: #ee3124;
}

.physiotherapy-price-banner-slash {
  font-weight: 300;
}

.price-physiotherapy-banner-span {
  font-size: 16px;
  margin-right: 2px;
}

@media screen and (max-width: 999px) {
  .physiotherapy-price-banner {
    margin-top: 18px;
    font-size: 22px;
  }


  .physiotherapy-banner-content-text h2 {
    font-size: 26px;
  }

  .physiotherapy-banner-content-text h3 {
    font-size: 18px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 880px) {
  .physiotherapy-price-banner {
    margin-top: 18px;
    font-size: 20px;
  }
}

@media screen and (max-width: 817px) {
  .physiotherapy-price-banner {
    margin-top: 18px;
    font-size: 18px;
  }


  .physiotherapy-banner-content-text h2 {
    margin-top: 2px;
    font-size: 24px;
  }

  .physiotherapy-banner-content-text h3 {
    font-size: 16px;
    margin-top: 0px;
  }
}


@media screen and (max-width: 760px) {
  .physiotherapy-banner-content-wrapper .physiotherapy-banner-content-text,
  .physiotherapy-banner-content-wrapper .physiotherapy-banner-price {
    width: 100%;
    padding-left: 0px;
  }

  .physiotherapy-banner-bg {
    padding: 0px;
  }

  .physiotherapy-price-banner {
    text-align: center;
    display: block;
    margin-top: 18px;
    font-size: 18px;
  }


  .physiotherapy-banner-content-text h2 {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
    margin-top: 2px;
    font-size: 24px;
  }

  .physiotherapy-banner-content-text h3 {
    text-align: center;
    display: block;
    font-size: 16px;
    line-height: 22px;
    margin-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .physiotherapy-banner-content-text h3 b {
    font-size: 16px;
  }
}

/*
.remodal.shop-now-modal {
  max-width: 100% !important;
  width: 100%!important;
  min-height: 100%!important;
  margin-bottom: 0px !important;
}
*/

.important-notice-wrapper {
  background: #fff;
  color: #000;
  line-height: 26px;
  padding: 13px 10px 7px 10px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  cursor: pointer;
  transition: all .2s ease;
}

.notice-red {
  color: #ee3124;
  font-weight: bold;
}

.important-notice-wrapper:hover {
  background: #ee3124;
  color: #fff;
  transition: all .2s ease;
}

.important-notice-wrapper:hover .notice-red {
  color: #fff;
  transition: all .2s ease;
}
.important-notice-wrapper .notice-red svg {
  margin-bottom: 0px;
}
@media only screen and (min-width: 641px) {
  .remodal.remodal-coronavirus {
    max-width: 600px!important;
  }
}

.remodal.remodal-coronavirus  {
  padding: 0px;
}

.remodal-coronavirus .remodal-close {
    color: #fff;
    top: 0px;
    right: -45px;
  }
.remodal-coronavirus .remodal-close:hover {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .remodal-coronavirus .remodal-close {
    color: #ff0000;
  }

  .important-notice-wrapper {
    padding-top: 15px;
    left: 0;
    right: 0;
    text-align: center;
  }

  .pop-up-modal.remodal-coronavirus  .modal-content img {
    max-width: initial !important;
    width: 100%;
    height: 100%!important;
  }

  .remodal.remodal-coronavirus  {
    padding: 0px;
  }

  .remodal-coronavirus .remodal-close {
    top: 15px;
    right: 15px;
  }
}

.remodal-coronavirus {
  color: #000;
  background: #fff;
}

.remodal-coronavirus .modal-content {
  display: block;
  padding: 20px 30px;
  text-align: left;
}
.remodal-coronavirus .modal-content h3 {
  margin: 20px 0;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
}
.remodal-coronavirus .modal-content p {
  margin: 20px 0;
  line-height: 20px;
  font-weight: 300;
}
.remodal-coronavirus .modal-content p strong {
  font-weight: 600;
}
.remodal-coronavirus .modal-content p.more-info {
  text-align: center;
  margin: 40px 0 20px 0;
}
.remodal-coronavirus .modal-content a.btn {
  background-color: #fff;
  color: #ed3f2e;
  text-decoration: none;
  padding: 14px 15px 10px 15px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.7;
  transition: all 0.5s;
}
.remodal-coronavirus .modal-content a.btn:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .remodal-coronavirus .modal-content p.more-info {
    font-size: 12px;
  }
  .remodal-coronavirus .modal-content a.btn {
    padding: 10px 15px 10px 15px;
  }
}

/*END*/

.non-stop-doctor-item {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.non-stop-doctor-number {
  font-weight: 200;
  color: #ee3124;
  font-size: 50px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.non-stop-doctor-item b {
  font-weight: 500;
}

.non-stop-doctor-wrapper .text-bold {
 font-weight: 500;
}

.non-stop-doctor-text b {
  font-weight: 500;
}

.non-stop-doctor-item p {
  line-height: 24px;
}

.non-stop-doctor-ul li {
  line-height: 26px;
}

.non-stop-doctor-ul {
  margin-bottom: 20px;

}

.non-stop-doctor-btn {
  position: relative;
  background: #ee3124;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  margin-top: 20px;
  text-align: right;
  width: 150px;
  margin-right: auto;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
}

.non-stop-doctor-btn:hover {
  background: #c3180b;
  color: #fff;
  text-decoration: none;
}

.non-stop-doctor-btn i {
  position: absolute;
  top: 15px;
  left: 18px;
  font-weight:
}

.non-stop-doctor-wrapper,
.non-stop-doctor-wrapper .realCare-inset {
  height: auto !important;
}


.non-stop-doctor-number i {
  line-height: 40px;
}

#hp-video-wrapper.non-stop-doctor-site-banner {
  height: 280px;
}

.non-stop-doctor-site-banner-h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  margin: 125px auto;
  font-weight: 600;
  text-align: center;
}

.hp-non-stop-doctor-btn-wrapper .physiotherapy-price-banner {
  margin-top: 8px;
}

.non-stop-doctor-item p {
  height: 96px;
}


@media screen and (min-width: 992px) and (max-width: 1199px) {
  .heroItem-button-1 a,
  .heroItem-button-2 a,
  .heroItem-button-3 a {
    font-size: 20px;
  }

  .non-stop-doctor-item p {
    height: 130px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .non-stop-doctor-wrapper .col-3 {
    width: 50%;
    margin-bottom: 30px;
  }

  .non-stop-doctor-site-banner-h3 {
    margin: 100px auto;
    font-size: 30px;
    line-height: 1.25;
  }

  #hp-video-wrapper.non-stop-doctor-site-banner {
    height: 225px;
  }

  .heroItem-button-1 a,
  .heroItem-button-2 a,
  .heroItem-button-3 a {
    font-size: 18px;
    padding-left: 80px;
  }

  .heroItem-button-1 a:before, .heroItem-button-2 a:before, .heroItem-button-3 a:before {
    width: 63px;
  }

  .non-stop-doctor-item p {
    height: 77px;
  }
}


@media screen and (max-width: 767px) {
  .non-stop-doctor-wrapper .col-3 {
    width: 100%;
    margin-bottom: 30px;
  }

  .non-stop-doctor-site-banner-h3 {
    margin: 100px auto;
    font-size: 20px;
    line-height: 1.25;
    padding-left: 15px;
    padding-right: 15px;
  }

  #hp-video-wrapper.non-stop-doctor-site-banner {
    height: 225px;
  }

  .heroItem-button-1 a,
  .heroItem-button-2 a,
  .heroItem-button-3 a {
    font-size: 16px;
    line-height: 21px;
    padding-left: 50px;
    padding-right: 20px;
    width: 100%;
    max-width: 80%;
  }

  .heroItem-button-1 a:before, .heroItem-button-2 a:before, .heroItem-button-3 a:before {
    display: none;
    color: #000 !important;
  }

  .heroItem-button-1 a:after, .heroItem-button-2 a:after, .heroItem-button-3 a:after {
    color: #e8362a;
    margin-top: -9px;
    left: 25px;
  }

  .heroItem-button-3 {
    margin-bottom: 30px;
  }

  .non-stop-doctor-item p {
    height: auto;
  }

  .non-stop-doctor-companies-wrapper p.review-cta-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.non-stop-doctor-companies-wrapper .companyLogoSlider .bx-controls .bx-next,
.non-stop-doctor-companies-wrapper .companyLogoSlider .bx-controls .bx-prev {
  transform: none;
  top: 57%;
}

.covid-banner-bg {
  color: #fff;
  background: #ed3f2e;
}

.covid-banner-bg .col-sm-7 {
  width: 58%;
  float:left;
}

.covid-banner-bg h3,
.covid-banner-bg h3 b {
  color: #fff;
}

.covid-banner-bg .col-sm-5 {
  width: 42%;
  float: left;
  text-align: right;
}

.covid-banner-bg .col-sm-5 h3 {
  padding-top: 5px;
  line-height: 24px;
}

.covid-banner-bg {
  transition: all .2s ease;
}

.covid-banner-bg:hover {
  background: #de2715;
  transition: all .2s ease;
}

.covid-video {
  max-width: 100%;
  width: 100%;
  height: 400px;
  margin-bottom: 10px;
}

.covid-site-img {
  margin-bottom: 10px;
  max-width: 100%;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .covid-banner-bg .col-sm-7 {
    width: 52%;
  }

  .covid-banner-bg .col-sm-5 {
    width: 48%;
  }
}

@media screen and (max-width: 991px) {
  .covid-banner-bg .col-sm-7 {
    width: 100%;
    float: none;
    text-align: center;
  }

  .covid-banner-bg .col-sm-5 {
    width: 100%;
    float: none;
    text-align: center;
  }

  .covid-banner-bg .col-sm-5 span {
    display: block;
    line-height: 24px;
  }
  .covid-banner-bg .col-sm-5 br {
    display: none;
  }

  .covid-video {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

}


.corona-modal-btn {
  background: #ee3124;
  color: #fff;
  text-decoration: none;
  padding: 12px 15px;
  margin-top: 5px;
  display: inline-block;
}

.corona-modal-btn:hover {
  color: #fff;
  background: #de2715;
}

.remodal-coronavirus ol {
  list-style-type: decimal;
  padding-left: 15px;
}
.remodal-coronavirus ol > li {
  line-height: 30px;
  margin: 20px 0;
}
.remodal-coronavirus ol > li > ul {
  list-style-type: circle;
  padding-left: 15px;
}
.remodal-coronavirus ol > li > ul > li {
  line-height: 20px;
}
.remodal-coronavirus p.bottom-buttons {
  font-size: 20px;
  text-align: center;
  margin: 20px 0 15px 0;
}
.remodal-coronavirus p.bottom-buttons a.btn {
  text-transform: lowercase;
  line-height: 50px;
}

@media screen and (max-width: 360px) {
  .corona-modal-btn {
    padding: 10px;
    font-size: 14px;
  }
}

.registration-terms-text-paragraph {
  line-height: 20px;
}

.physioterapeuts-title {
  margin-top: 40px;
}

#covid-form-iframe {
  width: 767px;
  max-width: 100%;
  height: 2770px;
}

.covid-testing-p {
  margin-bottom: 25px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 24px;
}

.covid-homepage-banner-btn {
  text-decoration: none;
}

.covid-homepage-banner-btn-second {
  background: #fff !important;
  color: #ee3124 !important;
  cursor: pointer;
}

.covid-homepage-banner-btn-first {
  margin-right: 15px;
  background: #fff !important;
  color: #ee3124 !important;
  cursor: pointer;
}


@media screen and (max-width: 767px) {
   #covid-form-iframe {
    width: 100%;
    max-width: 100%;
    height: 3150px;
  }

  .covid-testing-p {
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 24px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .covid-banner-bg .col-sm-7.covid-banner-text-wrapper {
    display: block;
    width: 100% !important;
    text-align: center;
  }
  .covid-banner-bg .col-sm-5.covid-banner-btns-wrapper {
    display: block;
    margin-top: 10px;
    width: 100% !important;
    text-align: center;
  }
}

@media screen and (max-width: 460px) {
   #covid-form-iframe {
    width: 100%;
    max-width: 100%;
    height: 3450px;
  }
}

@media screen and (max-width: 400px) {
   #covid-form-iframe {
    width: 100%;
    max-width: 100%;
    height: 3750px;
  }
}

@media screen and (max-width: 360px) {
   #covid-form-iframe {
    width: 100%;
    max-width: 100%;
    height: 3800px;
  }
  .covid-homepage-banner-btn-first {
    margin-top: 15px;
    margin-bottom: 10px;
    display: block;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .covid-homepage-banner-btn-second {
    display: block;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

/*
  site-bar
  ***
*/

.site-bar {
  position: relative;
  z-index: 200;
  padding: 0 60px 0 4%;
  background-color: #fff;
  font-weight: 700;
  color: #45ad66;
}
.site-bar__inset {
  margin: 0;
  padding: 16px 0;
  line-height: 1.6;
  text-align: left;
}

/*
  close
  ---
*/

.site-bar__close {
  position: absolute;
  right: 20px;
  top: 18px;
  transform: scaleY(0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  color: #d41837;
}
