/* ==========================================================
* Begin of Common 
* ===========================================================
*/
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #48484c;
  background-color: #ffffff;
}
p {
  color: #48484c;
}

input[type="tel"],
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  height: 80px;
  color: #aeafaf;
  font-size: 28px;
  border-radius: 0;
  border: 4px solid #ee205c;
}
  input[type="tel"]:active,
  input[type="text"]:active,
  input[type="email"]:active,
  input[type="password"]:active,
  input[type="tel"]:focus,
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus {
    outline: none;
    border: 4px solid #ee205c;
  }
  input[type="tel"].form-control-default,
input[type="text"].form-control-default,
input[type="email"].form-control-default,
input[type="password"].form-control-default {
    border-color: #d7d7d7;
  }
  textarea.form-control {
    width: 100%;
    height: 300px;
    border-radius: 0;
    border: 4px solid #ee205c;
    font-size: 14px;
    color: #888a8f;
    font-weight: 600;
  }
    .form-control:focus {
      border: 4px solid #ee205c;
    }
    
 .form__group   input[type="checkbox"] {
 position:static;
  
  height: 40px;
  width:40px;
  color: #aeafaf;
  font-size: 28px;
  border-radius: 0;
  outline: 4px solid #ee205c;
  margin:0px 20px 0px 0px;
}
    
/* ==========================================================
* End of Common 
* ===========================================================
*/





/* ==========================================================
* Begin of Checkbox style 
* ===========================================================
*/
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  color: #75777c;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding: 20px 0 0 70px;
  margin: 28px 0 0;
  float: left;

  transition: .5s all;
  -webkit-transition: .5s all;
  -moz-transition: .5s all;
  -o-transition: .5s all;
  -ms-transition: .5s all;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0px;
  width: 52px;
  height: 52px;
  border: 4px solid #ee205c;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  top: 22px;
  left: 15px;
  transition: all .2s;
  width: 30px;
  height: 20px;
  background-image: url(../images/system/checkbox.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  
}
/* hover style just for information */
.checkbox label:hover {
  opacity: 0.8;
}
/* ==========================================================
* End of Checkbox style 
* ===========================================================
*/





/* ==========================================================
* Begin of Radio 
* ===========================================================
*/
.radio {
  vertical-align: top;
  width: 17px;
  height: 17px;
  margin: 0 3px 0 0;
}
.radio + label {
  cursor: pointer;
}
.radio:not(checked) {
  position: absolute;
  opacity: 0;
}
.radio:not(checked) + label {
  font-weight: 600;
  position: relative;
  padding: 0 0 0 40px;
}
.radio:not(checked) + label:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 21px;
  height: 21px;
  border: 0;
  background-repeat: no-repeat;
  background-position: 0px -29px;
  background-image: url(../images/system/checkbox-sprite.png);
}
.radio:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 21px;
  height: 21px;
  border: 0;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-image: url(../images/system/checkbox-sprite.png);
  opacity: 0;
  transition: all .2s;
}
.form-radio .radio:checked + label:after {
  opacity: 1;
}
.form-radio .radio:not(checked) + label {
  color: #48484c;
}
.form-radio .radio:checked + label {
  color: #48484c;
}
/* ==========================================================
* End of Radio
* ===========================================================
*/






/* ==========================================================
* Begin of Header 
* ===========================================================
*/
.header {
  z-index: 4;
  position: relative;
  padding: 30px 0 20px;
  background-color: #fff;
}
  .header-logo {
    float: left;
    display: block;
  }
    .header-logo img {
      vertical-align: top;
      max-width: 100%;
      display: block;
    }
  .stepMenu {
    float: left;
    margin: 5px 0 0 71px;
  }
    .header .stepMenu .contribution a {
      color: #ee205c;
      padding: 8px 30px;
    }
      .header .stepMenu .contribution a:focus {
        outline: none;
      }
        .header .stepMenu .contribution a:hover {
          color: #154979;
        }
          .header .stepMenu .contribution a i {
            font-size: 20px;
            line-height: 16px;
          }
        .navbar-header {
          float: left;
        }
          .navbar-default .navbar-collapse {
            float: left;
          }
  .navbar-default {
    background-color: transparent;
    border-color: transparent;
    margin-bottom: 0;
    float: left;
    border: 0;
    min-height: inherit;
  }
    .navbar-default .stepMenu.navbar-nav > .active > a, 
    .navbar-default .stepMenu.navbar-nav > .active > a:hover, 
    .navbar-default .stepMenu.navbar-nav > .active > a:focus {
      color: #ee205c;
      background-color: transparent;
    }
    .navbar-default .navbar-nav > li > a:hover, 
    .navbar-default .navbar-nav > li > a:focus {
      color: #ee205c;
      background-color: transparent;
    }
  .header .sign-up {
    margin: 3px 0 0;
    float: right;
  }
    .sign-up .btn:first-child {
      margin: 0 0 0 25px;
    }
      .sign-up .btn {
        float: right;
        display: block;
      }
        .sign-up .btn i {
          display: none;
        }
          .sign-up .btn.btn-default:hover {
            background-color: #ee205c;
            border-color: #ee205c;
          }
  .header .phone-block,
  .header .social-list {
    display: none;
    float: none;
  }

/* ==========================================================
* End of Header 
* ===========================================================
*/





/* ==========================================================
* Begin of Main 
* ===========================================================
*/
.wrapper {
  background-color: #f2f2f2;
}
.main {
  position: relative;
  z-index: 2;
}
/* ==========================================================
* End of main 
* ===========================================================
*/





/* ==========================================================
* Begin of Slider 
* ===========================================================
*/
.slider {
  position: relative;
  overflow: hidden;
  height: 480px;
}
  .slider-image-wrap {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.25;
    overflow: hidden;
    position: absolute;
    background-image: url(../images/slider/slider-1.jpg);
    background-position: center 80%;
    background-repeat: no-repeat;
    background-color: #dadada;
    background-size: cover;
  }
    .slider-opacity {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      position: absolute;
      background-color: #dadada;
    }
    .slider-image {
      width: 100%;
      position: relative;
      opacity: 0.25;
      z-index: 2;
    }
  .slider-text {
    position: relative;
    padding: 116px 0 0;
    z-index: 2;
  }
    .slider-text .text-1 {
      color: #e50048;
      font-size: 22px;
      font-weight: 400;
      mmargin: 38px 0 0;
    }
    .slider-text .text-2 {
      color: #e50048;
      font-size: 72px;
      font-weight: 300;
      margin: 6px 0;
      ttext-transform: uppercase;
    }
    .slider-text .text-3 {
      color: #48484c;
      font-size: 22px;
      font-weight: 400;
      opacity: 0.8;
    }
  .slider-counter {
    background-color: #fff;
    display: inline-block;
    float: right;
    position: relative;
  }
    .slider-counter-title {
      margin: 0;
      color: #8e8f93;
      padding: 18px 0 20px;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      background-color: #f2f2f2;
    }
    .slider-counter-digits {
      letter-spacing: 17px;
      margin: 20px 8px 21px 15px;
      font-weight: 300;
      font-size: 53px;
      color: #adadad;
      text-align: right;
      position: relative;
    }
      .slider-counter-digits-wrap {
        background-image: url(../images/system/counter-separator.png);
        background-position: -28px 53%;
        background-repeat: repeat-x;
        position: absolute;
        top: 0;
        left: 20px;
        right: 20px;
        bottom: 0;
        background-size: 47px 50px;
      }
    .slider-counter-button {
      width: 100%;
      font-size: 25px;
      font-weight: 400;
      padding: 16px 0 21px;
    }
/* ==========================================================
* End of Slider 
* ===========================================================
*/





/* ==========================================================
* Begin of Content 
* ===========================================================
*/

/*-- 160816 new pages --*/
.default-page .content,
.default-page {
  background-color: #fff;
}
.fd-center-block {
  max-width: 736px;
  margin: 0 auto;
  padding-top: 57px;
  padding-bottom: 37px;
}
.fd-register-header {
  text-align: center;
}
.fd-register-header p {
  margin-top: 10px;
}
.fd-register-header h2 {
  color: #ee205c;
  font-size: 36px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  margin: 0;
  margin-right: 18px;
}
.fd-register-header .btn {
  min-width: 208px;
  margin-top: 10px;
  vertical-align: middle;
}
.fd-center-block .contact-call-back {
  margin-top: 28px;
}
.fd-center-block .contact-call-back-buttons {
  margin-top: 0 !important;
}
.fd-center-block .contact-call-back-buttons .btn {
  min-width: 208px;
  margin: 9px 0  9px 25px!important;
}
.fd-center-block .form-control {
  width: 100%;
}
.fd-center-block .form-group {
  margin-bottom: 27px !important;
  width: 100%;
}
.fd-small-checkbox {
  background-color: #f2f2f2;
  display: block !important;
  padding: 9px !important;
}
.fd-small-checkbox > input[type="checkbox"] {
  display: none;
}
.fd-small-checkbox label {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-left: 30px !important;
  font-weight:normal !important;
  float: none !important;
}
.fd-small-checkbox label:after {
  left: 3px !important;
  top: 4px !important;
  width: 15px !important;
  height: 12px !important;
  background-image: url(../images/system/checkbox-small.png) !important;
}
.fd-small-checkbox label:before {
  background-color: #fff !important;
  border: none !important;
  width: 20px !important;
  height: 20px !important;
  top: 0 !important;
}
.fd-already-link {
  color: #ee205c;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 3px solid #ee205c;
}
.fd-already-link:hover {
  color: #154979;
  border-color: #154979;
  text-decoration: none;
}

.fd-center-block.fd-as-login,
.fd-center-block.fd-as-reset-pass,
.fd-center-block.fd-some-block {
  padding-top: 174px;
  padding-bottom: 150px;
}
.fd-center-block.fd-as-login .contact-call-back {
  margin-top: 89px;
}
.fd-center-block.fd-as-login .contact-call-back-buttons {
  margin-top: 43px !important;
}

.fd-center-block.fd-as-login .fd-already-link {
  font-size: 14px;
  border: none !important;
}


.fd-center-block.fd-as-reset-pass h2 {
  margin-bottom: 17px;
}
.fd-center-block.fd-as-reset-pass .btn {
  margin-top: 32px;
}
.fd-center-block.fd-as-reset-pass .contact-call-back {
  margin-top: 69px;
}
.fd-center-block.fd-as-reset-pass .contact-call-back-buttons {
  margin-top: 43px !important;
}

.fd-center-block.fd-some-block {
  max-width: 800px;
}
.fd-center-block.fd-some-block h2 {
  margin: 0;
}
.fd-center-block.fd-some-block h2 span {
  color: #7d7f85;
}

.fd-result {
  font-weight: bold;
  font-size: 24px;
  color: #21c183;
  margin: 60px 0;
}

.fd-result.fd-link-good {
  background-color: #21c183;
}
.fd-result.fd-link-notgood {
  background-color: #cb9f1a;
}
.fd-result.fd-link-bad {
  background-color: #ee205c;
}

.fd-buttons-result {
  padding-top: 10px;
}
.fd-buttons-result .btn {
  margin: 0 10px 10px 0;
}

.fd-test-header h1 span {
  color: #ee205c;
}
.fd-test-header {
  margin-bottom: 31px;
}

.fd-content-wrap {
  margin-top: 56px;
  margin-bottom: 56px;
}
.fd-content-wrap img {
  margin-top: 32px;
  margin-bottom: 20px;
}
.fd-content-wrap h1 {
  text-transform: none !important;
  font-size: 36px !important;
  font-weight: normal !important;
}
.fd-content-wrap h5 {
  font-weight: bold;
  color: #ee205c;
  margin-top: 25px;
  margin-bottom: 20px;
}
.fd-content-min-paginate {
  padding-top: 5px;
}
.fd-content-min-paginate .btn {
  min-width: 208px;
  margin: 10px 0 10px 10px;
}


.fd-top-banner {
  min-height: 252px;
  overflow: hidden;
  background: url(/images/system/banner.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.fd-top-banner-content {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
  padding: 35px 10px;
  color: #e50048;
}
.fd-top-banner-content h3 {
  font-size: 17px;
  margin-top: 0;
  font-weight: 800;
}
.fd-top-banner-content h2 {
  font-size: 63px;
  text-transform: uppercase;
  font-weight:300;
  margin-top: 0;
}

.fd-top-banner-content p {
  font-weight:bold;
  text-transform: uppercase;
  color: #999;
}

.fd-top-banner-content .btn {
  min-width: 207px;
  font-size: 14px !important;
  margin: 15px 5px 0;
}

.fd-course-header h1 {
  color: #ee205c;
  margin-bottom: 30px;
}
.fd-course-header h1 span {
  font-size: 24px;
  color: #6f7474;
}
.fd-course-header p {
  margin-bottom: 15px;
}
.fd-course-header strong {
  color: #ee205c;
}
.fd-course-results-end {
  margin-bottom: 20px;
}
.fd-course-results-end > div {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  width: 104px;
  text-align: center;
  margin-bottom: 20px;
}
.fd-course-result {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  color: #ee205c;
  line-height: 1.2;
  text-decoration: none !important;
  font-size: 10px;
  text-align: center;
  font-weight:600;
  -webkit-transition-property: none;
  -moz-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
  background: url(../images/system/course-result.png) -1000px -1000px no-repeat;
}
.fd-course-result:hover {
  opacity: 0.8;
}
.fd-course-result.fd-course-time span {
  font-size: 26px;
  line-height: 1;
  display: block;
  padding-left: 22px;
  background: url(../images/system/course-result.png) 0px 0px no-repeat;
}

.fd-course-result.fd-course-video {
  padding-top: 25px;
  background-position: 3px -88px;
}
.fd-course-result.fd-course-video.fd-active {
  background-position: -31px -88px;
  color: #6f7474;
}

.fd-course-result.fd-course-dic {
  padding-top: 25px;
  background-position: -61px -88px;
}
.fd-course-result.fd-course-dic.fd-active {
  background-position: -95px -88px;
  color: #6f7474;
}


.fd-course-result.fd-course-pres {
  padding-top: 25px;
  background-position: -140px -88px;
}
.fd-course-result.fd-course-pres.fd-active {
  background-position: -195px -88px;
  color: #6f7474;
}



.fd-course-result.fd-course-test {
  padding-top: 25px;
  background-position: -271px -88px;
}
.fd-course-result.fd-course-test.fd-active {
  background-position: -325px -88px;
  color: #21c183;
}


.fd-course-result.fd-course-book {
  padding-top: 25px;
  background-position: -362px -88px;
}
.fd-course-result.fd-course-book.fd-active {
  background-position: -427px -88px;
  color: #6f7474;
}






.fd-course-line {
  padding-top: 15px;
}
.fd-course-mark {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  *display: inline;
  zoom: 1;
  line-height: 1.3;
  margin-right: 26px;
  vertical-align: middle !important;
}
.fd-course-mark.fd-course-good {
  color: #21c183;
}
.fd-course-mark.fd-course-notgood {
  color: #cb9f1a;
}
.fd-course-mark.fd-course-bad {
  color: #ee205c;
}


.fd-course-link {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-top: 3px;
  padding: 1px 7px;
  vertical-align: middle !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: bold;
}
.fd-course-link.fd-link-good {
  background-color: #21c183;
}
.fd-course-link.fd-link-notgood {
  background-color: #cb9f1a;
}
.fd-course-link.fd-link-bad {
  background-color: #ee205c;
}
.fd-course-link:hover {
  opacity: 0.8;
}

.fd-course-line-header h2 {
  color: #6f7474;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-right: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
  vertical-align: middle !important;
}
.fd-course-line-header.fd-active h2 {
  color: #ee205c;
}
.fd-course-wrapper {
  margin-bottom: 45px;
}
.fd-course-line-questions {
  margin-top: 10px;
  margin-bottom: 20px;
}
.fd-course-line-questions .form-group {
  margin-bottom: 6px;
}
.fd-course-line-questions .fd-small-checkbox {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  margin: 0 !important;
  padding: 2px 5px !important;
}
.fd-course-line-questions label {
  font-size: 14px !important;
  padding-left: 26px !important;
}
.fd-course-line-questions .fd-small-checkbox label:before {
  width: 14px !important;
  height: 14px !important;
  top: 3px !important;
}
.fd-course-line-questions .fd-small-checkbox label:after {
  background-image: url(../images/system/checkbox-extra-small.png) !important;
  width: 12px !important;
  height: 9px !important;
  left: 1px !important;
  top: 6px !important;
}

.fd-course-get {
  margin: 32px 0 0 0;
}


@media all and (max-width: 768px) {
  .contact-call-back-buttons.row-buttons div {
    text-align: center !important;
  }
  .fd-top-banner {
    display: none;
  }
  .fd-top-banner-content h2 {
    font-size: 50px;
  }
}
@media all and (max-width: 421px) {
  .fd-register-header .btn {
    font-size: 14px !important;
  }
}
@media all and (max-width: 521px) {
  .fd-center-block .contact-call-back-buttons .btn {
    margin-top: 25px !important;
    margin-right: 25px !important;
    margin-bottom: 0 !important;
  }
}
/*-- /160816 new pages --*/

/*-- 050916 certificate --*/

.fd-certificate-page {
  min-height:100%;
}


.fd-certificate-page {
  overflow: hidden;
  position: relative;
}

.fd-certificate-page .fd-mask {
  bottom: 0;
  left: 0;
  width: auto;
  right: 0;
  height: 600px;
  position: absolute;
  z-index: -1;
  background: url(../images/certificate/bg-mask.png) center top no-repeat;
}

.fd-certificate-header {
  padding-top: 21px;
}
.fd-certificate-header img {
  width: 155px;
}

.fd-img-top {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  width: 155px;
  margin: 20px 45px 0 45px;
}


.fd-certificate-body {
  padding-top: 70px;
}
.fd-certificate-body h1 {
  color: #6bd6ed;
  font-size: 70px;
  font-weight:800;
  margin: 0 0 40px 0;
}

.fd-certificate-body h2 {
  color: #ee175d;
  font-weight:800;
  font-size: 45px;
  line-height: 1;
  margin-top: 50px;
  margin-bottom: 34px;
  text-transform: uppercase;
}
.fd-certificate-body h2 span {
  font-size: 25px;
}

.fd-certificate-body p {
  color: #b7b7b7;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}

.fd-certificate-body p span {
  color: #ee175d;
}

.fd-certificate-name {
  background-color: #fff;
  border: 4px solid #ebebeb;
  text-transform: uppercase;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin: 25px 0;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  min-width: 670px;
  padding: 10px 12px;
}


.fd-certificate-footer {
  margin-top: 22px;
  margin-bottom: 74px;
}
.fd-certificate-footer > .row {
  font-size: 0;
}
.fd-certificate-footer > .row > div {
  float: none;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
}

.fd-certificate-user {
  color: #b7b7b7;
  font-size: 15px;
}
.fd-certificate-user span {
  display: block;
  font-size: 19px;
  font-weight:600;
  margin-top: 16px;
  margin-bottom: 16px;
}


.fd-certificate-user-block {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin: 22px 40px 0 40px;
  text-align: left;
  vertical-align: bottom;
  width: 200px;
}

.fd-certificate-user-box {
  position: relative;
  border: 4px solid #ebebeb;
  background-color: #fff;
  min-height: 60px;
}

.fd-certificate-user-box > img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 130px;
}


@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  *:first-line {
    background: transparent !important;
    /* Black prints faster:
									  http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  .fd-certificate-body h1 {
    color: #6bd6ed !important;
  }

  .fd-certificate-body h2,
  .fd-certificate-body h2 span {
    color: #ee175d !important;
  }

  .fd-certificate-body p {
    color: #b7b7b7 !important;
  }

  .fd-certificate-body p span {
    color: #ee175d !important;
  }

  .fd-certificate-name {
    background-color: #fff !important;
    border: 4px solid #ebebeb !important;
    color: #000 !important;
  }

  .fd-certificate-user,
  .fd-certificate-user span {
    color: #b7b7b7 !important;
  }
  .fd-certificate-user-box {
    border: 4px solid #ebebeb !important;
    background-color: #fff !important;
  }

  @page {
    /*size: 7in 9.25in;*/
    /*margin: 7mm 6mm 7mm 6mm;*/
  }
}

  /*-- /050916 certificate --*/

.home-page .content {
  background-image: url(../images/system/content-double-color.png);
  background-repeat: repeat-y;
  background-position: 50% 50%;
}
  .content-header {
    padding: 50px 0 69px 7px;
  }
    .content-header h1 {
      font-weight: 700;
      font-size: 36px;
      color: #ee205c;
      margin: 0;
      letter-spacing: 1px;
    }
    .content-header h2 {
      font-weight: 400;
      font-size: 36px;
      color: #8b8c8e;
      margin: 0 0 4px;
      letter-spacing: 1px;
    }
  .content-main {

  }
    .content-main-item {
      text-align: center;
      padding: 0;
      margin: 0 0 97px;
    }
      .content-main-item.button-item {
        padding: 87px 0 0;
        text-align: left;
      }
        .content-main-item.button-item p {
          margin: 0 0 25px;
          color: #ee205c;
          font-weight: 700;
        }
      .content-main-item i {
        font-size: 48px;
        color: #ed2760;
      }
      .content-main-item h3 {
        font-size: 37px;
        margin: 6px 0 18px;
        color: #8b8c8e;
      }
      .content-main-item p {
        line-height: 17px;
        font-size: 14px;
        color: #48484c;
      }
/* ==========================================================
* End of Content 
* ===========================================================
*/




/* ==========================================================
* Begin of Sidebar 
* ===========================================================
*/
.sidebar {
  margin: 52px 0 80px 20px;
}
  .widget {
    margin: 0 0 51px;
  }
    .widget-header {
      margin: 0 0 52px;
    }
      .widget-header h3 {
        font-size: 34px;
        letter-spacing: 2px;
        color: #ee205c;
      }
    .widget-content {}
      .widget-content ul {}
        .widget-content ul li {
          margin: 0 0 16px;
        }
          .widget-content ul li a {
            display: block;
          }
            .widget-content ul li a i {
              margin: 0 25px 0 0;
              font-size: 23px;
              width: 35px;
              display: inline-block;
              float: left;
              color: #d7d7d7;
            }
            .widget-content ul li a span {
              width: 230px;
              margin: 8px 0 0 0;
              font-size: 15px;
              color: #48484c;
              display: inline-block;
            }
        .widget-footer {
          margin: 41px 0 0;
        }
          .widget-readmore {
            color: #ee205c;
            font-size: 16px;
            font-weight: 900;
          }
            .widget-readmore:hover {
              color: #154979;
            }
              .widget-readmore i {
                margin: 0 25px 0 0;
                font-size: 20px;
                width: 35px;
                display: inline-block;
              }
/* ==========================================================
* End of Sidebar 
* ===========================================================
*/





/* ==========================================================
* Begin of Sign up page
* ===========================================================
*/
  .sign-up-page .form-group.btn-form .btn {
    margin: 0 0 0 26px;
    padding: 10px 40px;
  }
    .sign-up-page .form-group.btn-form .btn.btn-default i {
      margin: 0 8px 0 0;
    }
    .sign-up-page .form-group.btn-form .btn.btn-primary i {
      margin: 0 0 0 8px;
    }
  .sign-up-page .main-sign-icon {
    font-size: 46px;
    color: #ed2760;
  }


/* ==========================================================
* End of Sign up page
* ===========================================================
*/






/* ==========================================================
* Begin of Sign up step 0 page
* ===========================================================
*/
.sign-up-page.sign-0 {}
  .sign-up-page.sign-0 .form-inner-wrap {
    background-color: #fff;
    padding: 0 24px 1px;
    margin: 36px 0 30px;
  }
  .form-inner-wrap h1 {
    font-weight: 400;
    font-size: 36px;
    color: #8b8c8e;
    padding: 25px 0 14px;
    letter-spacing: 1px;
  }
    .form-inner-wrap p {
      font-weight: 400;
      font-size: 14px;
      padding: 0 0 16px;
      line-height: 18px;
      color: #75777c;
    }
      .sign-up-page.sign-0 .form-inner-wrap p.text-warning {
        color: #ee205c;
        font-weight: 700;
      }
        .sign-up-page.sign-0 .form-inner-wrap p {
          color: #48484c;
        }
    .sign-up-page.sign-0 .form-group {
      margin-bottom: 24px;
      margin-left: 5px;
    }
  #ui-datepicker-div {
    width: 311px;
  }
  .sign-up-page.sign-0 .form-inner-row {
    margin: 12px 0 30px;
  }
    .sign-up-page.sign-0 .form-number {
      padding: 0 20px 0 0;
    }
    .sign-up-page.sign-0 .control-label {
      color: #ee205c;
      margin: 0 0 22px;
    }
    .sign-up-page.sign-0 .form-label {

    }
    .sign-up-page.sign-0 .form-radio label {
      color: #ee205c;
      margin: 0 0 13px;
    }
      .sign-up-page.sign-0 .form-radio .radio-block label {
        color: #48484c;
        font-weight: 400;
      }

  .sign-up-page.sign-0 .form-group.btn-form {
    text-align: right;
  }
    .sign-up-page.sign-0 .form-group.form-date .shortDateFormat {
      height: 80px;
      width: 285px;
      border: 4px solid #ee205c;
      font-size: 28px;
      color: #aeafaf;
      text-align: center;
    }
      .sign-up-page.sign-0 .form-group.form-date input[type="date"]:focus,
      .sign-up-page.sign-0 .form-group.form-date input[type="date"]:active {
        outline: none;
        box-shadow: none
      }
        .sign-up-page.sign-0 .form-group.form-date input[type="date"]::-webkit-clear-button,
        .sign-up-page.sign-0 .form-group.form-date input[type="date"]::-webkit-calendar-picker-indicator,
        .sign-up-page.sign-0 .form-group.form-date input[type="date"]::-webkit-inner-spin-button { 
          display: none; 
        }
    .sign-up-page.sign-0 .form-group .btn-default,
    .sign-up-page.sign-0 .form-group .btn-primary {
      padding: 10px 22px;
      height: auto;
    }
      .sign-up-page .form-group.btn-form {
        margin-bottom: 60px;
      }
