/*!
 * 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); }

.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em; }

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: ''; }

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc; }

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent; }

.daterangepicker.opensleft:before {
  right: 9px; }

.daterangepicker.opensleft:after {
  right: 10px; }

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto; }

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto; }

.daterangepicker.opensright:before {
  left: 9px; }

.daterangepicker.opensright:after {
  left: 10px; }

.daterangepicker.drop-up {
  margin-top: -7px; }

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc; }

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff; }

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none; }

.daterangepicker.single .drp-selected {
  display: none; }

.daterangepicker.show-calendar .drp-calendar {
  display: block; }

.daterangepicker.show-calendar .drp-buttons {
  display: block; }

.daterangepicker.auto-apply .drp-buttons {
  display: none; }

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px; }

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px; }

.daterangepicker .drp-calendar.right {
  padding: 8px; }

.daterangepicker .drp-calendar.single .calendar-table {
  border: none; }

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px; }

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg); }

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer; }

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff; }

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse; }

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit; }

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc; }

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999; }

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0; }

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px; }

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0; }

.daterangepicker td.start-date.end-date {
  border-radius: 4px; }

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff; }

.daterangepicker th.month {
  width: auto; }

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through; }

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default; }

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%; }

.daterangepicker select.yearselect {
  width: 40%; }

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px; }

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative; }

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed; }

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle; }

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px; }

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px; }

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd; }

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd; }

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd; }

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd; }

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0; }

.daterangepicker.show-calendar .ranges {
  margin-top: 8px; }

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%; }

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer; }

.daterangepicker .ranges li:hover {
  background-color: #eee; }

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff; }
/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }

  .daterangepicker .ranges ul {
    width: 140px; }

  .daterangepicker.single .ranges ul {
    width: 100%; }

  .daterangepicker.single .drp-calendar.left {
    clear: none; }

  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left; }

  .daterangepicker {
    direction: ltr;
    text-align: left; }

  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0; }

  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }

  .daterangepicker .drp-calendar.right {
    margin-left: 0; }

  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px; }

  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left; } }

@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }

  .daterangepicker .ranges {
    float: left; }

  .daterangepicker.rtl .ranges {
    float: right; }

  .daterangepicker .drp-calendar.left {
    clear: none !important; } }

/* $site-blue: #0088C6; */
* {
  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 #005a8d;
  padding: 7px 15px;
  vertical-align: middle;
  background: #004f7e; }

header#wrhs_header .logo_area img {
  padding: 45px 0 30px; }

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

#wrhs_header .top_bar_left a.top_phone {
  color: #323232;
  background: #fff !important; }

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

#scmc_header .top_bar_left a.top_phone {
  color: #323232;
  background: #fff !important; }

.sticky .top_bar_left a.use_ink {
  color: #323232;
  background: #fff; }

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

.sticky .top_bar_left a.top_phone {
  color: #323232;
  background: #fff !important; }

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

.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: #005a8d; }
/* #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: $site-blue !important; */
  color: #3db072 !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 #005a8d !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: #005a8d;
  border: 2px solid #005a8d;
  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; }

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

.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 80px; }

.logo_area img {
  width: 365px; }
/* 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: 10%;
  position: absolute;
  content: '';
  background: #000;
  height: 1px;
  left: 0;
  bottom: 20px;
  right: 0; }

.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; }

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

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

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

.about_content {
  margin-top: 20px; }

.about_content a {
  color: #004f7e; }

.about_content a:hover {
  color: #005a8d; }

.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-right: 15px; }

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

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

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

.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: #005a8d; }

.title_field h3:before, .title_white h3:before {
  width: 30%;
  position: absolute;
  content: '';
  background: #000;
  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: #9fdde8;
  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: #cfe7f3 !important; }

.about_sec img {
  width: 100%; }
/* Service */
.service_sec {
  padding: 75px 0;
  background: #cfe7f3; }

.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 #005a8d;
  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: #525252; }

.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;
  opacity: 0; }
/* 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: #000;
  position: relative;
  display: inline-block; }

.title_white h3 .red {
  color: #005a8d; }

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: #004f7e; }

.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: #004f7e;
  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: 50px 0 0; }

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

.footer_container {
  padding-bottom: 50px; }

.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: #005a8d; }

.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; }

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

.right_copy a:hover {
  color: #005a8d; }
/* slider link */
#dr_slider {
  position: relative; }

