/*!
 * 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 #cb1141;
  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: #323232; }

.top_bar_left a.top_phone {
  padding-left: 5px;
  color: #fff;
  font-size: 1vw;
  font-weight: 500; }

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

a.top_mail i, a.top_twitter i, a.top_fb i {
  color: #fbae42;
  padding: 0 15px;
  font-size: 1.15vw; }

a.top_mail i:hover, a.top_twitter i:hover, a.top_fb i:hover {
  color: #5fdcab; }

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

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: #cb1141; }
/* #mainmenu ul li.nav-item.active a {
 color: #000;
 } */
#mainmenu ul li.nav-item a {
  color: #fff;
  padding: 10px 2.25vw !important;
  font-size: 1.25vw;
  /* font-family: 'Bebas Neue', cursive;
   text-transform: uppercase; */
  letter-spacing: 1px;
  font-weight: 500; }

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

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

.form_search {
  padding-left: 12.5vw; }

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 #fbae42 !important;
  border-radius: 0;
  color: #fff;
  margin: 0 !important;
  height: 3.25em;
  box-shadow: none !important;
  outline: 0 !important;
  font-size: 16px;
  min-width: 22em;
  padding: 10px; }

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

.form_search button {
  background: #fbae42;
  border: 2px solid #fbae42;
  border-radius: 0;
  color: #fff;
  font-size: 10px;
  height: 5.2em;
  outline: 0 !important;
  box-shadow: none !important;
  /* margin-left: -20px; */
  margin-left: -12px;
  width: 5.75em; }

.form_search button i.fa-search {
  font-size: 0.75vw; }

.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;
  margin: 0 2em; }

.logo_area img {
  width: 21vw; }
/* About */
.about_sec {
  padding: 75px 0; }

.about_title h2 {
  color: #fbae42;
  font-size: 3.5vw;
  font-family: 'Bebas Neue', cursive;
  position: relative;
  display: inline-block;
  padding-bottom: 30px; }
/* .about_title h2:before {
 width: 10%;
 position: absolute;
 content: '';
 background: #cb1441;
 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; */
  background-image: url(/files/images/rice-deco.png);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  width: 25%;
  content: '';
  height: 30px;
  left: 0;
  right: 0;
  bottom: 10px; }

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

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

.about_title h5 {
  color: #595959;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.75vw;
  font-weight: 500; }

.about_content {
  margin-top: 20px; }