/* ==========================================================
* End of Sign up step 0 page
* ===========================================================
*/




/* ==========================================================
* Begin of Sign up step 1 page
* ===========================================================
*/
.sign-up-page {}
  .sign-up-page.sign-1 .form-inner-wrap {
    background-color: #fff;
    padding: 0 24px 1px;
    margin: 36px 0 30px;
  }
  .sign-up-page.sign-1 .form-group.btn-form .btn {
    margin: 0 0 0 26px;
    padding: 10px 14px;
  }
  .sign-up-page.sign-1 .form-inner-row {
    margin: 12px 0 30px;
    height: 634px;
  }
    .sign-up-page.sign-1 p {
      font-weight: 400;
      line-height: 17px;
    }
    .sign-up-page.sign-1 span {
      margin: 0 0 0px;
    }
      .sign-up-page.sign-1 .form-group.btn-form {
        text-align: right;
      }
        .sign-up-page.sign-1 .form-group.btn-form .btn {
          margin: 0 0 0 10px;
        }
        .sign-up-page.sign-1 .form-group.btn-form {
          margin-bottom: 60px;
        }
/* ==========================================================
* End of Sign up step 1 page
* ===========================================================
*/





/* ==========================================================
* Begin of Sign up step 2 page
* ===========================================================
*/
.sign-up-page.sign-2 {
  background-color: #fff;
}
  .sign-up-page.sign-2 .form-inner-wrap {
    margin: 167px 0 0px;
  }
    .sign-up-page.sign-2 .form-group.btn-form {
      text-align: right;
      margin-bottom: 60px;
    }
          .sign-up-page.sign-2 .form-group.btn-form .btn i {
            font-size: 11px;
          }
            .sign-up-page.sign-2 .form-group.btn-form .btn.btn-primary i {
              padding: 0 0 0 8px;
            }
            .sign-up-page.sign-2 .form-group.btn-form .btn.btn-default i {
              padding: 0 8px 0 0;
            }
    .sign-up-page.sign-2 .main-sign-icon {
      font-size: 46px;
      color: #ed2760;
    }
    .sign-up-page.sign-2 .selectric-wrapper {
      width: 260px;
      margin: auto;
      margin-top: 17px;
      margin-bottom: 222px;
    }
      .sign-up-page.sign-2 .selectric {
        border: 0;
        border-radius: 0;
        background-color: #f2f2f2;
      }
        .sign-up-page.sign-2 .selectric .label {
          margin: 0 38px 0 15px;
          line-height: 40px;
          text-align: left;
          font-size: 16px;
          color: #8e8f93;
          height: 40px;
        }
          .sign-up-page.sign-2 .selectric .button:after {
            color: #c7c7c7;
            content: '';
            display: block;
            position: absolute;
            top: 2px;
            right: 11px;
            width: 0;
            height: 0;
            margin-left: 2px;
            vertical-align: middle;
            border-top: 15px dashed;
            border-top: 4px solid \9;
            border-right: 10px solid transparent;
            border-left: 10px solid transparent;
            left: auto;
          }
/* ==========================================================
* End of Sign up step 2 page
* ===========================================================
*/




/* ==========================================================
* Begin of Sign up step 3 page
* ===========================================================
*/
.sign-up-page.sign-3 {
  background-color: #fff;
}
  .sign-up-page.sign-3 .form-inner-wrap {
    margin: 120px 0 30px;
  }

  .sign-up-page.sign-3 .form-inner-wrap h1 {
    padding: 25px 0 61px;
  }
    .sign-up-page.sign-3 .main-sign-icon {
      font-size: 46px;
      color: #ed2760;
    }
  .add-icon {
    margin: 12px 0 0 4px;
  }
    .add-icon a {
      cursor: pointer;
    }
      .add-icon i {
        font-size: 46px;
        color: #b3b3b3;

        transition: .5s all;
        -webkit-transition: .5s all;
        -moz-transition: .5s all;
        -o-transition: .5s all;
        -ms-transition: .5s all;
      }
        .add-icon i:hover {
          color: #ee205c;
        }
  .sign-up-page.sign-3 .form-radio-wrap {
    position: relative;
  }
    .sign-up-page.sign-3 .form-group {
      
    }
      .sign-up-page.sign-3 .nav-tabs {
        border: 0;
      }
        .sign-up-page.sign-3 .nav-tabs li {
          margin-bottom: 20px;
        }
          .sign-up-page.sign-3 .radio-block-wrap {
            display: table;
            min-height: 100px;
            width: 100%;
          }
            .sign-up-page.sign-3 .radio-block {
              text-align: center;
              border: 4px solid #ee205c;
              padding: 10px 30px 0;
              display: table-cell;
              vertical-align: middle;

              transition: .5s all;
              -webkit-transition: .5s all;
              -moz-transition: .5s all;
              -o-transition: .5s all;
              -ms-transition: .5s all;
            }
              .sign-up-page.sign-3 .nav-tabs li.active .radio-block,
              .sign-up-page.sign-3 .nav-tabs .radio-block-wrap:active .radio-block,
              .sign-up-page.sign-3 .nav-tabs .radio-block-wrap:hover .radio-block {
                background-color: #ee205c;
                cursor: pointer;
              }
                .sign-up-page.sign-3 .nav-tabs li.active p,
                .sign-up-page.sign-3 .nav-tabs .radio-block-wrap:active p,
                .sign-up-page.sign-3 .nav-tabs .radio-block-wrap:hover p {
                  color: #fff;
                }
            .sign-up-page.sign-3 .radio-i {
              text-align: center;
              margin: 9px 0 0;
            }
              .sign-up-page.sign-3 .radio-i .radio-item {
                position: relative;
              }
                .sign-up-page.sign-3 .radio-i i {
                  font-size: 22px;
                  margin: 0 5px 0 0;
                  color: #b3b3b3;

                  transition: .5s all;
                  -webkit-transition: .5s all;
                  -moz-transition: .5s all;
                  -o-transition: .5s all;
                  -ms-transition: .5s all;
                }
                  .sign-up-page.sign-3 .radio-i .radio-item:hover i {
                    color: #ee205c;
                    cursor: pointer;
                  }
                    .sign-up-page.sign-3 .radio-i .radio-item span {
                      color: #fff;
                      font-size: 12px;
                      font-weight: 600;

                      background-color: #c0c0c0;
                      margin-left: -70px;
                      position: absolute;
                      text-align: center;
                      padding: 7px 15px;
                      width: 140px;
                      z-index: 3;
                      top: 40px;
                      left: 50%;

                      opacity: 0;
                      visibility: hidden;
                      transition: visibility 0s, opacity 0.5s linear;

                      transition: .5s all;
                      -webkit-transition: .5s all;
                      -moz-transition: .5s all;
                      -o-transition: .5s all;
                      -ms-transition: .5s all;
                    }
                      .sign-up-page.sign-3 .radio-i .radio-item span:after {
                        content: '';
                        position: absolute;
                        left: 50%;
                        top: -19px;
                        margin-left: -13px;
                        border: 10px solid transparent;
                        border-bottom: 10px solid #c0c0c0;
                      }
                        .sign-up-page.sign-3 .radio-i .radio-item:hover span {
                          visibility: visible;
                          opacity: 1;
                        }
              .sign-up-page.sign-3 .radio-i a {
                font-weight: 600;
                color: #a5a4a4;
              }
                .sign-up-page.sign-3 .radio-i a:hover {
                  text-decoration: none;
                  color: #ee205c;
                }
                  .sign-up-page.sign-3 .radio-i a:hover i,
                  .sign-up-page.sign-3 .radio-i i:hover {
                    color: #ee205c;
                  }

            .nav-block {
              margin: 150px 0 0;
            }
              .nav-block .user-agreement {

              }
                .nav-block .user-agreement p {
                  color: #888a8f;
                  font-size: 12px;
                  font-weight: 600;
                }
                  .nav-block .user-agreement p a {
                    color: #f43c6f;
                    font-weight: 700;
                    text-decoration: none;
                    text-transform: uppercase;
                  }
                    .nav-block .user-agreement p a:hover {
                      text-decoration: underline;
                    }
                    
                    
 .form__title a {
                    color: #f43c6f;
                    font-weight: 700;
                    text-decoration: none;
                    text-transform: uppercase;
                  }                   
                    
/* ==========================================================
* End of Sign up step 3 page
* ===========================================================
*/





/* ==========================================================
* Begin of Sign up step 4 page
* ===========================================================
*/

/* ==========================================================
* End of Sign up step 4 page
* ===========================================================
*/





/* ==========================================================
* Begin of Sign up step 5 page
* ===========================================================
*/
.sign-up-page.sign-5 {
  background-color: #fff;
}
  .sign-up-page.sign-5 .form-inner-wrap h1 {
    padding: 25px 0 29px;
  }
  .sign-up-page.sign-5 .form-inner-wrap {
    margin: 60px 0 30px;
  }
  .doctor-list {
    border: 0;
    text-align: center;
  }
    .sign-up-page .doctor-list .doctor-item {
      display: inline-block;
      margin: 0 44px;
      float: none;
      max-width: 200px;
      vertical-align: top;
    }
      .sign-up-page .doctor-list .doctor-item .doctor-link {
        display: inline-block;
        position: relative;
        border-radius: 100%;
        overflow: hidden;
        border: 0;
      }
        .sign-up-page.sign-5 .doctor-link {
          margin: 0 0 43px;
        }
        .doctor-item .doctor-image {
          border: 5px solid #ee205c;
          vertical-align: top;
          max-width: 100%;
        }
        .hover-layer {
          opacity: 0;
          background-color: rgba(238, 32, 92, 0.6);
          position: absolute;
          z-index: 1;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          border-radius: 100%;
          overflow: hidden;

          transition: opacity 0.8s ease-out;
          -moz-transition: opacity 0.8s ease-out;
          -webkit-transition: opacity 0.8s ease-out;
          -o-transition: opacity 0.8s ease-out;
        }
          .hover-layer i {
            top: 50%;
            left: 50%;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
            position: absolute;
            margin: -20px 0 0 -20px;

            transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            -webkit-transition: all 0.5s ease-out;
            -o-transition: all 0.5s ease-out;
          }
            .hover-layer i:hover {
              color: #ee205c;
            }
          .doctor-link:hover {

          }
            .doctor-link:hover .doctor-image {
             
            }
            .sign-up-page .doctor-list .doctor-item.active .hover-layer,
            .doctor-link:hover .hover-layer {
              opacity: 1;
            }
              .doctor-item .doctor-image {
                border-radius: 100%;
                border: 5px solid #ee205c;
                max-width: 180px;
              }
              .doctor-item .doctor-name {
                font-size: 25px;
                font-weight: 400;
                color: #8b8c8e;
                line-height: 28px;
              }
              .doctor-item .doctor-type {
                font-size: 14px;
                font-weight: 400;
                color: #48484c;
              }
              .doctor-item .doctor-price {
                text-transform: uppercase;
                font-weight: 600;
                font-size: 11px;
                color: #f43c6f;
                padding: 6px 0 10px;
              }
                .doctor-item .doctor-price.free {
                  font-size: 11px;
                }
                .doctor-item .doctor-price.not-free {
                  font-size: 14px;
                }
      .rating {
        margin: 0px 0 10px;
        text-align: center;
      }
        .rating li {
          display: inline-block;
        }
          .rating li.hey i {
            color: #d7d7d7;
          }
            .rating li i {
              color: #ee205c;
              font-size: 12px;

              transition: .5s all;
              -webkit-transition: .5s all;
              -moz-transition: .5s all;
              -o-transition: .5s all;
              -ms-transition: .5s all;
            }
              .rating li i:hover {
                color: #ee205c;
                cursor: pointer;
              }
        .rating-5 li i {
          color: #ee205c;
        }
            .rating-4 li:nth-child(5) i {
              color: #d7d7d7;
            }
              .rating-3 li:nth-child(5) i,
              .rating-3 li:nth-child(4) i {
                color: #d7d7d7;
              }
                .rating-2 li:nth-child(5) i,
                .rating-2 li:nth-child(4) i,
                .rating-2 li:nth-child(3) i {
                  color: #d7d7d7;
                }
                  .rating-1 li:nth-child(5) i,
                  .rating-1 li:nth-child(4) i,
                  .rating-1 li:nth-child(3) i,
                  .rating-1 li:nth-child(2) i {
                    color: #d7d7d7;
                  }
/* ==========================================================
* End of Sign up step 5 page
* ===========================================================
*/






/* ==========================================================
* Begin of Sign up step 6 page
* ===========================================================
*/
.sign-up-page.sign-6 {
  background-color: #fff;
}
  .sign-up-page.sign-6 .form-inner-wrap h1 {
    padding: 23px 0 20px;
  }
  .sign-up-page.sign-6 .form-inner-wrap {
    margin: 86px 0 30px;
  }
  .sign-up-page.sign-6 .main-sign-icon {
    font-size: 48px;
  }
    .sign-up-page.sign-6 .nav-block {
      margin: 50px 0;
    }
      .calendar-wrap {
        position: relative;
      }
        .calendar-wrap > input {
          position: absolute;
          width: 100%;
          z-index: 1;
          border: 0;
          opacity: 0;
        }
        .calendar-wrap > div {
          z-index: 2;
          width: 100%;
          height: auto;
          position: relative;
          top: auto !important;
          left: auto !important;
        }
/* ==========================================================
* End of Sign up step 6 page
* ===========================================================
*/





/* ==========================================================
* Begin of Sign up step 7 page
* ===========================================================
*/
.sign-up-page.sign-7 {
  background-color: #fff;
}
  .sign-up-page.sign-7 .form-inner-wrap h1 {
    padding: 25px 0 41px;
  }
  .sign-up-page.sign-7 .form-inner-wrap {
    margin: 60px 0 30px;
  }
    .sign-up-page.sign-7 .nav-tabs {
      text-align: center;
      border: 0;
    }
      .sign-up-page.sign-7 .nav-tabs li {
        float: none;
        margin: 0 20px;
        display: inline-block;
      }
        .sign-up-page.sign-7 .radio-block {
          text-align: center;
          border: 4px solid #ee205c;
          padding: 9px 20px 1px;
          display: table-cell;
          vertical-align: middle;

          transition: .5s all;
          -webkit-transition: .5s all;
          -moz-transition: .5s all;
          -o-transition: .5s all;
          -ms-transition: .5s all;
        }
          .sign-up-page.sign-7 .nav-tabs li.active .radio-block,
          .sign-up-page.sign-7 .nav-tabs li:active .radio-block,
          .sign-up-page.sign-7 .nav-tabs li:hover .radio-block {
            background-color: #ee205c;
            cursor: pointer;
          }
            .sign-up-page.sign-7 .nav-tabs li.active p,
            .sign-up-page.sign-7 .nav-tabs li:active p,
            .sign-up-page.sign-7 .nav-tabs li:hover p {
              color: #fff;
            }
              .sign-up-page.sign-7 .nav-tabs li p {
                padding: 0 0 7px;
                color: #75777c;
              }
/* ==========================================================
* End of Sign up step 7 page
* ===========================================================
*/





/* ==========================================================
* Begin of Sign up step 8 page
* ===========================================================
*/
.sign-up-page.sign-8 {
  background-color: #fff;
}
  .phone-form-wrap {
    position: relative;
  }
    .phone-form-wrap .placeholder {
      position: absolute;
      background-color: #fff;
      color: #aeafaf;
      font-size: 28px;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      padding: 15px 0 0 10px;
    }
  .wrapper.contact-page input[type="text"],
  .sign-up-page.sign-8 input[type="tel"],
  .sign-up-page.sign-8 input[type="text"],
  .sign-up-page.sign-8 input[type="email"],
  .sign-up-page.sign-8 input[type="password"] {
    width: 100%;
    height: 80px;
    color: #aeafaf;
    font-size: 28px;
    border-radius: 0;
    border: 4px solid #ee205c;
  }
    .wrapper.contact-page input[type="text"]:disabled,
    .sign-up-page.sign-8 input[type="tel"]:disabled,
    .sign-up-page.sign-8 input[type="text"]:disabled,
    .sign-up-page.sign-8 input[type="email"]:disabled,
    .sign-up-page.sign-8 input[type="password"]:disabled {
      border: 4px solid #ccc;
    }
  .sign-up-page.sign-8 .form-inner-wrap h1 {
    padding: 0px 0 21px;
    font-size: 36px;
    letter-spacing: 1px;
    margin-top: 40px;
  }
  .sign-up-page.sign-8 .form-inner-wrap {
    margin: 85px 0 30px;
  }
    .sign-up-page.sign-8 .sign-uvaga {
      background-color: #f2f2f2;
      padding: 33px 30px 140px;
    }
      .sign-up-page.sign-8 .sign-uvaga i {
        font-size: 47px;
      }
      .sign-up-page.sign-8 .sign-uvaga h2 {
        margin-top: 12px;
        margin-bottom: 35px;
        font-size: 35px;
        color: #8b8c8e;
      }
      .sign-up-page.sign-8 .sign-uvaga p {
        font-weight: 400;
        color: #48484c;
      }
    .sign-up-page.sign-8 .sign-up-right {
      margin: 0 0 0 38px;
    }
      .sign-up-page.sign-8 .sign-up-right {

      }
        .sign-up-page.sign-8 .sign-up-right i {
          font-size: 50px;
        }
        .sign-up-page.sign-8 .sign-up-right .control-label {
          margin-bottom: 12px;
          color: #75777c;
        }
          .sign-up-page.sign-8 .sign-up-right .form-group {
            margin: 1px 0 32px;
            width: 100%;
          }
            .sign-up-page.sign-8 .sign-up-right .selectric-wrapper {
              width: 100%;
            }
              .sign-up-page.sign-8 .sign-up-right .selectric {
                border: 0;
                height: 55px;
                border-radius: 0;
                background-color: #f2f2f2;
              }
                .sign-up-page.sign-8 .sign-up-right .selectric-wrapper .label {
                  color: #a3a4a6;
                  font-size: 14px;
                  font-weight: 600;
                  line-height: 51px;
                  text-align: left;
                  padding: 0 0 0 19px;
                }
                  .sign-up-page.sign-8 .sign-up-right .selectric .button {
                    display: block;
                    position: absolute;
                    right: 15px;
                    top: 8px;
                    width: 38px;
                    height: 38px;
                    color: #BBB;
                    text-align: center;
                    font: 0/0 a;
                  }
                    .sign-up-page.sign-8 .sign-up-right .selectric-wrapper .button:after {
                      color: #c7c7c7;
                      content: '';
                      display: block;
                      position: absolute;
                      top: 2px;
                      right: 11px;
                      width: 0;
                      height: 0;
                      margin-left: 2px;
                      vertical-align: middle;
                      border-top: 15px dashed;
                      border-top: 4px solid \9;
                      border-right: 10px solid transparent;
                      border-left: 10px solid transparent;
                      left: auto;
                    }
/* ==========================================================
* End of Sign up step 8 page
* ===========================================================
*/






/* ==========================================================
* Begin of Sign up step 9 page
* ===========================================================
*/
.sign-up-page.sign-9 {
  background-color: #fff;
}
  .sign-up-page.sign-9 .form-inner-wrap {
    margin: 113px 0 30px;
  }
    .sign-up-page.sign-9 .form-inner-wrap h1 {
      padding: 25px 0 27px;
    }
    .sign-up-page.sign-9 .sign-uvaga {
      background-color: #f2f2f2;
      padding: 100px 30px 28px;
    }
      .sign-up-page.sign-9 .sign-uvaga p {
        font-weight: 400;
        padding: 0 0 48px;
      }
        .sign-up-page.sign-9 .sign-uvaga p.text-warning {
          font-weight: 600;
        }
        .sign-up-page.sign-9 .sign-up-right p {
          font-weight: 600;
          color: #75777c;
          padding: 0;
          margin: 0;
        }
        .sign-up-page.sign-9 .sign-up-right p.your-email {
          color: #ee205c;
          font-size: 28px;
          font-weight: 600;
          margin: 10px 0 20px;
        }
      .sign-up-page.sign-9 input[type="text"].form-control {
        width: 100%;
        text-align: center;
        margin: 35px 0 0;
      }
  .sign-up-page.sign-9 .main-sign-icon {
    font-size: 50px;
  }

/* ==========================================================
* End of Sign up step 9 page
* ===========================================================
*/





/* ==========================================================
* Begin of Sign up step 10 page
* ===========================================================
*/
.sign-up-page.sign-10 {
  background-color: #fff;
}
  .do-splati {
    margin: 0 0 20px;
  }
    .do-splati-title {
      font-size: 14px;
      font-weight: 400;
      color: #9d9e9f;
    }
    .do-splati-price {
      
    }
      .do-splati-price span {
        font-weight: 600;
        font-size: 14px;
        color: #f43c6f;
      }
        .do-splati-price-left {
          float: left;
        }
        .do-splati-price-right {
          text-transform: uppercase;
          float: right;
        }
  .sign-up-page.sign-10 .form-inner-wrap {
    margin: 120px 0 30px;
  }
  .sign-up-page.sign-10 .form-inner-wrap h1 {
    padding: 25px 0 18px;
  }
    .sign-up-page.sign-10 .main-sign-icon {
      font-size: 46px;
      color: #ed2760;
    }
      .sign-up-page.sign-10 .nav-tabs {
        border: 0;
      }
        .sign-up-page.sign-10 .nav-tabs li {
          margin-bottom: 20px;
        }
          .sign-up-page.sign-10 .nav-tabs li label {
            margin: 0 0 5px;
          }
          .sign-up-page.sign-10 .radio-block-wrap {
            display: table;
            min-height: 100px;
            width: 100%;
          }
            .sign-up-page.sign-10 .radio-block {
              text-align: center;
              border: 4px solid #ee205c;
              padding: 3px 30px 0;
              display: table-cell;
              vertical-align: middle;

              transition: .5s all;
              -webkit-transition: .5s all;
              -moz-transition: .5s all;
              -o-transition: .5s all;
              -ms-transition: .5s all;
            }
              .sign-up-page.sign-10 .radio-block img {
                max-width: 100%;
              }
              .sign-up-page.sign-10 .nav-tabs li.active .radio-block,
              .sign-up-page.sign-10 .nav-tabs .radio-block-wrap:active .radio-block,
              .sign-up-page.sign-10 .nav-tabs .radio-block-wrap:hover .radio-block {
                background-color: #ee205c;
                cursor: pointer;
              }
                .sign-up-page.sign-10 .nav-tabs li.active p,
                .sign-up-page.sign-10 .nav-tabs .radio-block-wrap:active p,
                .sign-up-page.sign-10 .nav-tabs .radio-block-wrap:hover p {
                  color: #fff;
                }
