/*!
 * jquery-confirm v3.3.4 (http://craftpip.github.io/jquery-confirm/)
 * Author: boniface pereira
 * Website: www.craftpip.com
 * Contact: hey@craftpip.com
 *
 * Copyright 2013-2019 jquery-confirm
 * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
 */
@-webkit-keyframes jconfirm-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes jconfirm-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

body[class*=jconfirm-no-scroll-] {
  overflow: hidden !important; }

.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden; }

.jconfirm .jconfirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s; }

.jconfirm .jconfirm-bg.jconfirm-bg-h {
  opacity: 0 !important; }

.jconfirm .jconfirm-scrollpane {
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-perspective-origin: center;
  perspective-origin: center;
  display: table;
  width: 100%;
  height: 100%; }

.jconfirm .jconfirm-row {
  display: table-row;
  width: 100%; }

.jconfirm .jconfirm-cell {
  display: table-cell;
  vertical-align: middle; }

.jconfirm .jconfirm-holder {
  max-height: 100%;
  padding: 50px 0; }

.jconfirm .jconfirm-box-container {
  -webkit-transition: -webkit-transform;
  transition: -webkit-transform;
  transition: transform;
  transition: transform, -webkit-transform; }

.jconfirm .jconfirm-box-container.jconfirm-no-transition {
  -webkit-transition: none !important;
  transition: none !important; }

.jconfirm .jconfirm-box {
  background: white;
  border-radius: 4px;
  position: relative;
  outline: 0;
  padding: 15px 15px 0;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto; }