.about_content a {
  color: #004583; }

.about_content a:hover {
  color: #cb1441; }

.about_content p {
  color: #595959;
  font-size: 1.1vw; }

.about_link {
  margin-top: 30px; }

a.learn_more {
  background: #fbae42;
  padding: 15px 3.25em;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 1.15vw;
  font-weight: 600;
  border: 2px solid #fbae42;
  margin-right: 15px;
  border-radius: 5px; }

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

a.contact_us {
  background: #5fdcab;
  padding: 15px 3.25em;
  color: #fff;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-size: 1.15vw;
  font-weight: 600;
  border: 2px solid #5fdcab;
  border-radius: 5px; }

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

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

.title_field h3:before, .title_white h3:before {
  width: 30%;
  position: absolute;
  content: '';
  background: #cb1441;
  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 #cb1441;
  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: #cb1441; }

a.donate {
  background: #fff;
  padding: 15px 55px;
  color: #004684;
  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: #cb1441;
  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: #f0f0f0;
  padding: 50px 0 0; }

.di_footercol h3 {
  font-family: 'Bebas Neue';
  /* color: #004684; */
  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: #cb1441; }

.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: #fbae42; }
/* slider link */
#dr_slider {
  position: relative; }

#cc_linkslider {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  padding: 0 0 35px !important;
  background: linear-gradient(rgba(207, 207, 207, 0) 0%, rgba(0, 13, 19, 0.612) 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 0; }

.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: #fbae42;
  border: 3px solid #fbae42;
  border-radius: 50%;
  width: 10em;
  height: 10em;
  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: 1.5vw;
  letter-spacing: 0;
  color: #fff;
  margin: 20px 0 0;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
  /* 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 #fbae42 !important; }

.cc_linkslider_wrap .cc_linkslider_item {
  margin: 60px -15px; }

.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: #5fdcab; }

.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: 1600px) {
  .home_phy {
    padding: 0 40px !important; }

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

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

  .form_search {
    padding-left: 20.5vw; } }

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

  #wrhs_header .logo_area img {
    width: 260px !important; }

  .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;
    width: 200px !important;
    padding: 20px 10px; }

  header#wrhs_home.sticky .form_search {
    padding-left: 4vw; } }

@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: 1200px) {
  .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 !important;
    margin-bottom: 20px; }

  .navbar-toggler-icon {
    color: #fbae42;
    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: #5fdcab !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;
    font-size: 16px; }

  .top_mail i, a.top_twitter i, a.top_fb i {
    color: #fbae42;
    padding: 0 20px 0 0;
    font-size: 18px !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: #cb1141 !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 #cb1141;
    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: #5fdcab; }

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

  .farmer_title h2, .about_title h2 {
    font-size: 34px !important; }

  .farmer_title h6, .about_title h5 {
    font-size: 28px !important;
    font-weight: 500 !important; }

  .about_content p, .form_col p, .farmer_title p {
    font-size: 18px !important; }

  .subscribe_btn, section#mob_id .form_col .form-control {
    font-size: 18px !important; }

  .page_inner p {
    font-size: 16px !important; } }

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

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

  .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: 86%;
    width: auto;
    float: left; }

  .form_search button i.fa-search {
    font-size: 12px; }

  .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 #cb1141;
    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; } }
/* RESPONSIVE */
.top_phone i, .top_bar_left a:hover {
  color: #fbae42; }

.menu_area .navbar {
  padding: 0px; }

.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: #fbae42;
  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: #cb1441 !important; }

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

.event_details a.event_more {
  color: #cb1441; }

.event_details a.event_more:hover {
  color: #004583; }

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

#di_footer .list-unstyled li.active a {
  color: #cb1441; }

.phy_education p {
  margin-bottom: 0; }

.form_col .form-control {
  font-size: 1vw !important; }

.page_inner p {
  font-size: 1vw; }

/* EASTSIDE RICE */
.service_col {
  background: #fbae42;
  min-height: 300px;
  text-align: center;
  padding: 75px 0;
  /* display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -ms-flex-line-pack: center;
   align-content: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column; */ }

.resource_col {
  background: #5fdcab;
  min-height: 300px;
  text-align: center;
  padding: 75px 0;
  /* display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -ms-flex-line-pack: center;
   align-content: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column; */ }

.mob_col {
  background: #fbae42;
  text-align: center;
  /* display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -ms-flex-line-pack: center;
   align-content: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column; */
  padding: 90px 0; }

.mob_col img {
  width: 250px; }

.form_col {
  background: #5fdcab;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 90px 50px; }

.service_col h3 {
  font-size: 40px;
  font-family: 'Bebas Neue';
  color: #fff;
  text-align: center; }

.resource_col h3 {
  font-size: 40px;
  font-family: 'Bebas Neue';
  color: #fff;
  text-align: center; }

#farmer_id {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

.form_col p {
  color: #fff;
  font-size: 1.65vw;
  font-weight: 600;
  font-style: italic; }

.farmer_title h2 {
  color: #fff;
  font-size: 3.5vw;
  font-family: 'Bebas Neue', cursive;
  position: relative;
  display: inline-block;
  /* padding-bottom: 30px; */ }

.farmer_title h2 span {
  color: #fbae42; }

.farmer_title {
  text-align: center; }

.farmer_title h6 {
  color: #fff;
  font-size: 1.75vw;
  font-weight: 700;
  margin-top: 30px;
  padding-top: 15px;
  padding-bottom: 15px; }

.farmer_title p {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 600;
  font-style: italic; }
/* EASTSIDE RICE */
#board h3 {
  font-family: 'Bebas Neue';
  color: #004684 !important;
  font-size: 28px;
  padding-bottom: 5px;
  font-weight: normal; }

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

.form_col .form-control {
  background: none;
  border: unset;
  margin-bottom: 10px;
  border-bottom: 1px solid #55ce9e;
  border-radius: inherit; }

.subscribe_btn {
  float: left;
  background: #fff;
  padding: 10px 2.35em;
  border: 1px solid #fff;
  font-weight: 700;
  margin-top: 20px;
  font-size: 1.1vw; }

.subscribe_btn:hover {
  border: 1px solid #fff;
  background: #5fdcab; }

.google_play {
  margin: 0 10px; }

.farmer_title h2 {
  position: relative; }

.farmer_title h2:after {
  background-image: url(/files/images/rice-deco.png);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  width: 100%;
  content: '';
  height: 30px;
  left: 0;
  right: 0;
  bottom: -30px; }
/* footer */
#di_footer .footer_container .di_footercol .address {
  line-height: 2;
  display: table; }

#di_footer .footer_container .di_footercol .address i {
  display: table-cell;
  padding-right: 10px;
  font-size: 15px; }

#di_footer .footer_container .di_footercol .foot_phone {
  line-height: 1;
  display: table; }

#di_footer .footer_container .di_footercol .foot_phone i {
  display: table-cell;
  padding-right: 10px; }

#di_footer .footer_container .di_footercol .email_area {
  line-height: 3;
  display: table; }

#di_footer .footer_container .di_footercol .email_area i {
  display: table-cell;
  padding-right: 10px; }

#di_footer .footer_container .di_footercol .email_area a {
  color: #000; }

#di_footer .footer_container .di_footercol .email_area a:hover {
  color: #fbae42; }

#di_footer .footer_container .di_footercol .foot_phone a {
  color: #000; }

#di_footer .footer_container .di_footercol .foot_phone a:hover {
  color: #fbae42; }

.di_footercol img {
  /* background: #eceaea; */
  margin-left: -17px; }
/* footer */
@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; } }

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

  .mob_only_js .form_search {
    padding-left: 0 !important; } }