/* ==========================================================
* End of Sign up step 10 page
* ===========================================================
*/





/* ==========================================================
* Begin of Sign up step 11 page
* ===========================================================
*/
.sign-up-page.sign-11 {
  background-color: #fff;
}
  .sign-up-page.sign-11 .form-inner-wrap {
    margin: 80px 0 30px;
  }

  .sign-up-page.sign-11 .form-inner-wrap h1 {
    padding: 22px 0 5px;
  }
    .sign-up-page.sign-11 .main-sign-icon {
      font-weight: bold;
      font-size: 52px;
      color: #ed2760;
    }
      .sign-up-page.sign-11 .form-radio-wrap {
        background-color: #f2f2f2;
        margin: 37px 0 0;
        padding: 25px 23px 15px 29px;
      }
        .sign-up-page.sign-11 .form-radio-wrap h2 {
          font-size: 38px;
          color: #8b8c8e;
          margin: 0 0 18px;
        }
        .sign-up-page.sign-11 .form-radio-wrap .order-number {
          float: right;
          color: #ffffff;
          font-size: 14px;
          font-weight: 700;
          padding: 11px 45px;
          letter-spacing: 1px;
          background-color: #ee205c;
          width: auto;
        }
          .sign-up-page.sign-11 .form-radio-wrap p {
            font-weight: 400;
            padding: 0 0 14px;
            width: 200px;
          }
          .sign-up-page.sign-11 .form-radio-wrap p.order-info {
            font-size: 11px;
            width: auto;
            margin: 25px 0 0;
            letter-spacing: 0px;
          }
            .anketa-action {
              margin: 26px 0 165px;
              text-align: right;
            }
              .anketa-action .btn-vnesok {
                float: right;
                padding: 5px 20px;
                margin: 0 20px 0 0;
                color: #ee205c;
                font-weight: 600;
              }
                .anketa-action i {
                  float: left;
                }
                .anketa-action span {
                  float: left;
                  margin: 6px 0 0 4px;
                }
                  .anketa-action .btn-vnesok:hover {
                    color: #fff;
                  }
              .anketa-action .btn-anketa {
                float: right;
              }
              .anketa-action .btn-print {
                float: right;
              }
                .anketa-action .btn-default .demo-icon {
                  font-size: 22px;
                }
            .sign-up-page.sign-11 .form-inner-wrap .btn {
              
            }
              .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info {
                background-color: transparent;
                border: 0;
                text-align: right;
                color: #a9a9ab;

                transition: .5s all;
                -webkit-transition: .5s all;
                -moz-transition: .5s all;
                -o-transition: .5s all;
                -ms-transition: .5s all;
              }
                .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-left {
                  color: #f43c6f;
                  margin: 14px 0 0;
                  white-space: normal;
                }
                  .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-left:hover {
                    color: #a9a9ab;
                  }
                    .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-right {
                      margin: 0 20px 0 0;
                    }
                      .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-left span {
                        font-weight: 600;
                        font-size: 11px;
                        line-height: 12px;
                        float: left;
                        margin: 14px 0px 0 0;
                      }
                      .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-right span {
                        font-weight: 600;
                        font-size: 11px;
                        line-height: 12px;
                        float: right;
                        margin: 6px 0px 0 0;
                      }
                        .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info:hover {
                          color: #ee205c;
                        }
        .btn.btn-info {
          padding: 0;
        }
          .btn-left {
          }
            .btn-info .demo-icon {
              font-size: 26px;
            }
              .btn-left .demo-icon {
                float: left;
                margin: 2px 8px 0 0;
              }
              .btn-right .demo-icon {
                float: right;
                margin: 2px 0 0 5px;
              }
/* ==========================================================
* End of Sign up step 10 page
* ===========================================================
*/





/* ==========================================================
* Begin of FAQ page
* ===========================================================
*/
.wrapper.faq-page {
  background-color: #fff;
}
  .faq-header {
    background-color: #f5f5f5;
    padding: 0 0 40px;
    margin: 0 0 32px;
  }
    .faq-header .faq-header-title {
      font-weight: 700;
      font-size: 36px;
      color: #f43c6f;
      margin: 27px 0 14px;
    }
    .faq-header-descr {
      font-weight: 400;
      font-size: 14px;
      line-height: 17px;
      color: #5a5b5e;
    }
  .faq-content-wrap {
    padding: 0 0 50px;
  }
    .faq-content-wrap {

    }
      .questions-list {

      }
        .questions-item {
          margin: 0 0 22px;
        }
          .questions-item h2 {
            font-weight: 700;
            font-size: 24px;
            color: #f43c6f;
            margin: 0;

            transition: .5s all;
            -webkit-transition: .5s all;
            -moz-transition: .5s all;
            -o-transition: .5s all;
            -ms-transition: .5s all;
          }
            .questions-item h2:hover {
              cursor: pointer;
              color: #757575;
            }
        .questions-item-descr {
          display: none;
          background-color: #f5f5f5;
          padding: 84px 25px 64px 23px;
          margin: 25px 0 0;
          position: relative;
        }
          .questions-item-descr-close {
            position: absolute;
            right: 34px;
            top: 20px;
            cursor: pointer;
            font-size: 18px;
            color: #757575;

            transition: .5s all;
            -webkit-transition: .5s all;
            -moz-transition: .5s all;
            -o-transition: .5s all;
            -ms-transition: .5s all;
          }
            .questions-item-descr-close:hover {
              color: #f43c6f;
            }
            .questions-item h3 {
              font-weight: 700;
              font-size: 18px;
              color: #f43c6f;
              margin: 0 0 30px;
            }
            .questions-item h4 {
              font-weight: 600;
              font-size: 14px;
              color: #5a5b5e;
              margin: 0 0 5px;
            }
            .questions-item p {
              color: #5a5b5e;
              margin: 0 0 24px;
              line-height: 24px;
            }
            .questions-item ul {
              margin: 0 0 25px;
            }
              .questions-item ul li {
                color: #5a5b5e;
                position: relative;
                padding: 6px 0 0 36px;
              }
                .questions-item ul li:before {
                  content: "";
                  position: absolute;
                  top: 6px;
                  left: -3px;
                  width: 20px;
                  height: 20px;
                  background-image: url(../images/system/list-arrow.png);
                  background-position: center center;
                  background-repeat: no-repeat;
               }
/* ==========================================================
* End of FAQ page
* ===========================================================
*/





/* ==========================================================
* Begin of News list page
* ===========================================================
*/
.wrapper.news-list-page {
  background-color: #fff;
}
  .news-list-page {

  }
    .news-list-header {
      background-color: #f5f5f5;
      padding: 10px 0 6px;
      margin: 0 0 42px;
    }
      .tags-list {
      }
        .tags-item {
          margin: 0 12px 4px 0;
          display: inline-block;
        }
          .tags-item-link {
            display: block;
            color: #888a8f;
            font-size: 14px;
            font-weight: 700;
            padding: 8px 32px;
            text-decoration: none;
            text-transform: uppercase;
            background-color: #dfdfdf;
            border: 3px solid #dfdfdf;
          }
            .tags-item-link:hover {
              border: 3px solid #f43c6f;
              text-decoration: none;
              color: #888a8f;
            }
            .tags-item-link:active,
            .tags-item-link:focus {
              background-color: #f43c6f;
              border: 3px solid #f43c6f;
              text-decoration: none;
              color: #fff;
            }
    .news-list-content-wrap {
      padding: 0 0 50px;
    }
      .news-list-item {
        margin: 0 0 58px;
      }
        .news-list-item-image {
          height: 225px;
          margin: 0 0 15px;
          overflow: hidden;
        }
          .news-list-item-image a {
            opacity: 1;
            height: 100%;
            display: block;
          }
            .news-list-item-image a:hover {
              opacity: 0.8;
            }
              .news-list-item-image img {
                vertical-align: top;
                display: block;
              }
                .news-list-item-image img.toHeight {
                  width: auto;
                  height: 100%;
                }
                .news-list-item-image img.toWidth {
                  width: 100%;
                  height: auto;
                }
        .news-list-item time {
          margin: 5px 0;
          font-size: 14px;
          color: #888a8f;
        }
        .news-list-item h3 {
          line-height: 20px;
          height: 60px;
          overflow: hidden;
          margin: 0;
        }
          .news-list-item h3 a {
            text-transform: uppercase;
            font-weight: 600;
            font-size: 14px;
            color: #f43c6f;
          }
      .news-list-read-more .btn {
        padding: 10px 40px;
      }
        .news-list-read-more .btn:hover {
          opacity: 1;
        }

/* ==========================================================
* End of News list page
* ===========================================================
*/




/* ==========================================================
* Begin of News single page
* ===========================================================
*/
.wrapper.news-single-page {
  background-color: #fff;
}
  .news-single-page {

  }
    .news-single-header {
      background-color: #f5f5f5;
      padding: 10px 0 6px;
      margin: 0 0 42px;
    }
  .news-single-content-wrap {

  }
    .news-single-content-image {
      float: left;
      width: 560px;
      height: 380px;
      overflow: hidden;
      margin: 0 25px 10px 0;
    }
      .news-single-content-image .news-list-item-image {
        height: auto;
        opacity: 1;

        transition: .5s all;
        -webkit-transition: .5s all;
        -moz-transition: .5s all;
        -o-transition: .5s all;
        -ms-transition: .5s all;
      }
        .news-single-content-image .news-list-item-image:hover {
          opacity: 0.8;
        }
    .news-single-content-header {

    }
      .news-single-content-header h1 {
        text-transform: uppercase;
        margin: 6px 0 33px;
        font-weight: 600;
        font-size: 24px;
        color: #f43c6f;
      }
    .news-single-content-body > ul {
      margin-bottom: 17px;
    }

  .news-single-content-body > ul li {
    position: relative;
    padding-left: 12px;
    margin: 7px 0;
    }

  .news-single-content-body > ul li:before {
    content: '' !important;
    background-color: #ee205c;
    margin-right: 10px;
    font-weight: 500;
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0px;
    top: 7px;
  }

      .news-single-content-body p {
        margin: 0 0 15px;
        line-height: 17px;
      }
  .recent-news {
    margin: 6px 0 0;
  }
    .recent-news h2 {
      text-transform: uppercase;
      margin: 6px 0 27px;
      font-weight: 600;
      font-size: 24px;
      color: #8c8e91;
    }
    .recent-news .btn-back {
      float: right;
      margin: 15px 20px 0 0;
      padding: 10px 56px;
    }
      .recent-news .btn-back:hover {
        opacity: 1
      }
    .recent-news .news-list-item-image {
      height: 140px;
      margin: 0 0 20px;
      overflow: hidden;
    }
/* ==========================================================
* End of News single page
* ===========================================================
*/


/* ==========================================================
* Begin of Popup
* ===========================================================
*/
.popup {
  position: fixed;
  width: 100%;
  z-index: 3;
  left: 0;
  top: 109px;
  bottom: 0;
  top: 0;

  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;

  transition: .5s all;
  -webkit-transition: .5s all;
  -moz-transition: .5s all;
  -o-transition: .5s all;
  -ms-transition: .5s all;
}
  .popup.active {
    visibility: visible;
    opacity: 1;
  }
    .popup-bg {
      background-color: rgba(214,214,214,0.48);
      position: absolute;
      height: 100%;
      width: 100%;
      z-index: 1;
      left: 0;
      top: 0;
    }
    .close-popup {
      position: absolute;
      top: 13px;
      right: 19px;
      display: block;
      cursor: pointer;
      font-size: 20px;
      color: #757575;
      z-index: 3;
    }
    .popup-content {
      position: relative;
      margin: 150px 0 0;
      z-index: 2;
    }
      .popup-content-wrap {
        position: relative;
        padding: 188px 0 150px;
        background-color: #fff;
      }
        .popup-content h3 {
          color: #f43c6f;
          font-size: 18px;
          font-weight: 600;
          margin: 0 0 68px;
        }
          .popup-content .btn {
            padding: 10px 30px;
          }
  .popup-lekar {

  }
    .popup-content-wrap {
      padding: 90px 95px;
    }
      .popup-lekar .doctor-image {
        border-radius: 100%;
        border: 5px solid #ee205c;
        max-width: 180px;
        vertical-align: top;
        margin: 30px 0 40px;
      }
      .popup-lekar .doctor-name {
        font-size: 25px;
        font-weight: 400;
        color: #8b8c8e;
        line-height: 28px;
        margin: 0 0 7px;
      }
      .popup-lekar .doctor-type {
        font-size: 14px;
        font-weight: 400;
        color: #48484c;
      }
        .popup-lekar p {
          margin: 0 0 20px;
        }
  .popup-info {

  }
    .popup-info h3 {
      font-weight: 400;
      margin: 0 0 25px;
      color: #9d9e9f;
    }
    .popup-info p {
      color: #5a5b5e;
    }
      .stock {
        margin: 30px 0;
      }
        .stock h4 {
          color: #f43c6f;
          font-size: 14px;
          font-weight: 600;
          margin: 0 0 10px;
          line-height: 16px;
        }
        .stock p {
          color: #f43c6f;
          font-size: 14px;
          font-weight: 600;
          margin: 0 0 10px;
          line-height: 16px;
        }
/* ==========================================================
* End of Popup
* ===========================================================
*/






/* ==========================================================
* Begin of Contact page
* ===========================================================
*/
.contact-page.wrapper {
  background-color: #fff;
}
  .contact-header {
    background-color: #f5f5f5;
    padding: 44px 0 56px;
  }
    .contact-header h1 {
      margin: 0 0 5px;
      color: #9d9e9f;
      font-size: 36px;
      font-weight: 400;
    }
    .contact-header a {
      font-weight: 700;
      font-size: 36px;
      display: block;
      color: #f43c6f;
      line-height: 44px;
    }
      .contact-header a:hover {
        text-decoration: none;
      }
  .contact-content {
    padding: 46px 0 0;
  }
    .contact-address-single {

    }
      .contact-address-single-town {
        color: #a8a9aa;
        font-size: 24px;
        font-weight: 700;
        line-height: 28px;
      }
      .contact-address-single-street {
        color: #f43c6f;
        font-size: 24px;
        font-weight: 700;
      }
    .contact-address-list {
      margin: 69px 0 0;
    }
      .contact-address-list .contact-address-single {
        float: left;
        margin: 0 65px 14px 0;
      }
        .contact-address-list .contact-address-single-town {
          font-size: 18px;
          font-weight: 600;
          line-height: 24px;
        }
        .contact-address-list .contact-address-single-street {
          color: #a8a9aa;
          font-size: 18px;
          font-weight: 600;
        }
    .contact-address-single.active {

    }
      .contact-address-single.active .contact-address-single-town {
        
      }
      .contact-address-single.active .contact-address-single-street {
        color: #f43c6f;
      }
  .contact-call-back {
    margin: 22px 0 0;
  }
    .contact-call-back-header {
      margin: 0 0 60px;
    }
      .contact-call-back-header h2 {
        margin: 0;
        color: #9d9e9f;
        font-size: 36px;
        font-weight: 400;
      }
      .contact-call-back .form-group {
        margin: 0 0 64px;
      }
        .contact-call-back .form-group.textarea {
          margin: 0 0 30px;
          width: 100%;
        }
          .contact-call-back .control-label {
            margin: 0 0 13px;
            font-size: 14px;
            color: #888a8f;
            font-weight: 600;
          }
          .contact-call-back textarea.form-control {
            height: 382px;
            resize: none;
            padding: 25px 20px;
            width: 100%;
          }
    .contact-call-back-buttons {
      margin: 10px 0 0;
    }
      .contact-call-back-buttons .btn {
        margin: 0 0 0 20px;
        padding: 10px 28px;
      }
/* ==========================================================
* End of Contact page
* ===========================================================
*/




/* ==========================================================
* Begin of Contact page
* ===========================================================
*/
.lab-page.wrapper {
  background-color: #fff;
}
  .lab-header {
    background-color: #f5f5f5;
    padding: 44px 0 56px;
  }
    .lab-header h1 {
      margin: 0 0 5px;
    }
      .lab-header span {
        color: #f43c6f;
        display: block;
        font-size: 36px;
        font-weight: 700;
        line-height: 45px;
      }
        .lab-header span:nth-child(1) {
          margin: 0 10px 0 0;
          line-height: 85px;
          font-size: 100px;
          float: left;
        }
    .lab-header p {
      font-weight: 400;
      font-size: 14px;
      display: block;
      color: #5a5b5e;
    }
  .lab-content {
    padding: 46px 0 0;
    position: relative;
    height: 1000px;
  }
    .virus-item {
      position: absolute;

      transition: .5s all;
      -webkit-transition: .5s all;
      -moz-transition: .5s all;
      -o-transition: .5s all;
      -ms-transition: .5s all;
    }
      .virus-item:hover {
        cursor: pointer;
        opacity: 0.8;
      }
        .virus-item img {
          
        }
        .virus-item p {
          font-weight: 700;
          font-size: 30px;
          color: #f43c6f;
          position: absolute;
        }
          .virus-item.vich {
            top: -68px;
            left: 220px;
          }
            .virus-item.vich p {
              top: 184px;
              left: -330px;
              text-align: right;
              width: 300px;
              line-height: 35px;
            }
          .virus-item.gepatit-c {
            top: -66px;
            right: 263px;
          }
            .virus-item.gepatit-c p {
              top: 233px;
              right: -322px;
              text-align: left;
              width: 300px;
              line-height: 35px;
              font-size: 34px;
              letter-spacing: 2px;
            }
          .virus-item.gepatit-b {
            top: 353px;
            left: 77px;
          }
            .virus-item.gepatit-b p {
              top: 121px;
              right: -301px;
              text-align: left;
              width: 300px;
              line-height: 35px;
              font-size: 24px;
              letter-spacing: 1px;
            }
          .virus-item.genit-gerpis {
            top: 400px;
            left: 600px;
          }
            .virus-item.genit-gerpis p {
              top: 279px;
              left: 5px;
              text-align: center;
              width: 200px;
              line-height: 28px;
              font-size: 24px;
              letter-spacing: 1px;
            }
          .virus-item.papiloma {
            top: 369px;
            right: 50px;
          }
            .virus-item.papiloma p {
              top: 76px;
              right: 212px;
              text-align: right;
              width: 220px;
              line-height: 29px;
              font-size: 24px;
              letter-spacing: 1px;
            }
  .popup-virus {

  }
    .popup-virus .popup-content-wrap {
      padding: 49px 45px 30px;
      text-align: left;
    }
      .popup-virus h3 {
        line-height: 21px;
        margin: 0 0 31px;
      }
      .popup-virus p {
        margin: 0 0 26px;
        line-height: 22px;
      }
      .popup-virus ul {
        margin: 0px 0 28px;
      }
        .popup-virus li {
          line-height: 23px;
        }
          .popup-virus li strong {
            width: 144px;
            color: #f43c6f;
            font-weight: 600;
            display: inline-block;
          }

/* ==========================================================
* End of Contact page
* ===========================================================
*/



/* ==========================================================
* Begin of About page
* ===========================================================
*/
.about-page {}
  .about-header {
    padding: 44px 0 50px;
  }
    .about-header-title {
      font-size: 36px;
      line-height: 44px;
      margin: 0 0 14px;
    }
      .about-header-title span {
        display: block;
      }
        .about-header-title span:nth-child(1) {
          color: #8b8c8e;
          font-weight: 400;
        }
        .about-header-title span:nth-child(2) {
          color: #ee205c;
          font-weight: 700;
        }
    .about-header-descr {
      font-size: 14px;
      line-height: 18px;
      margin: 0;
    }
  .about-content-wrap {
    background-color: #fff;
    padding: 34px 0 0;
  }
    .about-content {

    }
      .about-content-item {
        margin: 0 0 103px;
      }
          .about-content-item .row {

          }
        .about-content-item-left {

        }
          .about-content-item-left i {
            font-size: 46px;
            color: #ee205c;
          }
          .about-content-item-left h2 {
            margin: 12px 0 10px;
            font-weight: 400;
            font-size: 36px;
            color: #8b8c8e;
          }
          .about-content-item-left .btn {
            width: 100%;
            white-space: normal;
          }
        .about-content-item-right {
          padding: 8px 0 0;
        }
          .about-content-item-right-table {
            display: table;
          }
            .about-content-item-right-table-cell {
              display: table-cell;
              vertical-align: middle;
            }
          .about-content-item-right p {
            font-size: 14px;
            line-height: 17px;
            margin: 0 0 16px;
            color: #48484c;
          }
          .about-content-item-right h3 {
            margin: 0 0 16px;
            font-weight: 700;
            color: #ee205c;
          }

/* ==========================================================
* End of About page
* ===========================================================
*/