@-webkit-keyframes type-blue {
  1%, 100% {
    border-color: #3498db; }

  50% {
    border-color: #5faee3; } }

@keyframes type-blue {
  1%, 100% {
    border-color: #3498db; }

  50% {
    border-color: #5faee3; } }

@-webkit-keyframes type-green {
  1%, 100% {
    border-color: #2ecc71; }

  50% {
    border-color: #54d98c; } }

@keyframes type-green {
  1%, 100% {
    border-color: #2ecc71; }

  50% {
    border-color: #54d98c; } }

@-webkit-keyframes type-red {
  1%, 100% {
    border-color: #e74c3c; }

  50% {
    border-color: #ed7669; } }

@keyframes type-red {
  1%, 100% {
    border-color: #e74c3c; }

  50% {
    border-color: #ed7669; } }

@-webkit-keyframes type-orange {
  1%, 100% {
    border-color: #f1c40f; }

  50% {
    border-color: #f4d03f; } }

@keyframes type-orange {
  1%, 100% {
    border-color: #f1c40f; }

  50% {
    border-color: #f4d03f; } }

@-webkit-keyframes type-purple {
  1%, 100% {
    border-color: #9b59b6; }

  50% {
    border-color: #b07cc6; } }

@keyframes type-purple {
  1%, 100% {
    border-color: #9b59b6; }

  50% {
    border-color: #b07cc6; } }

@-webkit-keyframes type-dark {
  1%, 100% {
    border-color: #34495e; }

  50% {
    border-color: #46627f; } }

@keyframes type-dark {
  1%, 100% {
    border-color: #34495e; }

  50% {
    border-color: #46627f; } }

.jconfirm .jconfirm-box.jconfirm-type-animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.jconfirm .jconfirm-box.jconfirm-type-blue {
  border-top: solid 7px #3498db;
  -webkit-animation-name: type-blue;
  animation-name: type-blue; }

.jconfirm .jconfirm-box.jconfirm-type-green {
  border-top: solid 7px #2ecc71;
  -webkit-animation-name: type-green;
  animation-name: type-green; }

.jconfirm .jconfirm-box.jconfirm-type-red {
  border-top: solid 7px #e74c3c;
  -webkit-animation-name: type-red;
  animation-name: type-red; }

.jconfirm .jconfirm-box.jconfirm-type-orange {
  border-top: solid 7px #f1c40f;
  -webkit-animation-name: type-orange;
  animation-name: type-orange; }

.jconfirm .jconfirm-box.jconfirm-type-purple {
  border-top: solid 7px #9b59b6;
  -webkit-animation-name: type-purple;
  animation-name: type-purple; }

.jconfirm .jconfirm-box.jconfirm-type-dark {
  border-top: solid 7px #34495e;
  -webkit-animation-name: type-dark;
  animation-name: type-dark; }

.jconfirm .jconfirm-box.loading {
  height: 120px; }

.jconfirm .jconfirm-box.loading:before {
  content: '';
  position: absolute;
  left: 0;
  background: white;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: 1; }

.jconfirm .jconfirm-box.loading:after {
  opacity: 0.6;
  content: '';
  height: 30px;
  width: 30px;
  border: solid 3px transparent;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  border-radius: 50%;
  -webkit-animation: jconfirm-spin 1s infinite linear;
  animation: jconfirm-spin 1s infinite linear;
  border-bottom-color: dodgerblue;
  top: 50%;
  margin-top: -15px;
  z-index: 2; }

.jconfirm .jconfirm-box div.jconfirm-closeIcon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  opacity: 0.6;
  text-align: center;
  font-size: 27px !important;
  line-height: 14px !important;
  display: none;
  z-index: 1; }

.jconfirm .jconfirm-box div.jconfirm-closeIcon:empty {
  display: none; }

.jconfirm .jconfirm-box div.jconfirm-closeIcon .fa {
  font-size: 16px; }

.jconfirm .jconfirm-box div.jconfirm-closeIcon .glyphicon {
  font-size: 16px; }

.jconfirm .jconfirm-box div.jconfirm-closeIcon .zmdi {
  font-size: 16px; }

.jconfirm .jconfirm-box div.jconfirm-closeIcon:hover {
  opacity: 1; }

.jconfirm .jconfirm-box div.jconfirm-title-c {
  display: block;
  font-size: 22px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  padding-bottom: 15px; }

.jconfirm .jconfirm-box div.jconfirm-title-c.jconfirm-hand {
  cursor: move; }

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  font-size: inherit;
  display: inline-block;
  vertical-align: middle; }

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c i {
  vertical-align: middle; }

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c:empty {
  display: none; }

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: inherit;
  font-family: inherit;
  display: inline-block;
  vertical-align: middle; }

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title:empty {
  display: none; }

.jconfirm .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 15px;
  height: auto;
  -webkit-transition: height 0.4s ease-in;
  transition: height 0.4s ease-in;
  display: inline-block;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto; }

.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll {
  overflow-y: hidden; }

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar {
  width: 3px; }

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1); }

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 3px; }

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  overflow: auto; }

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content img {
  max-width: 100%;
  height: auto; }

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content:empty {
  display: none; }

.jconfirm .jconfirm-box .jconfirm-buttons {
  padding-bottom: 11px; }

.jconfirm .jconfirm-box .jconfirm-buttons > button {
  margin-bottom: 4px;
  margin-left: 2px;
  margin-right: 2px; }

.jconfirm .jconfirm-box .jconfirm-buttons button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  min-height: 1em;
  -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  border: 0;
  background-image: none; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue {
  background-color: #3498db;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover {
  background-color: #2980b9;
  color: #fff; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green {
  background-color: #2ecc71;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover {
  background-color: #27ae60;
  color: #fff; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
  background-color: #e74c3c;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
  background-color: #c0392b;
  color: #fff; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange {
  background-color: #f1c40f;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover {
  background-color: #f39c12;
  color: #fff; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
  background-color: #ecf0f1;
  color: #000;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background-color: #bdc3c7;
  color: #000; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple {
  background-color: #9b59b6;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover {
  background-color: #8e44ad;
  color: #fff; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark {
  background-color: #34495e;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s; }

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark:hover {
  background-color: #2c3e50;
  color: #fff; }

.jconfirm .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c {
  color: #e74c3c !important; }

.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c {
  color: #3498db !important; }

.jconfirm .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c {
  color: #2ecc71 !important; }

.jconfirm .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c {
  color: #9b59b6 !important; }

.jconfirm .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c {
  color: #f1c40f !important; }

.jconfirm .jconfirm-box.jconfirm-type-dark .jconfirm-title-c .jconfirm-icon-c {
  color: #34495e !important; }

.jconfirm .jconfirm-clear {
  clear: both; }

.jconfirm.jconfirm-rtl {
  direction: rtl; }

.jconfirm.jconfirm-rtl div.jconfirm-closeIcon {
  left: 5px;
  right: auto; }

.jconfirm.jconfirm-white .jconfirm-bg, .jconfirm.jconfirm-light .jconfirm-bg {
  background-color: #444;
  opacity: 0.2; }

.jconfirm.jconfirm-white .jconfirm-box, .jconfirm.jconfirm-light .jconfirm-box {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px; }

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-title-c .jconfirm-icon-c, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0; }

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons {
  float: right; }

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none; }

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #333; }

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default:hover, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background: #ddd; }

.jconfirm.jconfirm-white.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c, .jconfirm.jconfirm-light.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0; }

.jconfirm.jconfirm-black .jconfirm-bg, .jconfirm.jconfirm-dark .jconfirm-bg {
  background-color: darkslategray;
  opacity: 0.4; }

.jconfirm.jconfirm-black .jconfirm-box, .jconfirm.jconfirm-dark .jconfirm-box {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #444;
  border-radius: 5px;
  color: white; }

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-title-c .jconfirm-icon-c, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0; }

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons {
  float: right; }

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button {
  border: 0;
  background-image: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
  color: white; }

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  background: 0; }

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default:hover, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background: #666; }

.jconfirm.jconfirm-black.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c, .jconfirm.jconfirm-dark.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0; }

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-shake {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow {
  -webkit-animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0); }

  20%, 80% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0); }

  30%, 50%, 70% {
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0); }

  40%, 60% {
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0); } }

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0); }

  20%, 80% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0); }

  30%, 50%, 70% {
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0); }

  40%, 60% {
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0); } }

@-webkit-keyframes glow {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 red;
    box-shadow: 0 0 0 red; }

  50% {
    -webkit-box-shadow: 0 0 30px red;
    box-shadow: 0 0 30px red; } }

@keyframes glow {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 red;
    box-shadow: 0 0 0 red; }

  50% {
    -webkit-box-shadow: 0 0 30px red;
    box-shadow: 0 0 30px red; } }

.jconfirm {
  -webkit-perspective: 400px;
  perspective: 400px; }

.jconfirm .jconfirm-box {
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all; }

.jconfirm .jconfirm-box.jconfirm-animation-top, .jconfirm .jconfirm-box.jconfirm-animation-left, .jconfirm .jconfirm-box.jconfirm-animation-right, .jconfirm .jconfirm-box.jconfirm-animation-bottom, .jconfirm .jconfirm-box.jconfirm-animation-opacity, .jconfirm .jconfirm-box.jconfirm-animation-zoom, .jconfirm .jconfirm-box.jconfirm-animation-scale, .jconfirm .jconfirm-box.jconfirm-animation-none, .jconfirm .jconfirm-box.jconfirm-animation-rotate, .jconfirm .jconfirm-box.jconfirm-animation-rotatex, .jconfirm .jconfirm-box.jconfirm-animation-rotatey, .jconfirm .jconfirm-box.jconfirm-animation-scaley, .jconfirm .jconfirm-box.jconfirm-animation-scalex {
  opacity: 0; }

.jconfirm .jconfirm-box.jconfirm-animation-rotate {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.jconfirm .jconfirm-box.jconfirm-animation-rotatex {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: center;
  transform-origin: center; }

.jconfirm .jconfirm-box.jconfirm-animation-rotatexr {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: center;
  transform-origin: center; }

.jconfirm .jconfirm-box.jconfirm-animation-rotatey {
  -webkit-transform: rotatey(90deg);
  transform: rotatey(90deg);
  -webkit-transform-origin: center;
  transform-origin: center; }

.jconfirm .jconfirm-box.jconfirm-animation-rotateyr {
  -webkit-transform: rotatey(-90deg);
  transform: rotatey(-90deg);
  -webkit-transform-origin: center;
  transform-origin: center; }

.jconfirm .jconfirm-box.jconfirm-animation-scaley {
  -webkit-transform: scaley(1.5);
  transform: scaley(1.5);
  -webkit-transform-origin: center;
  transform-origin: center; }

.jconfirm .jconfirm-box.jconfirm-animation-scalex {
  -webkit-transform: scalex(1.5);
  transform: scalex(1.5);
  -webkit-transform-origin: center;
  transform-origin: center; }

.jconfirm .jconfirm-box.jconfirm-animation-top {
  -webkit-transform: translate(0px, -100px);
  transform: translate(0px, -100px); }

.jconfirm .jconfirm-box.jconfirm-animation-left {
  -webkit-transform: translate(-100px, 0px);
  transform: translate(-100px, 0px); }

.jconfirm .jconfirm-box.jconfirm-animation-right {
  -webkit-transform: translate(100px, 0px);
  transform: translate(100px, 0px); }

.jconfirm .jconfirm-box.jconfirm-animation-bottom {
  -webkit-transform: translate(0px, 100px);
  transform: translate(0px, 100px); }

.jconfirm .jconfirm-box.jconfirm-animation-zoom {
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }

.jconfirm .jconfirm-box.jconfirm-animation-scale {
  -webkit-transform: scale(0.5);
  transform: scale(0.5); }

.jconfirm .jconfirm-box.jconfirm-animation-none {
  visibility: hidden; }

.jconfirm.jconfirm-supervan .jconfirm-bg {
  background-color: rgba(54, 70, 93, 0.95); }

.jconfirm.jconfirm-supervan .jconfirm-box {
  background-color: transparent; }

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-blue {
  border: 0; }

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-green {
  border: 0; }

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-red {
  border: 0; }

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-orange {
  border: 0; }

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-purple {
  border: 0; }

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-dark {
  border: 0; }

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-closeIcon {
  color: white; }

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c {
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: normal; }

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c > * {
  padding-bottom: 25px; }

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0; }

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 25px; }

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content {
  text-align: center;
  color: white; }

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons {
  text-align: center; }

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button {
  font-size: 16px;
  border-radius: 2px;
  background: #303f53;
  text-shadow: none;
  border: 0;
  color: white;
  padding: 10px;
  min-width: 100px; }

.jconfirm.jconfirm-supervan.jconfirm-rtl .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0; }

.jconfirm.jconfirm-material .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.67); }

.jconfirm.jconfirm-material .jconfirm-box {
  background-color: white;
  -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 25px 10px 25px; }

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0; }

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87); }

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold; }

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-content {
  color: rgba(0, 0, 0, 0.87); }

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons {
  text-align: right; }

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons button {
  text-transform: uppercase;
  font-weight: 500; }

.jconfirm.jconfirm-material.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0; }

.jconfirm.jconfirm-bootstrap .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.21); }

.jconfirm.jconfirm-bootstrap .jconfirm-box {
  background-color: white;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.4);
  padding: 15px 0 0; }

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0; }

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87); }

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
  padding-left: 15px;
  padding-right: 15px; }

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-content {
  color: rgba(0, 0, 0, 0.87);
  padding: 0 15px; }

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons {
  text-align: right;
  padding: 10px;
  margin: -5px 0 0;
  border-top: solid 1px #ddd;
  overflow: hidden;
  border-radius: 0 0 4px 4px; }

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons button {
  font-weight: 500; }

.jconfirm.jconfirm-bootstrap.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0; }