@media (max-width: 991px) {
  .about_title h2 {
    margin-top: 20px; }

  .di_footercol h3 {
    margin-top: 15px; } }

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

  .header_right .menu_area button. bar-toggler {
    top: -95px !important; }

  .cc_linkslider_wrap .cc_linkslider_item h6 {
    font-size: 19px !important; } }

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

  .cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img {
    width: 150px !important;
    height: 150px !important; }

  .header_right .menu_area button.navbar-toggler {
    top: -95px !important; }

  #wrhs_home .header_right .menu_area button.navbar-toggler {
    top: -75px !important; } }

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

  .form_col {
    padding: 20px; } }

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

  .about_title h2 {
    font-size: 50px; }

  .form_col {
    padding: 20px; }

  .app_store img {
    margin-top: 20px; } }

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

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

span.deleteicon {
  position: relative; }

span.deleteicon span {
  position: absolute;
  display: block;
  top: 0;
  right: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer; }

span.deleteicon span:after {
  content: "\f00d";
  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;
  color: #a7b2bf;
  line-height: 1;
  opacity: 0; }

span.deleteicon input:focus + span:after {
  opacity: 1; }

span.deleteicon input {
  padding-right: 0;
  box-sizing: border-box; }

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

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

@media screen and (min-width: 1920px) {
  #cc_linkslider .cc_linkslider_wrap .slick-track .slick-slide {
    min-width: 488px; } }