/* ==========================================================
* Begin of contribution popup
* ===========================================================
*/
.contribution-popup {
  position: absolute;
  width: 100%;
  z-index: 3;
  left: 0;
  top: 109px;
  bottom: 0;

  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;

  transition: .5s all;
  -webkit-transition: .5s all;
  -moz-transition: .5s all;
  -o-transition: .5s all;
  -ms-transition: .5s all;
}
  .contribution-popup.active-popup {
    visibility: visible;
    opacity: 1;
  }
    .contribution-popup-bg {
      background-color: rgba(214,214,214,0.48);
      position: absolute;
      height: 100%;
      width: 100%;
      z-index: 1;
      left: 0;
      top: 0;
    }


      .popup-inner {
        position: fixed;
        width: 100%;
        z-index: 3;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;

        transition: .5s all;
        -webkit-transition: .5s all;
        -moz-transition: .5s all;
        -o-transition: .5s all;
        -ms-transition: .5s all;
      }
        .popup-inner.active-popup {
          opacity: 1;
          visibility: visible;
        }
          .popup-inner-bg {
            background-color: rgba(214,214,214,0.48);
            position: absolute;
            height: 100%;
            width: 100%;
            z-index: 1;
            left: 0;
            top: 0;
          }
          .popup-inner-content {
            z-index: 2;
            position: relative;
            margin: 212px 0 0;
          }
            .popup-inner-content-wrap {
              padding: 15px 15px;
              background-color: #fff;
            }
              .popup-inner-content-wrap h3 {
                color: #8b8c8e;
                font-size: 36px;
                margin: 48px 0 20px;
                letter-spacing: 1px;
              }
              .popup-inner-content-wrap p {
                font-weight: 600;
              }
              .popup-inner-content-wrap .form-group {
                margin: 73px 0 51px;
              }
              .popup-inner-content-wrap .form-group .btn {
                margin: 0 7px 0 0;
              }



    .contribution-popup-wrap {
      z-index: 2;
      position: relative;
      margin: 95px 0 0;
    }
      .contribution-popup-wrap-inner {

      }
        .contribution-popup-wrap-inner .container-fluid {
          margin-right: auto;
          margin-left: auto;
          padding-left: 30px;
          padding-right: 30px;
        }
          .contribution-popup-header {
            background-color: #fff;
            padding: 15px 0;
          }
            .contribution-popup-header-title {
              margin: 8px 0 23px;
              font-size: 36px;
              color: #8b8c8e;
            }
            .contribution-popup-header p {
              margin: 0 0 19px;
              line-height: 16px;
            }
          .contribution-popup-breadcrumbs {
            background-color: #f2f2f2;
            padding: 15px 0;
            height: 60px;
          }
            .contribution-popup-breadcrumbs .breadcrumbs-item {
              margin: 5px 35px 0px 0;
            }
              .contribution-popup-breadcrumbs .breadcrumbs-item a {
                font-weight: 600;
                letter-spacing: -1px;
              }
              .contribution-popup-breadcrumbs .breadcrumbs-item i {
                color: #c7c7c7;
                margin: 0 26px 0 0;
              }
                .contribution-popup-breadcrumbs .breadcrumbs-item:nth-child(1) i {
                  display: none;
                }
                .contribution-popup-breadcrumbs .breadcrumbs-item a {
                  color: #aeafaf;
                  font-weight: 600;
                }
                .contribution-popup-wrap-inner.popup-step-1 .contribution-popup-breadcrumbs .breadcrumbs-item a.popup-step-1 {
                  color: #ee205c;
                  font-weight: 700;
                }
                .contribution-popup-wrap-inner.popup-step-2 .contribution-popup-breadcrumbs .breadcrumbs-item a.popup-step-2 {
                  color: #ee205c;
                  font-weight: 700;
                }
                .contribution-popup-wrap-inner.popup-step-3 .contribution-popup-breadcrumbs .breadcrumbs-item a.popup-step-3 {
                  color: #ee205c;
                  font-weight: 700;
                }
                  .popup-step-1 .breadcrumbs-item:nth-child(2) a,
                  .popup-step-1 .breadcrumbs-item:nth-child(3) a {
                    pointer-events: none;
                  }
                  .popup-step-2 .breadcrumbs-item:nth-child(3) a {
                    pointer-events: none;
                  }
    .popup-step.popup-step-3 {
      padding: 12px 8px 28px 11px;
    }
      .popup-step.popup-step-3 h3 {
        color: #75777c;
        font-size: 14px;
        font-weight: 600;
        margin: 20px 0 17px;
      }
      .popup-step-3 .nav-tabs {
        border: 0;
        margin: 0;
        padding: 0;
        float: left;
      }
        .popup-step-3 .nav-tabs li {
          margin: 62px 0 0;
          display: block;
          float: none;
        }
          .popup-step-3 .nav-tabs li:first-child {
            margin: 0;
            display: block;
            float: none;
          }
          .popup-step-3 .nav-tabs li label {
            font-size: 28px;
            color: #aeafaf;
            font-weight: 400;
            margin: 0px 0 20px;
            display: block;
          }
          .popup-step-3 .nav-tabs .radio-block-wrap {
            float: left;
          }
          .popup-step-3 .nav-tabs .radio-block {
            text-align: center;
            border: 4px solid #ee205c;
            padding: 33px 14px 22px;
            display: table-cell;
            vertical-align: middle;

            transition: .5s all;
            -webkit-transition: .5s all;
            -moz-transition: .5s all;
            -o-transition: .5s all;
            -ms-transition: .5s all;
          }
            .popup-step-3 .nav-tabs .radio-block img {
              max-width: 144px;
            }
            .popup-step-3 .nav-tabs li.active .radio-block,
            .popup-step-3 .nav-tabs .radio-block-wrap:active .radio-block,
            .popup-step-3 .nav-tabs .radio-block-wrap:hover .radio-block {
              background-color: #ee205c;
              cursor: pointer;
            }
              .popup-step-3 .nav-tabs li.active p,
              .popup-step-3 .nav-tabs .radio-block-wrap:active p,
              .popup-step-3 .nav-tabs .radio-block-wrap:hover p {
                color: #fff;
              }
        .popup-step-3 .form-group {
          margin: -40px 0 0;
          position: relative;
          z-index: 2;
          float: right;
        }
          .contribution-popup-content {
            background-color: #fff;
            padding: 0 0 60px;
            overflow: hidden;
            position: relative;
          }
            .popup-step-1 .contribution-popup-content {
              height: 950px;
            }
            .popup-step-2 .contribution-popup-content {
              height: 900px;
            }
            .popup-step-3 .contribution-popup-content {
              height: 500px;
            }
            .grivny {
              margin: 35px 0 0;
            }
              .grivny .popup-tabs {
                border: 0;
              }
              .grivny .popup-tabs li {
                margin: 0 0 53px;
              }
                .grivny .popup-tabs .radio-block-wrap {
                  display: table;
                  height: 96px;
                  width: 100%;
                  min-height: inherit;
                }
                  .grivny .popup-tabs .radio-block {
                    text-align: center;
                    border: 4px solid #ee205c;
                    padding: 10px 30px 0;
                    display: table-cell;
                    vertical-align: middle;

                    transition: .5s all;
                    -webkit-transition: .5s all;
                    -moz-transition: .5s all;
                    -o-transition: .5s all;
                    -ms-transition: .5s all;
                  }
                    .grivny .popup-tabs li.active .radio-block,
                    .grivny .popup-tabs .radio-block-wrap:active .radio-block,
                    .grivny .popup-tabs .radio-block-wrap:hover .radio-block {
                      background-color: #ee205c;
                      cursor: pointer;
                    }
                      .grivny .popup-tabs li.active .input-text-block input[type="text"],
                      .grivny .popup-tabs li.active p,
                      .grivny .popup-tabs .radio-block-wrap:active p,
                      .grivny .popup-tabs .radio-block-wrap:hover p {
                        color: #fff;
                      }
                        .grivny .popup-tabs li:hover .input-text-block input[type="text"],
                        .grivny .popup-tabs li.active .input-text-block input[type="text"] {
                          color: #fff;
                          border-bottom: 1px solid #fff;
                        }
                        .grivny .popup-tabs li p {
                          font-weight: 600;
                          padding: 6px 0 16px;
                          line-height: 20px;
                          color: #75777c;
                        }
                          .grivny .popup-tabs li p span {
                            display: block;
                          }
                            .grivny .popup-tabs li p span:nth-child(1) {
                              font-size: 20px;
                            }
                            .grivny .popup-tabs li p span:nth-child(2) {
                              font-size: 13px;
                              font-weight: 400;
                              }
                              .grivny .popup-tabs li.input-text-wrap p {
                                padding: 0px 0 15px 15px;
                              }
                              .grivny .popup-tabs li.input-text-wrap .radio-block {
                                padding: 0px 30px 0 20px;
                              }
                                .input-text-block {
                                  position: relative;
                                }
                                  .input-text-block input[type="text"] {
                                    border: 0;
                                    width: 64px;
                                    height: 35px;
                                    display: inline-block;
                                    color: #75777c;
                                    font-size: 20px;
                                    font-weight: 600;
                                    padding: 0 0 0px;
                                    background: transparent;
                                    border-bottom: 1px solid #75777c;
                                  }
                                  .grivny .popup-tabs .input-text-block .grn {
                                    display: inline-block;
                                    font-size: 20px;
                                    font-weight: 600;
                                    margin: 6px 0 0;
                                  }
                                  .grivny .popup-tabs .input-text-block .summ {
                                    position: absolute;
                                    top: 93%;
                                    font-weight: 400;
                                    font-size: 13px;
                                    left: 50%;
                                    margin-left: -50px;
                                  }
                        .grivny .grn-block .form-group {
                          text-align: right;
                          margin: 18px 0 0;
                        }
                          .grivny .form-group .btn {
                            font-weight: 600;
                          }
                            .grivny .form-group .btn-primary {
                              padding: 10px 35px 10px 51px;
                              margin: 0 0 0 5px;
                            }
                              .grivny .form-group .btn-primary i {
                                font-size: 10px;
                                margin: 3px 0 0 10px;
                                display: block;
                                float: left;
                              }
                              .grivny .form-group .btn-primary span {
                                display: block;
                                float: left;
                              }
                            .grivny .form-group .btn-default {
                              padding: 10px 18px;
                            }
        .popup-step {
          -webkit-transition: -webkit-transform 0.5s ease;
          -moz-transition: -moz-transform 0.5s ease;
          -ms-transition: -ms-transform 0.5s ease;
          -o-transition: -o-transform 0.5s ease;
          transition: transform 0.5s ease;

          position: absolute;
          right: 30px;
          left: 30px;
        }
          .popup-step.current {
            -webkit-transform: translate(0, 0);
            -moz-transform: translate(0, 0);
            -ms-transform: translate(0, 0);
            -o-transform: translate(0, 0);
            transform: translate(0, 0);
          }
            .popup-step.hide-left {
              -webkit-transform: translate(-150%, 0);
              -moz-transform: translate(-150%, 0);
              -ms-transform: translate(-150%, 0);
              -o-transform: translate(-150%, 0);
              transform: translate(-150%, 0);
            }
            .popup-step.hide-right {
              -webkit-transform: translate(150%, 0);
              -moz-transform: translate(150%, 0);
              -ms-transform: translate(150%, 0);
              -o-transform: translate(150%, 0);
              transform: translate(150%, 0);
            }
        .popup-step.popup-step-2 {
          padding: 28px 8px 28px 14px;
        }
          .popup-step.popup-step-2 .form-row {
            margin: 0 0 45px;
          }
            .popup-step.popup-step-2 .form-group {
              margin-bottom: 10px;
            }
            .popup-step.popup-step-2 .form-row .form-group {
              margin-bottom: 27px;
            }
              .popup-step.popup-step-2 .form-row .form-control {
                height: 80px;
                padding: 0 0 0 24px;
                font-size: 28px;
              }
                .popup-step.popup-step-2 .form-row .form-control.necessary {
                  border: 4px solid #ee205c;
                }
              .popup-step.popup-step-2 .form-control {
                height: 57px;
                border: 4px solid #d7d7d7;
                font-size: 22px;
                padding: 0 0 0 15px;
              }
              .popup-step.popup-step-2 .form-row .form-group .control-label {
                margin: 0 0 13px;
                color: #75777c;
              }
              .popup-step.popup-step-2 .form-group .control-label {
                margin: 0 0 4px;
                color: #75777c;
              }
                .popup-step.popup-step-2 .btn-form {
                  margin: 49px 0 0;
                }
                  .popup-step.popup-step-2 .form-group .btn-primary {
                    float: right;
                  }
                  .popup-step .form-group .btn-primary {
                    padding: 10px 35px 10px 50px;
                  }
                    .popup-step .form-group .btn-primary span {
                      display: block;
                      float: left;
                    }
                    .popup-step .form-group .btn-primary i {
                      font-size: 10px;
                      margin: 3px 0 0 10px;
                      display: block;
                      float: left;
                    }
                  .popup-step.popup-step-2 .form-group .btn-default {
                    float: left;
                  }
                  .popup-step .form-group .btn-default {
                    padding: 10px 40px 10px 30px;
                  }
                    .popup-step .form-group .btn-default i {
                      font-size: 10px;
                      margin: 3px 10px 0 0;
                      display: block;
                      float: left;
                    }
                    .popup-step .form-group .btn-default span {
                      display: block;
                      float: left;
                    }
              .popup-step.popup-step-2 .form-radio {
                margin: 34px 0 0 100px;
              }
                .popup-step.popup-step-2 .form-radio .radio-block {
                  background-color: #f2f2f2;
                  margin: 0 0 31px;
                }
                  .popup-step.popup-step-2 .form-radio .radio-block label {
                    font-weight: 400;
                    margin: 0;
                    padding: 26px 31px 31px 85px;
                    line-height: 17px;
                    color: #48484c;
                  }
                    .popup-step.popup-step-2 .form-radio .radio-block [type="checkbox"]:not(:checked) + label:after, 
                    .popup-step.popup-step-2 .form-radio .radio-block [type="checkbox"]:checked + label:after {
                      content: '';
                      position: absolute;
                      width: 21px;
                      height: 21px;
                      border: 0;
                      background-repeat: no-repeat;
                      background-position: 0px 0px;
                      background-image: url(../images/system/checkbox-sprite.png);
                      transition: all .2s;
                    }
                      .popup-step.popup-step-2 .form-radio .radio:not(checked) + label:before,
                      .popup-step.popup-step-2 .form-radio .radio:not(checked) + label:after,
                      .popup-step.popup-step-2 .form-radio [type="checkbox"]:not(checked) + label:before,
                      .popup-step.popup-step-2 .form-radio [type="checkbox"]:not(checked) + label:after {
                        top: 50%;
                        left: 33px;
                        border: 0;
                        margin-top: -10px;
                      }

  .appointment {
    background-color: #f2f2f2;
    margin: 0 0 0 88px;
    padding: 0 0 13px 0;
  }
    .appointment-header {
      padding: 13px 0px 0;
    }
      .appointment-header i {
        font-size: 40px;
        color: #ed2760;
      }
      .appointment-header h3 {
        font-size: 36px;
        margin: 0 0 16px;
        color: #8b8c8e;
      }
    .appointment-content {
      padding: 0 45px;
    }
      .appointment-content .radio-block {
        margin: 0 0 17px;
      }
        .appointment-content .radio-block label {
          font-weight: 400;
          padding: 0 0 0 34px;
        }
          .form-radio .radio:checked + label {
            font-weight: 700;
            color: #ed2760;
          }
  .support {

  }
    .support h4 {
      color: #ee205c;
      font-size: 14px;
      margin: 17px 0 0;
      font-weight: 700;
    }
    .partners {

    }
      .support h3 {
        font-size: 36px;
        color: #8b8c8e;
        margin: 38px 0 0;
      }
      .partners ul {
        margin: 70px 0 0;
      }
        .partners ul li {
          float: left;
          margin: 0 105px 0 0;
        }
          .partners ul li img {
            float: left;
          }
          .partners ul li i {
            float: left;
            font-size: 28px;
            color: #a6a7a8;
            margin: 10px 0 0 10px;
          }
            .partners ul li:nth-child(1) i {
              color: #ee205c;
            }
            .partners ul li:nth-child(2) i {
              color: #f0a72f;
            }
            .partners ul li:nth-child(3) i {
              color: #a6a7a8;
            }
  .peoples {
    margin: 72px 0 0;
  }
    .peoples ul {
      margin: 10px 0 0;
      float: left;
    }
      .peoples li {
        margin: 0 200px 0 0;
        line-height: 17px;
        font-weight: 600;
        font-size: 14px;
        display: block;
        color: #75777c;
      }
/* ==========================================================
* End of Contribution popup
* ===========================================================
*/





/* ==========================================================
* Begin of Breadcrumbs
* ===========================================================
*/
.breadcrumbs {
  background-color: #f2f2f2;
  padding: 10px 0 17px;
  height: 70px;
  overflow: hidden;
}
  .breadcrumbs-list {

  }
    .breadcrumbs-item {
      float: left;
      margin: 0 35px 0px 0;
    }
      .breadcrumbs-item a {
        color: #aeafaf;
        cursor: pointer;
      }
        .breadcrumbs-item a:hover {
          color: #ee205c;
          opacity: 1;
        }
          .breadcrumbs-text {
            float: left;
            display: block;
            margin: 0 0 5px;
          }
            .breadcrumbs-text span {
              display: block;
            }
              .breadcrumbs-text-small {
                font-size: 14px;
                font-weight: 400;
              }
              .breadcrumbs-text-big {
                font-size: 26px;
                font-weight: 400;
                line-height: 20px;
              }
                .breadcrumbs .single-row .breadcrumbs-text-big {
                  font-size: 28px;
                  line-height: 40px;
                }
      .breadcrumbs .demo-icon {
        float: left;
        display: block;
        color: #c7c7c7;
        margin: 12px 0 0 33px;
      }
/* ==========================================================
* End of Breadcrumbs
* ===========================================================
*/





/* ==========================================================
* Begin of Footer 
* ===========================================================
*/
.footer {
  background-color: #e6e6e6;
  padding: 15px 0;
}
  .footer-logo {
    margin: 5px 0 0;
    display: block;
  }
    .footer-logo img {
      max-width: 100%;
      vertical-align: top;
      display: block;
    }
  .copyright {
    margin: 21px 0 0;
    font-size: 12px;
    text-align: center;
    color: #8e8f93;
    font-weight: 600;
  }
    .footer .social-list {
      margin: 10px 0 0;
      float: right;
    }
      .footer .social-list a {
        color: #ee205c;
      }
        .footer .social-list a:hover {
          color: #75777c;
        }

/* ==========================================================
* End of Footer 
* ===========================================================
*/





/* ==========================================================
* Begin of Under header 
* ===========================================================
*/
.under-header {
  background-color: #f2f2f2;
  padding: 13px 0;
}
  .social-list {

  }
    .social-list li {
      display: inline-block;
      margin: 0 7px 0 0;
    }
      .social-list li a {
        font-size: 24px;
        color: #c3c4c4;
      }
        .social-list li a:hover {
          color: #ee205c;
        }
  .phone-block {
    text-align: right;
    float: right;
  }
    .phone-block i {
      font-size: 24px;
      color: #aeafaf;
      margin: 0 15px 0 0;
    }
    .phone-number {
      color: #aeafaf;
      font-size: 28px;
      line-height: 24px;
      margin: 4px 0 0;
      display: inline-block;
    }
  .flag-block {
    width: 52px;
    height: 32px;
    display: block;
    float: right;
    margin: 1px 0 2px 26px;
    position: relative;
  }
    .current-flag {
      width: 32px;
      height: 32px;
      cursor: pointer;
      padding: 3px 8px;
    }
      .current-flag img {

      }
    .flag-list {
      position: absolute;
      z-index: 5;
      top: 32px;
      right: 0;
      padding: 26px 20px 0 23px;
      background-color: #f2f2f2;

      visibility: hidden;
      opacity: 0;
      transition: visibility 0s, opacity 0.5s linear;

      transition: .5s all;
      -webkit-transition: .5s all;
      -moz-transition: .5s all;
      -o-transition: .5s all;
      -ms-transition: .5s all;
    }
      .flag-list.active {
        visibility: visible;
        opacity: 1;
      }
        .flag-item {
          display: block;
          margin: 0 0 14px;
          width: 25px;
          height: 30px;

          transition: .5s all;
          -webkit-transition: .5s all;
          -moz-transition: .5s all;
          -o-transition: .5s all;
          -ms-transition: .5s all;
        }
          .flag-item:hover {
            cursor: pointer;
            opacity: 0.8;
          }
            .flag-item img {
              display: block;
              vertical-align: top;
            }
          
/* ==========================================================
* End of Under header 
* ===========================================================
*/





/* ==========================================================
* Begin of Getting footer to the bottom 
* ===========================================================
*/
html,
body {
  height: 100%;
}
.wrapper {
  position: relative;
  min-height: 100%;
  padding-bottom: 85px;
}
.footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  z-index: 1;
}
/* ==========================================================
* End of Getting footer to the bottom 
* ===========================================================
*/