.jconfirm.jconfirm-modern .jconfirm-bg {
  background-color: slategray;
  opacity: 0.6; }

.jconfirm.jconfirm-modern .jconfirm-box {
  background-color: white;
  -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 15px; }

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  top: 15px;
  right: 15px; }

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px; }

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 10px;
  font-size: 69px;
  color: #aaa; }

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  text-align: center;
  font-size: 15px;
  color: #777;
  margin-bottom: 25px; }

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons {
  text-align: center; }

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
  padding: 10px 20px; }

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button + button {
  margin-left: 4px; }

.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  -webkit-transform: scale(1);
  transform: scale(1); }

* {
  outline: none !important; }

a:hover {
  text-decoration: none;
  color: #68acfb;
  box-shadow: none; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #464646;
  font-size: 16px; }

header {
  position: relative;
  padding: 15px 0 0; }

.header_right {
  position: relative; }

.top_bar_left a.use_ink {
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
  font-weight: 600;
  border: 2px solid #0088c6;
  padding: 7px 15px;
  vertical-align: middle; }

#wrhs_header .top_bar_left a.use_ink {
  color: #323232; }

#wrhs_header .top_bar_left a.top_phone {
  color: #323232; }

#scmc_header .top_bar_left a.use_ink {
  color: #323232; }

#scmc_header .top_bar_left a.top_phone {
  color: #323232; }

.sticky .top_bar_left a.use_ink {
  color: #000; }

.top_bar_left a.top_phone {
  padding-left: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600; }

.sticky .top_bar_left a.top_phone {
  color: #323232; }

. nav.navbar.navbar-expand-lg {
  padding: 0 !important; }

.top_bar_right i {
  font-size: 25px !important;
  background: #0094de;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 148, 222, 1)), to(rgba(235, 38, 28, 1)));
  background: -o-linear-gradient(top, rgba(0, 148, 222, 1) 0%, rgba(235, 38, 28, 1) 100%);
  background: linear-gradient(to bottom, rgba(0, 148, 222, 1) 0%, rgba(235, 38, 28, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0094de', endColorstr='#eb261c',GradientType=0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.top_bar_right ul li {
  display: inline-block;
  padding-left: 30px; }

.top_bar_right ul {
  padding: 0;
  list-style: none;
  margin: 0; }

#mainmenu ul li.nav-item {
  background-color: #036072; }
/* #mainmenu ul li.nav-item.active a {
 color: #000;
 } */
#mainmenu ul li.nav-item a {
  color: #fff;
  padding: 10px 27px !important;
  font-size: 21px;
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  letter-spacing: 1px; }

#mainmenu ul.navbar-nav > li.nav-item:hover a, #mainmenu ul.navbar-nav > li.nav-item.active a {
  background-color: #004f7e !important; }

#mainmenu ul.dropdown-menu li.active a.nav-link {
  color: #005e8a !important; }

.form_search {
  padding-right: 10px; }

form.top_search {
  max-width: 240px;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden; }

form.top_search input, form.top_search button {
  background: transparent;
  border: none; }

.form_search input {
  background: transparent;
  border: 2px solid #0088c6 !important;
  border-radius: 0;
  color: #fff;
  margin: 0 !important;
  height: 38px;
  box-shadow: none !important;
  outline: 0 !important;
  font-size: 16px;
  min-width: 235px;
  /* padding: 10px; */ }

#wrhs_header .form_search input {
  color: #323232; }

.form_search button {
  background: #0088c6;
  border: 2px solid #0088c6;
  border-radius: 0;
  color: #fff;
  font-size: 10px;
  height: 38px;
  outline: 0 !important;
  box-shadow: none !important;
  margin-left: -20px; }

.form_search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
  font-size: 16px; }

.form_search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  font-size: 16px; }

.form_search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
  font-size: 16px; }

.form_search input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  font-size: 16px; }

#wrhs_header .form_search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #323232 !important;
  font-size: 16px; }

#wrhs_header .form_search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #323232 !important;
  font-size: 16px; }

#wrhs_header .form_search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #323232 !important;
  font-size: 16px; }

#wrhs_header .form_search input:-moz-placeholder {
  /* Firefox 18- */
  color: #323232 !important;
  font-size: 16px; }

#scmc_header .form_search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #323232 !important;
  font-size: 16px; }

#scmc_header .form_search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #323232 !important;
  font-size: 16px; }

#scmc_header .form_search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #323232 !important;
  font-size: 16px; }

#scmc_header .form_search input:-moz-placeholder {
  /* Firefox 18- */
  color: #323232 !important;
  font-size: 16px; }

.sticky .form_search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #323232 !important;
  font-size: 16px; }

.sticky .form_search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #323232 !important;
  font-size: 16px; }

.sticky .form_search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #323232;
  font-size: 16px; }

.sticky .form_search input:-moz-placeholder {
  /* Firefox 18- */
  color: #323232;
  font-size: 16px; }

button.slick-next.slick-arrow {
  right: 20px;
  z-index: 9999; }

button.slick-prev.slick-arrow {
  left: 20px;
  z-index: 9999; }