@media screen and (min-width: 1200px) {
  #cc_linkslider .cc_linkslider_wrap .slick-track {
    width: 100vw !important;
    display: flex;
    justify-content: space-between; }

  .mob_col img {
    width: 30vw;
    height: auto; } }

@media screen and (min-width: 1440px) {
  header#wrhs_header .logo_area img {
    width: 260px !important; } }

@media (min-width: 1200px) and (max-width: 1439px) {
  .form_search {
    padding-left: 0; }

  #mainmenu ul li.nav-item a {
    padding: 10px 1.6vw !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .logo_area img {
    width: 110px !important;
    margin-bottom: 20px; }

  .header_right .menu_area button.navbar-toggler {
    top: -60px; } }

#wrhs_header .logo_area img {
  width: 350px;
  padding-bottom: 25px;
  padding-top: 25px; }

.logo_area img {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s; }

.cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img img {
  max-width: 105px;
  max-height: 130px; }
/* IE ONLY CSS */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  header#wrhs_home.sticky .logo_area img {
    max-width: 200px !important; }

  .logo_area img {
    max-width: 360px; }

  .form_col .form-control {
    border-top: 0;
    border-left: 0;
    border-right: 0; }

  #cc_linkslider {
    bottom: 0px; } }

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: 21px;
  top: auto;
  right: 105px;
  width: auto; }

.webchatInit {
  position: fixed;
  /* bottom: 20px; */
  /* right: 110px; */
  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: 540px; */
  height: 70vh;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  max-width: 380px;
  width: 100%; }

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

.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: #004684 !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: #004684;
  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: #cb1441; }

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

#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: #004684 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 #cb1141 !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: #cb1441 !important; }

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

@media screen and (min-width: 1600px) {
  .dr_slide_image img {
    width: 100%; } }

@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 ); */
      background: rgba(46, 33, 32, 0.57);
      background: -moz-linear-gradient(top, rgba(46, 33, 32, 0.57) 0%, rgba(33, 22, 20, 0.26) 36%, rgba(33, 22, 20, 0) 67%);
      background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(46, 33, 32, 0.57)), color-stop(36%, rgba(33, 22, 20, 0.26)), color-stop(67%, rgba(33, 22, 20, 0)));
      background: -webkit-linear-gradient(top, rgba(46, 33, 32, 0.57) 0%, rgba(33, 22, 20, 0.26) 36%, rgba(33, 22, 20, 0) 67%);
      background: -o-linear-gradient(top, rgba(46, 33, 32, 0.57) 0%, rgba(33, 22, 20, 0.26) 36%, rgba(33, 22, 20, 0) 67%);
      background: -ms-linear-gradient(top, rgba(46, 33, 32, 0.57) 0%, rgba(33, 22, 20, 0.26) 36%, rgba(33, 22, 20, 0) 67%);
      background: linear-gradient(to bottom, rgba(46, 33, 32, 0.57) 0%, rgba(33, 22, 20, 0.26) 36%, rgba(33, 22, 20, 0) 67%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2e2120', endColorstr='#211614', 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: 10px 2vw !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: 40%;
      -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; }
    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: #004684;
      -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: #fbae42; }
    #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: #5fdcab !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: #fff !important; } }

@media screen and (max-width: 1199px) {
  .cc_linkslider_wrap .cc_linkslider_item .cc_linksitem_img {
    border: 3px solid #fbae42;
    width: 12em;
    height: 12em;
    -webkit-mask-image: -webkit-radial-gradient(white, black); }

  .cc_linkslider_wrap .cc_linkslider_item {
    margin: 60px 0px !important; }

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

  a.learn_more, a.contact_us {
    font-size: 16px !important; } }

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

  .searchTable h1 a {
    font-size: 16px !important;
    color: #004583 !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; }

  .cc_linkslider_wrap .cc_linkslider_item {
    margin: 25px 0px !important; }

  #farmer_id {
    padding: 50px 0 !important;
    background-position: left top !important; } }
/* 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; } }