/* ==========================================================
* Begin of animation
* ===========================================================
*/
.wrapper {
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
     -moz-animation: fadein 2s; /* Firefox < 16 */
      -ms-animation: fadein 2s; /* Internet Explorer */
       -o-animation: fadein 2s; /* Opera < 12.1 */
          animation: fadein 2s;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* ==========================================================
* End of animation
* ===========================================================
*/





/* ==========================================================
* Begin of Queries
* ===========================================================
*/

@media all and (max-width: 1600px) {
  .virus-item.vich {
    top: -68px;
    left: 170px;
  }
  .virus-item.gepatit-c {
    top: -66px;
    right: 200px;
  }
    .virus-item.gepatit-c p {
      right: -280px;
      width: 240px;
    }
  .virus-item.gepatit-b {
    top: 353px;
    left: 77px;
  }
  .virus-item.genit-gerpis {
    top: 350px;
    left: 450px;
  }
  .virus-item.papiloma {
    top: 369px;
    right: 50px;
  }

  .lab-content {
    height: 900px;
  }
  .virus-item {
    -moz-transform:scale(0.8);
    -webkit-transform:scale(0.8);
    -o-transform:scale(0.8);
    -ms-transform:scale(0.8);
    transform:scale(0.8);
  }
  .popup-step.popup-step-2 .form-group .btn-default {
    padding: 10px 30px 10px 20px;
  }
  .popup-step.popup-step-2 .form-group .btn-primary {
    padding: 10px 20px 10px 30px;
  }
  .grivny .popup-tabs li.input-text-wrap .radio-block {
    padding: 0px 20px 0;
  }
  .grivny .popup-tabs li.input-text-wrap p {
    padding: 0px 0 15px 0px;
  }
  .appointment {
    margin: 0;
  }
  .about-content-item-left h2 {
    font-size: 28px;
  }
  .breadcrumbs {
    height: 105px;
  }

  /* Begin of Content Sign up step 9 */
    .sign-up-page.sign-9 .sign-uvaga {
      padding: 40px 30px 20px;
    }
  /* End of Content Sign up step 9 */

  /* Begin of Content */
    .home-page .content {
      background-position: 67% 50%;
    }
    .widget-content ul li a span {
      width: 180px;
    }
  /* End of Content */

  /* Begin of Header */
      .btn-primary,
      .btn-default {
        padding: 10px 15px;
      }
        .sign-up .btn:first-child {
          margin: 0 0 0 15px;
        }
    .stepMenu {
      margin: 0 0 0 35px;
    }
      .stepMenu > li > a {
        padding: 10px 20px;
      }
  /* End of Header */


  /* Begin of Slider */
    .slider-text .text-2 {
      font-size: 70px;
    }
  /* End of Slider */

  /* Begin of Under header */
    .phone-number {
      font-size: 24px;
    }
    .flag-block {
      margin: 1px 0 2px 24px;
    }
  /* End of Under header */

  /* Begin of Content */
    .home-page .content {
      background-position: 61% 50%;
    }
  /* End of Content */
}


@media all and (min-width: 1200px) {
  .about-content-item .container {
    height: 100%;
    display:table;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
    .about-content-item .row {
      height: 100%;
      display: table-row;
    }
      .about-content-item .row > div {
        float: none;
        display: table-cell;
        vertical-align: middle;
      }
        .about-content-item .row > div:first-child {
          width: 19%;
        }
}


@media all and (max-width: 1200px) {
  .popup-lekar .popup-content-wrap {
    padding: 50px 40px;
  }
  .popup-lekar .doctor-image {
    max-width: 100%;
  }
  .virus-item.vich {
    top: -68px;
    left: 170px;
  }
  .virus-item.gepatit-c {
    top: -66px;
    right: 200px;
  }
  .virus-item.gepatit-b {
    top: 353px;
    left: 77px;
  }
  .virus-item.genit-gerpis {
    top: 350px;
    left: 390px;
  }
  .virus-item.papiloma {
    top: 369px;
    right: 50px;
  }

  .lab-content {
    height: 700px;
  }
  .virus-item {
    -moz-transform:scale(0.7);
    -webkit-transform:scale(0.7);
    -o-transform:scale(0.7);
    -ms-transform:scale(0.7);
    transform:scale(0.7);
  }
  .news-single-content-image {
    width: 400px;
    height: 300px;
  }
  .tags-item-link {
    font-size: 13px;
    padding: 8px 24px;
    border: 2px solid #dfdfdf;
  }
    .tags-item-link:hover {
      border: 2px solid #f43c6f;
    }
  .news-list-item-image {
    height: 150px;
    margin: 0 0 5px;
  }
  .news-list-item h3 {
    line-height: 18px;
    height: 44px;
  }
  .popup-step-3 .nav-tabs li {
    margin: 20px 0 0;
  }
  .popup-step.popup-step-2 .form-group .btn-primary {
    padding: 10px 15px 10px 25px;
  }
  .popup-step.popup-step-2 .form-group .btn-default {
    padding: 10px 25px 10px 15px;
  }
  .popup-step.popup-step-2 .form-radio {
    margin: 34px 0 0 30px;
  }
  .popup-step-1 .contribution-popup-content {
    
  }
  /* Begin of Popup step 1 */
  .grivny .popup-tabs .input-text-block .summ {
    margin-left: -33px;
  }
  .contribution-popup {
    top: 104px;
  }
  .grivny .popup-tabs .radio-block-wrap {
    height: 80px;
  }
  .grivny .popup-tabs li {
    margin: 0 0 25px;
  }
  .grivny .popup-tabs .input-text-block .grn {
    font-size: 14px;
  }
  .grivny .popup-tabs li.input-text-wrap .radio-block {
    padding: 0px 10px 0;
  }
  .input-text-block input[type="text"] {
    width: 40px;
    font-size: 14px;
    padding: 0 0 5px;
  }
  .partners ul li {
    margin: 0 50px 0 0;
  }
  .grivny .popup-tabs .radio-block {
    padding: 10px 10px 0;
  }
  .grivny .popup-tabs li p span:nth-child(1) {
    font-size: 14px;
  }
  /* End of Popup step 1 */

  /* Begin of About page */
    .about-content-item-left .btn {
      margin: 13px 0 0;
    }
  /* End of About page */


      .sign-up-page.sign-6 .nav-block {
        margin: 15px 0;
      }

    .breadcrumbs-item {
      margin: 0 35px 15px 0;
    }
    .header .stepMenu .contribution a {
      padding: 5px 7px;
    }
      .header .stepMenu .contribution a i {
        display: none;
      }
      .sign-up-page.sign-9 .form-inner-wrap {
        margin: 40px 0 30px;
      }
      .breadcrumbs {
        padding: 8px 0 0px;
        height: 115px;
      }
  /* Begin of Content Sign up step 8 */
    .sign-up-page.sign-8 [type="checkbox"]:not(:checked) + label, 
    .sign-up-page.sign-8 [type="checkbox"]:checked + label {
      margin: 0px 0 0;
    }
      [type="checkbox"]:not(:checked) + label:before, [type="checkbox"]:checked + label:before {
        top: 13px;
      }
      [type="checkbox"]:not(:checked) + label:after, [type="checkbox"]:checked + label:after {
        top: 30px;
      }
  /* End of Content Sign up step 8 */

  /* Begin of Content Sign up step 3*/
    .sign-up-page.sign-3 .radio-block {
      padding: 10px 0px 0;
    }
  /* End of Content Sign up step 3*/


  /* Begin of Sidebar */
    .widget-content ul li a span {
      width: 120px;
    }
    .widget-content ul li a i {
      margin: 0 5px 0 0;
    }
    .widget-header {
      margin: 0 0 30px;
    }
    .widget-readmore i {
      margin: 0 5px 0 0;
    }
  /* End of Sidebar */

  /* Begin of Content */
    .content-main-item h3 {
      font-size: 28px;
      margin: 6px 0 18px;
      color: #8b8c8e;
    }
  /* End of Content */

  /* Begin of Header */
    .header {
      padding: 20px 0;
    }
      .header-logo {
        margin: 5px 0 0;
      }
        .stepMenu {
          float: none;
          margin: 13px 0 0 10px;
        }
          .stepMenu > li > a {
            padding: 5px 7px;
          }
      .header .sign-up {
        margin: 10px 0 0;
      }
        .sign-up .btn:first-child {
          margin: 0 0 0 10px;
        }
        .btn-primary, 
        .btn-default {
          padding: 10px 10px;
        }
  /* End of Header */

  /* Begin of Slider */
    .slider-text .text-3,
    .slider-text .text-1 {
      font-size: 18px;
    }
    .slider-text .text-2 {
      font-size: 50px;
    }
  /* End of Slider */

  /* Begin of Under header */
    .phone-number {
      font-size: 22px;
    }
  /* End of Under header */
}



@media (max-width: 992px) {

          .virus-item.vich {
            top: -68px;
            left: 100px;
          }
          .virus-item.gepatit-c {
            top: -66px;
            right: 100px;
          }
          .virus-item.gepatit-b {
            top: 253px;
            left: 30px;
          }
          .virus-item.genit-gerpis {
            top: 250px;
            left: 280px;
          }
          .virus-item.papiloma {
            top: 270px;
            right: 30px;
          }

  .contact-call-back .form-group,
  .contact-call-back-header {
    margin: 0 0 20px;
  }
  .lab-content {
    height: 600px;
  }
  .virus-item {
    -moz-transform:scale(0.5);
    -webkit-transform:scale(0.5);
    -o-transform:scale(0.5);
    -ms-transform:scale(0.5);
    transform:scale(0.5);
  }
  .contact-address-list {
    margin: 20px 0 0;
  }
  .recent-news .btn-back {
    margin: 0;
  }
  .recent-news-header {
    margin: 0 0 15px;
  }
  .news-list-header {
    background-color: #f5f5f5;
    padding: 10px 0 4px;
    margin: 0 0 42px;
  }
  .tags-item {
    margin: 0 4px 6px 0;
  }
    .tags-item-link {
      font-size: 12px;
      padding: 6px 15px;
    }
  .news-list-item-image {
    height: 200px;
  }
  .popup-step.popup-step-2 .form-group .btn-primary {
    padding: 10px 25px 10px 35px;
  }
  .popup-step.popup-step-2 .form-group .btn-default {
    padding: 10px 35px 10px 25px;
  }
  .popup-step-2 .contribution-popup-content {
    height: 1300px;
  }
  .popup-step.popup-step-2 .form-radio {
    margin: 0;
  }
  .popup-step-1 .contribution-popup-content {
    height: 1150px;
  }
  /* Begin of Popup step 1 */
  .contribution-popup-content {
    height: 1200px;
  }
  .appointment {
    margin: 0 0 30px;
  }
  .grivny .popup-tabs .input-text-block .grn {
    font-size: 14px;
  }
  .partners ul li {
    margin: 0 0 15px;
    height: 70px;
    width: 50%;
  }
    .contribution-popup {
      top: 84px;
    }
    .appointment-header h3 {
      font-size: 28px;
      margin: 0 0 20px;
    }
    .appointment-content {
      padding: 0 25px;
    }
    .grivny .popup-tabs .radio-block-wrap {
      height: 80px;
    }
  /* End of Popup step 1 */

  /* Begin of About page */
    .about-content-item {
      margin: 0 0 50px;
    }
    .about-content-item-left .btn {
      height: auto;
    }
  /* End of About page */

  .breadcrumbs {
    height: 100px;
  }
      .sign-up-page.sign-9 .form-inner-wrap h1 {
        font-size: 30px;
      }
    .sign-up-page.sign-11 .form-radio-wrap h2 {
      font-size: 28px;
    }
    .header .stepMenu .contribution a {
      padding: 5px 7px;
    }
  /* Begin of Content Sign up step 9 */
    .sign-up-page.sign-9 .sign-uvaga {
      padding: 30px 30px 20px;
      margin-bottom: 30px;
    }
  /* End of Content Sign up step 9 */

  /* Begin of Content Sign up step 8 */
    .sign-up-page.sign-8 .sign-uvaga {
      padding: 33px 30px 40px;
    }
    .sign-up-page.sign-8 .sign-up-right {
      margin: 0;
    }
  /* End of Content Sign up step 8 */

  /* Begin of Breadcrumbs */
    .breadcrumbs-item {
      margin: 0 15px 0 0;
    }
      .breadcrumbs-text-small {
        font-size: 12px;
      }
      .breadcrumbs-text-big {
        font-size: 20px;
      }
        .breadcrumbs .single-row .breadcrumbs-text-big {
          font-size: 20px;
          line-height: 44px;
        }
        .breadcrumbs .demo-icon {
          margin: 12px 0 0 10px;
        }
  /* End of Breadcrumbs */

  /* Begin of Content Sign up step 3*/
    .nav-tabs > li {
      margin-bottom: 30px;
    }
    .radio-block-wrap {
      min-height: 110px;
    }
    .add-icon {
      text-align: center;
    }
    .sign-up-page.sign-3 .form-inner-wrap {
      margin: 30px 0 30px;
    }
  /* End of Content Sign up step 3*/

  /* Begin of Qustionnary */
  .form-inner-row {
    margin: 12px 0 30px;
    height: 800px;
  }
  /* End of Qustionnary */

  /* Begin of Sidebar */
    .widget-content ul li {
      margin: 0 20px 10px 0;
    }
      .widget-content ul li a span {
        width: 80%;
      }
      .widget-footer {
        text-align: right;
        margin: 15px 0 0;
      }
    .sidebar {
      margin: 52px 0 40px 0px;
    }
    .widget-readmore i {
      margin: 0 5px 0 0;
    }
    .widget {
      padding: 15px 0;
      margin: 0 0 25px;
      border-top: 1px solid #E2E2E2;
    }
  /* End of Sidebar */

  /* Begin of Content */
    .home-page .content {
      background: none;
    }
    .content-main-item h3 {
      font-size: 24px;
      margin: 6px 0 10px;
    }
    .content-main-item i {
      font-size: 38px;
    }
    .content-main-item {
      height: 150px;
    }
  /* End of Content */


  /* Begin of Header */
    .header {
      padding: 20px 0;
    }
      .header-logo {
        max-width: 60px;
        margin: auto;
        float: left;
        margin-top: 8px;
      }
    .header .sign-up {
      margin: 0;
    }
      .btn {
        padding: 10px 8px;
        height: 44px;
        margin: 0;
      }
        .sign-up .btn:first-child {
          margin: 0;
        }
      .navbar-toggle {
        height: 48px;
        float: left;
        position: relative;
        float: right;
        margin-right: 15px;
        margin-top: 0;
        margin-bottom: 0;
        border: 0;
        border-radius: 0;
        padding: 10px 26px;
        background-color: #d7d7d7;
      }
        .header .stepMenu .contribution a:hover {
          color: #777777;
        }
    .header .phone-number {
      font-size: 16px;
      float: left;
    }
      .header .stepMenu .contribution a i {
        display: none;
      }
        .stepMenu {
          float: left;
          margin: 9px 0 0 0px;
        }
  /* End of Header queries */

  /* Begin of Under header queries */
    .under-header {
      padding: 8px 0;
    }
    .under-header .phone-number {
      font-size: 14px;
      margin: 0;
    }
    .phone-block i {
      font-size: 16px;
      margin: 0 5px 0 0;
    }
    .social-list {
      margin: 2px 0 0;
    }
      .social-list li a {
        font-size: 16px;
      }
    .flag-block {
      width: 55px;
      height: 15px;
      margin: 0 0 0 10px;
    }
      .current-flag {
        width: 45px;
        float: right;
      }
        .flag-list {
          padding: 10px 10px 5px 10px;
        }
          .flag-item {
            margin: 0;
            width: 25px;
            height: 25px;
          }
            .flag-item img,
            .current-flag img {
              max-width: 100%;
            }

  /* End of Under header queries */

  /* Begin of Slider */
    .slider-text .text-3,
    .slider-text .text-1 {
      font-size: 18px;
    }
    .slider-text .text-2 {
      font-size: 50px;
    }
    .slider-counter-digits-wrap {
      background-position: -11px 53%;
      background-size: 28px 30px;
    }
  /* End of Slider */

  /* Begin of Slider */
    .slider-text .text-3,
    .slider-text .text-1 {
      font-size: 16px;
    }
    .slider-text .text-2 {
      font-size: 40px;
    }
    .slider-counter-title {
      font-size: 14px;
    }
    .slider-counter-digits {
      letter-spacing: 12px;
      padding: 15px 12px 15px 15px;
      font-size: 28px;
      background-position: 8px center;
      background-size: 90% auto;
    }
    .slider-counter-button {
      font-size: 16px;
    }
  /* End of Slider */

  /* Begin of Footer queries */
    .copyright {
      margin: 11px 0 0;
    }
  /* End of Footer queries */

  /* Begin of Footer queries */
    .footer {
      height: 130px;
      text-align: center;
    }
    .wrapper {
      padding-bottom: 130px;
    }
      .footer-logo {
        float: none;
        display: inline-block;
      }
      .copyright {
        margin: 9px 0 0;
        font-size: 12px;
      }
  /* End of Footer */


}
@media all and (max-width: 768px) {
  .popup-info .popup-content-wrap {
    padding: 15px;
  }
  .popup-lekar {
    position: absolute;
  }
  .popup-lekar .popup-content-wrap {
    padding: 15px;
  }
  .flag-block {
  }
    .current-flag {
      display: none;
    }
    .flag-list {
      position: relative;
      top: auto;
      right: auto;
      text-align: center;

      visibility: visible;
      opacity: 1;
    }
      .flag-item {
        display: inline-block;
        margin: 0;
        width: 32px;
        height: 30px;
        margin: 0 10px;
      }
        .flag-item.inActive {
          opacity: 0.6;
        }
        .flag-item.active {
          opacity: 1;
        }


  .lab-header span:nth-child(1) {
    line-height: 63px;
    font-size: 74px;
  }
  .lab-header span {
    color: #f43c6f;
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
  }
  .lab-content {
    height: auto;
  }
    .lab-content .virus-item {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      text-align: center;
      margin: 0 0 60px;
      -moz-transform:scale(1);
      -webkit-transform:scale(1);
      -o-transform:scale(1);
      -ms-transform:scale(1);
      transform:scale(1);
    }
      .virus-item img {
        display: inline-block;
        width: 200px;
      }
      .lab-content .virus-item p {
        position: relative;
        text-align: center;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
        margin: 20px 0;
        font-size: 20px;
      }
  .contact-call-back textarea.form-control {
    height: 150px;
  }
  .contact-call-back-buttons {
    margin: 0 0 50px;
  }
  .contact-call-back-buttons .form-group .btn {
    font-size: 16px;
  }
  .contact-call-back .form-group {
    margin: 0 0 20px;
  }
  .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-left span {
    font-weight: 600;
    font-size: 11px;
    line-height: 14px;
    float: none;
    margin: 6px 0px 0 0;
    display: block;
    text-align: left;
  }
  .sign-up-page.sign-11 .form-inner-wrap .btn {
    font-size: 16px;
    float: none;
    display: block;
    margin: 0 0 10px;
  }
  .anketa-action {
    margin: 30px 0;
  }
  .popup-content-wrap {
    padding: 100px 0 100px;
  }
  .popup-content .form-group .btn {
    font-size: 16px;
  }
  .popup-content .text-left,
  .popup-content .text-right {
    text-align: center;
    margin: 0 0 15px;
  }
  .recent-news {
    margin: 6px 0 50px;
  }
  .news-single-content-image {
    height: 300px;
    width: 100%;
    margin: 0 0 8px;
  }
  .recent-news h2 {
    margin: 10px 0;
  }
  .recent-news .btn-back {
    float: right;
    margin: 15px 0;
    padding: 10px 30px;
    display: block;
    font-size: 16px;
    float: none;
  }
  .news-list-read-more .btn {
    padding: 10px 20px;
    font-size: 14px;
    display: block;
  }
  .news-list-item h3 {
    height: auto;
  }
  .news-list-item {
    margin: 0 0 30px;
  }
  .tags-item-link {
    font-size: 10px;
    padding: 6px 12px;
  }
  .news-list-header {
    padding: 10px 0 4px;
  }
  .tags-item {
    margin: 0 4px 6px 0;
  }
  .questions-item-descr {
    padding: 40px 25px 64px 23px;
  }
  .questions-item h2 {
    font-size: 20px;
  }
  .popup-step.popup-step-3 .form-group .btn-default,
  .popup-step.popup-step-2 .form-group .btn-default,
  .popup-step.popup-step-1 .form-group .btn-default {
    padding: 10px 20px 10px 10px;
    font-size: 18px;
  }
  .popup-step.popup-step-3 .form-group .btn-primary,
  .popup-step.popup-step-2 .form-group .btn-primary,
  .popup-step.popup-step-1 .form-group .btn-primary {
    padding: 10px 10px 10px 20px;
    font-size: 18px;
  }
  .popup-step-3 .contribution-popup-content {
    height: 600px;
  }
  .popup-step-3 .nav-tabs {
    float: none;
  }
  .popup-step-3 .form-group {
    margin: 40px 0 0;
    float: none;
  }
  .popup-step-2 .contribution-popup-content {
    height: 2100px;
  }
  .popup-step.popup-step-2 .form-row .form-control {
    height: 60px;
    padding: 0 0 0 15px;
    font-size: 22px;
  }
  .popup-step-1 .contribution-popup-content {
    height: 1600px;
  }
  /* Begin of Popup step 1 */
  .contribution-popup-content {
    height: 1600px;
  }
  .contribution-popup-breadcrumbs .breadcrumbs-item {
    margin: 5px 5px 0px 0;
  }
  .contribution-popup-breadcrumbs .breadcrumbs-item i {
    margin: 0;
  }
  .grivny .popup-tabs li.input-text-wrap .radio-block {
    padding: 0 10px;
  }
  .input-text-block input[type="text"],
  .grivny .popup-tabs li p span:nth-child(1) {
    font-size: 18px;
  }
  .grn-block {
    padding: 0 0 35px;
  }
  .partners ul li {
    min-width: 250px;
    margin: 0 0 15px;
    height: 70px;
    width: 50%;
  }
  .peoples li {
    margin: 0 50px 0 0;
  }
  .grivny .form-group .btn {
    font-size: 16px;
  }
  /* End of Popup step 1 */

  /* Begin of About page */
    .about-header-title {
      font-size: 26px;
      line-height: 34px;
    }
    .about-content-item {
      margin: 0 0 25px;
    }
    .about-content-item-left .btn {
      margin: 11px 0 0;
      font-size: 16px;
    }
    .about-content-item-right h3 {
      font-size: 20px;
    }
  /* End of About page */
  .contact-call-back-buttons.text-right {
    text-align: center;
  }
  .contact-call-back-header {
    margin: 0 0 20px;
  }
  .contact-call-back .form-group {
    margin: 0 0 30px;
  }
  .contact-call-back-buttons .form-group .btn,
  .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-right,
  .sign-up-page.sign-11 .form-inner-wrap .btn,
  .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-left,
  .sign-up-page.sign-11 .form-radio-wrap .order-number,
  .sign-up-page.sign-11 .form-radio-wrap p,
  .sign-up-page.sign-11 .form-radio-wrap h2 {
    text-align: center;
    margin: auto;
    float: none;
  }
  .contact-call-back-buttons .form-group .btn,
  .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-right,
  .sign-up-page.sign-11 .form-inner-wrap .btn,
  .sign-up-page.sign-11 .form-inner-wrap .btn.btn-info.btn-left {
    margin-bottom: 10px;
  }

  .sign-up-page.sign-11 .form-radio-wrap h2 {
    font-size: 28px;
  }
  .widget-content ul li {
    height: auto;
  }
  /* Begin of Content Sign up step 8*/
  .sign-up-page.sign-8 .sign-uvaga {
    padding: 20px 30px 0px;
    margin-bottom: 30px;
    text-align: center;
  }
  .sign-up-page.sign-8 .sign-uvaga h2 {
    font-size: 28px;
  }
    .sign-up-page.sign-8 .sign-uvaga > div {
      margin: 0 0 30px 0;
    }
  /* End of Content Sign up step 8*/

  /* Begin of Content Sign up */
    .wrapper.sign-up-page .form-inner-wrap {
      margin: 30px 0 30px;
    }
    .wrapper.sign-up-page .form-inner-wrap h1 {
      padding: 15px 0 30px;
      margin: 0;
      font-size: 28px;
    }
    .wrapper.sign-up-page .doctor-link {
      margin: 0 0 15px;
    }
    .doctor-item {
      display: inline-block;
      margin: 0 0 30px;
    }
    .nav-block {
      margin: 50px 0;
    }
    .breadcrumbs {
      display: none;
    }
    .breadcrumbs-item {
      margin: 0 10px 5px 0;
    }
    .breadcrumbs-text-big {
      font-size: 16px;
    }
    .breadcrumbs .demo-icon {
      margin: 10px 5px 0 0;
    }
  /* End of Content Sign up */

  /* Begin of Content Sign up step 3*/
      .sign-up-page.sign-3 .form-inner-wrap {
        padding: 0 0 1px;
      }
  /* End of Content Sign up step 3*/

  /* Begin of sign-up-page sign-2 */
    .sign-up-page.sign-2 .form-inner-wrap {
      margin: 50px 0 0px;
    }
    .sign-up-page.sign-2 .selectric-wrapper {
      margin-bottom: 150px;
    }
    .sign-up-page.sign-3 .radio-block {
        padding: 10px 10px 0;
    }
  /* End of sign-up-page sign-2 */

  /* Begin of Qustionnary */
    .form-inner-row {
      margin: 12px 0 30px;
      height: 400px;
    }
    .form-group .btn-default,
    .form-group .btn-primary {
      font-size: 20px;
    }
    .form-inner-wrap h1 {
      font-size: 30px;
      letter-spacing: 0px;
    }
  /* End of Questionnary */

  /* Begin of Slider */
  .slider-counter {
    display: block;
    float: none;
    width: 300px;
    margin: auto;
    margin-top: 35px;
  }
    .slider-counter-digits-wrap {
      background-position: 24px 53%;
      left: 40px;
      right: 47px;
    }
    .slider .btn-primary {
      font-size: 21px;
      padding: 6px 8px;
    }
    .slider-counter-digits {
      text-align: center;
    }
    .slider-text {
      padding: 0;
    }
    .slider-text .text-3, 
    .slider-text .text-2, 
    .slider-text .text-1 {
      text-align: center;
    }
    .slider-text .text-2 {
      font-size: 30px;
    }
  /* End of Slider */

  /* Begin of Content */
  .content-header h2 {
    font-size: 30px;
  }
  .content-header h1 {
    font-size: 30px;
  }
    .content-main-item {
      text-align: center;
      padding: 0;
      margin: 0 0 30px;
      height: 170px;
    }
      .content-main-item.button-item {
        padding: 20px 0 0;
      }
      .content-main-item {
        margin: 0 0 30px;
        height: 180px;
      }
        .content-main-item.button-item {
          text-align: center;
        }
      .sign-up-page .form-group.btn-form .btn.btn-primary,
      .sign-up-page .form-group.btn-form .btn.btn-default {
        height: auto;
        font-size: 14px;
        padding: 8px 10px;
        margin: 0 0 0 5px;
      }
  /* End of Content */

  /* Begin of Header */
    .wrapper.fixed header.header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
    }
    .wrapper.fixed .main {
      padding: 104px 0 0;

      transition: .2s all;
      -webkit-transition: .2s all;
      -moz-transition: .2s all;
      -o-transition: .2s all;
      -ms-transition: .2s all;
    }
    .under-header {
      display: none;
    }
    .sign-up .btn span {
      display: none;
    }
      .sign-up .btn i {
        display: inline;
      }
      .navbar-collapse {
        padding: 0px;
        position: fixed;
        width: 100%;
        top: 102px;
        left: 0px;
        right: 0px;
        z-index: 2;
        margin: 0px;
        background-color: #f2f2f2;
      }
      .header-logo {
        max-width: 100px;
        margin: 26px 0 0 200px;
        float: left;
      }
  .sign-up .btn {
    float: right;
    display: block;
    height: 109px;
    padding: 10px 17px;
    font-size: 22px;
    color: #fff;
  } 
    .btn.btn-info,
    .btn-primary {
      height: auto;
      padding: 10px 17px;
    }
    .btn-default {
      height: auto;
      padding: 10px 17px;
    } 

    .header .phone-block,
    .header .social-list {
      display: block;
      padding: 46px 15px;
      text-align: center;
    }
    .navbar-toggle {
      float: left;
    }
  .header {
    height: 109px;
    padding: 0;
  }
    .navbar-toggle {
      height: 109px;
      width: 86px;
    }
    .header .phone-number {
      text-align: center;
      float: none;
      font-size: 24px;
    }
      .phone-block i {
        font-size: 20px;
        margin: 0 12px 0 0;
      }
    .flag-block {
      text-align: center;
      float: none;
      background: none;
      width: auto;
      margin: 42px 0 0 10px;
    }
      .flag-block-item {
        display: inline-block;
        width: 25px;
        height: 25px;
        margin: 5px 13px 0 0px;
      }
    .stepMenu {
      float: none;
      text-align: center;
      margin: 0;
    }
      .stepMenu li {
        display: block;
        float: none;
        text-align: center;
      }
        .stepMenu > li > a {
          padding: 28px 7px;
          font-size: 16px;
        }
        .header .stepMenu .contribution a i {
          display: inline-block;
        }
        .social-list li a {
          font-size: 22px;
        }
  /* End of Header queries */

}

@media all and (max-width: 768px) {

}
@media all and (max-width: 700px) {
  .form-inner-wrap h1 {
    font-size: 24px;
  }
  .header-logo {
    margin: 26px 0 0 150px;
  }
}
@media all and (max-width: 667px) {
}
@media all and (max-width: 620px) {
  .header-logo {
    margin: 26px 0 0 100px;
  }
}
@media all and (max-width: 520px) {
  .header-logo {
    margin: 26px 0 0 35px;
  }
}

@media all and (max-width: 480px) {
  .popup-step-1 .contribution-popup-content {
    height: 1800px;
  }
  /* Begin of Popup step 1 */
  .contribution-popup-wrap-inner .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .grivny .form-group .btn {
    font-size: 14px;
  }
  .grivny .form-group .btn-primary {
    padding: 7px 25px 12px 25px;
  }
  .contribution-popup-breadcrumbs .breadcrumbs-item:nth-child(1) i {
    display: inline-block;
  }
  .contribution-popup-breadcrumbs {
    padding: 10px 0;
    height: 110px;
  }
  .contribution-popup-breadcrumbs .breadcrumbs-item {
    margin: 5px 5px 10px 0;
    float: none;
  }
  .support h3 {
    font-size: 26px;
  }
  .grivny .popup-tabs li.input-text-wrap .radio-block {
    
  }
  .partners ul li {
    margin: 0 0 45px;
    height: auto;
    width: auto;
}
  .input-text-block input[type="text"],
  .grivny .popup-tabs li p span:nth-child(1) {
    font-size: 18px;
  }
  .peoples {
    margin: 0;
  }
  .partners ul {
    margin: 20px 0 0;
  }
  /* End of Popup step 1 */

  /* Begin of Header queries */
    .header-logo {
    }
    .btn {
      padding: 13px 12px;
    }
  /* End of Header queries */

  /* Begin of Under header queries */
    .phone-number {
      font-size: 14px;
    }
  /* End of Under header queries */

  /* Begin of Footer queries */
    .footer {
      height: 160px;
    }
    .footer .social-list {
      float: none;
    }
  /* End of Footer queries */
  .content-main-item {
    height: auto;
  }
}
@media all and (max-width: 420px) {
  .contribution-popup {
    top: 66px;
  }
  .stepMenu > li > a {
    padding: 18px 7px;
  }
  .navbar-toggle {
    height: 66px;
    width: 56px;
    padding: 10px 16px;
  }
  .header-logo {
    margin: 14px 0 0 42px;
    max-width: 88px;
  }
  .header {
    height: 66px;
  }
  .sign-up .btn {
    height: 66px;
    padding: 10px 9px;
  }
  .btn-default {
    font-size: 22px;
  }
  .btn-primary {
    font-size: 23px;
  }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 7px;
  }
  .navbar-toggle .icon-bar {
    width: 24px;
    height: 3px;
  } 
  .navbar-collapse {
    top: 66px;
  } 
  .header .phone-block, .header .social-list {
    padding: 20px 15px;
  }
  .stepMenu > li > a {
    padding: 20px 7px;
    font-size: 14px;
  }
}
@media all and (max-width: 320px) {
  .header-logo {
    margin: 10px 0 0 0px;
    max-width: 60px;
  }
  .flag-block {
    margin: 30px 0 0 10px;
  }
}
/* All mobiles and small screens*/
@media (max-width: 1024px) {
 
}
/* iPhone 6 Plus in portrait & landscape */
@media only screen 
and (min-device-width : 414px) 
and (max-device-width : 736px) {
 
}
/* iPhone 6 in portrait & landscape */
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) {

}
/* iPhone 5 & 5S in portrait & landscape */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) {
  .popup-step-2 .contribution-popup-content {
    height: 2400px;
  }
}
/* ==========================================================
* End of Queries
* ===========================================================
*/