#cc_linkslider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 85px 35px !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: 26px;
  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(3, 183, 221, 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*/
.aboutsec_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; }
/* on monitors ≥1024px, make the box taller (or wider ratio) */
@media (min-width: 1920px) {
  .aboutsec_imgwrap {
    height: 720px !important;
    /* match your laptop height */
    /* OR use aspect‐ratio if you want fluid scaling:
     aspect-ratio: 4 / 3 !important;
     */ }

  .aboutsec_imgwrap img {
    /* center the focal point vertically now there’s extra room */
    object-position: top !important; } }
/* RESPONSIVE */
@media screen and (min-width: 1600px) {
  .home_phy {
    padding: 0 40px !important; }

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

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

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

  .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: 0px 0 0 !important; }

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

  header#wrhs_home.sticky .logo_area img {
    margin: 0 !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 30px;
    /*  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; }

  .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: #005a8d !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: #005a8d !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 #005a8d;
    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; }

  .mob_only_js .form_search {
    display: block !important;
    margin-top: 15px; }

  .mob_only_js .form_search input {
    width: 66%; }

  .form_search input::-webkit-input-placeholder {
    color: #0a0a39;
    font-size: 16px; }

  .form-control::placeholder {
    color: #0a0a39;
    opacity: 1; }

  .form-control::-webkit-input-placeholder {
    color: #0a0a39;
    opacity: 1; }

  .form_search input {
    color: #0a0a0a; }

  .form_search button {
    margin-left: 0; } }

@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; }

  a.wr_map {
    width: 100%; }

  .location_selector {
    width: 100% !important; }

  .mob_only_js .form_search {
    display: block !important;
    margin-top: 15px; }

  .mob_only_js .form_search input {
    width: 66%; } }

@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; }

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

  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%; }

  section#wrhs_foundation .title_white h3 {
    font-size: 54px; }

  div.events_sec .no_events p {
    margin-left: 18px; }

  .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 #005a8d;
    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; }

  .phy_box {
    display: block !important; }

  .phy_box .phy_img {
    width: 100%; }

  .phy_box .phy_title {
    width: 100%; }

  .physician_content .d_name, .physician_content h4 {
    padding-top: 20px; }

  a.wr_map {
    padding: 10px !important; }

  .get_btn, .more_btn {
    width: 100% !important; }

  .mob_only_js .form_search {
    width: 100%;
    margin-top: 15px; }

  .form_search button {
    margin-left: -20px; } }

@media screen and (max-width: 339px) {
  section#wrhs_foundation .title_white h3 {
    font-size: 47px; } }
/* RESPONSIVE */
.top_phone i, .top_bar_left a:hover {
  color: #3db072; }

.menu_area .navbar {
  padding: 0px; }

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

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

.scroll {
  position: absolute;
  right: 0px;
  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: $site-blue !important */
  color: #3db072 !important; }

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

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

.event_details a.event_more:hover {
  color: #005a8d; }

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

#di_footer .list-unstyled li.active a {
  /* color: $site-blue; */
  color: #004c75; }

@media screen and (max-width: 339px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden; }

  .g-recaptcha {
    transform: scale(0.8);
    margin-left: -25px; } }
/*30-01-2025*/
.all_link {
  margin-bottom: 75px; }

.footer_socials a {
  margin-right: 10px; }

.footer_socials a i {
  color: #3db072; }
/* nim 26-07 */
img.award-img {
  height: 300px !important; }

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

.find-btn {
  background-color: #005a9c;
  color: #fff !important;
  border: 1px solid #005a9c;
  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_pages .phy_row .add_info .clinic_row_btn.row a.bvb_back_btn {
  background: #005a9c;
  padding: 10px 50px;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #005a9c;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 10px; }

.inner_pages .phy_row .add_info .clinic_row_btn.row a.bvb_back_btn:hover {
  border: 2px solid #005a9c;
  background: transparent;
  color: #005a9c; }

.inner_type .add_info .bvb_back_btn {
  background: #005a9c;
  padding: 10px 50px;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #005a9c;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 10px; }

.inner_type .add_info .bvb_back_btn:hover {
  border: 2px solid #005a9c;
  background: transparent;
  color: #005a9c; }

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

.inner_type p a:hover {
  color: #005a9c; }

.read_more_page p a {
  color: #005a9c; }

.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;
  font-weight: 600;
  color: #004f7e;
  text-align: center; }
/* font-family: 'Bebas Neue'; */
.inner_type .main_box h3 {
  font-size: 30px;
  font-weight: 600;
  color: #004f7e;
  text-align: center;
  margin-top: 20px; }
/* font-family: 'Bebas Neue'; */
.newborn_area h3 a {
  color: #005a9c; }

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

.outpatient_area h4 a {
  color: #005a9c; }

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

.page_desc ul li a {
  color: #005a9c; }

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

.page_desc p a {
  color: #005a9c; }

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

.page_desc h3 a {
  color: #005a9c; }

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

.read_more_page h3 {
  font-size: 30px;
  font-weight: 600;
  color: #004f7e;
  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: #005a9c; }

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

.read_more_page img {
  width: 100%; }

.read_more_page ul li a {
  color: #005a9c; }

.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: #005a9c;
  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: #005a9c;
  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: #005a9c;
  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;
  color: #004f7e; }
/* font-family: 'Bebas Neue'; */
/* font-weight: 500; */
.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: #005a9c; }

.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: $site-blue;
 top: 54px;
 left: 40px;
 } */
/* home page */
/* #mainmenu ul li.dropdown a:hover{
 background-color: $site-blue !important;
 } */
.webchatWrap .webchatInit open #webchat .webchat--css-aezam-1egyv3b {
  height: 50% !important; }
/* SCMC 30/12/20230 */
.d_speciality {
  display: table; }

.d_speciality span {
  display: table-cell; }

.o_hours .hour_span {
  display: table; }

.o_hours p {
  margin-bottom: 0px; }

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

  section#dr_slider .dr_slider_fluid .dr_slider_row .dr_slider_main .dr_slick .dr_slider_wrap .dr_slide_image img.sldrs.img-fluid {
    display: none; }

  .dr_slide {
    display: block !important;
    height: 650px;
    background-size: cover;
    background-position: center; } }
/* SCMC 30/12/20230 */
/* 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; }

  .logo_area {
    padding: 10px 0; } }

@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;
    word-break: break-all; }

  .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.open {
    height: 40% !important; }

  .health_img {
    width: 100%; } }

button.slick-arrow {
  z-index: 9999; }

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

.webchatInit.open {
  transform: rotate(0deg) !important;
  right: 10px !important;
  bottom: 0px !important; }

.top_bar_left a.hd-soc-lnk {
  color: #3db072;
  margin: 0 5px; }

.top_bar_left a.hd-soc-lnk:hover, .top_bar_left a.hd-soc-lnk:focus, .top_bar_left a.hd-soc-lnk:active {
  color: #005a9c; }

.all-mob-soc {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 20px; }

.all-mob-soc a.mob-soc-lnk {
  color: #005a9c;
  margin: 0 5px; }

.all-mob-soc a.mob-soc-lnk:hover, .all-mob-soc a.mob-soc-lnk:focus, .all-mob-soc a.mob-soc-lnk:active {
  color: #004f7e; }

.virtual_nursery_sec .each_baby .baby_img, .virtual_nursery_sec .each_baby .baby_details {
  width: 50%; }

.virtual_nursery_sec .each_baby .baby_img {
  background-color: #eee;
  border-radius: 10px;
  padding: 40px;
  margin: 0 40px; }

.virtual_nursery_sec .each_baby .baby_details time, .virtual_nursery_sec .each_baby .baby_details span {
  display: block; }

.its_a_boy.virtual_nursery_sec h4 {
  color: #0088c6;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin: 30px 0; }

.its_a_boy.virtual_nursery_sec h5.baby_name {
  color: #0088c6;
  font-size: 24px;
  font-weight: bold; }

.its_a_girl.virtual_nursery_sec h4 {
  color: #d94c93;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin: 30px 0; }

.its_a_girl.virtual_nursery_sec h5.baby_name {
  color: #d94c93;
  font-size: 24px;
  font-weight: bold; }

.its_a_boy.virtual_nursery_sec a.by_rd_mr {
  padding: 10px 20px;
  border: 1px solid #0088c6;
  color: #0088c6;
  max-width: 150px;
  text-align: center;
  border-radius: 5px; }

.its_a_girl.virtual_nursery_sec a.by_rd_mr {
  padding: 10px 20px;
  border: 1px solid #d94c93;
  color: #d94c93;
  max-width: 150px;
  text-align: center;
  border-radius: 5px; }

select#sl_mon {
  padding: 5px 19px; }
/* GREETINGS */
.baby_greetings_wrap .birthday-card {
  margin: 40px auto;
  padding: 16px;
  max-width: 400px;
  background-color: white;
  text-align: center;
  box-shadow: 0 24px 40px -8px #d4d4d4;
  position: relative; }

.baby_greetings_wrap .birthday-card img {
  width: 100%; }

.baby_greetings_wrap .birthday-card .card-loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 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;
  background-color: #f0f0f0; }

.baby_greetings_wrap .birthday-card h1 {
  font-family: 'Concert One', cursive;
  font-size: 30px;
  margin: 5px 0;
  padding: 0 10px; }

.baby_greetings_wrap .birthday-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 21px; }

.baby_greetings_wrap .birthday-card h3 span {
  font-weight: bold;
  color: #004f7e; }
/* GREETINGS */
a.referral_covid_form {
  display: inline-block;
  background-color: #004f7e !important;
  border: 2px solid #004f7e !important;
  color: #fff !important;
  padding: 10px 25px; }

a.referral_covid_form:hover, a.referral_covid_form:focus, a.referral_covid_form:active {
  background-color: transparent !important;
  color: #004f7e !important; }

section#abv_hdr .alert {
  background-color: #3db072;
  color: #0a0a0a; }
/* color: #fff; */
section#abv_hdr .alert .banner_content p {
  margin: 0 !important; }

@media (min-width: 1024px) {
  div.facebook_area iframe {
    width: 240px !important; } }
/* banner link */
.banner_content a {
  color: #010e19 !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; }

.webchatWrap .webchatInit a {
  white-space: nowrap; }

.webchatWrap .webchatInit {
  bottom: 210px;
  top: auto;
  right: -72px;
  width: auto;
  transform: rotate(90deg); }

.webchatInit {
  position: fixed;
  bottom: 50%;
  top: 40%;
  right: 0;
  width: 18%;
  height: 56px;
  z-index: 999;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s; }

.webchatInit.open {
  height: 70vh;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  max-width: 350px;
  width: 100%; }

.webchatInit > a.webchatOpen {
  padding: 20px 20px;
  background-color: #0088c6;
  color: #fff;
  display: inline-block;
  text-align: center;
  float: right;
  font-size: 12px;
  font-weight: 600;
  min-height: 60px; }

.webchatInit.open > a.webchatOpen {
  display: block;
  float: left;
  width: 100%;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s; }

button#webchat-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px;
  border: 0;
  background: none;
  color: #fff;
  display: none; }

.webchatInit.open button#webchat-close {
  display: block; }

div#webchat {
  height: calc(100% - 60px);
  display: none; }

.webchatInit.open div#webchat {
  display: block; }

#webchat .webchat__stacked-layout__message .webchat__bubble__content {
  background-color: #e4e4e4 !important;
  color: #000 !important;
  border-radius: 15px;
  margin: 0 0px 0 12px;
  overflow: visible;
  min-height: auto; }

#webchat .webchat__stacked-layout__message.webchat__bubble--from-user .webchat__bubble__content {
  background-color: #004f7e !important;
  color: #fff !important;
  border-radius: 10px;
  margin: 0 6px 0 12px;
  overflow: visible;
  min-height: auto; }

#webchat .webchat__stacked-layout__message .webchat__bubble__content p {
  padding: 5px;
  margin: 0;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px; }

#webchat .webchat__stacked-layout__message .webchat__bubble__content a {
  color: #004f7e;
  font-weight: 600; }

#webchat .webchat__stacked-layout__message .webchat__bubble__content a:hover, #webchat .webchat__stacked-layout__message .webchat__bubble__content a:focus, #webchat .webchat__stacked-layout__message .webchat__bubble__content a:active {
  color: #0088c6; }

#webchat .webchat__stacked-layout__message.webchat__bubble--from-user .webchat__bubble__content p {
  padding: 7px 15px;
  margin: 0;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px; }

#webchat .webchat__stacked-layout__message.webchat__bubble--from-user .webchat__bubble__content a {
  color: #fff;
  font-weight: 600; }

#webchat .webchat__stacked-layout__message.webchat__bubble--from-user .webchat__bubble__content a:hover, #webchat .webchat__stacked-layout__message.webchat__bubble--from-user .webchat__bubble__content a:focus, #webchat .webchat__stacked-layout__message.webchat__bubble--from-user .webchat__bubble__content a:active {
  color: #0088c6; }

#webchat .webchat__stacked-layout__message, #webchat .webchat__stacked-layout__message.webchat__bubble--from-user {
  max-width: 90%; }

#webchat .webchat__stacked-layout__message .webchat__bubble__content .markdown, #webchat .webchat__stacked-layout__message.webchat__bubble--from-user .webchat__bubble__content {
  position: relative; }

#webchat .webchat__stacked-layout__message .webchat__bubble__content .markdown:before {
  content: "";
  border-bottom: #e4e4e4 solid 20px;
  border-left: transparent solid 20px;
  border-right: transparent solid 0;
  position: absolute;
  bottom: -1px;
  left: -10px; }