.slider_left {
  background: #0094de;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 132, 199, 0.82)), to(#eb261c));
  background: -o-linear-gradient(top, rgba(17, 132, 199, 0.82) 55%, rgba(235, 38, 28, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(17, 132, 199, 0.82) 55%, rgba(235, 38, 28, 0.6) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0094de', endColorstr='#eb261c',GradientType=0); }

.slider_left {
  position: absolute;
  top: 17%;
  left: 0;
  width: 500px;
  height: calc(100% + 100px); }

.paragraph_leftslider {
  color: white;
  left: 25px;
  position: relative;
  padding-right: 60px;
  top: -55px;
  margin: auto; }

.numberCircle {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 8px;
  background: #fff;
  border: 2px solid #666;
  color: #666;
  text-align: center;
  font: 32px Arial, sans-serif; }

.row-margin-30 {
  margin-top: 12em; }

.mycontent-left {
  border-right: 1px double #333; }

.slider_after-right {
  background: #0094de; }

.slider_after-right {
  width: 450px;
  height: calc(100% + 650px);
  bottom: 15em; }

.wr_container {
  padding: 0 0px;
  /* margin-right: 15px !important; */ }

.logo_area img {
  width: 260px;
  padding-bottom: 15px; }
/* About */
.about_sec {
  padding: 75px 0; }

.about_title h2 {
  color: #004f7e;
  font-size: 55px;
  font-family: 'Bebas Neue', cursive;
  position: relative;
  display: inline-block;
  padding-bottom: 30px; }

.about_title h2:before {
  width: 15%;
  position: absolute;
  content: '';
  background: #0088c6;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto; }

.about_title h2:after {
  width: 30px;
  position: absolute;
  background-color: #fff;
  background-image: url(/files/images/wr_icon.png);
  background-repeat: no-repeat;
  content: '';
  height: 30px;
  left: 0;
  right: 0;
  bottom: 5px;
  margin: auto; }

.events_sec .about_title h2 {
  display: block !important; }

.events_sec .about_title h2:before {
  width: 6% !important; }

.about_title h5 {
  color: #0088c6;
  font-family: 'Bebas Neue', cursive;
  font-size: 28px; }

.about_content {
  margin-top: 20px; }

.about_content a {
  color: #004f7e; }

.about_content a:hover {
  color: #0088c6; }

.about_content p {
  color: #595959; }

.about_link {
  margin-top: 30px; }

a.learn_more {
  background: #004f7e;
  padding: 15px 55px;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #004f7e;
  margin: 0 10px; }

a.learn_more:hover {
  background: transparent;
  color: #004f7e;
  border: 2px solid #004f7e; }

a.contact_us {
  background: #0088c6;
  padding: 15px 55px;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #0088c6;
  margin: 0 10px; }

a.contact_us:hover {
  background: transparent;
  color: #0088c6;
  border: 2px solid #0088c6; }

.title_field h3 {
  font-family: 'Bebas Neue';
  font-size: 65px;
  padding-bottom: 45px;
  color: #202020;
  position: relative;
  display: inline-block; }

.title_field h3 .red {
  color: #0088c6; }

.title_field h3:before, .title_white h3:before {
  width: 30%;
  position: absolute;
  content: '';
  background: #0088c6;
  height: 1px;
  left: 0;
  bottom: 30px;
  margin: auto;
  right: 0; }

.title_field h3:after {
  width: 30px;
  position: absolute;
  background-color: #fff;
  background-image: url(/files/images/wr_icon.png);
  background-repeat: no-repeat;
  content: '';
  height: 30px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 15px; }

.title_white h3:after {
  width: 30px;
  position: absolute;
  background-color: #175488;
  background-image: url(/files/images/wr_icon.png);
  background-repeat: no-repeat;
  content: '';
  height: 30px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 15px; }

.service_sec .title_field h3:after {
  background-color: #ebf6ff !important; }

.about_sec img {
  box-shadow: -22px -1px 0px -12px #dcdadb !important;
  width: 100%; }
/* Service */
.service_sec {
  padding: 75px 0;
  background: #ebf6ff; }

.servicebox_wrap {
  margin-bottom: 30px; }

.service_box {
  background: #fff;
  padding: 20px 15px;
  border-radius: 5px;
  -webkit-box-shadow: -5px 5px 10px 0px #dcdcdc;
  -moz-box-shadow: -5px 5px 10px 0px #dcdcdc;
  box-shadow: -5px 5px 10px 0px #dcdcdc; }

.service_box p {
  color: #757575; }

.service_box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #272727;
  padding-top: 25px; }

.service_image {
  background: #ebf6ff;
  display: block;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  padding: 40px;
  margin: auto; }

.service_box img {
  display: block;
  width: auto;
  height: auto;
  margin: auto; }
/* Doctors */
.doctor_sec {
  padding: 75px 0; }

.doctors_tab {
  padding-top: 20px; }

.doctors_tab .nav-tabs .nav-item.show .nav-link, .doctors_tab .nav-tabs .nav-link.active {
  border: 0px !important;
  border-color: transparent !important; }

.doctors_tab .nav-tabs .nav-link {
  border: 0px !important;
  border-color: transparent !important;
  color: #161616;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700; }

.doctors_tab .nav-tabs .nav-link.active span {
  border: 2px solid #0088c6;
  padding: 10px 25px;
  border-radius: 30px; }

.doctors_tab .nav-tabs {
  border-bottom: 0px !important;
  padding-bottom: 45px;
  width: 70%;
  margin: auto; }

.doctor_sec .title_field p {
  color: #757575;
  width: 60%;
  margin: auto; }

.doctor_box {
  background: #f9f9f9;
  text-align: center;
  border-radius: 10px;
  padding-bottom: 25px;
  position: relative;
  overflow: hidden; }

.doctor_box h5 {
  padding-top: 20px;
  font-size: 21px;
  color: #343232;
  font-weight: 700; }

.doctor_box span {
  color: #9c9c9c; }

.doctor_box img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: top; }

.doctor_box:before {
  position: absolute;
  content: '';
  background-image: url(/files/images/d_label.png);
  background-repeat: no-repeat;
  background-position: left;
  height: 135px;
  bottom: 0;
  left: 0px;
  width: 100%;
  background-size: contain;
  top: 0px;
  border-radius: 5px; }
/* WRHS Foundation */
section#wrhs_foundation {
  background-image: url(/files/images/wrhs_bg.jpg);
  padding: 65px 0 85px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.title_white h3 {
  font-family: 'Bebas Neue';
  font-size: 65px;
  padding-bottom: 30px;
  color: #fff;
  position: relative;
  display: inline-block; }

.title_white h3 .red {
  color: #0088c6; }

a.donate {
  background: #fff;
  padding: 15px 55px;
  color: #004f7e;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #fff;
  margin-right: 15px; }

a.donate:hover {
  background: transparent;
  color: #fff; }

.title_white p, .title_white h5 {
  color: #fff; }

.title_white p {
  font-size: 16px;
  width: 70%;
  margin: auto;
  padding-bottom: 25px; }

.title_white h5 {
  font-size: 21px;
  width: 70%;
  margin: auto;
  line-height: 31px;
  font-weight: 600;
  font-style: italic; }
/* Events */
.events_sec {
  padding: 75px 0px; }

.events_sec .about_title {
  padding-bottom: 45px; }

.event_box {
  background: #f9f9f9;
  margin-bottom: 35px;
  border-radius: 5px;
  min-height: 290px; }

.event_details {
  padding: 15px; }

.event_img {
  width: 40%; }

.event_details {
  width: 60%; }

.event_img img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.event_box {
  overflow: hidden; }

.event_details h5 {
  font-size: 20px;
  color: #343232;
  font-weight: 600;
  padding-bottom: 10px; }

.event_date {
  color: #0088c6;
  font-size: 13px;
  font-weight: 600;
  padding-bottom: 10px; }

.event_date span.loc {
  padding-right: 10px; }

.event_date span i {
  padding-right: 5px; }

.event_details p {
  color: #6c6c6c;
  font-size: 16px;
  line-height: 22px; }
/* Footer */
#di_footer {
  background: #cfe7f3;
  padding: 30px 0 0; }

.di_footercol h3 {
  font-family: 'Bebas Neue';
  color: #004f7e;
  font-size: 28px;
  padding-bottom: 15px; }

.footer_container {
  padding-bottom: 0px; }

.footer_container .row {
  /* margin-right: 15px !important; */
  align-items: flex-start;
  justify-content: center; }

.di_footercol ul li a {
  color: #444;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8; }

.di_footercol ul li a:hover {
  color: #0088c6; }

.di_footercol ul li a:before {
  content: "\f105";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 12px 0 0; }

.copy_container {
  background: #2c2c2c;
  padding: 12px 0; }

.copy_container .row {
  margin-right: 15px !important;
  margin-left: 15px !important; }

.left_copy, .left_copy a, .right_copy, .right_copy a {
  color: #fff; }

.right_copy a:hover, .left_copy a:hover {
  color: #0088c6; }
/* slider link */
#dr_slider {
  position: relative; }

#cc_linkslider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 85px 20px !important;
  background: linear-gradient(rgba(207, 207, 207, 0) 0%, #000d13 90%); }

#cc_linkslider .cc_linkslider_wrap {
  margin: 0; }

#cc_linkslider .cc_linkslider_wrap button.slick-arrow {
  z-index: 9999;
  height: 25px !important; }

.cc_linkslider_wrap .cc_linkslider_item.slick-slide {
  margin: 20px 0px; }

.cc_linkslider_wrap .cc_linkslider_item a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img {
  transition: ease-in-out 1s; }

.cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img {
  background: #03b7dd;
  border: 3px solid #03b7dd;
  border-radius: 50%;
  width: 125px;
  height: 125px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img img {
  width: auto;
  height: auto; }

.cc_linkslider_wrap .cc_linkslider_item h6 {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 0;
  color: #fff;
  margin: 20px 0 0;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  word-break: break-word; }

.cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img:hover {
  transform: rotate(360deg);
  transition: ease-in-out 1s;
  box-shadow: 0 0 0 12px rgba(0, 136, 198, 0.361) !important; }

.cc_linkslider_wrap .cc_linkslider_item {
  margin: 20px 0px; }

.cc_linkslider_wrap .cc_linkslider_item a:focus, .cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img:focus {
  outline: 0; }

.breadcrump {
  padding: 25px 0px;
  background: #004f7e; }

.breadcrump .title_area {
  float: left;
  width: 100%; }

.breadcrump .title_area h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase; }

.breadcrump_area {
  float: left;
  width: 100%;
  color: #fff; }

.breadcrump .breadcrump_area span, .breadcrump .breadcrump_area span > a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px; }

button[aria-expanded="true"] span.navbar-toggler-icon:before {
  content: "\f00d";
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg); }

button[aria-expanded="false"] span.navbar-toggler-icon:before {
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }
/* */
/*#end*/
/* RESPONSIVE */
@media screen and (min-width: 1400px) {
  .foot_fourth_col {
    width: 75%; } }

@media screen and (min-width: 1600px) {
  .home_phy {
    padding: 0 40px !important; }

  .doctor_box img {
    max-height: 350px !important; }

  .about_content p {
    font-size: 21px; } }

@media (min-width: 1200px) and (max-width: 1439px) {
  .logo_area img {
    width: 235px; }

  .doctor_box h5 {
    font-size: 19px; } }

@media screen and (min-width: 1200px) {
  .top_bar .top_bar_left {
    padding-left: 270px; }

  video#home-vid {
    width: 100%;
    height: 80vh !important;
    object-fit: cover !important;
    object-position: top !important; }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    width: 100%;
    min-width: 250px;
    border: 0;
    margin: 0 0 0 !important; }

  .dropdown-menu a.nav-link {
    font-size: 20px !important;
    padding: 8px 27px !important; }

  .menu_area .navbar {
    padding: 0rem !important; }

  header.sticky .mgmenu_menu_div {
    width: 100%;
    min-width: 178px !important; }

  .wr_container {
    margin-right: 15px !important; }

  .footer_container .row {
    margin-right: 15px !important; } }

@media screen and (min-width: 992px) {
  .aboutsec_imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .top_bar_left a, .top_bar_left div {
    font-size: 16px !important; }

  .top_bar .top_bar_left {
    padding-left: 170px; } }

@media screen and (min-width: 1199px) {
  .top_bar_fluid {
    padding: 20px 0 5px;
    /*  position: relative; */ }

  .logo_area a {
    margin: -115px 0 0;
    display: block; } }

@media screen and (max-width: 1199px) {
  .header_right .menu_area button.navbar-toggler {
    position: absolute;
    right: 0;
    top: -50px; }

  .logo_area img {
    width: 200px;
    padding: 0 !important;
    margin-left: 30px !important; }

  .navbar-toggler-icon {
    color: #004f7e;
    font-size: 25px; }

  span.navbar-toggler-icon:before {
    content: "\f0c9";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

  #mainmenu ul li.nav-item {
    background-color: #fff !important; }

  #mainmenu ul.navbar-nav > li.nav-item:hover > a, #mainmenu ul.navbar-nav > li.nav-item.active > a {
    color: #03b7dd !important;
    background-color: #fff !important; }

  #mainmenu ul.navbar-nav > li.nav-item:hover a, #mainmenu ul.navbar-nav > li.nav-item.active a {
    background-color: #fff !important; }

  #mainmenu ul li.nav-item a {
    color: #464646 !important; }

  .menu_area #mainmenu ul li.nav-item a {
    padding-left: 0 !important; }

  ul.navbar-nav li.dropdown > a:after {
    content: '\f078';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    font-size: 14px;
    right: 30px;
    top: 35px;
    webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s; }

  ul.navbar-nav li.dropdown > a:after {
    top: 10px !important; }

  .menu_area .dropdown-menu {
    padding: 0px 20px !important;
    border: 0; }

  .menu_area .dropdown-menu li a {
    color: #464646 !important; }

  .menu_area .dropdown-menu li.active a {
    color: #0088c6 !important; }

  .mob_only_js {
    padding-bottom: 30px;
    padding-top: 15px; }

  #wrhs_home .form_search input:-moz-placeholder {
    /* Firefox 18- */
    color: #323232 !important;
    font-size: 16px; }

  #wrhs_home .form_search input::-moz-placeholder {
    /* Firefox 19+ */
    color: #323232 !important;
    font-size: 16px; }

  #wrhs_home .form_search input:-ms-input-placeholder {
    /* IE 10+ */
    color: #323232 !important;
    font-size: 16px; }

  #wrhs_home .form_search input:-moz-placeholder {
    /* Firefox 18- */
    color: #323232 !important;
    font-size: 16px; }

  .mob_only_js a.use_ink {
    color: #0a0a0a;
    font-size: 16px;
    margin-right: 10px;
    font-weight: 600;
    border: 2px solid #0088c6;
    padding: 7px 15px;
    width: 68%;
    margin-top: 15px; }

  .mob_only_js a.top_phone {
    margin-bottom: 20px;
    margin-top: 15px;
    color: #323232;
    font-size: 16px;
    font-weight: 600; }

  .mob_lnks {
    margin-top: 28px; } }

@media screen and (max-width: 991px) {
  #cc_linkslider {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    top: -10px;
    padding: 0 50px 35px !important;
    background: #004f7e; }

  .left_copy, .right_copy, .right_copy a {
    color: #fff;
    text-align: center;
    float: none; }

  button.slick-next.slick-arrow {
    right: 0; }

  button.slick-prev.slick-arrow {
    left: 0; }

  .di_footercol h3 {
    padding-bottom: 0px;
    padding-top: 10px; }

  .event_home {
    display: block !important; } }

@media screen and (max-width: 767px) {
  .wr_container {
    padding: 0 15px; }

  #cc_linkslider {
    padding: 0 15px 0 !important; }

  .cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img {
    width: 100px;
    height: 100px; }

  .cc_linkslider_wrap .cc_linkslider_item h6 {
    font-size: 18px;
    margin: 10px 0 0; }

  .about_link {
    margin-top: 30px;
    float: left; }

  .doctor_sec .title_field p {
    width: 100%; }

  .left_copy span {
    display: block; }

  section#wrhs_foundation .wrhs_foundation_col {
    padding: 0; } }

@media screen and (min-width: 576px) {
  .search_now {
    display: inline-block;
    width: auto;
    vertical-align: middle; } }

@media screen and (max-width: 575px) {
  .about_link {
    display: block;
    width: 100%;
    text-align: center; }

  a.learn_more {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0 0; }

  a.contact_us {
    display: block;
    margin: 10px 0 0;
    width: 100%; }

  a.donate {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0; }

  section#wrhs_foundation .title_white * {
    width: 100%; }

  .doctors_tab .nav-tabs {
    width: 100%; }

  .event_box {
    display: block !important; }

  .event_img, .event_details {
    width: 100%; }

  .mob_only_js .form_search input {
    min-width: 90%;
    width: auto;
    float: left; }

  .mob_only_js .form_search .btn {
    width: auto; }

  .mob_only_js a.use_ink {
    color: #0a0a0a;
    font-size: 16px;
    margin-right: 10px;
    font-weight: 600;
    border: 2px solid #0088c6;
    padding: 7px 15px;
    display: block;
    width: 68%;
    margin-top: 15px; }

  .mob_only_js a.top_phone {
    float: left;
    display: block;
    margin-bottom: 20px;
    margin-top: 15px;
    color: #323232;
    font-size: 16px;
    font-weight: 600; } }

@media (max-width: 360px) {
  .mob_only_js .form_search input {
    width: 228px !important; }

  .mob_only_js a.use_ink {
    width: 100% !important; }

  .call_text a {
    display: block; } }
/* RESPONSIVE */
.top_phone i, .top_bar_left a:hover {
  color: #3db072; }

.menu_area .dropdown-menu {
  padding: 0px; }

.scrolltop {
  width: 100%;
  margin: 0px auto;
  position: fixed;
  bottom: 20px;
  right: 10px; }

.scroll {
  position: absolute;
  right: 20px;
  bottom: 0px;
  background: #3db072;
  padding: 15px 20px;
  text-align: center;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s; }

.scroll .fa {
  color: #fff;
  font-size: 30px;
  margin-top: -5px;
  margin-left: 1px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s; }

.fb_iframe_widget {
  display: inline-block !important;
  position: relative;
  overflow: hidden;
  width: 100%; }

.dr_slide_image {
  width: 100%; }

video#home-vid {
  width: 100%; }

.home_phy {
  padding: 0 30px; }

#mainmenu ul.dropdown-menu li a:hover {
  color: #0088c6 !important; }

.event_wrap .event_each {
  padding: 0px 20px;
  width: 100%;
  height: auto; }

.event_details a.event_more {
  color: #0088c6; }

.event_details a.event_more:hover {
  color: #004f7e; }

.event_wrap .event_home .event_each .event_box .event_details span.date {
  white-space: nowrap; }

@media (max-width: 1199px) {
  .logo_area {
    margin-bottom: 15px; }

  .about_link > a {
    display: block;
    width: 100%;
    margin: 25px auto !important;
    max-width: 450px; }

  .mob_only_js .form_search input, .mob_only_js a.use_ink {
    width: 240px; }

  .mob_only_js .form_search input::placeholder {
    color: #000; } }

.about_link a.frst_btn {
  background: #004f7e;
  padding: 15px 55px;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #004f7e;
  margin: 0 10px; }

.about_link a.frst_btn:hover {
  background: transparent;
  color: #004f7e;
  border: 2px solid #004f7e; }

.about_link a.scnd_btn {
  background: #0088c6;
  padding: 15px 55px;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #0088c6;
  margin: 0 10px; }

.about_link a.scnd_btn:hover {
  background: transparent;
  color: #0088c6;
  border: 2px solid #0088c6; }

a.whiteriveralldoc {
  background: #004f7e;
  padding: 15px 55px;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #004f7e;
  margin: 0 10px;
  display: inline-block; }

a.whiteriveralldoc:hover {
  background: transparent;
  color: #004f7e;
  border: 2px solid #004f7e; }

.foot_third_col a.ft_add, .foot_third_col a.ft_tel {
  color: #004f7e;
  font-weight: 700;
  display: table;
  padding-bottom: 10px; }

.foot_third_col a.ft_add i, .foot_third_col a.ft_tel i {
  padding: 0 10px 0 0;
  width: 25px; }

.foot_third_col a.ft_add i, .foot_third_col a.ft_tel i, .foot_third_col a.ft_add span, .foot_third_col a.ft_tel span {
  display: table-cell; }

.foot_third_col a.ft_add:hover, .foot_third_col a.ft_add:active, .foot_third_col a.ft_add:focus, .foot_third_col a.ft_tel:hover, .foot_third_col a.ft_tel:active, .foot_third_col a.ft_tel:focus {
  color: #0088c6; }

.ft_wrk_hrs ul {
  padding: 0; }

.ft_wrk_hrs ul li {
  list-style: none;
  display: flex;
  justify-content: space-between; }

.ft_wrk_hrs ul li label {
  min-width: 100px !important; }

.ft_wrk_hrs ul li a:before {
  display: none !important; }

.ft_wrk_hrs ul li span a {
  display: block !important; }

.footer_container ul li.active a {
  color: #0088c6; }

.foot_first_col img {
  width: 215px !important; }
/* 04-04-2025 */
.hot_line p {
  color: #fff;
  font-family: "Open Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-right: 15px;
  margin-bottom: 0; }

.logo_area a {
  display: inline-block; }

.tag_line {
  text-align: center; }

.tag_line span {
  color: #fff;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal; }

#wrhs_header .top_bar .hot_line p {
  color: #000 !important; }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #mainmenu {
    text-align: center; }

  .menu_area .dropdown-menu {
    margin-left: 45%; } }

#wrhs_home.sticky .dropdown-menu a#membdrop {
  font-size: 13px !important; }

.hot_line p {
  color: #fff !important;
  font-weight: bold;
  padding: 10px; }

.call_text {
  padding-bottom: 5px; }

.call_text h3, .call_text a {
  font-size: 55px;
  color: #0088c6;
  font-family: 'Bebas Neue', cursive; }

.call_text a:hover {
  color: #004f7e; }

@media screen and (max-width: 575px) {
  .call_text h3, .call_text a {
    font-size: 22px; } }

/* cancer care */
.marker {
  background-color: yellow; }

.find-btn {
  background-color: #0088c6;
  color: #fff !important;
  border: 1px solid #0088c6;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 15px; }

.find-btn:hover {
  background-color: #004f7e;
  color: #fff !important;
  border: 1px solid #004f7e;
  padding: 10px 15px;
  border-radius: 5px; }

.inner_type p a {
  color: #0088c6; }

.inner_type p a:hover {
  color: #004f7e; }

.read_more_page p a {
  color: #0088c6; }

.read_more_page p a:hover {
  color: #004f7e; }

.main_box {
  background: #f9f9f9;
  padding: 20px 15px;
  margin-bottom: 45px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 5px 10px 0px #c5c5c5;
  -moz-box-shadow: 2px 5px 10px 0px #c5c5c5;
  box-shadow: 2px 5px 10px 0px #c5c5c5; }

.main_box h2 {
  font-size: 35px;
  color: #0088c6;
  /* font-weight:800; */
  text-align: center;
  font-family: 'Bebas Neue'; }

.inner_type .main_box h3 {
  font-size: 30px;
  color: #0088c6;
  /* font-weight:700; */
  text-align: center;
  margin-top: 20px;
  font-family: 'Bebas Neue'; }

.newborn_area h3 a {
  color: #0088c6; }

.newborn_area h3 a:hover {
  color: #004f7e; }

.outpatient_area h4 a {
  color: #0088c6; }

.outpatient_area h4 a:hover {
  color: #004f7e; }

.page_desc ul li a {
  color: #0088c6; }

.page_desc ul li a:hover {
  color: #004f7e; }

.page_desc p a {
  color: #0088c6; }

.page_desc p a:hover {
  color: #004f7e; }

.page_desc h3 a {
  color: #0088c6; }

.page_desc h3 a:hover {
  color: #004f7e; }

.read_more_page h3 {
  font-size: 30px;
  color: #0088c6;
  /* font-weight:700; */
  text-align: center;
  margin-top: 20px;
  font-family: 'Bebas Neue'; }

.collapse_block h4 {
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: 700;
  background: #e5e5e5;
  padding: 10px;
  border-radius: 8px;
  color: #004f7e; }

.collapse_block a:hover {
  color: #0088c6; }

.page_desc h3 {
  font-size: 30px;
  color: #0088c6;
  /* font-weight:700; */
  font-family: 'Bebas Neue';
  /* text-align:center; */
  margin-top: 20px; }

.read_more_page img {
  width: 100%; }

.read_more_page ul li a {
  color: #0088c6; }

.read_more_page ul li a:hover {
  color: #004f7e; }

.address_area {
  background: #004f7e;
  padding: 25px;
  color: #fff;
  border-radius: 5px;
  min-height: 200px;
  margin-bottom: 20px; }

.emergency_heading h3 {
  text-align: left; }

.mental_area p a {
  color: #0088c6;
  background: unset;
  border: unset;
  padding: unset;
  display: inline-block; }

.mental_area p a:hover {
  color: #004f7e;
  background: unset;
  border: unset;
  padding: unset; }

.ortho_area img {
  width: 40%;
  margin-bottom: 25px; }

.outpatient_area p a {
  color: #fff;
  background: unset;
  border: unset;
  padding: unset; }

.outpatient_area p a:hover {
  color: #0088c6;
  background: unset;
  border: unset;
  padding: unset; }

.patient_area {
  background: #004f7e;
  padding: 25px;
  color: #fff;
  border-radius: 5px;
  /* min-height: 200px; */
  margin-bottom: 20px; }

.radiology_area p a {
  color: #0088c6;
  background: unset;
  border: unset;
  padding: unset; }

.radiology_area p a:hover {
  color: #004f7e;
  background: unset;
  border: unset;
  padding: unset; }

.surgical_area img {
  width: 40%; }

.surgical_area h3 {
  text-align: left; }

.read_more_page h4 {
  font-size: 28px;
  font-family: 'Bebas Neue';
  /* font-weight: 600; */ }

.mental_area h3 {
  text-align: left; }
/* wound center */
.wound_center label {
  font-weight: 800; }
/* wound center */
/* block styles */
.replace_area img {
  width: auto;
  height: 350px; }
/* block styles */
/* Patient form */
.page_desc .patient_form label {
  font-weight: 700; }

.page_desc .patient_form label span {
  color: red; }

.become_patient_form {
  background: #f9f9f9;
  padding: 20px 15px;
  margin-bottom: 45px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 5px 10px 0px #c5c5c5;
  -moz-box-shadow: 2px 5px 10px 0px #c5c5c5;
  box-shadow: 2px 5px 10px 0px #c5c5c5; }

.form_box {
  border: double;
  border-color: #004f7e;
  padding: 30px;
  background: #ededed; }
/* Patient form */
.sponsorship_request_form label {
  font-weight: 700; }

.sponsorship_request_form label span {
  color: red; }

.sponsorship_request_form h2 {
  font-family: 'Bebas Neue';
  color: #004f7e;
  font-size: 31px;
  padding-bottom: 5px; }

.sponsorship_request_form h6 {
  font-weight: normal;
  font-family: 'Bebas Neue';
  font-size: 28px;
  color: #0088c6; }

.sponsorship_request_form {
  background: #f9f9f9;
  padding: 20px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 5px 10px 0px #c5c5c5;
  -moz-box-shadow: 2px 5px 10px 0px #c5c5c5;
  box-shadow: 2px 5px 10px 0px #c5c5c5; }

.service_box {
  min-height: 280px !important; }

#board h3 {
  font-family: 'Bebas Neue';
  color: #004f7e !important;
  font-size: 28px;
  padding-bottom: 5px;
  font-weight: normal; }

#health h3 {
  font-family: 'Bebas Neue';
  color: #004f7e !important;
  font-size: 28px;
  padding-bottom: 5px;
  font-weight: normal; }
/* .b_members h3:after{
 content: '';
 position: absolute;
 height: 1px;
 width: 30%;
 background: #0088c6;
 top: 54px;
 left: 40px;
 } */
/* home page */
/* #mainmenu ul li.dropdown a:hover{
 background-color: #0088c6 !important;
 } */
.webchatWrap .webchatInit open #webchat .webchat--css-aezam-1egyv3b {
  height: 50% !important; }
/* home page */
@media (min-width: 1200px) {
  .outpatient_area ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3; }

  .care_area ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2; }

  .orthobone_area ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2; }

  .towel_img {
    width: 400px;
    height: 400px; }

  .news_fea_img img {
    height: 500px; } }

@media (max-width: 1199px) {
  .outpatient_area ul {
    webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2; }

  .care_area ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; }

  .orthobone_area ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; } }

@media (min-width: 768px) and (max-width: 991px) {
  .events_sec .about_title h2:before {
    width: 10% !important; } }

@media (max-width: 767px) {
  .outpatient_area ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; }

  .care_area ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; }

  .orthobone_area ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; }

  .read_more_page img {
    margin-bottom: 20px; }

  .inner_tabs {
    margin-bottom: 25px; } }

@media (min-width: 576px) and (max-width: 767px) {
  .events_sec .about_title h2:before {
    width: 12% !important; }

  .about_title h2:before {
    width: 12% !important; }

  .g_map iframe {
    width: 100% !important; } }

@media (max-width: 575px) {
  .find-btn {
    min-width: 255px;
    text-align: center;
    display: block; }

  .patient_form {
    padding: 0; }

  .Sponsorship_form {
    padding: 0; }

  .contact_content p a {
    font-size: 21px !important; }

  .page_desc p a {
    font-size: 14px; }

  .read_more_page p a {
    font-size: 15px !important; }

  .page_desc ul li a {
    font-size: 14px !important; }

  .form_box {
    padding: 10px !important; }

  .become_patient_form {
    padding: 17px 0px !important; }

  .sponsorship_request_form {
    padding: 17px 0px !important; }

  .video_frame iframe {
    height: 100% !important; }

  .events_sec .about_title h2:before {
    width: 20% !important; }

  .about_title h2:before {
    width: 20% !important; }

  .g_map iframe {
    width: 100% !important; }

  .contact_container {
    padding: 0; }

  .contact_container .custom-inputs-stacked label {
    font-size: 14px; }

  .g_map {
    padding-left: 18px !important; }

  .c_right .social_contact {
    margin-top: 15px; }

  .webchatInit {
    width: 65% !important; }

  .webchatInit.open {
    height: 40% !important; }

  .health_img {
    width: 100%; } }

.jconfirm-content-pane .jconfirm-content {
  font-size: 15px; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form_search input {
    line-height: 1 !important; } }

header#wrhs_home #mainmenu ul li.nav-item a, header#wrhs_home .dropdown-menu a.nav-link, header#wrhs_home .top_bar_fluid, header#wrhs_home .logo_area a {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s; }

@media screen and (min-width: 1200px) {
  /* MEGAMENU */
    header#wrhs_home {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      -webkit-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
      transition: all ease 0.3s;
      opacity: 1; }
    .dr_slider_fluid.container-fluid:before {
      content: '';
      height: 280px;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      right: 0;
      background: rgba(43, 43, 43, 0.89);
      background: -moz-linear-gradient(top, rgba(43, 43, 43, 0.89) 0%, rgba(17, 17, 17, 0.89) 0%, rgba(71, 71, 71, 0.89) 0%, rgba(76, 76, 76, 0.89) 0%, rgba(19, 19, 19, 0.89) 1%, rgba(0, 0, 0, 0.89) 1%, rgba(25, 25, 25, 0.89) 8%, rgba(28, 28, 28, 0.88) 9%, rgba(44, 44, 44, 0.8) 17%, rgba(102, 102, 102, 0.67) 31%, rgba(89, 89, 89, 0.56) 42%, rgba(89, 89, 89, 0) 100%);
      background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(43, 43, 43, 0.89)), color-stop(0%, rgba(17, 17, 17, 0.89)), color-stop(0%, rgba(71, 71, 71, 0.89)), color-stop(0%, rgba(76, 76, 76, 0.89)), color-stop(1%, rgba(19, 19, 19, 0.89)), color-stop(1%, rgba(0, 0, 0, 0.89)), color-stop(8%, rgba(25, 25, 25, 0.89)), color-stop(9%, rgba(28, 28, 28, 0.88)), color-stop(17%, rgba(44, 44, 44, 0.8)), color-stop(31%, rgba(102, 102, 102, 0.67)), color-stop(42%, rgba(89, 89, 89, 0.56)), color-stop(100%, rgba(89, 89, 89, 0)));
      background: -webkit-linear-gradient(top, rgba(43, 43, 43, 0.89) 0%, rgba(17, 17, 17, 0.89) 0%, rgba(71, 71, 71, 0.89) 0%, rgba(76, 76, 76, 0.89) 0%, rgba(19, 19, 19, 0.89) 1%, rgba(0, 0, 0, 0.89) 1%, rgba(25, 25, 25, 0.89) 8%, rgba(28, 28, 28, 0.88) 9%, rgba(44, 44, 44, 0.8) 17%, rgba(102, 102, 102, 0.67) 31%, rgba(89, 89, 89, 0.56) 42%, rgba(89, 89, 89, 0) 100%);
      background: -o-linear-gradient(top, rgba(43, 43, 43, 0.89) 0%, rgba(17, 17, 17, 0.89) 0%, rgba(71, 71, 71, 0.89) 0%, rgba(76, 76, 76, 0.89) 0%, rgba(19, 19, 19, 0.89) 1%, rgba(0, 0, 0, 0.89) 1%, rgba(25, 25, 25, 0.89) 8%, rgba(28, 28, 28, 0.88) 9%, rgba(44, 44, 44, 0.8) 17%, rgba(102, 102, 102, 0.67) 31%, rgba(89, 89, 89, 0.56) 42%, rgba(89, 89, 89, 0) 100%);
      background: -ms-linear-gradient(top, rgba(43, 43, 43, 0.89) 0%, rgba(17, 17, 17, 0.89) 0%, rgba(71, 71, 71, 0.89) 0%, rgba(76, 76, 76, 0.89) 0%, rgba(19, 19, 19, 0.89) 1%, rgba(0, 0, 0, 0.89) 1%, rgba(25, 25, 25, 0.89) 8%, rgba(28, 28, 28, 0.88) 9%, rgba(44, 44, 44, 0.8) 17%, rgba(102, 102, 102, 0.67) 31%, rgba(89, 89, 89, 0.56) 42%, rgba(89, 89, 89, 0) 100%);
      background: linear-gradient(to bottom, rgba(43, 43, 43, 0.89) 0%, rgba(17, 17, 17, 0.89) 0%, rgba(71, 71, 71, 0.89) 0%, rgba(76, 76, 76, 0.89) 0%, rgba(19, 19, 19, 0.89) 1%, rgba(0, 0, 0, 0.89) 1%, rgba(25, 25, 25, 0.89) 8%, rgba(28, 28, 28, 0.88) 9%, rgba(44, 44, 44, 0.8) 17%, rgba(102, 102, 102, 0.67) 31%, rgba(89, 89, 89, 0.56) 42%, rgba(89, 89, 89, 0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#595959', GradientType=0); }
    header#wrhs_home.hidden {
      -webkit-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
      transition: all ease 0.3s;
      opacity: 0 !important; }
    header#wrhs_home.sticky {
      background-color: #fff;
      -webkit-box-shadow: 0 0 30px 0 #b1b1b1;
      box-shadow: 0 0 30px 0 #b1b1b1;
      -webkit-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
      transition: all ease 0.3s; }
    video#home-vid {
      width: 100%;
      height: 100vh !important;
      -o-object-fit: cover !important;
      object-fit: cover !important;
      -o-object-position: top !important;
      object-position: top !important; }
    header#wrhs_home.sticky #mainmenu ul li.nav-item > a {
      padding: 5px 20px !important;
      font-size: 16px;
      -webkit-transition: all ease 0.3s !important;
      -o-transition: all ease 0.3s !important;
      transition: all ease 0.3s !important; }
    header#wrhs_home.sticky .dropdown-menu a.nav-link {
      font-size: 16px !important;
      -webkit-transition: all ease 0.3s !important;
      -o-transition: all ease 0.3s !important;
      transition: all ease 0.3s !important; }
    header#wrhs_home.sticky .top_bar_fluid {
      padding: 0px 0 15px;
      -webkit-transition: all ease 0.3s !important;
      -o-transition: all ease 0.3s !important;
      transition: all ease 0.3s !important; }
    header#wrhs_home.sticky .logo_area img {
      width: 200px;
      -webkit-transition: all ease 0.3s !important;
      -o-transition: all ease 0.3s !important;
      transition: all ease 0.3s !important; }
    header#wrhs_home.sticky .logo_area a {
      margin: -80px 0 0;
      display: block;
      -webkit-transition: all ease 0.3s !important;
      -o-transition: all ease 0.3s !important;
      transition: all ease 0.3s !important; }
    .menu_area .navbar {
      position: initial !important; }
    #mainmenu ul li.nav-item {
      position: initial !important; }
    ul.rr_megamenu.navbar-nav.flex-fill {
      margin-right: 0px !important; }
    ul.rr_megamenu ul.dropdown-menu.show {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      background-color: #004f7e;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-shadow: 0px 8px 14px 5px rgba(3, 49, 88, 0.3);
      box-shadow: 0px 8px 14px 5px rgba(3, 49, 88, 0.3);
      border-radius: 0; }
    .navbar-expand-xl ul.rr_megamenu ul.dropdown-menu {
      width: 100%;
      min-width: 250px;
      border: 0;
      margin: 0px 0 0 !important;
      right: 0;
      left: auto;
      padding: 15px 17px; }
    li.rr_megamenu_column {
      width: 30%;
      float: none;
      bottom: 0;
      display: block;
      flex: 1 1 auto; }
    ul.rr_megamenu_level2 {
      padding: 0;
      list-style: none;
      height: 100%; }
    #mainmenu ul.rr_megamenu_level2 > li > a {
      font-size: 1rem !important;
      letter-spacing: 2px !important;
      line-height: 1.5 !important;
      text-transform: capitalize !important;
      font-weight: 100 !important;
      display: inline-block;
      padding: 5px 5px !important; }
    li.rr_megamenu_column {
      /* border-right: 1px solid #023f75; */
      margin: 0 7px !important;
      padding-right: 15px;
      line-height: 1.4;
      display: flex; }
    li.rr_megamenu_column:nth-child(3n + 3) {
      border: 0 !important; }
    li.rr_megamenu_column > a {
      color: #fff !important; }
    #mainmenu ul li.nav-item {
      background-color: #004f7e; }
    #mainmenu ul li.nav-item h5 {
      color: #fff;
      font-family: 'Bebas Neue', cursive; }
    #cc_header .cc_nav_container nav.cc_navbar_main ul.navbar-nav > li:hover > a {
      background-color: #0878b7;
      color: #fff; }
    li.rr_megamenu_column.nav-item.dep-navs {
      width: 18%; }
    #mainmenu ul.dropdown-menu li a.nav-link {
      font-size: 0.75rem !important;
      font-weight: 500;
      border-bottom: 2px solid #023f75;
      height: auto;
      padding: 10px 5px !important; }
    #mainmenu ul li.rr_megamenu_column.nav-item a {
      padding: 0 0 !important; }
    #mainmenu ul.navbar-nav > li.nav-item.active > a {
      background-color: #03b7dd !important;
      color: #fff !important; }
    #mainmenu ul.navbar-nav > li.nav-item:not(.active) > a:hover, #mainmenu ul.navbar-nav > li.nav-item:not(.active) > a:focus, #mainmenu ul.navbar-nav > li.nav-item:not(.active) > a:active {
      color: #0088c6 !important; }
    .mgmenu_menu_div, .mgmenu_img_div {
      width: 50%;
      opacity: 1;
      -webkit-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
      transition: all ease 0.3s; }
    header.sticky .mgmenu_menu_div {
      width: 100%;
      min-width: 300px;
      -webkit-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
      transition: all ease 0.3s; }
    header.sticky .mgmenu_img_div {
      opacity: 0;
      -webkit-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
      transition: all ease 0.3s; } }

@media screen and (max-width: 1199px) {
  li.rr_megamenu_column {
    width: 100%;
    float: none;
    bottom: 0; } }

@media screen and (max-width: 575px) {
  li.rr_megamenu_column:not(:last-child) {
    border-right: none !important; } }
/* MEGAMENU */
/* IE ONLY */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  video#home-vid {
    width: 100% !important;
    height: 100% !important; }

  #mainmenu ul li.nav-item {
    position: static !important; }

  .foot_first_col {
    align-items: center; }

  .foot_first_col img {
    width: 100%; } }