/* ==========================================================
* Begin of Doctors
* ===========================================================
*/

@charset 'utf-8';
html {
  font-size: 10px;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
.doc-single-page {
  background-color: #fff;
  z-index: 2;
}
.doc-single-page .docs {
  padding: 105px 0;
}
@media (max-width: 767px) {
  .doc-single-page .docs {
    padding: 20px 0;
  }
}
.registration-page {
  background-color: #fff;
}
.registration-page .under-header {
  padding: 13px 0;
}
.under-header {
  padding: 13px 0;
}
.under-header__want {
  float: right;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-color: #ee205c;
  text-align: left;
  padding: 10px 20px;
  font-size: 15px;
  line-height: 20px;
  min-width: 260px;
  height: unset;
}
.under-header__want:before {
  content: "";
  display: inline-block;
  width: 3.4rem;
  height: 5rem;
  background-image: url("../images/doctors/png-sprite.png");
  background-position: 0rem -27.7rem;
  background-size: 54.4rem 32.7rem;
  margin-right: 26px;
  background-size: unset;
}
.under-header__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  color: #ee205c;
}
.under-header__right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
}
.under-header__link {
  margin-right: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #ee205c;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .under-header__link {
    margin-right: 10px;
  }
}
.under-header__link:after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url("../images/doctors/png-sprite.png");
  background-position: -4.2rem -27.7rem;
  background-size: 54.4rem 32.7rem;
  float: left;
  margin-right: 10px;
}
.under-header .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.docs {
  padding: 83px 0;
}
@media (max-width: 767px) {
  .docs {
    padding: 40px 0;
  }
}
.doc {
  margin-bottom: 140px;
}
@media (max-width: 767px) {
  .doc {
    margin-bottom: 60px;
  }
}
.doc .text-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.doc__avatar {
  border-radius: 50%;
  object-fit: cover;
  max-width: 100%;
  max-height: 223px;
}
@media (max-width: 767px) {
  .doc__avatar {
    margin-bottom: 20px;
  }
}
.doc__name {
  color: #6f7474;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 11px;
  display: block;
}
.doc__name:hover {
  color: #ee205c;
  text-decoration: none;
}
.doc__post {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 20px;
}
.doc__address {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.doc__address:before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2.2rem;
  background-image: url("../images/doctors/png-sprite.png");
  background-position: -4.2rem -30.5rem;
  background-size: 54.4rem 32.7rem;
  position: absolute;
  left: 0;
  top: 0;
}
.doc__tel {
  margin-bottom: 40px;
  padding-left: 30px;
  position: relative;
  display: block;
}
.doc__tel:before {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 2rem;
  background-image: url("../images/doctors/png-sprite.png");
  background-position: -7rem -27.7rem;
  background-size: 54.4rem 32.7rem;
  position: absolute;
  left: 0;
  top: 0;
}
.doc__rating {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.doc__padding-left {
  padding-left: 35px;
}
@media (max-width: 767px) {
  .doc__padding-left {
    padding-left: 15px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .doc .btn {
    width: 100%;
    font-size: 23px;
  }
}
.rating__star {
  display: inline-block;
  width: 1.8rem;
  height: 1.7rem;
  background-image: url("../images/doctors/png-sprite.png");
  background-position: -9.5rem -27.7rem;
  background-size: 54.4rem 32.7rem;
}
.rating__star + .rating__star {
  margin-left: 9px;
}
.rating__star_empty {
  display: inline-block;
  width: 1.8rem;
  height: 1.7rem;
  background-image: url("../images/doctors/png-sprite.png");
  background-position: -12.1rem -27.7rem;
  background-size: 54.4rem 32.7rem;
}
.rating__count {
  margin-left: 14px;
  background: none !important;
}
.rating__rate {
  color: #ee205c;
  font-size: 14px;
  font-weight: 400;
  margin-left: 20px;
}
.pagination > li.active > a {
  color: #ee205c;
  background-color: transparent;
  poiner-events: none;
}
.pagination > li.active > a:hover,
.pagination > li.active > a:focus {
  color: #ee205c;
  background-color: transparent;
  border: none;
}
.pagination > li > a {
  color: #6f7474;
  font-size: 24px;
  font-weight: 700;
  background-color: transparent;
  border: none;
}
.doc-portfolio {
  margin-bottom: 74px;
}
@media (max-width: 767px) {
  .doc-portfolio {
    margin-bottom: 50px;
  }
}
.doc-portfolio__title {
  color: #ee205c;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}
.doc-portfolio__info {
  font-size: 14px;
  margin-bottom: 21px;
  font-weight: 400;
  line-height: 21px;
}
.doc-portfolio.doc .doc__name {
  margin-bottom: 15px;
}
.doc-portfolio.doc .doc__post {
  margin-bottom: 24px;
}
.doc-portfolio.doc .doc__rating {
  margin-bottom: 36px;
}
.doc-portfolio.doc .doc__address {
  margin-bottom: 22px;
}
#popupRate .popup-bg {
  background-color: rgba(49,48,48,0.78);
}
#popupRate .popup-content-wrap {
  padding: 70px 95px 62px;
}
@media (max-width: 767px) {
  #popupRate .popup-content-wrap {
    padding: 31px 18px 62px;
  }
}
#popupRate .popup__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.6px;
  color: #6f7474;
  margin-bottom: 49px;
}
#popupRate .popup__rating {
  margin-bottom: 49px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
.registration__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.9px;
  color: #ee205c;
  margin: 68px 0 27px;
}
.registration__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 52px;
}
.registration-done__image {
  display: inline-block;
  width: 27.2rem;
  height: 13.45rem;
  background-image: url("../images/doctors/png-sprite.png");
  background-position: 0rem 0rem;
  background-size: 27.2rem 16.35rem;
  margin-top: 143px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .registration-done__image {
    margin-top: 82px;
  }
}
.registration-done__title {
  color: #ee205c;
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.9px;
  margin-bottom: 20px;
}
.registration-done__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 48px;
}
.form__group {
  margin-bottom: 16px;
}
.form__group .btn {
  margin-top: 17px;
  margin-bottom: 141px;
}
@media (max-width: 767px) {
  .form__group .btn {
    margin-bottom: 57px;
  }
}
.form__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.6px;
  margin-bottom: 31px;
}
.form__label {
  margin-bottom: 12px;
  color: #75777c;
  font-size: 14px;
  font-weight: 400;
}
.form__input {
  font-size: 28px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.9px;
  color: #aeafaf;
  padding: 6px 12px;
}
.form__wrap {
  position: relative;
  margin-bottom: 20px;
}
.form__textarea {
  width: 100%;
  height: 118px;
  color: #aeafaf;
  font-size: 28px;
  border-radius: 0;
  box-shadow: none !important;
  border: 4px solid #ee205c;
}


.form__select {
  width: 100%;
  
  color: #aeafaf;
  font-size: 28px;
  border-radius: 0;
  box-shadow: none !important;
  border: 4px solid #ee205c;
}

.select2-container {
	color: #aeafaf;
	font-size: 28px;
	border: 4px solid #ee205c;
}
	

.form .bfh-phone + .placeholder {
  background-color: #fff;
}
.form .placeholder {
  position: absolute;
  background-color: transparent;
  color: #aeafaf;
  font-size: 28px;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  padding: 15px 0 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 95%;
  white-space: nowrap;
  overflow: hidden;
}