#webchat .webchat__stacked-layout__message.webchat__bubble--from-user .webchat__bubble__content:before {
  content: "";
  border-bottom: #004f7e solid 20px;
  border-right: transparent solid 20px;
  border-left: transparent solid 0;
  position: absolute;
  bottom: 0;
  right: -8px; }

#webchat .webchat__basic-transcript button {
  color: #323232 !important;
  font-size: 16px !important;
  font-weight: 600;
  border: 2px solid #0088c6 !important;
  padding: 7px 15px !important;
  vertical-align: middle; }

#webchat .webchat__basic-transcript button:hover, #webchat .webchat__basic-transcript button:focus, #webchat .webchat__basic-transcript button:active {
  color: #0088c6 !important; }

.webchatWrap .webchatInit a i {
  font-size: 14px;
  color: #fff;
  margin-right: 5px; }

@media screen and (min-width: 1200px) {
  /* .header_right {
   position: initial !important;
   } */
  /* MEGAMENU */
  /* 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: 30%;
      -webkit-transition: all ease 0.3s !important;
      -o-transition: all ease 0.3s !important;
      transition: all ease 0.3s !important;
      padding: 20px 0; }
    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; }
    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; }
    .menu_area .navbar {
      position: initial !important; }
    #mainmenu ul li.nav-item {
      position: initial !important; }
    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 {
      margin: 0 7px !important;
      padding-right: 15px;
      line-height: 1.4; }
    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; }
    #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: 1rem !important;
      font-weight: 500;
      height: auto;
      padding: 6px 5px !important; }
    #mainmenu ul.navbar-nav > li.nav-item.active > a {
      /* background-color: $site-bblue !important; */
      background-color: #035c6d !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; } }

@media screen and (max-width: 1199px) {
  .cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img {
    border: 3px solid #0088c6;
    border-radius: 100px;
    -webkit-mask-image: -webkit-radial-gradient(white, black); }

  .form_search button {
    z-index: 999; }

  li.rr_megamenu_column {
    width: 100%;
    float: none;
    bottom: 0; }

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

@media screen and (max-width: 991px) {
  .home_phy {
    margin: 0 0 30px; }

  .chm_txt ul {
    padding: 0; }

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

@media screen and (max-width: 767px) {
  .searchTable h1 {
    line-height: 0 !important; }

  .searchTable h1 a {
    font-size: 16px !important;
    color: #004f7e !important;
    line-height: 1.4 !important; } }

@media (min-width: 576px) and (max-width: 767px) {
  .finddoc_wrap form {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto !important; }

  .finddoc_wrap form input {
    width: calc(50% - 5px) !important;
    margin: 0 !important; }

  .finddoc_wrap select {
    width: calc(50% - 5px) !important;
    height: 39px !important;
    margin: 15px 0 !important; }

  .finddoc_wrap form button {
    display: block;
    width: 100%; } }

@media screen and (max-width: 575px) {
  li.rr_megamenu_column:not(:last-child) {
    border-right: none !important; }

  .webchatWrap .webchatInit.open {
    height: auto !important; }

  .finddoc_wrap select {
    height: 50px !important;
    margin: 0 0 15px; }

  #webchat .webchat__stacked-layout__message .webchat__bubble__content {
    width: 90%; }

  #webchat .webchat__stacked-layout__message .webchat__bubble__content .markdown {
    width: 100%; }

  .panel_body a {
    margin-top: 0 !important; }

  .container-fluid:not(.breadcrump) > .container {
    padding: 0; }

  .event_wrap .event_each {
    padding: 0px 0px; }

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

  .container-fluid > .container.inner_type .row .page_desc ul a {
    display: inline-block;
    word-break: break-all; } }
/* IE ONLY */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  video#home-vid {
    height: 100% !important; }

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