/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlLnN0eWwiLCJzdHlsZS5jc3MiLCJjb21wb25lbnRzL3VuZGVyLWhlYWRlci5zdHlsIiwiLi4vLi4vbm9kZV9tb2R1bGVzL2dyb21vdi1jb3JlLXRlbXBsYXRlcy9wbmctc3ByaXRlL3BuZy1zcHJpdGUuc3R5bCIsImNvbXBvbmVudHMvZG9jLnN0eWwiLCJjb21wb25lbnRzL3JhdGluZy5zdHlsIiwiY29tcG9uZW50cy9wYWdpbmF0aW9uLnN0eWwiLCJjb21wb25lbnRzL2RvYy1wb3J0Zm9saW8uc3R5bCIsImNvbXBvbmVudHMvcG9wdXAuc3R5bCIsImNvbXBvbmVudHMvcmVnaXN0cmF0aW9uLnN0eWwiLCJjb21wb25lbnRzL2Zvcm0uc3R5bCIsIi4uLy4uL25vZGVfbW9kdWxlcy9ncm9tb3YtY29yZS10ZW1wbGF0ZXMvc3R5bGUvbWl4aW5zLnN0eWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBTVMsaUJBQUE7QUFlVDtFQUNDLGdCQUFBO0NDbkJBO0FEcUJEOzs7RUFHQyx1QkFBQTtDQ25CQTtBRHFCRDtFQUNDLHVCQUFBO0VBQ0EsV0FBQTtDQ25CQTtBRG9CQTtFQUNDLGlCQUFBO0NDbEJEO0FEb0J5QjtFQUFBO0lBQ3ZCLGdCQUFBO0dDakJBO0NBQ0Y7QURrQkQ7RUFDQyx1QkFBQTtDQ2hCQTtBRGtCQTtFQUNDLGdCQUFBO0NDaEJEO0FDMUJEO0VBQ0MsZ0JBQUE7Q0Q0QkE7QUMxQkE7RUFDQyxhQUFBO0VBQ0EscUJBQUE7RUFBQSxjQUFBO0VBQ0EsdUJBQUE7RUFBQSxvQkFBQTtFQUNBLHVCQUFBO0VBQ0Esc0JBQUE7RUFDQSxpQkFBQTtFQUNBLG1CQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtFQUNBLGlCQUFBO0VBQ0EsY0FBQTtDRDRCRDtBQ3pCQztFQUNDLFlBQUE7RUNSQyxzQkFBQTtFQUNBLGNBQUE7RUFDQSxhQUFBO0VBQ0EsK0NBQUE7RUFDQSxtQ0FBQTtFQUNBLGlDQUFBO0VES0QsbUJBQUE7RUFDQSx1QkFBQTtDRGdDRjtBQzlCQTtFQUNDLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLGVBQUE7Q0RnQ0Q7QUM5QkE7RUFDQyxxQkFBQTtFQUFBLGNBQUE7RUFDQSxtQkFBQTtFQUFBLDBCQUFBO0VBQ0EsdUJBQUE7RUFBQSxvQkFBQTtDRGdDRDtBQzlCQTtFQUNDLG1CQUFBO0VBQ0EsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLGVBQUE7RUFDQSxpQkFBQTtDRGdDRDtBQzlCeUI7RUFBQTtJQUN2QixtQkFBQTtHRGlDQTtDQUNGO0FDaENDO0VBQ0MsWUFBQTtFQ25DQyxzQkFBQTtFQUNBLFlBQUE7RUFDQSxhQUFBO0VBQ0EsK0NBQUE7RUFDQSxzQ0FBQTtFQUNBLGlDQUFBO0VEZ0NELFlBQUE7RUFDQSxtQkFBQTtDRHVDRjtBQ3JDQTtFQUNDLHFCQUFBO0VBQUEsY0FBQTtFQUNBLHVCQUFBO0VBQUEsb0JBQUE7Q0R1Q0Q7QUcxRkQ7RUFDQyxnQkFBQTtDSDRGQTtBRzFGd0I7RUFBQTtJQUN2QixnQkFBQTtHSDZGQztDQUNGO0FHNUZEO0VBQ0MscUJBQUE7Q0g4RkE7QUc1RndCO0VBQUE7SUFDdkIsb0JBQUE7R0grRkM7Q0FDRjtBRzlGQTtFQUNDLHFCQUFBO0VBQUEsY0FBQTtFQUNBLHVCQUFBO0VBQUEsb0JBQUE7RUFDQSxzQkFBQTtFQUFBLHdCQUFBO0NIZ0dEO0FHOUZBO0VBQ0MsbUJBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0Esa0JBQUE7Q0hnR0Q7QUc5RnlCO0VBQUE7SUFDdkIsb0JBQUE7R0hpR0E7Q0FDRjtBR2hHQTtFQUNDLGVBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0VBQ0Esa0JBQUE7RUFDQSxvQkFBQTtFQUNBLGVBQUE7Q0hrR0Q7QUdoR0M7RUFDQyxlQUFBO0VBQ0Esc0JBQUE7Q0hrR0Y7QUdoR0E7RUFDQyxnQkFBQTtFQUNBLGlCQUFBO0VBQ0Esa0JBQUE7RUFDQSxvQkFBQTtDSGtHRDtBR2hHQTtFQUNDLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLG9CQUFBO0VBQ0EsbUJBQUE7RUFDQSxtQkFBQTtDSGtHRDtBR2hHQztFQUNDLFlBQUE7RUQ1Q0Msc0JBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLCtDQUFBO0VBQ0Esc0NBQUE7RUFDQSxpQ0FBQTtFQ3lDRCxtQkFBQTtFQUNBLFFBQUE7RUFDQSxPQUFBO0NIdUdGO0FHckdBO0VBQ0Msb0JBQUE7RUFDQSxtQkFBQTtFQUNBLG1CQUFBO0VBQ0EsZUFBQTtDSHVHRDtBR3JHQztFQUNDLFlBQUE7RUR6REMsc0JBQUE7RUFDQSxjQUFBO0VBQ0EsYUFBQTtFQUNBLCtDQUFBO0VBQ0Esb0NBQUE7RUFDQSxpQ0FBQTtFQ3NERCxtQkFBQTtFQUNBLFFBQUE7RUFDQSxPQUFBO0NINEdGO0FHMUdBO0VBQ0MsaUJBQUE7RUFDQSxvQkFBQTtDSDRHRDtBRzFHQTtFQUNDLG1CQUFBO0NINEdEO0FHMUd5QjtFQUFBO0lBQ3ZCLG1CQUFBO0lBQ0Esb0JBQUE7R0g2R0E7Q0FDRjtBRzNHd0I7RUFBQTtJQUN0QixZQUFBO0lBQ0EsZ0JBQUE7R0g4R0E7Q0FDRjtBSXBNQTtFRlFHLHNCQUFBO0VBQ0EsY0FBQTtFQUNBLGVBQUE7RUFDQSwrQ0FBQTtFQUNBLHNDQUFBO0VBQ0EsaUNBQUE7Q0YrTEg7QUl6TUM7RUFDQyxpQkFBQTtDSjJNRjtBSXpNQztFRkVFLHNCQUFBO0VBQ0EsY0FBQTtFQUNBLGVBQUE7RUFDQSwrQ0FBQTtFQUNBLHVDQUFBO0VBQ0EsaUNBQUE7Q0YwTUg7QUk5TUE7RUFDQyxrQkFBQTtFQUNBLDRCQUFBO0NKZ05EO0FJOU1BO0VBQ0MsZUFBQTtFQUNBLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtDSmdORDtBS2hPRTtFQUNDLGVBQUE7RUFDQSw4QkFBQTtFQUNBLG9CQUFBO0NMa09IO0FLaE9HOztFQUNDLGVBQUE7RUFDQSw4QkFBQTtFQUNBLGFBQUE7Q0xtT0o7QUtqT0M7RUFDQyxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLDhCQUFBO0VBQ0EsYUFBQTtDTG1PRjtBTXJQRDtFQUNDLG9CQUFBO0NOdVBBO0FNclB3QjtFQUFBO0lBQ3ZCLG9CQUFBO0dOd1BDO0NBQ0Y7QU12UEE7RUFDQyxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLG9CQUFBO0NOeVBEO0FNdlBBO0VBQ0MsZ0JBQUE7RUFDQSxvQkFBQTtFQUNBLGlCQUFBO0VBQ0Esa0JBQUE7Q055UEQ7QU10UEM7RUFDQyxvQkFBQTtDTndQRjtBTXZQQztFQUNDLG9CQUFBO0NOeVBGO0FNeFBDO0VBQ0Msb0JBQUE7Q04wUEY7QU16UEM7RUFDQyxvQkFBQTtDTjJQRjtBT25SQztFQUNDLHNDQUFBO0NQcVJGO0FPcFJDO0VBQ0Msd0JBQUE7Q1BzUkY7QU9yUjBCO0VBQUE7SUFDdkIsd0JBQUE7R1B3UkQ7Q0FDRjtBT3hSQztFQUNDLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0EsZUFBQTtFQUNBLG9CQUFBO0NQMFJGO0FPeFJDO0VBQ0Msb0JBQUE7RUFDQSxxQkFBQTtFQUFBLGNBQUE7RUFDQSxzQkFBQTtFQUFBLHdCQUFBO0VBQ0EsdUJBQUE7RUFBQSxvQkFBQTtDUDBSRjtBUTVTQTtFQUNDLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0EsZUFBQTtFQUNBLG9CQUFBO0NSOFNEO0FRNVNBO0VBQ0MsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLGtCQUFBO0VBQ0Esb0JBQUE7Q1I4U0Q7QVEzU0M7RU5QRSxzQkFBQTtFQUNBLGVBQUE7RUFDQSxpQkFBQTtFQUNBLCtDQUFBO0VBQ0EsK0JBQUE7RUFDQSxrQ0FBQTtFTUlELGtCQUFBO0VBQ0Esb0JBQUE7Q1JrVEY7QVFoVDBCO0VBQUE7SUFDdkIsaUJBQUE7R1JtVEQ7Q0FDRjtBUWxUQztFQUNDLGVBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0VBQ0Esa0JBQUE7RUFDQSxzQkFBQTtFQUNBLG9CQUFBO0NSb1RGO0FRbFRDO0VBQ0MsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLGtCQUFBO0VBQ0Esb0JBQUE7Q1JvVEY7QVN2VkE7RUFDQyxvQkFBQTtDVHlWRDtBU3ZWQztFQUNDLGlCQUFBO0VBQ0EscUJBQUE7Q1R5VkY7QVN2VjBCO0VBQUE7SUFDdkIsb0JBQUE7R1QwVkQ7Q0FDRjtBU3pWQTtFQUNDLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0Esb0JBQUE7Q1QyVkQ7QVN6VkE7RUFDQyxvQkFBQTtFQUNBLGVBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0NUMlZEO0FTelZBO0VBQ0MsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLGtCQUFBO0VBQ0Esc0JBQUE7RUFDQSxlQUFBO0VBQ0Esa0JBQUE7Q1QyVkQ7QVN6VkE7RUFDQyxtQkFBQTtFQUNBLG9CQUFBO0NUMlZEO0FTelZBO0VBQ0MsWUFBQTtFQUNBLGNBQUE7RUFDQSxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLDRCQUFBO0VBQ0EsMEJBQUE7Q1QyVkQ7QVN4VkM7RUFDQyx1QkFBQTtDVDBWRjtBU3hWQTtFQUNDLG1CQUFBO0VBQ0EsOEJBQUE7RUFDQSxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxTQUFBO0VBQ0EsVUFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EsdUJBQUE7RUNTRCxpQkFBQTtFQUNBLG9CQUFBO0VBQ0Esd0JBQUE7RURUQyxXQUFBO0VBQ0Esb0JBQUE7RUFDQSxpQkFBQTtDVDRWRCIsImZpbGUiOiJzdHlsZS5jc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cclxuLy9cclxuLy8gXHRcdNCe0YHQvdC+0LLQvdC+0Lkg0YTQsNC50Lsg0YHRgtC40LvQtdC5XHJcbi8vXHJcbi8vID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxyXG5cclxuQGNoYXJzZXQgJ3V0Zi04JztcclxuXHJcbi8vINCX0LDQstC40YHQuNC80L7RgdGC0LhcclxuQGltcG9ydCBcInZhcmlhYmxlcy5zdHlsXCJcclxuQGltcG9ydCBcIi4uLy4uL25vZGVfbW9kdWxlcy9ncm9tb3YtY29yZS10ZW1wbGF0ZXMvc3R5bGUvbWl4aW5zLnN0eWxcIlxyXG5AaW1wb3J0IFwiLi4vLi4vbm9kZV9tb2R1bGVzL2dyb21vdi1jb3JlLXRlbXBsYXRlcy9zdHlsZS9hbmltYXRlLnN0eWxcIlxyXG5cclxuLy8gcmVzZXQgNy43IFxyXG4vLyBAaW1wb3J0IFwiLi4vLi4vbm9kZV9tb2R1bGVzL25vcm1hbGl6ZS5jc3Mvbm9ybWFsaXplLmNzc1wiXHJcblxyXG4vLyDQodC/0YDQsNC50YLRi1xyXG5AaW1wb3J0IFwiLi4vLi4vbm9kZV9tb2R1bGVzL2dyb21vdi1jb3JlLXRlbXBsYXRlcy9wbmctc3ByaXRlL3Nwcml0ZS1jb29yZHMuc3R5bFwiXHJcbkBpbXBvcnQgXCIuLi8uLi9ub2RlX21vZHVsZXMvZ3JvbW92LWNvcmUtdGVtcGxhdGVzL3BuZy1zcHJpdGUvcG5nLXNwcml0ZS5zdHlsXCJcclxuXHJcblxyXG5odG1sXHJcblx0Zm9udC1zaXplIDEwcHhcclxuXHJcbipcclxuKjpiZWZvcmVcclxuKjphZnRlclxyXG5cdGJveC1zaXppbmcgYm9yZGVyLWJveFxyXG5cclxuLmRvYy1zaW5nbGUtcGFnZVxyXG5cdGJhY2tncm91bmQtY29sb3Igd2hpdGVcclxuXHR6LWluZGV4IDJcclxuXHQuZG9jc1xyXG5cdFx0cGFkZGluZyAxMDVweCAwXHJcblx0XHRcclxuXHRcdEBtZWRpYSAobWF4LXdpZHRoOiA3NjdweClcclxuXHRcdFx0cGFkZGluZyAyMHB4IDBcclxuXHRcdFxyXG4ucmVnaXN0cmF0aW9uLXBhZ2VcclxuXHRiYWNrZ3JvdW5kLWNvbG9yIHdoaXRlXHJcblx0XHJcblx0LnVuZGVyLWhlYWRlclxyXG5cdFx0cGFkZGluZyAxM3B4ICAwXHJcblxyXG5AaW1wb3J0IFwiLi9jb21wb25lbnRzL3VuZGVyLWhlYWRlci5zdHlsXCJcclxuQGltcG9ydCBcIi4vY29tcG9uZW50cy9kb2Muc3R5bFwiXHJcbkBpbXBvcnQgXCIuL2NvbXBvbmVudHMvcmF0aW5nLnN0eWxcIlxyXG5AaW1wb3J0IFwiLi9jb21wb25lbnRzL3BhZ2luYXRpb24uc3R5bFwiXHJcbkBpbXBvcnQgXCIuL2NvbXBvbmVudHMvZG9jLXBvcnRmb2xpby5zdHlsXCJcclxuQGltcG9ydCBcIi4vY29tcG9uZW50cy9wb3B1cC5zdHlsXCJcclxuQGltcG9ydCBcIi4vY29tcG9uZW50cy9yZWdpc3RyYXRpb24uc3R5bFwiXHJcbkBpbXBvcnQgXCIuL2NvbXBvbmVudHMvZm9ybS5zdHlsXCIiLCJAY2hhcnNldCAndXRmLTgnO1xuaHRtbCB7XG4gIGZvbnQtc2l6ZTogMTBweDtcbn1cbiosXG4qOmJlZm9yZSxcbio6YWZ0ZXIge1xuICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xufVxuLmRvYy1zaW5nbGUtcGFnZSB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG4gIHotaW5kZXg6IDI7XG59XG4uZG9jLXNpbmdsZS1wYWdlIC5kb2NzIHtcbiAgcGFkZGluZzogMTA1cHggMDtcbn1cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjdweCkge1xuICAuZG9jLXNpbmdsZS1wYWdlIC5kb2NzIHtcbiAgICBwYWRkaW5nOiAyMHB4IDA7XG4gIH1cbn1cbi5yZWdpc3RyYXRpb24tcGFnZSB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG59XG4ucmVnaXN0cmF0aW9uLXBhZ2UgLnVuZGVyLWhlYWRlciB7XG4gIHBhZGRpbmc6IDEzcHggMDtcbn1cbi51bmRlci1oZWFkZXIge1xuICBwYWRkaW5nOiA0N3B4IDA7XG59XG4udW5kZXItaGVhZGVyX193YW50IHtcbiAgZmxvYXQ6IHJpZ2h0O1xuICBkaXNwbGF5OiBmbGV4O1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuICBib3JkZXItY29sb3I6ICNlZTIwNWM7XG4gIHRleHQtYWxpZ246IGxlZnQ7XG4gIHBhZGRpbmc6IDEwcHggMjBweDtcbiAgZm9udC1zaXplOiAxNXB4O1xuICBsaW5lLWhlaWdodDogMjBweDtcbiAgbWluLXdpZHRoOiAyNjBweDtcbiAgaGVpZ2h0OiB1bnNldDtcbn1cbi51bmRlci1oZWFkZXJfX3dhbnQ6YmVmb3JlIHtcbiAgY29udGVudDogXCJcIjtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICB3aWR0aDogMy40cmVtO1xuICBoZWlnaHQ6IDVyZW07XG4gIGJhY2tncm91bmQtaW1hZ2U6IHVybChcIi4uL2ltZy9wbmctc3ByaXRlLnBuZ1wiKTtcbiAgYmFja2dyb3VuZC1wb3NpdGlvbjogMHJlbSAtMjcuN3JlbTtcbiAgYmFja2dyb3VuZC1zaXplOiA1NC40cmVtIDMyLjdyZW07XG4gIG1hcmdpbi1yaWdodDogMjZweDtcbiAgYmFja2dyb3VuZC1zaXplOiB1bnNldDtcbn1cbi51bmRlci1oZWFkZXJfX3RpdGxlIHtcbiAgZm9udC1zaXplOiAzNnB4O1xuICBmb250LXdlaWdodDogNzAwO1xuICBsaW5lLWhlaWdodDogMzZweDtcbiAgY29sb3I6ICNlZTIwNWM7XG59XG4udW5kZXItaGVhZGVyX19yaWdodCB7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGp1c3RpZnktY29udGVudDogZmxleC1lbmQ7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG59XG4udW5kZXItaGVhZGVyX19saW5rIHtcbiAgbWFyZ2luLXJpZ2h0OiA1MHB4O1xuICBmb250LXNpemU6IDE2cHg7XG4gIGZvbnQtd2VpZ2h0OiA3MDA7XG4gIGNvbG9yOiAjZWUyMDVjO1xuICBsaW5lLWhlaWdodDogMS4zO1xufVxuQG1lZGlhIChtYXgtd2lkdGg6IDk5MnB4KSB7XG4gIC51bmRlci1oZWFkZXJfX2xpbmsge1xuICAgIG1hcmdpbi1yaWdodDogMTBweDtcbiAgfVxufVxuLnVuZGVyLWhlYWRlcl9fbGluazphZnRlciB7XG4gIGNvbnRlbnQ6IFwiXCI7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgd2lkdGg6IDJyZW07XG4gIGhlaWdodDogMnJlbTtcbiAgYmFja2dyb3VuZC1pbWFnZTogdXJsKFwiLi4vaW1nL3BuZy1zcHJpdGUucG5nXCIpO1xuICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAtNC4ycmVtIC0yNy43cmVtO1xuICBiYWNrZ3JvdW5kLXNpemU6IDU0LjRyZW0gMzIuN3JlbTtcbiAgZmxvYXQ6IGxlZnQ7XG4gIG1hcmdpbi1yaWdodDogMTBweDtcbn1cbi51bmRlci1oZWFkZXIgLnJvdyB7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG59XG4uZG9jcyB7XG4gIHBhZGRpbmc6IDgzcHggMDtcbn1cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjdweCkge1xuICAuZG9jcyB7XG4gICAgcGFkZGluZzogNDBweCAwO1xuICB9XG59XG4uZG9jIHtcbiAgbWFyZ2luLWJvdHRvbTogMTQwcHg7XG59XG5AbWVkaWEgKG1heC13aWR0aDogNzY3cHgpIHtcbiAgLmRvYyB7XG4gICAgbWFyZ2luLWJvdHRvbTogNjBweDtcbiAgfVxufVxuLmRvYyAudGV4dC1jZW50ZXIge1xuICBkaXNwbGF5OiBmbGV4O1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbn1cbi5kb2NfX2F2YXRhciB7XG4gIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgb2JqZWN0LWZpdDogY292ZXI7XG4gIG1heC13aWR0aDogMTAwJTtcbiAgbWF4LWhlaWdodDogMjIzcHg7XG59XG5AbWVkaWEgKG1heC13aWR0aDogNzY3cHgpIHtcbiAgLmRvY19fYXZhdGFyIHtcbiAgICBtYXJnaW4tYm90dG9tOiAyMHB4O1xuICB9XG59XG4uZG9jX19uYW1lIHtcbiAgY29sb3I6ICM2Zjc0NzQ7XG4gIGZvbnQtc2l6ZTogMjRweDtcbiAgZm9udC13ZWlnaHQ6IDcwMDtcbiAgbGluZS1oZWlnaHQ6IDIwcHg7XG4gIG1hcmdpbi1ib3R0b206IDExcHg7XG4gIGRpc3BsYXk6IGJsb2NrO1xufVxuLmRvY19fbmFtZTpob3ZlciB7XG4gIGNvbG9yOiAjZWUyMDVjO1xuICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XG59XG4uZG9jX19wb3N0IHtcbiAgZm9udC1zaXplOiAxNHB4O1xuICBmb250LXdlaWdodDogNDAwO1xuICBsaW5lLWhlaWdodDogMjFweDtcbiAgbWFyZ2luLWJvdHRvbTogMjBweDtcbn1cbi5kb2NfX2FkZHJlc3Mge1xuICBmb250LXNpemU6IDE0cHg7XG4gIGZvbnQtd2VpZ2h0OiA0MDA7XG4gIGxpbmUtaGVpZ2h0OiAyMXB4O1xuICBtYXJnaW4tYm90dG9tOiAxMHB4O1xuICBwYWRkaW5nLWxlZnQ6IDMwcHg7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbn1cbi5kb2NfX2FkZHJlc3M6YmVmb3JlIHtcbiAgY29udGVudDogXCJcIjtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICB3aWR0aDogMS42cmVtO1xuICBoZWlnaHQ6IDIuMnJlbTtcbiAgYmFja2dyb3VuZC1pbWFnZTogdXJsKFwiLi4vaW1nL3BuZy1zcHJpdGUucG5nXCIpO1xuICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAtNC4ycmVtIC0zMC41cmVtO1xuICBiYWNrZ3JvdW5kLXNpemU6IDU0LjRyZW0gMzIuN3JlbTtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICBsZWZ0OiAwO1xuICB0b3A6IDA7XG59XG4uZG9jX190ZWwge1xuICBtYXJnaW4tYm90dG9tOiA0MHB4O1xuICBwYWRkaW5nLWxlZnQ6IDMwcHg7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgZGlzcGxheTogYmxvY2s7XG59XG4uZG9jX190ZWw6YmVmb3JlIHtcbiAgY29udGVudDogXCJcIjtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICB3aWR0aDogMS43cmVtO1xuICBoZWlnaHQ6IDJyZW07XG4gIGJhY2tncm91bmQtaW1hZ2U6IHVybChcIi4uL2ltZy9wbmctc3ByaXRlLnBuZ1wiKTtcbiAgYmFja2dyb3VuZC1wb3NpdGlvbjogLTdyZW0gLTI3LjdyZW07XG4gIGJhY2tncm91bmQtc2l6ZTogNTQuNHJlbSAzMi43cmVtO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGxlZnQ6IDA7XG4gIHRvcDogMDtcbn1cbi5kb2NfX3JhdGluZyB7XG4gIHRleHQtYWxpZ246IGxlZnQ7XG4gIG1hcmdpbi1ib3R0b206IDI4cHg7XG59XG4uZG9jX19wYWRkaW5nLWxlZnQge1xuICBwYWRkaW5nLWxlZnQ6IDM1cHg7XG59XG5AbWVkaWEgKG1heC13aWR0aDogNzY3cHgpIHtcbiAgLmRvY19fcGFkZGluZy1sZWZ0IHtcbiAgICBwYWRkaW5nLWxlZnQ6IDE1cHg7XG4gICAgbWFyZ2luLWJvdHRvbTogMjBweDtcbiAgfVxufVxuQG1lZGlhIChtYXgtd2lkdGg6IDQ4MHB4KSB7XG4gIC5kb2MgLmJ0biB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgZm9udC1zaXplOiAyM3B4O1xuICB9XG59XG4ucmF0aW5nX19zdGFyIHtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICB3aWR0aDogMS44cmVtO1xuICBoZWlnaHQ6IDEuN3JlbTtcbiAgYmFja2dyb3VuZC1pbWFnZTogdXJsKFwiLi4vaW1nL3BuZy1zcHJpdGUucG5nXCIpO1xuICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAtOS41cmVtIC0yNy43cmVtO1xuICBiYWNrZ3JvdW5kLXNpemU6IDU0LjRyZW0gMzIuN3JlbTtcbn1cbi5yYXRpbmdfX3N0YXIgKyAucmF0aW5nX19zdGFyIHtcbiAgbWFyZ2luLWxlZnQ6IDlweDtcbn1cbi5yYXRpbmdfX3N0YXJfZW1wdHkge1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gIHdpZHRoOiAxLjhyZW07XG4gIGhlaWdodDogMS43cmVtO1xuICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoXCIuLi9pbWcvcG5nLXNwcml0ZS5wbmdcIik7XG4gIGJhY2tncm91bmQtcG9zaXRpb246IC0xMi4xcmVtIC0yNy43cmVtO1xuICBiYWNrZ3JvdW5kLXNpemU6IDU0LjRyZW0gMzIuN3JlbTtcbn1cbi5yYXRpbmdfX2NvdW50IHtcbiAgbWFyZ2luLWxlZnQ6IDE0cHg7XG4gIGJhY2tncm91bmQ6IG5vbmUgIWltcG9ydGFudDtcbn1cbi5yYXRpbmdfX3JhdGUge1xuICBjb2xvcjogI2VlMjA1YztcbiAgZm9udC1zaXplOiAxNHB4O1xuICBmb250LXdlaWdodDogNDAwO1xuICBtYXJnaW4tbGVmdDogMjBweDtcbn1cbi5wYWdpbmF0aW9uID4gbGkuYWN0aXZlID4gYSB7XG4gIGNvbG9yOiAjZWUyMDVjO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDtcbiAgcG9pbmVyLWV2ZW50czogbm9uZTtcbn1cbi5wYWdpbmF0aW9uID4gbGkuYWN0aXZlID4gYTpob3Zlcixcbi5wYWdpbmF0aW9uID4gbGkuYWN0aXZlID4gYTpmb2N1cyB7XG4gIGNvbG9yOiAjZWUyMDVjO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDtcbiAgYm9yZGVyOiBub25lO1xufVxuLnBhZ2luYXRpb24gPiBsaSA+IGEge1xuICBjb2xvcjogIzZmNzQ3NDtcbiAgZm9udC1zaXplOiAyNHB4O1xuICBmb250LXdlaWdodDogNzAwO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDtcbiAgYm9yZGVyOiBub25lO1xufVxuLmRvYy1wb3J0Zm9saW8ge1xuICBtYXJnaW4tYm90dG9tOiA3NHB4O1xufVxuQG1lZGlhIChtYXgtd2lkdGg6IDc2N3B4KSB7XG4gIC5kb2MtcG9ydGZvbGlvIHtcbiAgICBtYXJnaW4tYm90dG9tOiA1MHB4O1xuICB9XG59XG4uZG9jLXBvcnRmb2xpb19fdGl0bGUge1xuICBjb2xvcjogI2VlMjA1YztcbiAgZm9udC1zaXplOiAxNHB4O1xuICBmb250LXdlaWdodDogNDAwO1xuICBtYXJnaW4tYm90dG9tOiAyMHB4O1xufVxuLmRvYy1wb3J0Zm9saW9fX2luZm8ge1xuICBmb250LXNpemU6IDE0cHg7XG4gIG1hcmdpbi1ib3R0b206IDIxcHg7XG4gIGZvbnQtd2VpZ2h0OiA0MDA7XG4gIGxpbmUtaGVpZ2h0OiAyMXB4O1xufVxuLmRvYy1wb3J0Zm9saW8uZG9jIC5kb2NfX25hbWUge1xuICBtYXJnaW4tYm90dG9tOiAxNXB4O1xufVxuLmRvYy1wb3J0Zm9saW8uZG9jIC5kb2NfX3Bvc3Qge1xuICBtYXJnaW4tYm90dG9tOiAyNHB4O1xufVxuLmRvYy1wb3J0Zm9saW8uZG9jIC5kb2NfX3JhdGluZyB7XG4gIG1hcmdpbi1ib3R0b206IDM2cHg7XG59XG4uZG9jLXBvcnRmb2xpby5kb2MgLmRvY19fYWRkcmVzcyB7XG4gIG1hcmdpbi1ib3R0b206IDIycHg7XG59XG4jcG9wdXBSYXRlIC5wb3B1cC1iZyB7XG4gIGJhY2tncm91bmQtY29sb3I6IHJnYmEoNDksNDgsNDgsMC43OCk7XG59XG4jcG9wdXBSYXRlIC5wb3B1cC1jb250ZW50LXdyYXAge1xuICBwYWRkaW5nOiA3MHB4IDk1cHggNjJweDtcbn1cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjdweCkge1xuICAjcG9wdXBSYXRlIC5wb3B1cC1jb250ZW50LXdyYXAge1xuICAgIHBhZGRpbmc6IDMxcHggMThweCA2MnB4O1xuICB9XG59XG4jcG9wdXBSYXRlIC5wb3B1cF9fdGl0bGUge1xuICBmb250LXNpemU6IDI0cHg7XG4gIGZvbnQtd2VpZ2h0OiA3MDA7XG4gIGxpbmUtaGVpZ2h0OiAzNnB4O1xuICBsZXR0ZXItc3BhY2luZzogMC42cHg7XG4gIGNvbG9yOiAjNmY3NDc0O1xuICBtYXJnaW4tYm90dG9tOiA0OXB4O1xufVxuI3BvcHVwUmF0ZSAucG9wdXBfX3JhdGluZyB7XG4gIG1hcmdpbi1ib3R0b206IDQ5cHg7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xufVxuLnJlZ2lzdHJhdGlvbl9fdGl0bGUge1xuICBmb250LXNpemU6IDM2cHg7XG4gIGZvbnQtd2VpZ2h0OiA0MDA7XG4gIGxpbmUtaGVpZ2h0OiAzNnB4O1xuICBsZXR0ZXItc3BhY2luZzogMC45cHg7XG4gIGNvbG9yOiAjZWUyMDVjO1xuICBtYXJnaW46IDY4cHggMCAyN3B4O1xufVxuLnJlZ2lzdHJhdGlvbl9fc3VidGl0bGUge1xuICBmb250LXNpemU6IDE0cHg7XG4gIGZvbnQtd2VpZ2h0OiA0MDA7XG4gIGxpbmUtaGVpZ2h0OiAyMXB4O1xuICBtYXJnaW4tYm90dG9tOiA1MnB4O1xufVxuLnJlZ2lzdHJhdGlvbi1kb25lX19pbWFnZSB7XG4gIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgd2lkdGg6IDI3LjJyZW07XG4gIGhlaWdodDogMTMuNDVyZW07XG4gIGJhY2tncm91bmQtaW1hZ2U6IHVybChcIi4uL2ltZy9wbmctc3ByaXRlLnBuZ1wiKTtcbiAgYmFja2dyb3VuZC1wb3NpdGlvbjogMHJlbSAwcmVtO1xuICBiYWNrZ3JvdW5kLXNpemU6IDI3LjJyZW0gMTYuMzVyZW07XG4gIG1hcmdpbi10b3A6IDE0M3B4O1xuICBtYXJnaW4tYm90dG9tOiAzMHB4O1xufVxuQG1lZGlhIChtYXgtd2lkdGg6IDc2N3B4KSB7XG4gIC5yZWdpc3RyYXRpb24tZG9uZV9faW1hZ2Uge1xuICAgIG1hcmdpbi10b3A6IDgycHg7XG4gIH1cbn1cbi5yZWdpc3RyYXRpb24tZG9uZV9fdGl0bGUge1xuICBjb2xvcjogI2VlMjA1YztcbiAgZm9udC1zaXplOiAzNnB4O1xuICBmb250LXdlaWdodDogNDAwO1xuICBsaW5lLWhlaWdodDogMzZweDtcbiAgbGV0dGVyLXNwYWNpbmc6IDAuOXB4O1xuICBtYXJnaW4tYm90dG9tOiAyMHB4O1xufVxuLnJlZ2lzdHJhdGlvbi1kb25lX19zdWJ0aXRsZSB7XG4gIGZvbnQtc2l6ZTogMTRweDtcbiAgZm9udC13ZWlnaHQ6IDQwMDtcbiAgbGluZS1oZWlnaHQ6IDIxcHg7XG4gIG1hcmdpbi1ib3R0b206IDQ4cHg7XG59XG4uZm9ybV9fZ3JvdXAge1xuICBtYXJnaW4tYm90dG9tOiAxNnB4O1xufVxuLmZvcm1fX2dyb3VwIC5idG4ge1xuICBtYXJnaW4tdG9wOiAxN3B4O1xuICBtYXJnaW4tYm90dG9tOiAxNDFweDtcbn1cbkBtZWRpYSAobWF4LXdpZHRoOiA3NjdweCkge1xuICAuZm9ybV9fZ3JvdXAgLmJ0biB7XG4gICAgbWFyZ2luLWJvdHRvbTogNTdweDtcbiAgfVxufVxuLmZvcm1fX3RpdGxlIHtcbiAgZm9udC1zaXplOiAyNHB4O1xuICBmb250LXdlaWdodDogNzAwO1xuICBsaW5lLWhlaWdodDogMzZweDtcbiAgbGV0dGVyLXNwYWNpbmc6IDAuNnB4O1xuICBtYXJnaW4tYm90dG9tOiAzMXB4O1xufVxuLmZvcm1fX2xhYmVsIHtcbiAgbWFyZ2luLWJvdHRvbTogMTJweDtcbiAgY29sb3I6ICM3NTc3N2M7XG4gIGZvbnQtc2l6ZTogMTRweDtcbiAgZm9udC13ZWlnaHQ6IDQwMDtcbn1cbi5mb3JtX19pbnB1dCB7XG4gIGZvbnQtc2l6ZTogMjhweDtcbiAgZm9udC13ZWlnaHQ6IDQwMDtcbiAgbGluZS1oZWlnaHQ6IDI1cHg7XG4gIGxldHRlci1zcGFjaW5nOiAwLjlweDtcbiAgY29sb3I6ICNhZWFmYWY7XG4gIHBhZGRpbmc6IDZweCAxMnB4O1xufVxuLmZvcm1fX3dyYXAge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIG1hcmdpbi1ib3R0b206IDIwcHg7XG59XG4uZm9ybV9fdGV4dGFyZWEge1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMThweDtcbiAgY29sb3I6ICNhZWFmYWY7XG4gIGZvbnQtc2l6ZTogMjhweDtcbiAgYm9yZGVyLXJhZGl1czogMDtcbiAgYm94LXNoYWRvdzogbm9uZSAhaW1wb3J0YW50O1xuICBib3JkZXI6IDRweCBzb2xpZCAjZWUyMDVjO1xufVxuLmZvcm0gLmJmaC1waG9uZSArIC5wbGFjZWhvbGRlciB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG59XG4uZm9ybSAucGxhY2Vob2xkZXIge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50O1xuICBjb2xvcjogI2FlYWZhZjtcbiAgZm9udC1zaXplOiAyOHB4O1xuICB0b3A6IDVweDtcbiAgbGVmdDogNXB4O1xuICByaWdodDogNXB4O1xuICBib3R0b206IDVweDtcbiAgcGFkZGluZzogMTVweCAwIDAgMTBweDtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgd2hpdGUtc3BhY2U6IG5vd3JhcDtcbiAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gIHdpZHRoOiA5NSU7XG4gIHdoaXRlLXNwYWNlOiBub3dyYXA7XG4gIG92ZXJmbG93OiBoaWRkZW47XG59XG4iLCIudW5kZXItaGVhZGVyIFxyXG5cdHBhZGRpbmcgNDdweCAwXHJcblx0XHJcblx0Jl9fd2FudFx0XHJcblx0XHRmbG9hdCByaWdodFxyXG5cdFx0ZGlzcGxheSBmbGV4XHJcblx0XHRhbGlnbi1pdGVtcyBjZW50ZXJcclxuXHRcdGJhY2tncm91bmQtY29sb3IgI2ZmZlxyXG5cdFx0Ym9yZGVyLWNvbG9yICNlZTIwNWNcclxuXHRcdHRleHQtYWxpZ24gbGVmdFxyXG5cdFx0cGFkZGluZyAxMHB4IDIwcHhcclxuXHRcdGZvbnQtc2l6ZSAxNXB4XHJcblx0XHRsaW5lLWhlaWdodCAyMHB4XHJcblx0XHRtaW4td2lkdGggMjYwcHhcclxuXHRcdGhlaWdodCB1bnNldFxyXG5cdFx0XHJcblx0XHRcclxuXHRcdCY6YmVmb3JlIFxyXG5cdFx0XHRjb250ZW50IFwiXCJcclxuXHRcdFx0c3ByaXRlKGRvYylcclxuXHRcdFx0bWFyZ2luLXJpZ2h0IDI2cHhcclxuXHRcdFx0YmFja2dyb3VuZC1zaXplIHVuc2V0XHJcblx0XHJcblx0Jl9fdGl0bGUgXHJcblx0XHRmb250LXNpemUgMzZweFxyXG5cdFx0Zm9udC13ZWlnaHQgNzAwXHJcblx0XHRsaW5lLWhlaWdodCAzNnB4XHJcblx0XHRjb2xvciAjZWUyMDVjXHJcblx0XHRcclxuXHQmX19yaWdodFxyXG5cdFx0ZGlzcGxheSBmbGV4XHJcblx0XHRqdXN0aWZ5LWNvbnRlbnQgZmxleC1lbmRcclxuXHRcdGFsaWduLWl0ZW1zIGNlbnRlclxyXG5cdFxyXG5cdCZfX2xpbmtcclxuXHRcdG1hcmdpbi1yaWdodCA1MHB4XHJcblx0XHRmb250LXNpemUgMTZweFxyXG5cdFx0Zm9udC13ZWlnaHQgNzAwXHJcblx0XHRjb2xvciBwcmltYXJ5XHJcblx0XHRsaW5lLWhlaWdodCAxLjNcclxuXHRcdFxyXG5cdFx0QG1lZGlhIChtYXgtd2lkdGg6IDk5MnB4KVxyXG5cdFx0XHRtYXJnaW4tcmlnaHQgMTBweFxyXG5cdFx0XHJcblx0XHQmOmFmdGVyXHJcblx0XHRcdGNvbnRlbnQgXCJcIlxyXG5cdFx0XHRzcHJpdGUobGluaylcclxuXHRcdFx0ZmxvYXQgbGVmdFxyXG5cdFx0XHRtYXJnaW4tcmlnaHQgMTBweFxyXG5cdFx0XHJcblx0LnJvdyBcclxuXHRcdGRpc3BsYXkgZmxleFxyXG5cdFx0YWxpZ24taXRlbXMgY2VudGVyIiwiXHJcbi8vID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxyXG4vL1xyXG4vLyBcdFx00KjQsNCx0LvQvtC9INGB0L/RgNCw0LnRgtCwXHJcbi8vXHJcbi8vID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxyXG5cclxuQGltcG9ydCBcInNwcml0ZS1jb29yZHMuc3R5bFwiXHJcblxyXG5zcHJpdGUoJHNwcml0ZSwgY29mID0gMTAwKVxyXG4gICAgZGlzcGxheSBpbmxpbmUtYmxvY2tcclxuICAgIHdpZHRoICggKCAoJHNwcml0ZVs0XSAqIGNvZikgLyAxMDApIC8gMTAgKXJlbVxyXG4gICAgaGVpZ2h0ICggKCAoJHNwcml0ZVs1XSAqIGNvZikgLyAxMDApIC8gMTAgKXJlbVxyXG4gICAgYmFja2dyb3VuZC1pbWFnZSB1cmwoLi4vaW1nLyRzcHJpdGVbOF0pXHJcbiAgICBiYWNrZ3JvdW5kLXBvc2l0aW9uICggKCAoJHNwcml0ZVsyXSAqIGNvZikgLyAxMDApIC8gMTAgKXJlbSAoICggKCRzcHJpdGVbM10gKiBjb2YpIC8gMTAwKSAvIDEwIClyZW1cclxuICAgIGJhY2tncm91bmQtc2l6ZSAoICggKCRzcHJpdGVbNl0gKiBjb2YpIC8gMTAwKSAvIDEwIClyZW0gKCAoICgkc3ByaXRlWzddICogY29mKSAvIDEwMCkgLyAxMCApcmVtIiwiYXZhdGFyLXNpemUgPSAyMjNweFxyXG4uZG9jc1xyXG5cdHBhZGRpbmcgODNweCAwO1xyXG5cclxuXHRAbWVkaWEgKG1heC13aWR0aDogNzY3cHgpXHJcblx0XHRwYWRkaW5nIDQwcHggMFxyXG5cdFxyXG4uZG9jXHJcblx0bWFyZ2luLWJvdHRvbSAxNDBweFxyXG5cdFxyXG5cdEBtZWRpYSAobWF4LXdpZHRoOiA3NjdweClcclxuXHRcdG1hcmdpbi1ib3R0b20gNjBweFxyXG5cdFxyXG5cdC50ZXh0LWNlbnRlclxyXG5cdFx0ZGlzcGxheSBmbGV4XHJcblx0XHRhbGlnbi1pdGVtcyBjZW50ZXJcclxuXHRcdGp1c3RpZnktY29udGVudCBjZW50ZXJcclxuXHJcblx0Jl9fYXZhdGFyIFxyXG5cdFx0Ym9yZGVyLXJhZGl1cyA1MCVcclxuXHRcdG9iamVjdC1maXQgY292ZXJcclxuXHRcdG1heC13aWR0aCAxMDAlXHJcblx0XHRtYXgtaGVpZ2h0IGF2YXRhci1zaXplXHJcblx0XHRcclxuXHRcdEBtZWRpYSAobWF4LXdpZHRoOiA3NjdweClcclxuXHRcdFx0bWFyZ2luLWJvdHRvbSAyMHB4XHJcblx0XHJcblx0Jl9fbmFtZSBcclxuXHRcdGNvbG9yOiB0ZXh0LXByaW1hcnk7XHJcblx0XHRmb250LXNpemU6IDI0cHhcclxuXHRcdGZvbnQtd2VpZ2h0OiA3MDBcclxuXHRcdGxpbmUtaGVpZ2h0OiAyMHB4XHJcblx0XHRtYXJnaW4tYm90dG9tIDExcHhcclxuXHRcdGRpc3BsYXkgYmxvY2tcclxuXHRcdFxyXG5cdFx0Jjpob3ZlciBcclxuXHRcdFx0Y29sb3IgcHJpbWFyeVxyXG5cdFx0XHR0ZXh0LWRlY29yYXRpb24gbm9uZVxyXG5cdFx0XHJcblx0Jl9fcG9zdCBcclxuXHRcdGZvbnQtc2l6ZSAxNHB4XHJcblx0XHRmb250LXdlaWdodCA0MDBcclxuXHRcdGxpbmUtaGVpZ2h0IDIxcHhcclxuXHRcdG1hcmdpbi1ib3R0b20gMjBweFxyXG5cclxuXHQmX19hZGRyZXNzXHJcblx0XHRmb250LXNpemUgMTRweFxyXG5cdFx0Zm9udC13ZWlnaHQgNDAwXHJcblx0XHRsaW5lLWhlaWdodCAyMXB4XHJcblx0XHRtYXJnaW4tYm90dG9tIDEwcHhcclxuXHRcdHBhZGRpbmctbGVmdCAzMHB4XHJcblx0XHRwb3NpdGlvbiByZWxhdGl2ZVxyXG5cdFx0XHJcblx0XHQmOmJlZm9yZVxyXG5cdFx0XHRjb250ZW50IFwiXCJcclxuXHRcdFx0c3ByaXRlKGxvY2F0aW9uKVxyXG5cdFx0XHRwb3NpdGlvbiBhYnNvbHV0ZVxyXG5cdFx0XHRsZWZ0IDBcclxuXHRcdFx0dG9wIDBcclxuXHJcblx0Jl9fdGVsXHJcblx0XHRtYXJnaW4tYm90dG9tIDQwcHhcclxuXHRcdHBhZGRpbmctbGVmdCAzMHB4XHJcblx0XHRwb3NpdGlvbiByZWxhdGl2ZVxyXG5cdFx0ZGlzcGxheSBibG9ja1xyXG5cdFx0XHJcblx0XHQmOmJlZm9yZVxyXG5cdFx0XHRjb250ZW50IFwiXCJcclxuXHRcdFx0c3ByaXRlKHBob25lKVxyXG5cdFx0XHRwb3NpdGlvbiBhYnNvbHV0ZVxyXG5cdFx0XHRsZWZ0IDBcclxuXHRcdFx0dG9wIDBcclxuXHRcdFxyXG5cdCZfX3JhdGluZ1xyXG5cdFx0dGV4dC1hbGlnbiBsZWZ0XHJcblx0XHRtYXJnaW4tYm90dG9tIDI4cHhcclxuXHRcdFxyXG5cdCZfX3BhZGRpbmctbGVmdFxyXG5cdFx0cGFkZGluZy1sZWZ0IDM1cHhcclxuXHRcdFxyXG5cdFx0QG1lZGlhIChtYXgtd2lkdGg6IDc2N3B4KVxyXG5cdFx0XHRwYWRkaW5nLWxlZnQgMTVweFxyXG5cdFx0XHRtYXJnaW4tYm90dG9tIDIwcHhcclxuXHRcdFxyXG5cdC5idG4gXHJcblx0XHRAbWVkaWEgKG1heC13aWR0aCA0ODBweClcclxuXHRcdFx0d2lkdGggMTAwJVxyXG5cdFx0XHRmb250LXNpemUgMjNweCIsIi5yYXRpbmdcclxuXHRcdFxyXG5cdCZfX3N0YXJcclxuXHRcdHNwcml0ZShzdGFyKVxyXG5cdFx0XHJcblx0XHQmICsgJlxyXG5cdFx0XHRtYXJnaW4tbGVmdCA5cHhcclxuXHRcdFxyXG5cdFx0Jl9lbXB0eVxyXG5cdFx0XHRzcHJpdGUoc3Rhcl9lbXB0eSlcclxuXHRcdFx0XHJcblx0Jl9fY291bnRcclxuXHRcdG1hcmdpbi1sZWZ0IDE0cHhcclxuXHRcdGJhY2tncm91bmQgbm9uZSAhaW1wb3J0YW50XHJcblx0XHRcclxuXHQmX19yYXRlXHJcblx0XHRjb2xvciBwcmltYXJ5XHJcblx0XHRmb250LXNpemUgMTRweFxyXG5cdFx0Zm9udC13ZWlnaHQgNDAwXHJcblx0XHRtYXJnaW4tbGVmdCAyMHB4IiwiLnBhZ2luYXRpb25cclxuXHQmID4gbGlcclxuXHRcdCYuYWN0aXZlXHJcblx0XHRcdCYgPiBhXHJcblx0XHRcdFx0Y29sb3IgcHJpbWFyeVxyXG5cdFx0XHRcdGJhY2tncm91bmQtY29sb3IgdHJhbnNwYXJlbnRcclxuXHRcdFx0XHRwb2luZXItZXZlbnRzIG5vbmVcclxuXHRcdFx0XHRcclxuXHRcdFx0XHQmOmhvdmVyLCAmOmZvY3VzXHJcblx0XHRcdFx0XHRjb2xvciBwcmltYXJ5XHJcblx0XHRcdFx0XHRiYWNrZ3JvdW5kLWNvbG9yIHRyYW5zcGFyZW50XHJcblx0XHRcdFx0XHRib3JkZXIgbm9uZVxyXG5cdFx0XHRcdFxyXG5cdFx0JiA+IGFcclxuXHRcdFx0Y29sb3IgdGV4dC1wcmltYXJ5XHJcblx0XHRcdGZvbnQtc2l6ZSAyNHB4XHJcblx0XHRcdGZvbnQtd2VpZ2h0IDcwMFxyXG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yIHRyYW5zcGFyZW50XHJcblx0XHRcdGJvcmRlciBub25lIiwiLmRvYy1wb3J0Zm9saW9cclxuXHRtYXJnaW4tYm90dG9tIDc0cHhcclxuXHRcclxuXHRAbWVkaWEgKG1heC13aWR0aDogNzY3cHgpXHJcblx0XHRtYXJnaW4tYm90dG9tIDUwcHhcclxuXHRcclxuXHQmX190aXRsZVxyXG5cdFx0Y29sb3IgcHJpbWFyeVxyXG5cdFx0Zm9udC1zaXplIDE0cHhcclxuXHRcdGZvbnQtd2VpZ2h0IDQwMFxyXG5cdFx0bWFyZ2luLWJvdHRvbSAyMHB4XHJcblx0XHRcclxuXHQmX19pbmZvXHJcblx0XHRmb250LXNpemUgMTRweFxyXG5cdFx0bWFyZ2luLWJvdHRvbSAyMXB4XHJcblx0XHRmb250LXdlaWdodCA0MDBcclxuXHRcdGxpbmUtaGVpZ2h0IDIxcHhcclxuXHRcdFxyXG5cdCYuZG9jXHJcblx0XHQmIC5kb2NfX25hbWVcclxuXHRcdFx0bWFyZ2luLWJvdHRvbSAxNXB4XHJcblx0XHQmIC5kb2NfX3Bvc3RcclxuXHRcdFx0bWFyZ2luLWJvdHRvbSAyNHB4XHJcblx0XHQmIC5kb2NfX3JhdGluZ1xyXG5cdFx0XHRtYXJnaW4tYm90dG9tIDM2cHhcclxuXHRcdCYgLmRvY19fYWRkcmVzc1xyXG5cdFx0XHRtYXJnaW4tYm90dG9tIDIycHgiLCIjcG9wdXBSYXRlXHJcblx0LnBvcHVwXHJcblx0XHQmLWJnXHJcblx0XHRcdGJhY2tncm91bmQtY29sb3IgcmdiYSg0OSwgNDgsIDQ4LCAwLjc4KVxyXG5cdFx0Ji1jb250ZW50LXdyYXBcclxuXHRcdFx0cGFkZGluZyA3MHB4IDk1cHggNjJweFxyXG5cdFx0XHRAbWVkaWEgKG1heC13aWR0aDogNzY3cHgpXHJcblx0XHRcdFx0cGFkZGluZyAzMXB4IDE4cHggNjJweFxyXG5cdFx0Jl9fdGl0bGVcclxuXHRcdFx0Zm9udC1zaXplIDI0cHhcclxuXHRcdFx0Zm9udC13ZWlnaHQgNzAwXHJcblx0XHRcdGxpbmUtaGVpZ2h0IDM2cHhcclxuXHRcdFx0bGV0dGVyLXNwYWNpbmcgMC42cHhcclxuXHRcdFx0Y29sb3IgdGV4dC1wcmltYXJ5XHJcblx0XHRcdG1hcmdpbi1ib3R0b20gNDlweFxyXG5cdFx0XHJcblx0XHQmX19yYXRpbmdcclxuXHRcdFx0bWFyZ2luLWJvdHRvbSA0OXB4XHJcblx0XHRcdGRpc3BsYXkgZmxleFxyXG5cdFx0XHRqdXN0aWZ5LWNvbnRlbnQgY2VudGVyXHJcblx0XHRcdGFsaWduLWl0ZW1zIGNlbnRlciIsIi5yZWdpc3RyYXRpb25cclxuXHRcclxuXHQmX190aXRsZVxyXG5cdFx0Zm9udC1zaXplIDM2cHhcclxuXHRcdGZvbnQtd2VpZ2h0IDQwMFxyXG5cdFx0bGluZS1oZWlnaHQgMzZweFxyXG5cdFx0bGV0dGVyLXNwYWNpbmcgMC45cHhcclxuXHRcdGNvbG9yIHByaW1hcnlcclxuXHRcdG1hcmdpbiA2OHB4IDAgMjdweFxyXG5cdFx0XHJcblx0Jl9fc3VidGl0bGVcclxuXHRcdGZvbnQtc2l6ZSAxNHB4XHJcblx0XHRmb250LXdlaWdodCA0MDBcclxuXHRcdGxpbmUtaGVpZ2h0IDIxcHhcclxuXHRcdG1hcmdpbi1ib3R0b20gNTJweFxyXG5cdFx0XHJcblx0Ji1kb25lXHJcblx0XHQmX19pbWFnZVxyXG5cdFx0XHRzcHJpdGUobG9nby1yZWdpc3RlciwgNTAlKVxyXG5cdFx0XHRtYXJnaW4tdG9wIDE0M3B4XHJcblx0XHRcdG1hcmdpbi1ib3R0b20gMzBweFxyXG5cdFx0XHRcclxuXHRcdFx0QG1lZGlhIChtYXgtd2lkdGg6IDc2N3B4KVxyXG5cdFx0XHRcdG1hcmdpbi10b3AgODJweFxyXG5cdFx0XHRcclxuXHRcdCZfX3RpdGxlXHJcblx0XHRcdGNvbG9yIHByaW1hcnlcclxuXHRcdFx0Zm9udC1zaXplIDM2cHhcclxuXHRcdFx0Zm9udC13ZWlnaHQgNDAwXHJcblx0XHRcdGxpbmUtaGVpZ2h0IDM2cHhcclxuXHRcdFx0bGV0dGVyLXNwYWNpbmcgMC45cHhcclxuXHRcdFx0bWFyZ2luLWJvdHRvbSAyMHB4XHJcblx0XHRcdFxyXG5cdFx0Jl9fc3VidGl0bGVcclxuXHRcdFx0Zm9udC1zaXplIDE0cHhcclxuXHRcdFx0Zm9udC13ZWlnaHQgNDAwXHJcblx0XHRcdGxpbmUtaGVpZ2h0IDIxcHhcclxuXHRcdFx0bWFyZ2luLWJvdHRvbSA0OHB4IiwiLmZvcm1cclxuXHRcclxuXHQmX19ncm91cFxyXG5cdFx0bWFyZ2luLWJvdHRvbSAxNnB4XHJcblx0XHRcclxuXHRcdC5idG4gXHJcblx0XHRcdG1hcmdpbi10b3AgMTdweFxyXG5cdFx0XHRtYXJnaW4tYm90dG9tIDE0MXB4XHJcblx0XHRcdFxyXG5cdFx0XHRAbWVkaWEgKG1heC13aWR0aDogNzY3cHgpXHJcblx0XHRcdFx0bWFyZ2luLWJvdHRvbSA1N3B4XHJcblx0XHRcclxuXHQmX190aXRsZVxyXG5cdFx0Zm9udC1zaXplIDI0cHhcclxuXHRcdGZvbnQtd2VpZ2h0IDcwMFxyXG5cdFx0bGluZS1oZWlnaHQgMzZweFxyXG5cdFx0bGV0dGVyLXNwYWNpbmcgMC42cHhcclxuXHRcdG1hcmdpbi1ib3R0b20gMzFweFxyXG5cdFx0XHJcblx0Jl9fbGFiZWxcclxuXHRcdG1hcmdpbi1ib3R0b20gMTJweFxyXG5cdFx0Y29sb3IgIzc1Nzc3Y1xyXG5cdFx0Zm9udC1zaXplIDE0cHhcclxuXHRcdGZvbnQtd2VpZ2h0IDQwMFxyXG5cdFx0XHJcblx0Jl9faW5wdXRcclxuXHRcdGZvbnQtc2l6ZSAyOHB4XHJcblx0XHRmb250LXdlaWdodCA0MDBcclxuXHRcdGxpbmUtaGVpZ2h0IDI1cHhcclxuXHRcdGxldHRlci1zcGFjaW5nIDAuOXB4XHJcblx0XHRjb2xvciAjYWVhZmFmXHJcblx0XHRwYWRkaW5nIDZweCAxMnB4XHJcblx0XHJcblx0Jl9fd3JhcFxyXG5cdFx0cG9zaXRpb24gcmVsYXRpdmUgICAgXHJcblx0XHRtYXJnaW4tYm90dG9tIDIwcHhcclxuXHRcdFxyXG5cdCZfX3RleHRhcmVhXHJcblx0XHR3aWR0aCAxMDAlXHJcblx0XHRoZWlnaHQgMTE4cHhcclxuXHRcdGNvbG9yICNhZWFmYWZcclxuXHRcdGZvbnQtc2l6ZSAyOHB4XHJcblx0XHRib3JkZXItcmFkaXVzIDBcclxuXHRcdGJveC1zaGFkb3cgbm9uZSAhaW1wb3J0YW50XHJcblx0XHRib3JkZXIgNHB4IHNvbGlkIHByaW1hcnlcclxuXHJcblx0LmJmaC1waG9uZVxyXG5cdFx0JiArIC5wbGFjZWhvbGRlclxyXG5cdFx0XHRiYWNrZ3JvdW5kLWNvbG9yICNmZmZcclxuXHRcclxuXHQucGxhY2Vob2xkZXJcclxuXHRcdHBvc2l0aW9uIGFic29sdXRlXHJcblx0XHRiYWNrZ3JvdW5kLWNvbG9yIHRyYW5zcGFyZW50XHJcblx0XHRjb2xvciAjYWVhZmFmXHJcblx0XHRmb250LXNpemUgMjhweFxyXG5cdFx0dG9wIDVweFxyXG5cdFx0bGVmdCA1cHhcclxuXHRcdHJpZ2h0IDVweFxyXG5cdFx0Ym90dG9tIDVweFxyXG5cdFx0cGFkZGluZyAxNXB4IDAgMCAxMHB4XHJcblx0XHR0ZXh0LW92ZXJmbG93IGVsbGlwc2lzXHJcblx0XHR3aWR0aCA5NSVcclxuXHRcdHdoaXRlLXNwYWNlIG5vd3JhcFxyXG5cdFx0b3ZlcmZsb3cgaGlkZGVuIiwiXHJcbi8v0JzQuNC60YHQuNC90Ysg0L3QsNC/0LjRgdCw0L3RiyByZXNrd2VyJ29tINGC0L7Qu9GM0LrQviDQtNC70Y8g0LvQuNGH0L3QvtCz0L4g0L/QvtC70YzQt9C+0LLQsNC90LjRjy5cclxuXHJcblxyXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cclxuLy9cclxuLy8gXHRcdNCa0LvQtdCw0YDRhNC40LrRgSwg0L7Rh9C40YHRgtC60LAg0YTQu9C+0YLQvtCyXHJcbi8vXHJcbi8vID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxyXG5cclxuY2xlYXJmaXgoKVxyXG5cdCY6YWZ0ZXJcclxuXHRcdGRpc3BsYXkgdGFibGVcclxuXHRcdGNsZWFyIGJvdGhcclxuXHRcdGNvbnRlbnQgJydcclxuXHJcblxyXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cclxuLy9cclxuLy8gXHRcdCAgICAgICAg0JzQtdC00LjQsCDQt9Cw0L/RgNC+0YHRi1xyXG4vLyBcdFx00LzQuNC60YHQuNC9INC60L7QvdCy0LXRgNGC0LjRgNGD0LXRgiBweCDQsiBlbVxyXG4vLyBcdFx0K21lZGlhLXF1ZXJ5KNGA0LDQt9C80LXRgCBweCwg0L7RgNC40LXQvdGC0LDRhtC40Y8pXHJcbi8vIFx0XHTQvtGA0LjQtdC90YLQsNGG0LjRjiAtINC80L7QttC90L4g0YPQv9GD0YHRgtC40YLRjFxyXG4vL1xyXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cclxuXHJcbm1lZGlhLXF1ZXJ5KG1pbldpZHRoLCBvcmllbnRhdGlvbiA9IGZhbHNlKVxyXG5cdHJlc3VsdCA9IChtaW5XaWR0aCAvIDE2KWVtXHJcblxyXG5cdGlmKG1pbldpZHRoKVxyXG5cdFx0aWYob3JpZW50YXRpb24pXHJcblx0XHRcdEBtZWRpYSBhbGwgYW5kIChtaW4td2lkdGg6IHJlc3VsdCkgYW5kIChvcmllbnRhdGlvbjogb3JpZW50YXRpb24pXHJcblx0XHRcdFx0e2Jsb2NrfVxyXG5cdFx0ZWxzZVxyXG5cdFx0XHRAbWVkaWEgYWxsIGFuZCAobWluLXdpZHRoOiByZXN1bHQpXHJcblx0XHRcdFx0e2Jsb2NrfVxyXG5cclxuXHJcbi8vID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxyXG4vL1xyXG4vLyBcdFx0ICAgICAgICAg0JTQu9GPINGA0LXRgtC40L3Ri1xyXG4vLyBcdFx0K3JldGluYSjQv9C70L7RgtC90L7RgdGC0Ywg0L/QuNC60YHQtdC70Y8pXHJcbi8vXHJcbi8vID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PVxyXG5cclxucmV0aW5hKHZhbHVlKVxyXG5cdEBtZWRpYSBhbGwgYW5kICgtd2Via2l0LW1pbi1kZXZpY2UtcGl4ZWwtcmF0aW86IHZhbHVlKSwgYWxsIGFuZCAobWluLXJlc29sdXRpb246ICh2YWx1ZSAqIDk2KWRwaSksIGFsbCBhbmQgKG1pbi1yZXNvbHV0aW9uOiAodmFsdWUpZHBweClcclxuXHRcdHtibG9ja31cclxuXHJcblxyXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cclxuLy9cclxuLy8gXHRcdNCV0YHQu9C4IElFIDEwK1xyXG4vL1xyXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cclxuXHJcbmllKClcclxuXHRAbWVkaWEgc2NyZWVuIGFuZCAoLW1zLWhpZ2gtY29udHJhc3Q6IGFjdGl2ZSksICgtbXMtaGlnaC1jb250cmFzdDogbm9uZSlcclxuXHRcdHtibG9ja31cclxuXHJcblxyXG4vLyA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cclxuLy9cclxuLy8gXHRcdHRleHQtb3ZlcmZsb3dcclxuLy9cclxuLy8gPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09XHJcblxyXG50ZXh0LW92ZXJmbG93KClcclxuXHRvdmVyZmxvdyBoaWRkZW5cclxuXHR3aGl0ZS1zcGFjZSBub3dyYXBcclxuXHR0ZXh0LW92ZXJmbG93IGVsbGlwc2lzIl19 */

/* ==========================================================
* End of Doctors
* ===========================================================
*/