@charset "UTF-8";
.btn-filled {
  box-shadow: 0px 0px 5px 0px #d397b9;
  border-radius: 4px;
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 14px;
  line-height: 33.6px;
  background-color: #ae4a84;
  color: #FFFFFF;
  border: 1px solid #ae4a84;
}
.btn-filled:hover {
  color: #ae4a84;
  background-color: #FFFFFF;
}

.btn-outline {
  box-shadow: 0px 0px 5px 0px #d397b9;
  border-radius: 4px;
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 14px;
  line-height: 33.6px;
  background-color: #FFFFFF;
  color: #ae4a84;
  border: 1px solid #ae4a84;
}
.btn-outline:hover {
  color: #FFFFFF;
  background-color: #ae4a84;
}

.btn-empty {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: transparent;
  color: #393185;
  border: none;
}
.btn-empty:hover {
  color: #211d4e;
}

@keyframes bounce {
  20%, 53%, 80%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
  animation-duration: 1.25s;
}

@keyframes flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
  animation-duration: 1.25s;
}

@keyframes pulse {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.pulse {
  animation-name: pulse;
  animation-duration: 1.25s;
}

@keyframes rubberBand {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
  animation-duration: 1.25s;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
  animation-duration: 1.25s;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
  animation-duration: 1.25s;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
  animation-duration: 1.25s;
}

@keyframes tada {
  from, to {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
.tada {
  animation-name: tada;
  animation-duration: 1.25s;
}

@keyframes wobble {
  from, to {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
}
.wobble {
  animation-name: wobble;
  animation-duration: 1.25s;
}

@keyframes jello {
  11.1%, from, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
  animation-duration: 1.25s;
}

@keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
  animation-duration: 1.25s;
}

@keyframes bounceInDown {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
  animation-duration: 1.25s;
}

@keyframes bounceInLeft {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
  animation-duration: 1.25s;
}

@keyframes bounceInRight {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
  animation-duration: 1.25s;
}

@keyframes bounceInUp {
  60%, 75%, 90%, from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
  animation-duration: 1.25s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1.25s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1.25s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1.25s;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1.25s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1.25s;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
  animation-duration: 1.25s;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
  animation-duration: 1.25s;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
  animation-duration: 1.25s;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
  animation-duration: 1.25s;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
  animation-duration: 1.25s;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
  animation-duration: 1.25s;
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
  animation-duration: 1.25s;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
  animation-duration: 1.25s;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
  animation-duration: 1.25s;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
  animation-duration: 1.25s;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
  animation-duration: 1.25s;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
  animation-duration: 1.25s;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
  animation-duration: 1.25s;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 1.25s;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
  animation-duration: 1.25s;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
  animation-duration: 1.25s;
}

/* element */
.list-unstyle {
  list-style: none;
}

.list-inline {
  display: inline-block;
}

.list-inline li {
  display: inline-block;
}

.alert-danger {
  color: #772b35;
  background-color: #fadddd;
  border-color: #f8cfcf;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.score-0 {
  width: 0% !important;
}

.score-10 {
  width: 10% !important;
}

.score-20 {
  width: 20% !important;
}

.score-30 {
  width: 30% !important;
}

.score-40 {
  width: 40% !important;
}

.score-50 {
  width: 50% !important;
}

.score-60 {
  width: 60% !important;
}

.score-70 {
  width: 70% !important;
}

.score-80 {
  width: 80% !important;
}

.score-90 {
  width: 90% !important;
}

.score-100 {
  width: 100% !important;
}

table {
  border-collapse: collapse;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #3c4b64;
}

.table-striped thead {
  background-color: #393185;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #8eb6d72e;
}

.table th, .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid;
  border-top-color: #d8dbe0;
  text-align: center;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid;
  border-bottom-color: #d8dbe0;
  color: #FFFFFF;
}

/* element */
/* header-top */
.header-top {
  display: none;
  padding: 0 16px;
  background-color: #393185;
  background-image: linear-gradient(#97999b, #6e7478);
}

.header-top-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-top-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.header-top-left > a {
  display: flex;
}

.header-top-left span {
  line-height: 40px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  color: #FFFFFF;
  margin-right: 16px;
}

.header-top-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.header-top-right span {
  overflow: hidden;
  cursor: pointer;
  font-size: 14px;
  color: #FFFFFF;
  margin-left: 8px;
}

.header-top-right .fa-phone:before {
  margin-right: 2px;
  font-size: 12px;
}

.header-top-right .fa-envelope:before {
  margin-right: 2px;
  font-size: 12px;
}

/* header-top */
/* header */
.header-bar {
  margin-bottom: 0px;
}

.header {
  display: none;
  justify-content: center;
  align-items: center;
  height: 70px;
  background-color: #ffffffa3;
  position: relative;
  z-index: 1000;
}

.logo {
  padding: 8px;
}

.logo a {
  display: flex;
}

.logo a img {
  height: 64px;
}

.search-bar {
  margin-top: 32px;
  margin-bottom: 32px;
  width: 288px;
  position: relative;
}

.search {
  width: 100%;
  height: 40px;
  background-color: #EDEDED;
  border: 1px solid #CBCBCB;
  box-shadow: 0px 4px 4px rgba(117, 117, 117, 0.25);
  color: #757575;
  padding: 8px 16px;
}

.search-bar i {
  position: absolute;
  left: 9px;
  top: 8px;
  width: 24px;
  height: 24px;
  text-align: center;
  vertical-align: middle;
  color: #393185;
  font-size: 20px;
}

/* header */
/* menu bar mob */
.menu-content {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2500;
}

.menu-content .submenu-wrap {
  top: 30px !important;
}

.header-login {
  display: flex;
}

.menu-bar-mob {
  width: 100%;
  background-color: #393185;
}

.menu-bar-mob-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-contain {
  padding: 8px;
}

.title-mob {
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: bold;
}

.logo-contain a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-mob {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.menu-mob > a {
  display: flex;
}

.menu-mob span {
  line-height: 40px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  color: #FFFFFF;
  margin-right: 24px;
}

.menu-mob > a:hover {
  color: #fff;
}

.menu-icon {
  position: relative;
  margin-bottom: 6px;
  margin-top: 6px;
  width: 18px;
  height: 2px;
  display: inline-block;
}

.menu-icon:before {
  position: absolute;
  top: -6px;
  left: 0px;
  width: 18px;
  height: 2px;
  display: inline-block;
  content: "\f0c9";
  font-family: FontSolid;
}

.menu-label {
  margin-right: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* menu bar mob */
/* menu bar */
.menu-bar {
  padding: 9px 8px;
  display: none;
}

.menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.menu > li > a {
  margin: 12px;
  font-size: 14px;
  color: #25272e;
}

.menu > li:not(:last-child) > a:after {
  margin-right: 16px;
}

.menu > li {
  position: relative;
}

.menu > li:hover:after {
  opacity: 1;
}

.menu > li.has-submenu:hover:before {
  opacity: 1;
}

.menu > li a:hover {
  color: #393185;
}

.has-submenu {
  position: relative;
}

.submenu-wrap {
  display: block;
  visibility: hidden;
  position: absolute;
  top: 45px;
  right: 0px;
  width: 200px;
  background-color: #ffffffa3;
  text-align: right;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  z-index: 500;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s linear;
}

.sticky .submenu-wrap {
  top: 35px !important;
}

.has-submenu:hover .submenu-wrap {
  visibility: visible;
  opacity: 1;
}

.submenu-wrap ul li a, .submenu-wrap ul li a span {
  position: relative;
  display: block;
  word-break: break-word;
  line-height: 24px;
  font-size: 12px !important;
  color: #25272e !important;
  padding: 4px 8px;
}

.submenu-wrap ul li a:hover {
  background-color: #393185 !important;
  color: #FFFFFF !important;
}

.has-submenu a span {
  margin-right: 4px;
}

/* menu bar */
/* mega menu bar */
.has-mega a span {
  margin-right: 4px;
}

.mega-menu {
  display: block;
  visibility: hidden;
  position: absolute;
  top: 45px;
  right: 0px;
  width: 960px;
  background-color: #FFFFFF;
  border-radius: 0px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  z-index: 500;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s linear;
  max-height: 75vh;
  overflow-y: auto;
  transform: translateX(50%);
}

.sticky .mega-menu {
  top: 35px !important;
}

.has-mega:hover .mega-menu {
  visibility: visible;
  opacity: 1;
}

.mega-parent {
  margin: 10px 0;
  position: relative;
}

.mega-parent a {
  padding-bottom: 10px;
  color: #25272e;
  font-size: 12px;
  font-weight: bold;
  display: block;
  padding-left: 0px;
  position: relative;
}

.mega-parent a:hover {
  background-color: #FFFFFF !important;
  color: #25272e !important;
}

.mega-parent a:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: #393185;
  opacity: 0;
  border-radius: 1.5px;
  transition-property: all;
  transition-duration: 0.3s;
}

.mega-parent a:hover:after {
  opacity: 1;
}

.mega-body {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 25px;
  min-height: 215px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mega-body div {
  margin-left: 20px;
  display: inline-block;
  vertical-align: top;
  flex: 0 0 200px;
  max-width: 200px;
}

.mega-body ul {
  display: block;
}

.mega-body li a {
  display: flex;
  word-break: break-word;
  line-height: 18px;
  font-size: 12px;
  color: #757575;
  padding: 5px;
}

.mega-body li a:hover {
  background-color: #211d4e;
  color: #FFFFFF;
}

/* mega menu bar */
/* menu-mobile */
.menu-mobile {
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  width: 300px;
  background-color: #fff;
  z-index: 2500;
  overflow: hidden;
  overflow-y: auto;
  transform: translate3d(-350px, 0, 0);
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.menu-mobile-open {
  transform: none;
}

.menu-mobile ul {
  line-height: 1.4;
}

.menu-mobile ul li {
  display: block;
  position: relative;
}

.menu-mobile li a {
  padding: 5px 20px;
  min-height: 50px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  letter-spacing: 0.2px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  color: #2d2a2a;
}

.menu-mobile li:hover > a {
  background-color: rgba(0, 0, 0, 0.04);
}

.icon-sub-menu-hide {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 0;
  width: 50px;
  height: 50px;
  border-right: 1px solid rgba(129, 129, 129, 0.2);
  color: #2d2a2a;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.icon-sub-menu-open {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 0;
  width: 50px;
  height: 50px;
  border-right: 1px solid rgba(129, 129, 129, 0.2);
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: #393185;
  color: #fff;
}

.icon-sub-menu-hide:after {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  content: "\f114";
  font-family: Wood;
  transform: rotate(0deg);
}

.icon-sub-menu-open:after {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  content: "\f114";
  font-family: Wood;
  transform: rotate(90deg);
}

.submenu-mobile-open {
  visibility: visible;
  display: block;
}

.submenu-mobile-hide {
  visibility: hidden;
  display: none;
  transition: visibility 0.2s ease, height 0.2s ease;
}

.submenu-opened > a {
  background-color: rgba(0, 0, 0, 0.04);
}

/* menu-mobile */
/* sticky */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #393185;
  background-image: linear-gradient(#97999b, #6e7478);
  height: 50px !important;
  z-index: 1000;
}

.sticky .menu > li > a {
  color: #FFFFFF !important;
}

.sticky .logo a img {
  height: 48px !important;
}

/* sticky */
/* banner */
.banner-carousel, .subbanner {
  margin-bottom: 20px !important;
}

.banner img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: 0% 50%;
  border-radius: 20px;
  box-shadow: 0 0 5px 1px #ccc;
}

.banner-item {
  text-align: center;
}

.subbanner-triangle {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
}

.subbanner-triangle .side-right {
  flex: 0 0 100%;
  max-width: 100%;
}

.subbanner-triangle .side-left {
  flex: 0 0 100%;
  max-width: 100%;
}

.subbanner-triangle .side-left .side-left-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
}

.subbanner-image > a {
  display: block;
}

.subbanner2, .subbanner3 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.subbanner3 > div {
  flex: 0 0 100%;
  max-width: 100%;
}

.subbanner2 > div {
  flex: 0 0 100%;
  max-width: 100%;
}

.subbanner-image {
  padding: 5px;
  width: 100%;
  height: 100%;
}

.subbanner-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

.subbanner-image a {
  overflow: hidden;
}

.subbanner-image:hover img {
  transform: scale(1.08);
}

/* banner */
/* slider*/
.slider-wrapper {
  height: 30px;
  width: 100%;
  overflow: hidden;
  padding: 10px;
}

#slider-round {
  height: 5px;
}

#slider-round .noUi-connect {
  background: #393185;
}

#slider-round .noUi-handle {
  height: 20px;
  width: 20px;
  top: -10px;
  right: -10px;
  /* half the width */
  border-radius: 10px;
  background: #393185;
  border: none;
  box-shadow: none;
}

#slider-round .noUi-handle:after, #slider-round .noUi-handle:before {
  background: transparent;
}

/* slider*/
.owl-dots {
  position: absolute;
  bottom: 0px;
  right: 50%;
  transform: translateX(50%);
  background-color: #000;
  opacity: 0.5;
  border-radius: 1px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #ae4a84;
}

/* banner-slide */
.slideshow-container {
  position: relative;
  margin: auto;
}

.my-slides {
  display: none;
}

.slide-prev, .slide-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.slide-prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.slide-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.slide-prev:hover, .slide-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.caption-text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.number-text {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.slide-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slide-dot:hover {
  background-color: #717171;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* banner-slide */
/* slick */
.slick-prev, .slick-next {
  cursor: pointer;
  position: absolute;
  width: 25px;
  height: 25px;
  border: 0;
  top: calc(50% - 10px);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(58, 55, 78, 0.25);
  font-size: 10px;
  background: #393185;
  user-select: none;
  z-index: 2;
  color: #b7bbc1;
}

.slick-prev i, .slick-next i {
  font-style: normal;
  font-size: 16px;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-prev:hover, .slick-next:hover {
  /* background-color: rgba(0,0,0,0.8); */
}

/* .slick-list{ */
/* position: relative; */
/* top: 0; */
/* left: 0; */
/* display: block; */
/* margin-top: 10px; */
/* opacity: 1;  */
/* } */
/* .slick-list ul{ */
/* list-style:none; */
/* padding:0; */
/* display:flex; */
/* justify-content:flex-start; */
/* flex-wrap:nowrap; */
/* } */
/* .slick-list ul li{ */
/* flex:0 0 50%; */
/* max-width:50%; */
/* padding-left:5px; */
/* padding-right:5px; */
/* background-color:$primary_color; */
/* } */
/* .slick-slide { */
/* min-height: 1px; */
/* cursor: pointer; */
/* display:none !important; */
/* } */
/* .slick-slide.active{ */
/* display:flex !important; */
/* } */
/* slick */
/* parallax */
.parallax-image {
  background-attachment: fixed;
  background-image: url(../img/parallax.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
  margin-bottom: 30px;
  width: 100%;
  color: #fff;
}

.parallax-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.parallax-body h2 {
  margin-bottom: 13px;
  font-size: 23px;
}

.parallax-body p {
  line-height: 24px;
  margin-bottom: 30px;
}

.parallax-body a {
  text-align: center;
  line-height: 35px;
  color: #fff;
  font-size: 12px;
  background: #E0A62F;
  display: inline-block;
  vertical-align: middle;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-right: 25px;
  padding-left: 25px;
  font-weight: 600;
  letter-spacing: 1.5;
}

/* parallax */
/* intro */
.intro-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
  background-color: #fff;
  color: #000;
}

.intro-content a {
  text-align: center;
  line-height: 35px;
  color: #fff;
  font-size: 12px;
  background: #E0A62F;
  display: inline-block;
  vertical-align: middle;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-right: 25px;
  padding-left: 25px;
  font-weight: 600;
  letter-spacing: 1.5;
}

/* intro */
/* breadcrumb */
.breadcrumb-wrapper {
  background-image: url("../img/pageheader.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: -5px;
  margin-right: -5px;
}

.breadcrumb-conent {
  background-color: #7c73cc;
  height: 80px;
  padding-top: 8px;
  text-align: center;
}

.breadcrumb-conent h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 22px;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px;
}

.breadcrumb > li > a {
  color: #EDEDED;
  margin: 5px;
  font-size: 12px;
}

.breadcrumb > li:after {
  content: "/";
  color: #EDEDED;
}

.breadcrumb > li:last-child:after {
  content: "";
}

/* breadcrumb */
.service {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.service li {
  flex: 0 0 50%;
  max-width: 50%;
}

.service-header {
  text-align: center;
  font-size: 18px;
  color: #211d4e;
  font-family: RSBold;
}

.service-underline {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 8px;
}

.service-underline span {
  width: 100px;
  border-bottom: 1px solid #211d4e;
}

.service-content {
  position: relative;
  margin: 8px 12px;
}

.service-content a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.service-content a:hover {
  transform: scale(1.1);
}

.service-content a img {
  width: 100%;
}

.service-content a h6 {
  font-size: 16px;
  font-family: RSBold;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
}

.service-content .img-overlay-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
  background-color: #757575;
}

.service-content .img-overlay-bg:hover {
  opacity: 0;
}

.info {
  margin-top: 16px;
  position: relative;
  margin-bottom: 16px;
}

.info:before {
  content: "";
  background-color: #7c73cc26;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

.info-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.info-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
}

.info-content {
  padding-top: 42px;
  padding-bottom: 24px;
  padding-right: 78px;
  background-color: rgba(255, 255, 255, 0.5);
}

.info-content:first-child {
  margin-left: 6px;
}

.info-content:last-child {
  margin-right: 6px;
}

.info-content h2 {
  font-size: 18px;
  font-family: RSBold;
  color: #393185;
  margin-bottom: 24px;
}

.info-content ul {
  display: flex;
  flex-direction: column;
}

.info-content ul li h5 {
  margin-bottom: 12px;
  font-size: 16px;
  font-family: RS;
  color: #14112f;
}

.info-content ul li h5:before {
  content: "\f104";
  font-family: FontSolid;
  position: relative;
  width: 16px;
  height: 16px;
  color: #211d4e;
  display: inline-flex;
  vertical-align: sub;
}

.equipment {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 24px;
  padding-right: 8px;
  padding-left: 8px;
  border-radius: 8px;
  border: 1px solid #CBCBCB;
}

.line-top {
  text-align: center;
}

.equipment h3 {
  margin-bottom: 16px;
  text-align: center;
  font-size: 18px;
  color: #211d4e;
  font-family: RSBold;
}

.equipment p {
  text-align: justify;
  font-size: 14px;
  color: #25272e;
  margin: 0;
  margin-bottom: 32px;
  line-height: 30px;
}

.equipment-btn a:first-child {
  margin-left: 20px;
}

.equipment-btn a:last-child {
  margin-right: 20px;
}

.news {
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: -4px;
  margin-right: -4px;
}

.news-content {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
  border-radius: 8px;
  transition: all 0.5s ease 0s;
}

.news-content:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1), 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.news-content img {
  border-radius: 8px 8px 0px 0px;
}

.news-content h4 {
  margin: 8px 0;
  text-align: center;
  height: 60px;
  padding: 0 8px;
}

.news-content h4 a {
  font-size: 14px;
  color: #393185;
}

.news-content p {
  font-size: 12px;
  color: #25272e;
  text-align: justify;
  padding: 0 16px;
  line-height: 22px;
  margin: 0;
}

.news-content span a {
  float: left;
  margin-left: 4px;
}

.newslist-head {
  border-bottom: 1px solid #CBCBCB;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newslist-head:before {
  content: "";
  width: 200px;
  height: 2px;
  background-color: #393185;
  position: absolute;
  bottom: 0;
  right: 0;
}

.newslist-head h2 {
  color: #211d4e;
  font-size: 18px;
  margin: 0;
  padding-top: 8px;
}

.newslist > ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.newslist-content {
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #CBCBCB;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.newslist-content-img {
  flex: 0 0 100%;
  max-width: 100%;
}

.newslist-content-img img {
  width: 100%;
}

li:hover .newslist-content-img img {
  -webkit-filter: brightness(115%) contrast(115%);
  filter: brightness(115%) contrast(115%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.newslist-content-note {
  padding: 16px 8px;
  flex: 0 0 100%;
  max-width: 100%;
}

.newslist-content-note p {
  font-size: 14px;
  color: #25272e;
  line-height: 28px;
  margin: 24px 0;
  text-align: justify;
}

.newslist-content-note h2 > a {
  font-size: 16px;
  color: #393185;
}

li:hover .newslist-content-note h2 > a {
  color: #14112f;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.newslist-content-note span {
  float: left;
}

.mypageination {
  text-align: center;
  margin-bottom: 12px;
}

.mypageination ul {
  display: flex;
  flex-direction: row;
  justify-content: center !important;
}

.mypageination li a {
  width: 32px;
  height: 32px;
  color: #14112f;
  border: 1px solid #14112f;
  background-color: #FFFFFF;
  margin: 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-family: RSBold;
}

.mypageination li a:hover {
  background-color: #EDEDED;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.mypageination li a.active {
  background-color: #14112f;
  color: #FFFFFF;
}

/* news-info */
.news-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}

.news-header-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 16px;
}

.news-header {
  flex: 0 0 100%;
  max-width: 100%;
}

.news-image {
  text-align: center;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}

.news-date {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 14px;
  color: #14112f;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 4px;
}

.news-image img {
  width: 100% !important;
}

.news-title-wrapper {
  padding: 0 8px;
}

.news-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.news-search {
  position: relative;
}

.news-search input {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  width: 100%;
  padding: 8px 12px;
}

.news-search button {
  position: absolute;
  left: -1px;
  bottom: -1px;
  background-color: #393185;
  height: 100%;
  color: #fff;
  border: none;
  width: 50px;
  cursor: pointer;
  border-radius: 5px;
}

.news-search button:before {
  font-family: FontSolid;
  font-style: normal;
  content: "\f002";
  font-size: 20px;
  color: #fff;
}

.news-content-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
}

.news-cat-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
}

.news-search-wrapper, .news-last, .news-category {
  padding: 16px;
}

.news-last h3, .news-category h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-size: 18px;
  color: #25272e;
}

.news-category ul li, .news-last ul li {
  margin: 10px 0;
}

.news-last ul li {
  display: flex;
  flex-direction: column;
}

.news-last ul li span {
  margin-top: 4px;
  font-size: 12px;
  color: #757575;
}

.news-category ul a, .news-last ul a {
  color: #25272e;
  font-size: 14px;
}

.news-category ul a:hover, .news-last ul a:hover {
  color: #393185;
}

.news-shortnote {
  margin-bottom: 10px;
  line-height: 30px;
  text-align: justify;
}

.news-body {
  padding: 0 10px;
}

.news-body ul {
  line-height: 30px;
  list-style: disc;
}

.news-body h1, .news-body h2, .news-body h3, .news-body h4, .news-body h5, .news-body h6, .news-body p {
  margin-bottom: 10px;
  line-height: 30px;
  text-align: justify;
}

.news-body h1 {
  font-size: 20px;
}

.news-body h2 {
  font-size: 18px;
}

.news-body h3, h4, h5, h6 {
  font-size: 16px;
}

.news-body p {
  font-size: 14px;
}

.news-body img {
  max-width: 100%;
  height: auto;
}

/* news-info */
.datanews {
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: -4px;
  margin-right: -4px;
}

.datanews-content {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
  border-radius: 8px;
  border: 1px solid #757575 !important;
}

.datanews-content img {
  border-radius: 8px 8px 0px 0px;
}

.datanews-content h4 {
  margin: 8px 0;
  text-align: center;
  height: 60px;
  padding: 0 8px;
}

.datanews-content h4 a {
  font-size: 14px;
  color: #393185;
}

.datanews-content p {
  font-size: 12px;
  color: #25272e;
  text-align: justify;
  padding: 0 16px;
  line-height: 22px;
  margin: 0;
}

.datanews-content span a {
  float: left;
  margin-left: 4px;
}

.blog {
  margin-top: 40px;
  margin-left: -4px;
  margin-right: -4px;
}

.blog-content {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
  border-radius: 8px;
  transition: all 0.5s ease 0s;
}

.blog-content:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1), 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.blog-content img {
  border-radius: 8px 8px 0px 0px;
}

.blog-content h4 {
  margin: 24px 0;
  text-align: center;
  height: 60px;
  padding: 0 8px;
}

.blog-content h4 a {
  font-size: 14px;
  font-family: RSBold;
  color: #393185;
}

.blog-content p {
  font-size: 12px;
  color: #25272e;
  text-align: justify;
  padding: 0 16px;
  line-height: 22px;
  margin: 0;
}

.blog-content span a {
  float: left;
  margin-left: 4px;
}

.bloglist-head {
  border-bottom: 1px solid #CBCBCB;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bloglist-head:before {
  content: "";
  width: 200px;
  height: 2px;
  background-color: #393185;
  position: absolute;
  bottom: 0;
  right: 0;
}

.bloglist-head h2 {
  color: #393185;
  font-size: 18px;
  margin: 0;
  padding-top: 8px;
}

.bloglist > ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bloglist-content {
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #CBCBCB;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.bloglist-content-img {
  flex: 0 0 100%;
  max-width: 100%;
}

.bloglist-content-img img {
  width: 100%;
}

li:hover .bloglist-content-img img {
  -webkit-filter: brightness(115%) contrast(115%);
  filter: brightness(115%) contrast(115%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.bloglist-content-note {
  padding: 16px 8px;
  flex: 0 0 100%;
  max-width: 100%;
}

.bloglist-content-note p {
  font-size: 14px;
  color: #25272e;
  line-height: 28px;
  margin: 24px 0;
  text-align: justify;
}

.bloglist-content-note h2 > a {
  font-size: 16px;
  color: #393185;
}

li:hover .bloglist-content-note h2 > a {
  color: #14112f;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.bloglist-content-note span {
  float: left;
}

.mypageination {
  text-align: center;
  margin-bottom: 12px;
}

.mypageination ul {
  display: flex;
  flex-direction: row;
  justify-content: center !important;
}

.mypageination li a {
  width: 32px;
  height: 32px;
  color: #14112f;
  border: 1px solid #14112f;
  background-color: #FFFFFF;
  margin: 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-family: RSBold;
}

.mypageination li a:hover {
  background-color: #EDEDED;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.mypageination li a.active {
  background-color: #14112f;
  color: #FFFFFF;
}

/* blog-info */
.blog-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}

.blog-header-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 16px;
}

.blog-header {
  flex: 0 0 100%;
  max-width: 100%;
}

.blog-image {
  text-align: center;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}

.blog-date {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 14px;
  color: #14112f;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 4px;
}

.blog-image img {
  max-width: 100% !important;
}

.blog-title-wrapper {
  padding: 0 8px;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.blog-search {
  position: relative;
}

.blog-search input {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  width: 100%;
  padding: 8px 12px;
}

.blog-search button {
  position: absolute;
  left: -1px;
  bottom: -1px;
  background-color: #393185;
  height: 100%;
  color: #fff;
  border: none;
  width: 50px;
  cursor: pointer;
  border-radius: 5px;
}

.blog-search button:before {
  font-family: FontSolid;
  font-style: normal;
  content: "\f002";
  font-size: 20px;
  color: #fff;
}

.blog-content-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
}

.blog-cat-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
}

.blog-search-wrapper, .blog-last, .blog-category {
  padding: 16px;
}

.blog-last h3, .blog-category h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-size: 18px;
  color: #25272e;
}

.blog-category ul li, .blog-last ul li {
  margin: 10px 0;
}

.blog-last ul li {
  display: flex;
  flex-direction: column;
}

.blog-last ul li span {
  margin-top: 4px;
  font-size: 12px;
  color: #757575;
}

.blog-category ul a, .blog-last ul a {
  color: #25272e;
  font-size: 14px;
}

.blog-category ul a:hover, .blog-last ul a:hover {
  color: #393185;
}

.blog-shortnote {
  margin-bottom: 10px;
  line-height: 30px;
  text-align: justify;
}

.blog-body {
  padding: 0 10px;
}

.blog-body ul {
  line-height: 30px;
  list-style: disc;
}

.blog-body h1, .blog-body h2, .blog-body h3, .blog-body h4, .blog-body h5, .blog-body h6, .blog-body p {
  margin-bottom: 10px;
  line-height: 30px;
  text-align: justify;
}

.blog-body h1 {
  font-size: 20px;
}

.blog-body h2 {
  font-size: 18px;
}

.blog-body h3, h4, h5, h6 {
  font-size: 16px;
}

.blog-body p {
  font-size: 14px;
}

.blog-body img {
  max-width: 100%;
  height: auto;
}

.blog-gallerylist {
  margin-top: -8px;
  margin-left: -8px;
  margin-right: -10px;
}

.blog-gallerylist > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.blog-gallerylist > ul li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 8px 8px;
  cursor: zoom-in;
}

.blog-voice {
  text-align: center;
  margin: 8px 0;
}

.blog-video {
  text-align: center;
  margin: 8px auto;
  max-width: 600px;
}

.blog-video > video {
  width: 100%;
}

/* blog-info */
.gallery {
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: -4px;
  margin-right: -4px;
}

.gallery-content {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
  position: relative;
  background-color: #CBCBCB;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.count-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  position: relative;
  background-color: #FFFFFF;
}

.count-content p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  line-height: 1.5;
  box-shadow: 0 0 0 10px #0078ff;
  border-radius: 50%;
  background-color: #f0edcd;
}

.count-content p {
  font-weight: bold;
  font-size: 18px;
  color: #ae4a84;
}

.gallery-content .img-overlay-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #25272e;
  overflow: hidden;
  width: 100%;
  height: 20%;
  transition: 0.5s ease;
  opacity: 0.8;
}

.gallery-content .img-overlay-text {
  color: #FFFFFF;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.gallery-content:hover .img-overlay-bg {
  height: 100%;
}

@keyframes slideup {
  from {
    height: 90px;
  }
  to {
    height: 50%;
  }
}
.gallerylist {
  margin-top: -8px;
  margin-left: -8px;
  margin-right: -10px;
}

.gallerylist > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.gallerylist > ul li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 8px 8px;
  cursor: zoom-in;
}

.datagallery {
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: -4px;
  margin-right: -4px;
}

.datagallery-content {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
  position: relative;
  background-color: #CBCBCB;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.datagallery-content h5 {
  margin: 0;
  text-align: center;
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 100%;
  background: rgba(7, 7, 7, 0.4);
  padding: 8px 0;
}

.datagallery-content a h5 {
  font-size: 14px;
  font-family: RSBold;
  color: #FFFFFF;
  margin: 0;
  transition: all 0.5s ease 0s;
}

.datagallery-content:hover a h5 {
  height: 50%;
}

.video {
  margin-top: 32px;
  margin-left: -4px;
  margin-right: -4px;
}

.video-content {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
  position: relative;
  background-color: #CBCBCB;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.video-content h5 {
  margin: 0;
  text-align: center;
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 100%;
  background: rgba(7, 7, 7, 0.4);
  padding: 8px 0;
}

.video-content h5 a {
  font-size: 14px;
  font-family: RSBold;
  color: #FFFFFF;
  margin: 8px 0;
}

.videolist {
  margin-top: -8px;
  margin-left: -8px;
  margin-right: -10px;
}

.videolist > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.videolist > ul li {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 8px 8px;
  cursor: zoom-in;
}

.videolist video {
  width: 100%;
}

.voice {
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: -4px;
  margin-right: -4px;
}

.voice-content {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
}

.voice-content h5 {
  margin: 0;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  color: #14112f;
}

.voicelist {
  margin-top: -8px;
  margin-left: -8px;
  margin-right: -10px;
}

.voicelist > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.voicelist > ul li {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 8px 8px;
}

.voicelist > ul li > div {
  padding: 4px;
}

audio {
  width: 100% !important;
  height: 50px !important;
}

.paper {
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: -4px;
  margin-right: -4px;
}

.paper-content {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
}

.paper-content h5 {
  margin: 0;
  padding: 8px 0;
  font-size: 14px;
  color: #14112f;
}

.paperlist {
  margin-top: -8px;
  margin-left: -8px;
  margin-right: -10px;
}

.paperlist > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.paperlist > ul li {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 8px 8px;
}

.paperlist > ul li > div {
  padding: 8px;
}

.insurance {
  margin-top: 16px;
  margin-bottom: 16px;
}

.aboutsite {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 24px;
  padding-right: 8px;
  padding-left: 8px;
  background-color: #F9F9F9;
  border: 1px solid #CBCBCB;
  border-radius: 8px;
  margin-top: 32px;
}

.aboutsite h3 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 18px;
  color: #211d4e;
  font-family: RSBold;
}

.aboutsite p {
  text-align: justify;
  font-size: 14px;
  color: #25272e;
  margin: 0;
  margin-bottom: 32px;
  line-height: 30px;
}

.aboutsite-btn {
  text-align: center;
}

/*product search-adv*/
.doctors-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.filterdoctor-wrapper {
  flex: 0 0 300px;
  max-width: 300px;
  margin: 10px 0;
  display: none;
}

.filterdoctor-show {
  display: block;
  margin-right: 10px;
  font-weight: 700;
}

.filterdoctor-show:before {
  font-family: FontSolid;
  font-style: normal;
  content: "\f0b0";
  font-size: 14px;
  color: #000;
  margin-left: 5px;
}

.filterdoctor-head {
  display: flex;
  justify-content: space-between;
}

.filterdoctor-head span:first-child {
  color: #2D2A2A;
  font-size: 16px;
}

.filterdoctor-head span:last-child {
  color: #2D2A2A;
  font-size: 12px;
  cursor: pointer;
}

.doctors-wrapper {
  width: 100%;
}

.filterdoctor-options {
  padding: 10px;
  padding-bottom: 20px;
  margin-left: 10px;
}

.filterdoctor-item-one {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 10px;
  border-bottom: 1px solid #f0f0f1;
  align-items: center;
}

.filterdoctor-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 8px;
  border: 1px solid #CBCBCB;
  background-color: #F9F9F9;
  margin-bottom: 32px;
  box-shadow: 0 0 4px 0px #EDEDED;
}

.filterdoctor-item-title {
  cursor: pointer;
  position: relative;
  font-size: 16px;
  color: #25272e;
}

.filterdoctor-item-title:after {
  font-family: FontSolid;
  font-style: normal;
  content: "\f107";
  font-size: 14px;
  color: gray;
  position: absolute;
  left: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.filterdoctor-item-title.select-opened:after {
  content: "\f106";
}

.filterdoctor-item-body {
  padding: 0 5px;
  display: none;
  max-height: 350px;
  overflow-y: auto;
}

.filterdoctor-item-range {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
}

.filterdoctor-item-range input {
  border: none !important;
  width: 100%;
}

.filterdoctor-item-select {
  position: relative;
  border: 1px solid #CBCBCB;
  border-radius: 4px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.filterdoctor-item-select input {
  border: none !important;
  width: 100%;
  padding: 8px;
  padding-right: 40px;
}

.filterdoctor-item-select button {
  position: absolute;
  right: 0px;
  bottom: 0px;
  background-color: transparent;
  height: 100%;
  color: #000;
  border: none;
  width: 40px;
  cursor: pointer;
  border-radius: 5px;
}

.filterdoctor-item-select button:before {
  font-family: FontSolid;
  font-style: normal;
  content: "\f002";
  font-size: 18px;
  color: #000;
}

.filterdoctor-item-option {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid #CBCBCB;
  padding-right: 4px;
}

.filterdoctor-item-option > span {
  color: gray;
  font-size: 14px;
}

.filterdoctor-item-option a {
  color: #000;
}

.checkbox-icon {
  position: relative;
  display: inline-block;
  margin: 0;
  margin-left: 10px;
}

.checkbox-icon input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  display: block;
  cursor: pointer;
  margin: 0;
}

.checkbox-icon span {
  display: inline-block;
}

.checkbox-icon span:before {
  position: relative;
  top: 0px;
  font-size: 16px;
  color: #25272e;
  display: inline-block;
  content: " ☐";
  font-weight: bold;
}

.checkbox-icon input:checked ~ span:before {
  color: #393185;
  content: " ☑";
}

.switch-icon {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
  overflow: hidden;
  vertical-align: middle;
}

.switch-icon label {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}

.switch-icon label input {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.switch-icon label i {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12.5px;
  background-color: #d9d9d9;
  top: 0;
  left: 0;
  transition-property: all;
  transition-duration: 0.4s;
}

.switch-icon label i:after {
  position: absolute;
  content: "";
  display: block;
  left: 6px;
  top: 5px;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  background-color: #fff;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.4s;
}

.switch-icon label input:checked ~ i {
  background-color: #393185;
}

.switch-icon label input:checked ~ i:after {
  transform: translate3d(20px, 0, 0);
}

.update-icon {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  vertical-align: middle;
}

.update-icon label {
  position: relative;
  width: 80px;
  height: 45px;
  display: block;
  margin: 0;
}

.update-icon label input {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.update-icon label i {
  position: absolute;
  display: block;
  border-radius: 5px;
  background-color: #393185;
  color: #fff;
  font-size: 14px;
  bottom: 0px;
  right: 0px;
  transition-property: all;
  transition-duration: 0.4s;
  padding: 8px;
  margin-bottom: 5px;
}

.filterdoctor-item-option-title {
  font-size: 14px;
  line-height: 30px;
}

/*doctor search-adv */
/* filterdoctor header */
.filterdoctor-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0px;
  align-items: center;
  padding-top: 10px;
}

.filterdoctor-right {
  margin-right: 5px;
}

.filterdoctor-right {
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.filterdoctor-right > span {
  margin-left: 5px;
}

.filterdoctor-right > span > a {
  padding: 5px;
  color: #000;
}

.filterdoctor-right > span > a:hover {
  color: #393185;
}

.filterdoctor-left {
  display: flex;
}

.filterdoctor-perpage {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 15px;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
  color: #8E8E8E;
}

.filterdoctor-perpage > span:first-child {
  color: #2d2a2a;
  font-weight: 700;
}

.filterdoctor-perpage > a {
  color: #8E8E8E;
  padding: 0 7px;
}

.filterdoctor-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 15px;
  margin-left: 30px;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
  color: #8E8E8E;
}

.filterdoctor-grid a {
  margin-left: 14px;
  opacity: 0.3;
}

.filterdoctor-open {
  color: #2D2A2A;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.6px;
  font-weight: 700;
  padding-left: 18px;
  position: relative;
  cursor: pointer;
}

.item-select span, .orderby-select span {
  color: red;
}

/* filterdoctor header */
/* filterdoctor search */
.filterdoctor-contain {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 30px;
  padding-top: 30px;
  border-bottom: 1px solid rgba(119, 119, 119, 0.17);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.filterdoctor-section {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px 15px;
  margin-bottom: 0px;
  font-size: 16px;
}

.filterdoctor-title {
  font-size: inherit;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  vertical-align: baseline;
  margin-bottom: 20px;
}

.filterdoctor-content {
  color: #777;
  font-size: inherit;
  line-height: 1.4;
}

.filterdoctor-content li {
  margin-bottom: 15px;
  width: 100%;
}

.filterdoctor-content li a {
  color: #727272;
  font-size: inherit;
}

.filterdoctor-content li a:hover {
  color: #333;
}

.filterdoctor-content-color {
  overflow-y: auto;
  overflow-x: hidden;
  height: 40vh;
  padding-left: 17px;
}

.filterdoctor-content-color li {
  display: flex;
  justify-content: space-between;
}

.filterdoctor-content-color .color {
  flex: 1 1 auto;
}

.filterdoctor-content-color .color:hover + .count {
  color: #393185;
  background-color: #393185;
}

.count {
  border-color: rgba(129, 129, 129, 0.2);
  padding-right: 5px;
  padding-left: 5px;
  min-width: 30px;
  height: 20px;
  border: 1px solid;
  border-radius: 35px;
  color: #777;
  text-align: center;
  vertical-align: baseline;
  font-size: 14px;
  line-height: 21px;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

/* filterdoctor search */
/* filterdoctor select */
.filterdoctor-select {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.filterdoctor-select > a {
  color: #333;
  font-size: 16px;
  margin-left: 10px;
}

/* filterdoctor select */
/* filterdoctor side */
.filterdoctor-side {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  background-color: #F9F9F9;
  z-index: 500;
  overflow: hidden;
  overflow-y: auto;
  transform: translate3d(340px, 0, 0);
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.filter-side-open {
  transform: none;
}

.filterdoctor-side-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 15px 20px 15px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.filterdoctor-side-head h3 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
}

.filterdoctor-side-head a {
  color: #2d2a2a;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 18px;
}

.filterdoctor-side-head a:before {
  position: absolute;
  width: 14px;
  height: 2px;
  transform: rotate(45deg);
  background-color: #000;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -2px;
}

.filterdoctor-side-head a:after {
  position: absolute;
  width: 14px;
  height: 2px;
  transform: rotate(-45deg);
  background-color: #000;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -2px;
}

.filterdoctor-side-head a:hover:before {
  transform: none;
}

.filterdoctor-side-head a:hover:after {
  transform: none;
}

/* filterdoctor side  */
/* clinic */
.cliniclist > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cliniclist > ul > li {
  flex: 0 0 50%;
  max-width: 50%;
}

.clinic-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 24px;
  padding: 8px;
  border: 1px solid #393185;
  border-radius: 8px;
  background-color: #393185;
  color: #FFFFFF;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.clinic-item:hover {
  background-color: #FFFFFF;
  color: #393185;
}

.clinic-item-ico {
  text-align: center;
}

.clinic-item-title {
  text-align: center;
  font-size: 14px;
  margin: 8px;
  margin-top: 16px;
}

/* clinic */
/* doctor-item  */
.doctor-item {
  margin-top: 0px;
}

.doctor-desc {
  text-align: justify;
}

.doctor-item ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.doctor-item > ul li {
  flex: 0 0 50%;
  max-width: 50%;
  justify-content: space-between;
}

.doctor-item-contain {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #FFFFFF;
  padding: 0px 10px 10px 10px;
  position: relative;
  width: 100%;
}

.doctor-item-contain a img {
  width: 100%;
  transition: all 0.5s ease;
}

.doctor-title {
  font-size: 16px;
  font-weight: normal;
  color: #25272e;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 30px;
  padding: 0 5px;
}

.doctor-category {
  font-size: 14px;
  color: #757575;
}

.doctor-carousel {
  position: relative;
}

.owl-nav {
  margin: 0 !important;
}

.doctor-carousel:hover .owl-nav {
  display: block;
}

.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  border-radius: 0;
  left: 0;
  border: none;
  padding: 0;
  background-color: rgba(0, 15, 46, 0.5) !important;
  width: 50px;
  height: 50px;
  font-size: 25px !important;
  color: #fff !important;
  line-height: 48px !important;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  transform: translateY(-50%);
  margin: 0 !important;
}

.owl-prev {
  right: 0%;
}

.owl-next {
  left: 0%;
}

.owl-next:before {
  content: "\f104";
  font-family: FontSolid;
}

.owl-prev:before {
  content: "\f105";
  font-family: FontSolid;
}

.owl-next:hover, .owl-prev:hover {
  background-color: rgba(0, 15, 46, 0.8) !important;
}

.owl-next span, .owl-prev span {
  display: none;
}

/* doctor-item */
/* doctor-info */
.doctor-info-head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.doctor-info-head-left {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 8px;
}

.doctor-info-head-right {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 8px;
}

.doctor-image {
  padding-top: 16px;
  text-align: center;
}

.doctor-image img {
  transition: all 0.5s ease 0s;
  border: 2px solid #393185;
  padding: 3px;
  border-bottom-right-radius: 32px;
  border-top-left-radius: 32px;
}

.doctor-image img:hover {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
  border-radius: 0px;
}

.doctor-section {
  padding-left: 10px;
  padding-right: 10px;
}

.doctor-tablinks ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.doctor-tablinks ul.doctor-tab {
  justify-content: flex-start !important;
}

.doctor-tablinks li {
  padding-left: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.tablinks {
  min-width: 130px;
  background-color: #EDEDED;
  padding: 4px 16px;
  font-size: 14px;
  color: #25272e;
  display: inline-block;
}

.doctor-other-titr h2 {
  font-size: 16px;
  color: #25272e;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}

.tablinks.active {
  background-color: #393185;
  color: #FFFFFF;
}

.tabcontent {
  display: none;
}

.tabcontent.active {
  display: block;
}

.tabcontent ul {
  list-style: disc;
  font-size: 14px;
  color: #25272e;
  line-height: 29.96px;
  text-align: justify;
}

.tabcontent p {
  font-size: 14px;
  color: #25272e;
  line-height: 29.96px;
  text-align: justify;
}

.doctor-info {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.doctor-info-right {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  max-width: 100%;
}

.doctor-info-img {
  margin-bottom: 5px;
  position: relative;
}

.doctor-info-action {
  display: flex;
  flex-direction: row;
}

.doctor-info-action > a {
  color: #25272e;
  font-size: 18px;
  margin-left: 10px;
}

.doctor-info-img img {
  border-radius: 10px;
}

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

.doctor-info-titr {
  font-size: 14px;
  color: #25272e;
  font-weight: bold;
}

.doctor-info-clinic {
  font-size: 14px;
  color: #25272e;
}

.doctor-shift-titr {
  font-size: 16px;
  color: #25272e;
  font-weight: bold;
}

.doctor-shift-titr a {
  color: #393185;
  font-weight: normal;
}

.doctor-info-left {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 16px 8px 8px 0px;
  padding-right: 10px;
  padding-left: 10px;
}

.doctor-info-left h1 {
  margin-bottom: 16px;
  font-size: 22px;
  color: #25272e;
}

.heading {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
}

.doctor-share {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.doctor-share ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.doctor-share ul li a {
  color: #393185;
  margin-left: 10px;
  font-size: 20px;
}

.links > li > a {
  font-size: 14px;
}

/* doctor-info */
.doctor-shift th {
  color: #25272e;
  font-size: 14px;
  font-weight: bold;
}

.doctor-shift td, .doctor-shift td a {
  color: #25272e;
  font-size: 14px;
}

/* doctor-feed */
.feed-qu {
  font-size: 0.857rem;
  line-height: 1.833;
  margin-left: 24px;
  color: #81858b;
}

.feed-icon {
  display: flex;
}

.feed-like {
  color: #a1a3a8;
  cursor: pointer;
  margin-left: 20px;
  font-size: 0.786rem;
}

.feed-like::after {
  content: "\f164";
  font-family: FontSolid;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  font-size: 1.143rem;
  line-height: 16px;
}

.feed-dislike {
  color: #a1a3a8;
  font-size: 0.786rem;
  line-height: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.feed-dislike::after {
  content: "\f165";
  font-family: FontSolid;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  font-size: 1.143rem;
  line-height: 16px;
}

/* doctor-feed */
.slick-slide {
  margin: 0px auto;
  padding: 0 5px;
  height: auto !important;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

/* contactus */
.contactus-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 16px 0;
}

.contactus-item-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
}

.contactus-item {
  margin: 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  border: 1px solid #EDEDED;
  border-radius: 8px;
}

.contactus-item > span {
  width: 100px;
  min-width: 100px;
  font-size: 48px;
  color: #FFFFFF;
  background-color: #393185;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color ease-in 200ms;
  -webkit-transition: background-color ease-in 200ms;
}

.contactus-item:hover > span {
  background-color: #14112f;
}

.contactus-item-note {
  padding: 0 16px;
}

.contactus-item-note > h4 {
  font-size: 18px;
  color: #25272e;
  word-wrap: break-word;
  padding-top: 16px;
  margin-bottom: 8px;
}

.contactus-item-note > p {
  font-size: 12px;
  color: #757575;
  word-wrap: break-word;
}

/* contactus */
/* comments */
.comment-form {
  padding: 0px 16px;
}

.comment-form-sender {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -16px;
}

.comment-form-sender > div {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 8px 16px;
}

.comment-form label {
  color: #757575;
  font-size: 14px;
}

.comment-form label span {
  margin-right: 4px;
  color: red;
}

.comment-form input, .comment-form textarea {
  width: 100%;
  color: #25272e;
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #CBCBCB;
}

.comment-form-send {
  margin: 8px 0;
}

.comment-form-send button {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: #393185;
  color: #FFFFFF;
  border: 1px solid #393185;
  padding: 4px 16px !important;
}
.comment-form-send button:hover {
  color: #393185;
  background-color: #FFFFFF;
}

.comment-items {
  margin-top: 16px;
}

.comment-items > h5, .comments > h5 {
  color: #393185;
  font-size: 16px;
  text-align: center;
  margin: 0;
}

.comment-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 1px dashed #CBCBCB;
  padding: 8px 16px;
}

.comment-info {
  margin-bottom: 8px;
}

.comment-date {
  color: #757575;
  font-size: 12px;
  margin-left: 8px;
}

.comment-sender {
  color: #757575;
  font-size: 12px;
}

.comment-body {
  color: #25272e;
  font-size: 14px;
  margin: 0;
  margin-bottom: 16px;
  text-align: justify;
  line-height: 33.6px;
}

/* comments */
.mapsite {
  margin-top: 0px;
}

.mapsite-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify_content: flex-start;
}

.mapsite-map {
  flex: 0 0 100%;
  width: 100%;
}

.mapsite-info {
  flex: 0 0 100%;
  width: 100%;
  background-color: #f1f3f4;
}

.mapsite-info-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px;
}

.mapsite-info-content h3 {
  font-size: 18px;
  color: #393185;
  line-height: 214%;
  text-align: justify;
  font-weight: bold;
  border-bottom: 2px dashed;
  margin-bottom: 12px;
}

.mapsite-info-content span {
  font-size: 16px;
  color: #14112f;
  line-height: 214%;
  text-align: justify;
}

.mapsite-info-content span i {
  font-size: 16px;
  color: #211d4e;
  line-height: 214%;
  margin-left: 8px;
}

.mapsite-info-content p {
  font-size: 14px;
  color: #25272e;
  line-height: 214%;
  text-align: justify;
  margin: 0;
  padding-right: 16px;
  margin-bottom: 12px;
}

/* map */
.map {
  height: 100%;
  z-index: 0;
  min-height: 400px;
}

.leaflet-control-attribution {
  box-shadow: none;
  display: none;
}

/* map */
/* icones */
.tweeter-icon:before {
  content: "\f154";
  font-family: Wood;
}

.pinterst-icon:before {
  content: "\f156";
  font-family: Wood;
}

.instagram-icon:before {
  content: "\f158";
  font-family: Wood;
}

.fa-store-sticky:before {
  content: "\f146";
  font-family: Wood;
}

.fa-home-sticky:before {
  content: "\f144";
  font-family: Wood;
}

.fa-heart-sticky:before {
  content: "\f106";
  font-family: Wood;
}

.fa-basket-sticky:before {
  content: "\f105";
  font-family: Wood;
}

.fa-user-sticky:before {
  content: "\f124";
  font-family: Wood;
}

/* icones */
/* svg-namad */
.svg-namad {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.svg-namad-item {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svg-namad-item img {
  width: 90px;
}

/* svg-namad */
.clinic-item-ico [class^=icon-], .clinic-item-ico [class*=" icon-"] {
  font-family: "Ico";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 70px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-brain:before {
  content: "\e60a";
}

.icon-tooth:before {
  content: "\e65e";
}

.icon-heart-checklist:before {
  content: "\e62f";
}

.icon-ambulance:before {
  content: "\e600";
}

.icon-asclepius-sign:before {
  content: "\e601";
}

.icon-bacterium-cells:before {
  content: "\e602";
}

.icon-badge:before {
  content: "\e603";
}

.icon-barrow:before {
  content: "\e604";
}

.icon-biohazard-sign:before {
  content: "\e605";
}

.icon-bladder:before {
  content: "\e606";
}

.icon-blood-pressure-kit:before {
  content: "\e607";
}

.icon-body-weighter:before {
  content: "\e608";
}

.icon-bone-joint:before {
  content: "\e609";
}

.icon-broken-pill:before {
  content: "\e60b";
}

.icon-bulb-full:before {
  content: "\e60c";
}

.icon-bulb-reaction:before {
  content: "\e60d";
}

.icon-bulb:before {
  content: "\e60e";
}

.icon-cell:before {
  content: "\e60f";
}

.icon-chromosome:before {
  content: "\e610";
}

.icon-clinical-record:before {
  content: "\e611";
}

.icon-clyster:before {
  content: "\e612";
}

.icon-cross:before {
  content: "\e613";
}

.icon-crutches:before {
  content: "\e614";
}

.icon-disabled:before {
  content: "\e615";
}

.icon-dna:before {
  content: "\e616";
}

.icon-doctor:before {
  content: "\e617";
}

.icon-drop-counter:before {
  content: "\e618";
}

.icon-drop:before {
  content: "\e619";
}

.icon-dropper:before {
  content: "\e61a";
}

.icon-drug-blister:before {
  content: "\e61b";
}

.icon-drug-bottle:before {
  content: "\e61c";
}

.icon-drugs:before {
  content: "\e61d";
}

.icon-ear:before {
  content: "\e61e";
}

.icon-emergency-call:before {
  content: "\e61f";
}

.icon-emergency-cross:before {
  content: "\e620";
}

.icon-epty-testtube:before {
  content: "\e621";
}

.icon-eye-drop:before {
  content: "\e622";
}

.icon-eye-sign:before {
  content: "\e623";
}

.icon-eyeball:before {
  content: "\e624";
}

.icon-facial-plastic-surgery-2:before {
  content: "\e625";
}

.icon-facial-plastic-surgery:before {
  content: "\e626";
}

.icon-female-sign:before {
  content: "\e627";
}

.icon-fertilization:before {
  content: "\e628";
}

.icon-footsteps:before {
  content: "\e629";
}

.icon-full-testtube:before {
  content: "\e62a";
}

.icon-fungus-cells:before {
  content: "\e62b";
}

.icon-glasses:before {
  content: "\e62c";
}

.icon-hand-with-patch:before {
  content: "\e62d";
}

.icon-heart-attack:before {
  content: "\e62e";
}

.icon-heart-sign:before {
  content: "\e630";
}

.icon-heart:before {
  content: "\e631";
}

.icon-helicopter:before {
  content: "\e632";
}

.icon-help:before {
  content: "\e633";
}

.icon-hospital-bed:before {
  content: "\e634";
}

.icon-hospital-sign:before {
  content: "\e635";
}

.icon-hospital:before {
  content: "\e636";
}

.icon-intestines:before {
  content: "\e637";
}

.icon-kidneys:before {
  content: "\e638";
}

.icon-liver:before {
  content: "\e639";
}

.icon-lungs:before {
  content: "\e63a";
}

.icon-male-sign:before {
  content: "\e63b";
}

.icon-medic:before {
  content: "\e63c";
}

.icon-medical-alert:before {
  content: "\e63d";
}

.icon-medical-checklist:before {
  content: "\e63e";
}

.icon-medicine-chest:before {
  content: "\e63f";
}

.icon-men-urogenital-system:before {
  content: "\e640";
}

.icon-microscope:before {
  content: "\e641";
}

.icon-muscle:before {
  content: "\e642";
}

.icon-nasopharynx:before {
  content: "\e643";
}

.icon-neurology:before {
  content: "\e644";
}

.icon-nurse-cap:before {
  content: "\e645";
}

.icon-nurse:before {
  content: "\e646";
}

.icon-oculist-table:before {
  content: "\e647";
}

.icon-patch:before {
  content: "\e648";
}

.icon-pill:before {
  content: "\e649";
}

.icon-pulse:before {
  content: "\e64a";
}

.icon-radiation-sign:before {
  content: "\e64b";
}

.icon-ribbon:before {
  content: "\e64c";
}

.icon-Rx-sign:before {
  content: "\e64d";
}

.icon-sex-signs:before {
  content: "\e64e";
}

.icon-shot:before {
  content: "\e64f";
}

.icon-skin:before {
  content: "\e650";
}

.icon-skull-bones:before {
  content: "\e651";
}

.icon-skull:before {
  content: "\e652";
}

.icon-snakes-cup:before {
  content: "\e653";
}

.icon-spermatozoids:before {
  content: "\e654";
}

.icon-stethoscope:before {
  content: "\e655";
}

.icon-stomach:before {
  content: "\e656";
}

.icon-surgery:before {
  content: "\e657";
}

.icon-syringe:before {
  content: "\e658";
}

.icon-tablet:before {
  content: "\e659";
}

.icon-testtubes:before {
  content: "\e65a";
}

.icon-thermometer:before {
  content: "\e65b";
}

.icon-thyroid-gland:before {
  content: "\e65c";
}

.icon-tooth-paste:before {
  content: "\e65d";
}

.icon-ultrasonic-diagnostic:before {
  content: "\e65f";
}

.icon-virus:before {
  content: "\e660";
}

.icon-women-urogenital-system:before {
  content: "\e661";
}

.icon-zoom-glass:before {
  content: "\e662";
}

.footer {
  background-size: contain;
}

.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  background-color: #25272e;
}

.footer-content h6 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-address, .footer-menu {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 24px 0;
}

.footer-contactus {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 24px 0;
}

.footer-address-content {
  margin-left: 12px;
}

.footer-menu-content {
  margin-left: 12px;
  margin-right: 12px;
}

.footer-contactus-content {
  padding-top: 8px;
}

.footer-contactus-content > h6 {
  padding-right: 8px;
}

.footer-menu-about {
  font-size: 14px;
  color: #CBCBCB;
  font-family: RS;
}

.footer-menu-about span i {
  margin-left: 10px;
  color: #ae4a84;
}

.footer-menu-about-section {
  margin-bottom: 25px;
}

.footer-menu-about-section p {
  margin: 0 5px;
  margin-right: 20px;
}

.footer-address ul li {
  font-size: 12px;
  color: #FFFFFF;
  font-family: RS;
  margin: 16px 0px;
}

.form-item {
  margin: 8px 4px;
}

.form-item input, .form-item textarea {
  width: 100%;
  color: #25272e;
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #757575;
  opacity: 0.6;
}

.footer-menu ul li a:before {
  content: "-";
  font-family: FontSolid;
  position: relative;
  width: 16px;
  height: 16px;
  color: #ae4a84;
  display: inline-flex;
  vertical-align: sub;
}

.footer-menu ul li a {
  font-size: 14px;
  color: #CBCBCB;
  font-family: RS;
}

.footer-menu ul li a:hover {
  color: #393185;
}

.footer-menu ul li {
  margin: 12px 0px;
}

.form-item button {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: #393185;
  color: #FFFFFF;
  border: 1px solid #393185;
  padding: 4px 16px !important;
}
.form-item button:hover {
  color: #393185;
  background-color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px #25272e solid;
  padding: 0 4px;
  background-color: #000;
}

.footer-designer a {
  color: #FFFFFF;
}

.footer-designer, .footer-copywrite {
  font-size: 12px;
  color: #FFFFFF;
  direction: ltr;
  line-height: 30px;
  font-family: Tahoma;
}

/* loader */
.loader {
  display: none;
  position: fixed;
  top: 40%;
  left: 50%;
  z-index: 2000;
}

.loader_show {
  display: block;
}

/* loader */
/* shadow*/
.shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
}

.shadow-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s ease;
}

/* shadow */
/* whatsapp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.whatsapp span {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2rem;
}

.whatsapp a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: green;
  z-index: 350;
  margin-right: 10px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* whatsapp */
/* scrolltotop */
.scrolltotop {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.25s ease;
}

.scrolltotop.button-show {
  opacity: 1;
  transform: none;
  pointer-events: visible;
}

.scrolltotop span {
  color: #333;
  font-size: 1.8rem;
  line-height: 2rem;
}

.scrolltotop a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.17);
  z-index: 350;
  margin-right: 10px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.scrolltotop span:hover {
  color: #777;
}

/* scrolltotop */
/* pagination */
.pagination-content {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 0.25rem;
  padding-right: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.page-item {
  display: flex;
  align-items: center;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  line-height: 1;
  border: 1px solid;
  color: #14112f;
  background-color: #FFFFFF;
  border-color: #14112f;
  margin: 0 !important;
  font-size: 16px;
}

.page-item.active .page-link {
  color: #FFFFFF;
  background-color: #14112f;
  border-color: #14112f;
  height: 100%;
}

.page-item.disabled .page-link {
  pointer-events: none;
  cursor: auto;
  color: #14112f;
  background-color: #CBCBCB;
  border-color: #14112f;
  height: 100%;
}

/* pagination */
/* serach bar */
.search-bar {
  padding: 0px 0;
  background-color: #393185;
  padding-bottom: 5px;
}

.search-right, .serach-left {
  display: none;
}

.search-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-right a img {
  max-height: 72px;
  max-width: 72px;
}

.search-middle {
  flex: 1 1 0;
  padding: 0px 5px;
  position: relative;
}

.search-middle form {
  margin: 0;
}

.search-middle input[type=text] {
  width: 100%;
  padding: 10px;
  box-shadow: 0px 0px 5px #cccccc;
  border-radius: 20px;
  font-size: 15px;
  height: 46px;
  border: 1px solid #d6d6d6;
}

.search-send {
  position: absolute;
  top: 0;
  left: 10px;
  height: 46px;
  width: 50px;
  padding: 5px 0;
}

.search-send button {
  border-radius: 30px;
  background-color: #393185;
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.search-send button:before {
  font-family: FontSolid;
  font-style: normal;
  content: "\f002";
  font-size: 20px;
  color: #393185;
}

/* serach bar */
/* serach result */
.search-result-contain {
  position: relative;
}

.search-result-pos {
  position: absolute;
  top: 0px;
  left: 0;
  height: 50vh;
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
  display: none;
}

.search-result-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px;
  background-color: #393185;
  margin: 0 10px;
  justify-content: space-between;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.search-result-item {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 285px;
  max-width: 285px;
  padding: 15px;
  align-items: center;
  cursor: pointer;
}

.search-result-img {
  max-width: 65px;
  margin-left: 15px;
}

.search-result-content {
  display: flex;
  flex-direction: column;
}

.search-result-title {
  color: #333;
  line-height: 1.3;
  font-size: 14px;
  word-wrap: break-word;
  font-weight: 700;
}

.search-result-price {
  margin-top: 10px;
  line-height: 1;
}

/* serach result */
/*product search-adv*/
.products-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.filter-wrapper {
  flex: 0 0 300px;
  max-width: 300px;
  margin: 10px 0;
  display: none;
}

.filter-show {
  display: block;
  margin-right: 10px;
  font-weight: 700;
}

.filter-show:before {
  font-family: FontSolid;
  font-style: normal;
  content: "\f0b0";
  font-size: 14px;
  color: #000;
  margin-left: 5px;
}

.filter-head {
  display: flex;
  justify-content: space-between;
}

.filter-head span:first-child {
  color: #2D2A2A;
  font-size: 16px;
}

.filter-head span:last-child {
  color: #2D2A2A;
  font-size: 12px;
  cursor: pointer;
}

.products-wrapper {
  width: 100%;
}

.filter-options {
  padding: 10px;
  padding-bottom: 20px;
  margin-left: 10px;
}

.filter-item-one {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 10px;
  border-bottom: 1px solid #f0f0f1;
  align-items: center;
}

.filter-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-top: 10px;
  border-bottom: 1px solid #f0f0f1;
}

.filter-item-title {
  cursor: pointer;
  position: relative;
}

.filter-item-title:after {
  font-family: FontSolid;
  font-style: normal;
  content: "\f067";
  font-size: 14px;
  color: gray;
  position: absolute;
  left: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.filter-item-title.select-opened:after {
  content: "\f068";
}

.filter-item-body {
  padding: 0 5px;
  display: none;
  max-height: 350px;
  overflow-y: auto;
}

.filter-item-range {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
}

.filter-item-range input {
  border: none !important;
  width: 100%;
}

.filter-item-select {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
}

.filter-item-select input {
  border: none !important;
  width: 100%;
  padding-right: 40px;
}

.filter-item-select button {
  position: absolute;
  right: 0px;
  bottom: 0px;
  background-color: transparent;
  height: 100%;
  color: #000;
  border: none;
  width: 40px;
  cursor: pointer;
  border-radius: 5px;
}

.filter-item-select button:before {
  font-family: FontSolid;
  font-style: normal;
  content: "\f002";
  font-size: 18px;
  color: #000;
}

.filter-item-option {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.filter-item-option > span {
  color: gray;
  font-size: 14px;
}

.filter-item-option a {
  color: #000;
}

.checkbox-icon {
  position: relative;
  display: inline-block;
  margin: 0;
  margin-left: 10px;
}

.checkbox-icon input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  display: block;
  cursor: pointer;
  margin: 0;
}

.checkbox-icon span {
  display: inline-block;
}

.checkbox-icon span:before {
  position: relative;
  top: 0px;
  font-size: 21px;
  color: #000;
  display: inline-block;
  content: " ☐";
  font-weight: bold;
}

.checkbox-icon input:checked ~ span:before {
  color: #393185;
  content: " ☑";
}

.switch-icon {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
  overflow: hidden;
  vertical-align: middle;
}

.switch-icon label {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}

.switch-icon label input {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.switch-icon label i {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12.5px;
  background-color: #d9d9d9;
  top: 0;
  left: 0;
  transition-property: all;
  transition-duration: 0.4s;
}

.switch-icon label i:after {
  position: absolute;
  content: "";
  display: block;
  left: 6px;
  top: 5px;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  background-color: #fff;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.4s;
}

.switch-icon label input:checked ~ i {
  background-color: #393185;
}

.switch-icon label input:checked ~ i:after {
  transform: translate3d(20px, 0, 0);
}

.update-icon {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  vertical-align: middle;
}

.update-icon label {
  position: relative;
  width: 80px;
  height: 45px;
  display: block;
  margin: 0;
}

.update-icon label input {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.update-icon label i {
  position: absolute;
  display: block;
  border-radius: 5px;
  background-color: #393185;
  color: #fff;
  font-size: 14px;
  bottom: 0px;
  right: 0px;
  transition-property: all;
  transition-duration: 0.4s;
  padding: 8px;
  margin-bottom: 5px;
}

.filter-item-option-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

/*product search-adv */
/* dashboard */
.dashboard {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
}

.dashboard-side-right {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.dashboard-side-right-content h3 {
  font-weight: 700;
  color: #242424;
  font-size: 18px;
  padding-right: 15px;
  padding-left: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  line-height: 1.4;
}

.dashboard-side-right-content nav {
  margin-bottom: 30px;
  color: #777777;
}

.dashboard-side-right-content nav ul {
  line-height: 1.4;
}

.dashboard-side-right-content nav ul li > a {
  cursor: pointer;
  display: block;
  padding: 10px 15px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 20px;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
}

.dashboard-side-right-content nav ul li > a:hover {
  color: rgba(0, 0, 0, 0.9);
  background-color: #f8f8f8;
}

.dashboard-active {
  color: rgba(0, 0, 0, 0.9);
  background-color: rgba(136, 136, 136, 0.12) !important;
  cursor: default !important;
}

.dashboard-side-left {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.dashboard-side-right-content p {
  margin-bottom: 20px;
  color: #777777;
  font-size: 110%;
}

.dashboard-side-right-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 30px;
}

.dashboard-side-right-links > div {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 20px;
  margin-bottom: 20px;
}

.dashboard-side-right-links a {
  display: block;
  padding: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #3f3f3f;
}

.dashboard-side-right-links a:before {
  font-family: Wood;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  transition: color 0.25s ease;
  display: block;
  color: #d0d0d0;
}

.dashboard-side-right-links a:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.dashboard-side-right-links a:hover:before {
  color: #393185 !important;
}

.order-link a:before {
  content: "\f138";
}

.addres-link a:before {
  content: "\f139";
}

.dashboard-link a:before {
  content: "\f135";
}

.logut-link a:before {
  content: "\f137";
}

/* dashboard */
/* product-interest */
.product-interest td {
  vertical-align: middle;
}

.product-interest img {
  width: 100px;
  float: right;
}

.interest-mob {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 15px 10px;
}

.interest-title a {
  font-weight: 600;
  color: #3c4b64;
}

.interest-mob-img {
  flex: 0 0 30%;
  max-width: 30%;
}

.btn-custom {
  color: #393185;
  background-color: #393185;
  border-radius: 35px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 5px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.interest-mob-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 15px;
}

.interest-mob-content span {
  margin-bottom: 10px;
}

/* product-interest */
/* order */
.order-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 2px solid #EFEFEF;
  align-items: center;
}

.order-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 0 60%;
  max-width: 60%;
}

.order-title > span {
  flex: 0 0 25%;
  max-width: 25%;
}

.order-title-action {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
}

.order-header > div > span {
  font-weight: 600;
  color: #242424;
  padding: 15px 10px;
  border: none;
  vertical-align: middle;
  text-align: right;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}

.order-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-bottom: 1px solid #E6E6E6;
}

.order-content > div > span {
  padding: 15px 10px;
  border: none;
  text-align: right;
  font-weight: inherit;
}

.order-action {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 0 60%;
  max-width: 60%;
  align-items: center;
}

.order-action > span {
  flex: 0 0 25%;
  max-width: 25%;
}

.order-action-link {
  text-align: left;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.order-action-link a {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: #ae4a84;
  color: #FFFFFF;
  border: 1px solid #ae4a84;
}
.order-action-link a:hover {
  color: #ae4a84;
  background-color: #FFFFFF;
}

.order-contain {
  display: none;
}

.order-mob-contain {
  display: block;
}

.order-mob {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
}

.order-mob-section {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
}

.order-mob-section:nth-of-type(odd) {
  background-color: rgba(0, 0, 21, 0.05);
}

.order-mob-title > span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2a2a;
}

.order-mob-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
}

.order-mob-content > a {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: #ae4a84;
  color: #FFFFFF;
  border: 1px solid #ae4a84;
}
.order-mob-content > a:hover {
  color: #ae4a84;
  background-color: #FFFFFF;
}

/* order */
/* account */
.account-contain form > div {
  margin-bottom: 20px;
}

.account-names {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.account-names > div {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.account-contain fieldset > div {
  margin-bottom: 20px;
}

.account-contain form button {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: #393185;
  color: #FFFFFF;
  border: 1px solid #393185;
}
.account-contain form button:hover {
  color: #393185;
  background-color: #FFFFFF;
}

/* account */
/* vieworder */
.desc {
  font-size: 16px;
  margin-bottom: 20px;
  color: #777777;
  line-height: 1.4;
  letter-spacing: 0.3;
}

.vieworder h2 {
  font-weight: 600;
  color: #242424;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.vieworder-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E6E6E6;
  text-transform: none;
  font-size: 14px;
  padding: 15px 10px;
}

.vieworder-prop {
  font-weight: 600;
  color: #242424;
  letter-spacing: 1;
}

.vieworder-header {
  font-size: 16px;
  line-height: 1.2;
}

.vieworder-finalprice {
  font-size: 20px;
}

.vieworder-totalprice {
  color: #393185;
  font-weight: 600;
  font-size: 14px;
}

a.vieworder-prop:hover {
  color: rgba(51, 51, 51, 0.7);
}

.vieworder-address {
  margin-top: 40px;
}

.paymentorder-content {
  margin-bottom: 40px;
}

/* vieworder */
/* checkout */
.checkout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 15px;
}

.checkout-right {
  flex: 0 0 100%;
  max-width: 100%;
}

.checkout-right-body {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 20px;
  margin: 0px 0px;
  box-shadow: 0px 0px 5px #b9b9b9cf;
  margin-bottom: 15px;
}

.checkout-right-body > div {
  margin-bottom: 20px;
}

.checkout-right-body h3 {
  font-weight: 600;
  color: #242424;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.checkout-right-head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.checkout-right-head > div {
  flex: 0 0 48%;
  max-width: 48%;
}

.checkout-right-desc-title {
  padding: 10px;
  font-weight: 600;
  color: #242424;
  font-size: 22px;
  line-height: 1.4;
}

.checkout-right-body textarea {
  border-radius: 20px;
  border: 2px solid rgba(129, 129, 129, 0);
  padding: 10px 15px;
  min-height: 190px;
  background-color: transparent;
  vertical-align: middle;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
}

.checkout-right-body textarea:focus {
  outline: 0;
  border-color: rgba(129, 129, 129, 0.3);
  transition: border-color 0.4s ease;
}

.checkout-num {
  margin-right: 5px;
}

.checkout-left {
  flex: 0 0 100%;
  max-width: 100%;
}

.checkout-left-body {
  padding: 25px;
  background-color: #F8F8F8;
}

.checkout-left-body h3 {
  font-weight: 600;
  color: #242424;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: center;
}

.checkout-left-order {
  overflow-x: auto;
  margin-bottom: 20px;
  padding: 5px 15px;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.checkout-left-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 12px;
  border: none;
  border-bottom: 1px solid #E6E6E6;
}

.checkout-left-head span {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: #242424;
}

.checkout-left-price span, .checkout-left-transport span {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: #242424;
}

.checkout-left-total {
  border: none;
}

.checkout-left-total span {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #242424;
  border: none;
}

.checkout-left-item span {
  color: #777;
}

.kind-payment {
  margin-bottom: 15px;
}

.kind-payment label {
  display: inline;
  margin-bottom: 0;
  color: #464646;
  vertical-align: middle;
  font-weight: 400;
  font-size: 14px;
}

.kind-payment label img {
  margin-right: 5px;
  margin-left: 5px;
  max-height: 40px;
  vertical-align: middle;
}

.kind-payment-desc {
  position: relative;
  margin-top: 0px;
  padding: 15px;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.kind-payment-btn button {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 16px;
  line-height: 38.4px;
  background-color: #393185;
  color: #FFFFFF;
  border: 1px solid #393185;
  width: 100%;
}
.kind-payment-btn button:hover {
  color: #393185;
  background-color: #FFFFFF;
}

.numbercard {
  margin-bottom: 15px;
}

.numbercard span:first-child {
  margin-left: 10px;
  font-weight: bold;
}

.checkout + p {
  margin-bottom: 20px;
  color: red;
  font-size: 20px;
}

.checkout + p + p, .checkout + p + p + p {
  margin-bottom: 20px;
  color: #777777;
  font-size: 16px;
  margin-right: 20px;
}

/* checkout */
/* errors */
.errors {
  position: fixed;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  margin: 0;
  cursor: pointer;
  color: #25272e;
  background-color: #393185;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 80px;
  padding-right: 65px;
  min-height: 60px;
  border: none;
  line-height: 1.3;
  vertical-align: middle;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.errors:before {
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -9px;
  font-size: 18px;
  font-family: Wood;
  line-height: 18px;
  content: "\f100";
}

.errors:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  background-color: rgba(0, 0, 0, 0.1);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  content: "\f112";
  font-family: Wood;
}

.errors strong {
  margin-left: 5px;
}

/* errors */
/* successinfo */
.successinfo {
  position: fixed;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  margin: 0;
  cursor: pointer;
  color: #393185;
  background-color: #459647;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 80px;
  padding-right: 65px;
  min-height: 60px;
  border: none;
  line-height: 1.3;
  vertical-align: middle;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.successinfo:before {
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -9px;
  font-size: 18px;
  font-family: Wood;
  line-height: 18px;
  content: "\f107";
}

.successinfo:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  background-color: rgba(0, 0, 0, 0.1);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  content: "\f112";
  font-family: Wood;
}

.successinfo strong {
  margin-left: 5px;
}

/* successinfo */
/* product */
/* product-info */
.product-slick {
  margin-bottom: 10px;
}

.product-section {
  margin-top: 20px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.product-tablinks ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.product-tablinks ul.info {
  justify-content: flex-start !important;
}

.product-tablinks li {
  padding-left: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.tablinks {
  min-width: 130px;
  background-color: #f2f2f2;
  padding: 5px 15px;
  font-size: 14px;
  color: #000;
  display: inline-block;
}

.tablinks.active {
  background-color: #150D0F;
  color: #393185;
}

.tabcontent {
  display: none;
}

.tabcontent.active {
  display: block;
}

.product-info {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-info-right {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.product-info-img {
  margin-bottom: 5px;
  position: relative;
}

.product-info-action {
  display: flex;
  flex-direction: row;
}

.product-info-action > a {
  color: #25272e;
  font-size: 18px;
  margin-left: 10px;
}

.product-info-img img {
  border-radius: 10px;
}

.product-info-thum a {
  display: inline-block;
  width: 100%;
}

.product-info-thum li {
  padding: 0 3px !important;
}

.product-info-left {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 15px 10px 10px 0px;
  padding-right: 10px;
  padding-left: 10px;
}

.product-info-left h1 {
  margin-bottom: 15px;
}

.heading {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.product-price-heading {
  font-size: 22px;
  line-height: 1.2;
  color: #263859;
  display: block;
  font-weight: 600;
}

.product-spec li a {
  color: #25272e;
}

.product-spec li {
  margin-bottom: 10px;
  color: #25272e;
  font-weight: 600;
  position: relative;
  line-height: 1.5;
}

.product-spec li span {
  font-weight: 400;
}

.product-guard ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 15px;
  margin-top: 20px;
}

.product-category ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.product-category > span {
  color: #333;
  font-size: 15px;
  font-weight: 600;
}

.product-category ul li a {
  margin: 0 1px;
  font-weight: 400;
  color: #393185;
  margin-left: 10px;
  font-size: 25px;
}

.product-color {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
  border: 1px solid #ccc;
  padding: 10px;
  align-items: center;
  margin-bottom: 25px;
  background-color: #FFFFFF;
}

.product-color ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: 20px;
  justify-content: flex-start;
}

.product-color ul li a {
  margin: 5px;
  padding: 5px;
  color: #777777;
  display: inline-block;
}

.product-color ul li a.selected {
  border: 2px solid #ccc;
  opacity: 1;
}

.addtobasket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  border-radius: 0;
  background-color: #150D0F;
  padding: 12.5px 75px;
  color: #fff;
  cursor: pointer;
}

.addtobasket:hover {
  color: #393185;
}

.links > li > a {
  font-size: 14px;
}

/* product-info */
/*lightgallery */
.lightgallery li {
  cursor: zoom-in;
}

.thumbnail li {
  cursor: pointer;
}

/* lightgallery*/
/* discount-wrapper */
.discount-wrapper {
  background-color: #393185;
  padding: 10px 0;
  padding-bottom: 20px;
  margin-top: 20px;
}

.discount-wrapper h2 {
  color: #fff;
}

/* discount-wrapper */
/* product-feed */
.feed-qu {
  font-size: 0.857rem;
  line-height: 1.833;
  margin-left: 24px;
  color: #81858b;
}

.feed-icon {
  display: flex;
}

.feed-like {
  color: #a1a3a8;
  cursor: pointer;
  margin-left: 20px;
  font-size: 0.786rem;
}

.feed-like::after {
  content: "\f164";
  font-family: FontSolid;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  font-size: 1.143rem;
  line-height: 16px;
}

.feed-dislike {
  color: #a1a3a8;
  font-size: 0.786rem;
  line-height: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.feed-dislike::after {
  content: "\f165";
  font-family: FontSolid;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  font-size: 1.143rem;
  line-height: 16px;
}

/* product-feed */
.product-info-quantity {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 8px;
  transition: opacity 0.6s ease;
  margin-left: 20px;
}

.quantity-info {
  height: 45px !important;
  border-radius: 0 !important;
  width: 50px !important;
  display: inline-block !important;
  color: #000 !important;
  padding: 0 !important;
  text-align: center !important;
  border: 1px solid #d6d6d6 !important;
  appearance: none !important;
}

.minus-info, .plus-info {
  height: 45px;
  padding: 0 5px;
  min-width: 40px;
  display: inline-block;
  color: #000;
  background: #fff !important;
  border: 1px solid #d6d6d6 !important;
  cursor: pointer;
  font-size: 20px;
  line-height: 45px;
}

.slick-slide {
  margin: 0px auto;
  padding: 0 5px;
  height: auto !important;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

/* product-comment */
.comment-item {
  padding-top: 16px;
  padding-left: 10px;
  border-top: 1px solid #dfdfdf;
}

.comment-info {
  margin: 12px 0;
  text-align: right;
}

.comment-date {
  color: #a1a3a8;
  font-size: 0.714rem;
  line-height: 2.2;
  position: relative;
}

.comment-sender {
  color: #a1a3a8;
  font-size: 0.714rem;
  line-height: 2.2;
  position: relative;
  margin-right: 12px;
}

.comment-sendertype {
  padding: 0 8px;
  background-color: #f0f0f1;
  border-radius: 8px;
  font-size: 0.714rem;
  line-height: 16px;
  color: #81858b;
  margin-right: 8px;
  display: inline-block;
}

.comment-body {
  font-size: 1rem;
  line-height: 2.57;
  text-align: right;
  overflow: auto;
  color: #232933;
  margin: 12px 0;
  text-align: justify;
}

.comment-bar {
  display: flex;
  justify-content: flex-end;
}

/* product-comment */
/* product-question */
.question-sort {
  display: flex;
  align-items: center;
  padding-top: 16px;
  margin-bottom: 10px;
  padding-right: 20px;
  border-top: 1px solid #dfdfdf;
}

.question-qu {
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.question-sort-title {
  margin-left: 16px;
  color: #424750;
  font-size: 0.857rem;
  line-height: 1.833;
  font-weight: 700;
  position: relative;
}

.question-sort-title::before {
  content: "\f160";
  font-family: FontSolid;
  position: absolute;
  right: -20px;
  top: 0px;
  height: 24px;
  color: #a1a3a8;
  font-size: 1rem;
  line-height: 24px;
}

.question-sort-body {
  display: flex;
  list-style: none;
}

.question-sort-item {
  cursor: pointer;
}

.question-sort-item:nth-of-type(n+2) {
  margin-right: 10px;
}

.question-sort-item a {
  color: #81858b;
  font-size: 0.857rem;
  line-height: 1.833;
}

.question-sort-item a.active {
  color: #ef5662;
}

.question-item {
  padding-top: 16px;
  padding-left: 10px;
  padding-right: 20px;
  border-top: 1px solid #dfdfdf;
}

.question-title {
  line-height: 2.57;
  color: #232933;
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  text-align: justify;
}

.question-title:before {
  content: "\f059";
  font-family: FontSolid;
  position: absolute;
  right: -20px;
  top: 4px;
  height: 24px;
  color: #a1a3a8;
  font-size: 1rem;
  line-height: 24px;
}

.question-answer {
  padding-bottom: 16px;
  border-top: 1px solid rgba(223, 223, 223, 0.5);
}

.question-answer-more {
  display: none;
}

.question-answer-more.active {
  display: block;
}

.question-more {
  display: none;
  font-size: 0.857rem;
  line-height: 1.833;
  font-weight: 700;
  color: #ff0000;
  background: none;
  border-radius: 0;
}

.question-more.active {
  display: block;
}

.question-more a {
  color: #ff0000;
}

.question-answer-name {
  font-size: 0.714rem;
  line-height: 2.2;
  color: #a1a3a8;
}

.question-answer-body {
  line-height: 2.57;
  color: #333;
  font-weight: 300;
  position: relative;
  text-align: justify;
}

.question-answer-body::before {
  content: "پاسخ";
  position: absolute;
  right: -20px;
  top: 6px;
  height: 24px;
  color: #a1a3a8;
  font-size: 0.5rem;
  line-height: 24px;
}

.question-answer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.question-answer-feed-qu {
  color: #81858b;
  font-size: 0.857rem;
  line-height: 1.833;
  margin-left: 40px;
}

.question-answer-feed {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.question-answer-feed-icon a {
  color: #777;
  font-size: 14px;
}

.question-answer-like {
  margin-left: 10px;
}

.question-reply {
  display: none;
  font-size: 0.857rem;
  line-height: 1.833;
  font-weight: 700;
  color: #ff0000;
  background: none;
  border-radius: 0;
}

.question-reply.active {
  display: block;
}

.question-reply a {
  color: #ff0000;
}

.question-reply-form {
  display: none;
  background: #f0f0f1;
  padding: 12px 16px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.question-reply-form.active {
  display: block;
}

.question-reply-body {
  text-align: right;
  width: 100%;
}

.question-reply-title {
  font-size: 0.786rem;
  line-height: 19px;
  margin-bottom: 4px;
  color: #030a16;
  margin-right: 12px;
}

.question-reply-text {
  position: relative;
}

.question-reply-text textarea {
  padding: 9px 12px;
  border-radius: 8px;
  background-color: #393185;
  border: 1px solid #e0e0e2;
  font-size: 1rem;
  line-height: 24px;
  width: 100%;
  color: #030a16;
  resize: none;
}

.question-reply-text textarea.extend {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 10px;
}

.question-reply-bar {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-top: 24px;
}

.question-terms a {
  display: inline-block;
  color: #00bfd6;
  font-size: 0.857rem;
  line-height: 1.833;
  font-weight: 700;
  border-bottom: 2px dashed #00bfd6;
  cursor: pointer;
  background: transparent;
}

.question-cancel {
  color: #393185;
  border: 0;
  background-color: #fa0707;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 18px;
  cursor: pointer;
}

.question-reg {
  color: #393185;
  border: 0;
  background-color: #393185;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 18px;
}

.question-reg.active {
  background-color: #1c81ee;
  color: #393185;
  border: 1px solid #1c81ee;
  cursor: pointer;
}

/* product-question */
/* pagination */
.pagination-content {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 0.25rem;
  padding-right: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.page-item {
  display: flex;
  align-items: center;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  line-height: 1;
  border: 1px solid;
  color: #14112f;
  background-color: #FFFFFF;
  border-color: #14112f;
  margin: 0 !important;
  font-size: 16px;
}

.page-item.active .page-link {
  color: #FFFFFF;
  background-color: #14112f;
  border-color: #14112f;
  height: 100%;
}

.page-item.disabled .page-link {
  pointer-events: none;
  cursor: auto;
  color: #14112f;
  background-color: #CBCBCB;
  border-color: #14112f;
  height: 100%;
}

/* pagination */
/* product-score */
.product-score {
  position: relative;
  margin: 0 auto;
  display: block;
  font-family: FontSolid;
  font-style: normal;
  font-size: 10px;
  line-height: 1.5;
  cursor: pointer;
  margin-top: 10px;
}

.product-score:before {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
  color: #C9C9C9;
}

.product-score span {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.product-score span:before {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
  color: #eabe12;
}

/* product-score */
/* product-brand */
.product-brand {
  height: 100px;
}

.product-brand ul li > div {
  padding: 20px;
}

.product-brand ul li a img {
  width: 140px !important;
  height: 60px;
  border-radius: 10px;
  transition: all 0.5s ease;
  filter: grayscale(100%);
}

.product-brand ul li a:hover img {
  filter: grayscale(0);
}

/* product-brand */
/* product-item  */
.product-item {
  margin-top: 0px;
}

.product-desc {
  text-align: justify;
}

.product-item ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-item > ul li {
  flex: 0 0 25%;
  max-width: 25%;
  justify-content: space-between;
}

.product-item-contain {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #FFFFFF;
  padding: 0px 10px 10px 10px;
  position: relative;
  width: 100%;
}

.product-item-contain:hover .product-papular-title {
  color: #393185;
}

.product-noexists, .product-discount {
  position: absolute;
  top: 5px;
  left: 15px;
  background-color: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.product-discount {
  height: 40px;
  width: 40px;
}

.product-noexists {
  height: 40px;
  width: 50px;
}

.product-papular-price {
  font-size: 16px;
  font-weight: 700;
  color: #263859;
  display: inline-block;
  text-align: center;
  margin: 0 0 5px 0;
}

.product-papular-price bdi {
  margin-left: 10px;
  color: #25272e;
  font-size: 14px;
  text-decoration: line-through;
}

.product-item-contain a img {
  width: 100%;
  transition: all 0.5s ease;
}

.product-papular-title {
  font-size: 16px;
  font-weight: normal;
  color: #636262;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 30px;
  padding: 0 5px;
}

.product-carousel {
  position: relative;
}

.owl-nav {
  margin: 0 !important;
}

.product-carousel:hover .owl-nav {
  display: block;
}

.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  border-radius: 0;
  left: 0;
  border: none;
  padding: 0;
  background-color: rgba(0, 15, 46, 0.5) !important;
  width: 50px;
  height: 50px;
  font-size: 25px !important;
  color: #fff !important;
  line-height: 48px !important;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  transform: translateY(-50%);
  margin: 0 !important;
}

.owl-prev {
  right: 0%;
}

.owl-next {
  left: 0%;
}

.owl-next:before {
  content: "\f104";
  font-family: FontSolid;
}

.owl-prev:before {
  content: "\f105";
  font-family: FontSolid;
}

.owl-next:hover, .owl-prev:hover {
  background-color: rgba(0, 15, 46, 0.8) !important;
}

.owl-next span, .owl-prev span {
  display: none;
}

/* product-item */
/* filter header */
.filter-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0px;
  align-items: center;
  padding-top: 10px;
}

.filter-right {
  margin-right: 5px;
}

.filter-right {
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.filter-right > span {
  margin-left: 5px;
}

.filter-right > span > a {
  padding: 5px;
  color: #000;
}

.filter-right > span > a:hover {
  color: #393185;
}

.filter-left {
  display: flex;
}

.filter-perpage {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 15px;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
  color: #8E8E8E;
}

.filter-perpage > span:first-child {
  color: #2d2a2a;
  font-weight: 700;
}

.filter-perpage > a {
  color: #8E8E8E;
  padding: 0 7px;
}

.filter-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 15px;
  margin-left: 30px;
  vertical-align: middle;
  font-size: 14px;
  line-height: 20px;
  color: #8E8E8E;
}

.filter-grid a {
  margin-left: 12px;
  opacity: 0.3;
}

.filter-open {
  color: #2D2A2A;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.6px;
  font-weight: 700;
  padding-left: 18px;
  position: relative;
  cursor: pointer;
}

.item-select span, .orderby-select span {
  color: red;
}

/* filter header */
/* filter search */
.filter-contain {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 30px;
  padding-top: 30px;
  border-bottom: 1px solid rgba(119, 119, 119, 0.17);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.filter-section {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px 15px;
  margin-bottom: 0px;
  font-size: 16px;
}

.filter-title {
  font-size: inherit;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  vertical-align: baseline;
  margin-bottom: 20px;
}

.filter-content {
  color: #777;
  font-size: inherit;
  line-height: 1.4;
}

.filter-content li {
  margin-bottom: 15px;
  width: 100%;
}

.filter-content li a {
  color: #727272;
  font-size: inherit;
}

.filter-content li a:hover {
  color: #333;
}

.filter-content-color {
  overflow-y: auto;
  overflow-x: hidden;
  height: 40vh;
  padding-left: 17px;
}

.filter-content-color li {
  display: flex;
  justify-content: space-between;
}

.filter-content-color .color {
  flex: 1 1 auto;
}

.filter-content-color .color:hover + .count {
  color: #393185;
  background-color: #393185;
}

.count {
  border-color: rgba(129, 129, 129, 0.2);
  padding-right: 5px;
  padding-left: 5px;
  min-width: 30px;
  height: 20px;
  border: 1px solid;
  border-radius: 35px;
  color: #777;
  text-align: center;
  vertical-align: baseline;
  font-size: 12px;
  line-height: 21px;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

/* filter search */
/* filter select */
.filter-select {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.filter-select > a {
  color: #333;
  font-size: 16px;
  margin-left: 10px;
}

/* filter select */
/* filter side */
.filter-side {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  background-color: #FFFFFF;
  z-index: 500;
  overflow: hidden;
  overflow-y: auto;
  transform: translate3d(340px, 0, 0);
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.filter-side-open {
  transform: none;
}

.filter-side-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 15px 20px 15px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.filter-side-head h3 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
}

.filter-side-head a {
  color: #2d2a2a;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 18px;
}

.filter-side-head a:before {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
  background-color: #000;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -2px;
}

.filter-side-head a:after {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(-45deg);
  background-color: #000;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -2px;
}

.filter-side-head a:hover:before {
  transform: none;
}

.filter-side-head a:hover:after {
  transform: none;
}

/* filter side  */
/* postcodes */
.postcodes {
  display: flex;
  width: 200px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.postcodes button {
  border-radius: 30px;
  background-color: #393185;
  border: none;
  color: #fff;
  margin: 0;
  padding: 0;
  width: 80px;
  cursor: pointer;
}

.postcodes input {
  width: 100px;
  text-align: center;
}

.postcodes-data {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.postcodes-note {
  text-align: center;
  font-size: 16px;
}

/* postcodes */
/* basket */
/* basket head  */
.basket-head {
  display: inline-block;
  margin-right: 5px;
  padding: 5px;
  cursor: pointer;
}

.basket-head-icon {
  position: relative;
  margin-left: 5px;
  color: #fff;
}

.basket-head-icon span {
  position: absolute;
  top: -10px;
  left: -8px;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  font-size: 10px !important;
  line-height: 15px;
  background-color: #d6b268;
}

.basket-head-icon:before {
  font-size: 20px;
  content: "\f105";
  font-family: Wood;
}

.basket-head-text {
  color: #fff;
}

/* basket head  */
/* basket head mob  */
.basket-head-mob {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}

.basket-head-mob-icon:before {
  color: #fff;
  font-size: 20px;
  content: "\f105";
  font-family: Wood;
}

.basket-head-mob-text {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 12px;
}

.basket-head-mob-text span {
  display: block;
}

.basket-head-mob-text span:first-child {
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}

.basket-head-mob-text span:last-child {
  color: #fff;
  text-transform: none;
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
}

/* basket head mob  */
/* basketcart  */
.basketcart {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 10px;
}

.basketcart + p {
  margin-bottom: 20px;
  color: red;
  font-size: 20px;
}

.basketcart + p + p, .basketcart + p + p + p {
  margin-bottom: 20px;
  color: #777777;
  font-size: 16px;
  margin-right: 20px;
}

.basketcart-right {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 15px;
}

.basketcart-right-content {
  padding: 25px;
}

.basketcart-right-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 2px solid #EFEFEF;
  padding: 15px 10px;
}

.basketcart-right-title > span {
  flex: 0 0 20%;
  font-weight: 600;
  color: #242424;
}

.basketcart-right-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 10px;
  border-bottom: 2px solid #EFEFEF;
}

.basketcart-right-item > span {
  flex: 0 0 20%;
}

.basketcart-right-img {
  min-width: 80px;
  max-width: 80px;
}

.basketcart-left {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  min-height: 1px;
  margin-bottom: 15px;
}

.basketcart-right-content .updateBasket {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 35px;
}

.basketcart-right-content .updateBasket button {
  color: #333;
  background-color: #f3f3f3ad;
  border-radius: 35px;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 18px;
  border-style: solid;
  border-color: transparent;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.basketcart-right-content .updateBasket button:hover {
  background-color: #efefef;
}

.basketcart-right-content .updatediscount {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 10px;
}

.basketcart-right-content .updatediscount input {
  flex: 0 0 150px;
  max-width: 150px;
}

.basketcart-right-content .updatediscount button {
  color: #333;
  background-color: #f3f3f3ad;
  border-radius: 35px;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 18px;
  border-style: solid;
  border-color: transparent;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.basketcart-right-content .updatediscount button:hover {
  background-color: #efefef;
}

.updateBasketmob {
  display: block;
}

.updateBasketnomob {
  display: none;
}

.basketcart-left-content {
  padding: 25px;
}

.basketcart-left-content h2 {
  margin-bottom: 5px;
  padding-right: 6px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #242424;
  margin-bottom: 5px;
}

.basketcart-left-content > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #E6E6E6;
  text-transform: none;
  font-size: 14px;
  padding: 15px 0px;
  align-items: center;
}

.basketcart-left-content > div:last-child {
  border-bottom: 0 !important;
}

.basketcart-left-content > div > span:first-child {
  font-weight: 600;
  color: #242424;
  font-size: 14px;
}

.basketcart-left-content > div:last-child > span:first-child {
  font-size: 18px;
}

.basketcart-transport span {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.basketcart-total {
  font-weight: 600;
  color: #242424;
  font-size: 20px;
}

.basketcart-payment {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 18px;
  line-height: 43.2px;
  background-color: #393185;
  color: #FFFFFF;
  border: 1px solid #393185;
  display: block;
}
.basketcart-payment:hover {
  color: #393185;
  background-color: #FFFFFF;
}

.basketcart-right-item-title a {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.basketcart-right-item-title a:hover {
  color: rgba(51, 51, 51, 0.7);
}

.basketcart-right-item-price {
  color: #777;
  font-size: 14px;
}

.basketcart-right-item-total {
  color: #393185;
  font-size: 16px;
  font-weight: 600;
}

.close-icon {
  color: #2d2a2a;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
}

.close-icon:before {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
  background-color: #000;
  content: "";
  top: -40px;
  right: -25px;
  cursor: pointer;
}

.close-icon:after {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(-45deg);
  background-color: #000;
  content: "";
  top: -40px;
  right: -25px;
  cursor: pointer;
}

.close-icon:hover:after, .close-icon:hover:before {
  transform: none;
}

.close-icon-mob {
  color: #2d2a2a;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  cursor: pointer;
}

.close-icon-mob:before {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
  background-color: #000;
  content: "";
  top: -5px;
  left: 0px;
  cursor: pointer;
}

.close-icon-mob:after {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(-45deg);
  background-color: #000;
  content: "";
  top: -5px;
  left: 0px;
  cursor: pointer;
}

.close-icon-mob:hover:after, .close-icon-mob:hover:before {
  transform: none;
}

.basketcart-right-nomob {
  display: none;
}

.basketcart-right-mob {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.basketcart-right-mob-item {
  flex: 1 1 auto;
  padding: 15px 15px;
}

.basketcart-right-mob-item-prop {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  border-bottom: 1px solid #E6E6E6;
  padding: 5px 15px;
}

.basketcart-right-mob-titlefirst {
  color: #333;
  font-size: 13px;
  font-weight: 600;
}

.basketcart-right-mob-title {
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.basketcart-right-mob-price {
  color: #777;
  font-size: 14px;
}

.basketcart-right-mob-total {
  color: #393185;
  font-size: 16px;
  font-weight: 600;
}

/* basketcart  */
/* basket side  */
.basket-side {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 300px;
  background-color: #FFFFFF;
  z-index: 2500;
  overflow: hidden;
  overflow-y: auto;
  transform: translate3d(-340px, 0, 0);
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.basket-side-open {
  transform: none;
}

.basket-side-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 15px 20px 15px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.basket-side-head h3 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
}

.basket-side-head a {
  color: #2d2a2a;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 18px;
}

.basket-side-head a:before {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
  background-color: #000;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -2px;
}

.basket-side-head a:after {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(-45deg);
  background-color: #000;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -2px;
}

.basket-side-head a:hover:before {
  transform: none;
}

.basket-side-head a:hover:after {
  transform: none;
}

.basket-side-body ul {
  text-align: right;
  line-height: 1.4;
  height: 65vh;
  overflow: auto;
}

.basket-side-body ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  padding: 15px;
  transition: background-color 0.3s ease;
  align-items: flex-start;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.basket-side-body ul li:hover {
  background-color: #F9F9F9;
}

.basket-side-img {
  flex: 0 0 auto;
  overflow: hidden;
  margin-left: 15px;
}

.basket-side-img img {
  min-width: 65px;
  max-height: 65px;
}

.basket-side-info {
  flex: 1 1 auto;
  padding-left: 20px;
}

.basket-side-title {
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  line-height: 1.3;
}

.basket-side-price {
  display: block;
  color: #BBB;
  font-size: 13px;
}

.basket-side-price span {
  font-size: 14px;
  color: #333;
  line-height: 1.3;
  margin-right: 5px;
}

.basket-side-del {
  position: absolute;
  top: 13px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-size: 0;
  line-height: 20px;
}

.basket-side-del:after {
  font-weight: 700;
  font-size: 8px;
  content: "\f112";
  font-family: Wood;
}

.basket-side-quantity {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 8px;
  transition: opacity 0.6s ease;
  margin-left: 25px;
}

.minus {
  height: 32px;
  padding: 0 5px;
  min-width: 25px;
  display: inline-block;
  color: #777;
  background: #ececec !important;
  border: 1px solid #d6d6d6 !important;
  cursor: pointer;
}

.quantity {
  height: 32px !important;
  border-radius: 0 !important;
  width: 30px !important;
  display: inline-block !important;
  color: #777 !important;
  padding: 0 !important;
  text-align: center !important;
  border: 1px solid #d6d6d6 !important;
  appearance: none !important;
}

.plus {
  height: 32px;
  padding: 0 5px;
  min-width: 25px;
  display: inline-block;
  color: #777;
  background: #ececec !important;
  border: 1px solid #d6d6d6 !important;
  cursor: pointer;
}

.basket-side-footer {
  padding-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 15px;
}

.basket-side-footer a {
  display: block;
}

.basket-side-total {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 5px;
}

.basket-side-total strong {
  color: #2d2a2a;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}

.basket-side-total span {
  font-weight: 400;
  font-size: 20px;
}

.basket-side-view, .basket-side-payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

.basket-side-view {
  margin-bottom: 10px;
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: #393185;
  color: #FFFFFF;
  border: 1px solid #393185;
}
.basket-side-view:hover {
  color: #393185;
  background-color: #FFFFFF;
}

.basket-side-payment {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: #ae4a84;
  color: #FFFFFF;
  border: 1px solid #ae4a84;
}
.basket-side-payment:hover {
  color: #ae4a84;
  background-color: #FFFFFF;
}

/* basket side */
/* login page */
.register-section {
  display: none;
}

.register-section-show {
  display: block;
}

.login-section {
  display: none;
}

.login-section-show {
  display: block;
}

.login-page {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-bottom: 20px;
}

.login-page-section {
  flex: 0 0 100%;
  max-width: 0 0 100%;
  padding: 5px 5px;
}

.login-page-section-left {
  text-align: center;
}

.login-page-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.login-page-inside {
  color: #333;
  background-color: #efefef;
  border-radius: 35px;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.3px;
  display: inline-block;
}

/* login page */
/* login side */
.login-side {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  background-color: #FFFFFF;
  z-index: 2500;
  overflow: hidden;
  overflow-y: auto;
  transform: translate3d(340px, 0, 0);
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.login-side-open {
  transform: none;
}

.login-side-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 15px 20px 15px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.login-side-head h3 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
}

.login-side-head a {
  color: #2d2a2a;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 18px;
}

.login-side-head a:before {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
  background-color: #000;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -2px;
}

.login-side-head a:after {
  position: absolute;
  width: 12px;
  height: 2px;
  transform: rotate(-45deg);
  background-color: #000;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -2px;
}

.login-side-head a:hover:before {
  transform: none;
}

.login-side-head a:hover:after {
  transform: none;
}

.login-side-body {
  padding: 20px 15px 10px 15px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.login-side-section {
  margin-bottom: 20px;
}

.login-side-section label {
  display: block;
  margin-bottom: 5px;
  color: #464646;
  vertical-align: middle;
  font-weight: 400;
  font-size: 14px;
}

.required {
  color: #E01020;
  font-size: 16px;
  line-height: 1;
}

.login-side-section input {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  height: 42px;
  vertical-align: middle;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #d6d6d6 !important;
}

.login-side-section button {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
  font-size: 12px;
  line-height: 28.8px;
  background-color: #393185;
  color: #FFFFFF;
  border: 1px solid #393185;
  width: 100%;
  max-width: 100%;
}
.login-side-section button:hover {
  color: #393185;
  background-color: #FFFFFF;
}

.login-side-section-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.login-side-section-bottom a {
  color: #333;
}

.login-side-footer {
  padding-top: 20px;
  padding-right: 15px;
  padding-bottom: 20px;
  padding-left: 15px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  text-align: center;
}

.login-side-footer:before {
  content: "\f124";
  display: block;
  margin-bottom: 15px;
  font-size: 54px;
  font-weight: 400;
  line-height: 54px;
  font-family: Wood;
  color: rgba(135, 135, 135, 0.15);
}

.login-side-footer span {
  display: block;
  margin-bottom: 15px;
  color: #2d2a2a;
  font-weight: 600;
  font-size: 14px;
}

.login-side-footer a {
  padding: 0;
  border-width: 2px;
  border-style: solid;
  border-color: #333;
  border-top: none;
  border-right: none;
  border-left: none;
  background-color: transparent !important;
}

.login-side-footer a:hover {
  opacity: 0.6;
}

/* login side */
/* responcive */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .container {
    width: 100%;
  }

  .product-item > ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .filter-perpage {
    display: none;
  }

  .filter-grid {
    display: none;
  }

  .filter-section {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .question-reply-bar {
    flex-direction: column;
  }

  .question-terms {
    margin-bottom: 5px;
  }

  .filter-left {
    margin-right: 5px;
  }

  .filter-right {
    margin-bottom: 15px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .table-responsive-sm {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .container {
    width: 100%;
  }

  .product-item > ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .newslist-content-img {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .newslist-content-note {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .newslist-content-note {
    padding: 0 24px;
  }

  .bloglist-content-img {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bloglist-content-note {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bloglist-content-note {
    padding: 0 24px;
  }

  .cliniclist > ul > li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .container {
    width: 100%;
  }

  .product-item > ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-info-left {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .product-info-right {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .account-names > div {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 0px;
  }

  .category-view-most ul li {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .filter-wrapper {
    display: block;
  }

  .filter-show {
    display: none;
  }

  .subbanner {
    padding: 0 50px;
  }

  .subbanner-image {
    padding: 15px;
  }

  .subbanner-triangle .side-right {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .subbanner-triangle .side-left {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .subbanner3 > div {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .subbanner2 > div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .subbanner-triangle .side-right {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .subbanner-triangle .side-left {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .subbanner-rectangle .side-right {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .subbanner-rectangle .side-middle {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .subbanner-rectangle .side-left {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .service li {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .info-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .mapsite-map {
    flex: 0 0 50%;
    width: 50%;
  }

  .mapsite-info {
    flex: 0 0 50%;
    width: 50%;
  }

  .footer-address, .footer-menu, .footer-contactus {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .gallerylist > ul li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .blog-gallerylist > ul li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .videolist > ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .voicelist > ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .paperlist > ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .filterdoctor-wrapper {
    display: block;
  }

  .filterdoctor-show {
    display: none;
  }

  .doctor-item > ul li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .doctor-info-left {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .doctor-info-right {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .doctor-info-head-left {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .doctor-info-head-right {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .news-content-wrapper {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .news-cat-wrapper {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .news-header {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .news-image {
    text-align: center;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .blog-content-wrapper {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .blog-cat-wrapper {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .blog-header-wrapper {
    flex-wrap: wrap;
  }

  .news-header-wrapper {
    flex-wrap: wrap;
  }

  .blog-header {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .blog-image {
    text-align: center;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .contactus-item-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .comment-form-sender > div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .comment-form {
    padding: 0;
  }

  .cliniclist > ul > li {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .container {
    width: 100%;
  }

  .product-item > ul li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .header {
    display: flex;
  }

  .login-page-section {
    flex: 0 0 50%;
    max-width: 0 0 50%;
  }

  .basketcart-right {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .basketcart-left {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
  }

  .checkout-right {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .checkout-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
  }

  .basketcart-right-nomob {
    display: block;
  }

  .basketcart-right-mob {
    display: none;
  }

  .updateBasketmob {
    display: none;
  }

  .updateBasketnomob {
    display: block;
  }

  .dashboard-side-right {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .dashboard-side-left {
    flex: 0 0 75%;
    max-width: 75%;
    padding-right: 20px;
  }

  .order-contain {
    display: block;
  }

  .order-mob-contain {
    display: none;
  }

  .dashboard-side-right {
    border-left: 1px solid rgba(129, 129, 129, 0.2);
  }

  .svg-namad-item {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .section-contain-right, .section-contain-left {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .menu-bar {
    display: block;
  }

  .menu-bar-mob {
    display: none;
  }

  .breadcrumb-wrapper {
    margin-top: -70px;
  }

  .breadcrumb-conent {
    height: 150px;
    padding-top: 78px;
  }

  .banner-carousel {
    margin-top: -70px;
  }

  .header-top {
    display: block;
  }

  .equipment, .aboutsite {
    padding-right: 107px;
    padding-left: 107px;
  }

  .gallerylist > ul li {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .blog-gallerylist > ul li {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .videolist > ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .voicelist > ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .paperlist > ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .doctor-item > ul li {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .cliniclist > ul > li {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .container {
    width: 1224px;
    margin: 0 auto;
  }

  .product-item > ul li {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
/* responcive */
.content {
  padding: 0 5px;
}

main {
  min-height: 400px;
}

.cat-others {
  font-size: 18px;
  color: #393185;
  text-align: center;
  margin-bottom: -24px;
  margin-top: 16px;
}

.ck-content {
  background: #fff;
}

.ck-content h1 {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 2px;
  line-height: 44px;
}

.ck-content .meta {
  color: #888;
  font-size: 13px;
  line-height: 28px;
}

.ck-content .meta i {
  font-size: 15px;
  color: #4e8eb7;
  position: relative;
  top: 1px;
}

.ck-content {
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
}

.ck-content h2 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #393185;
  line-height: 40px;
}

.ck-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 28px;
  line-height: 34px;
  color: #ae4a84;
}

.ck-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 25px;
  line-height: 30px;
  line-height: 30px;
}

.ck-content h5, .ck-content h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 25px;
  line-height: 30px;
  line-height: 30px;
}

.ck-content p a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  display: inline-block;
}

.ck-content p a:hover {
  border-bottom: 1px solid #0087de;
}

.ck-content .has-bg {
  padding: 10px;
  border-right: 4px solid rgba(0, 0, 0, 0.2);
  background-color: #eee;
}

.ck-content img, .ck-content audio, .ck-content video {
  max-width: 100%;
  height: auto;
}

.ck-content .aligncenter {
  text-align: center;
}

.ck-content figcaption {
  font-size: 0.84em;
  display: block;
}

.ck-content input, .ck-content textarea, .ck-content select {
  width: 100%;
  max-width: 23.1rem;
}

.ck-content input[type=submit] {
  width: auto;
}

.ck-content .video {
  border: 2px solid #222;
}

.ck-content .tags {
  word-break: break-all;
}

.ck-content .tags i {
  color: #999;
}

.ck-content .tags a {
  color: #005C97;
  line-height: 30px;
}

.ck-content .rating {
  text-align: center;
}

.ck-content .rating .stars {
  font-size: 0;
  display: inline-block;
  overflow: hidden;
}

.ck-content .rating .stars span {
  font-size: 20px;
  cursor: pointer;
  color: #ccc;
  float: left;
  padding: 0 0.5px;
}

.ck-content .rating .stars span.active {
  color: #F8C600;
}

.ck-content .rating .text {
  color: #666;
  font-size: 13px;
}

.ck-content .telegram-share {
  background: #31A8DC;
  background: -webkit-linear-gradient(to right top, #37AEE2, #1E96C8);
  background: linear-gradient(to right top, #37AEE2, #1E96C8);
  color: #fff;
}

.ck-content .telegram-share i {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 4px;
}

.ck-content .send {
  border: 2px solid white;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.2s;
}

.ck-content .send:hover {
  background: white;
  color: #31A8DC;
}

.ck-content #FAQ h4 {
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  padding: 15px 10px;
}

.ck-content #FAQ h4 .plus-icon i {
  transition: all 0.3s;
  color: #888;
}

.ck-content #FAQ p {
  background: #fafafa;
  padding: 12px;
  margin-bottom: 0;
}

.ck-content #FAQ .item:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.ck-content #comment h3#comments {
  display: none;
}

.ck-content ol.commentlist {
  list-style-type: none;
  padding: 0;
  border-right: 2px solid #eee;
}

.ck-content .commentlist li {
  font-size: 14px;
  padding: 10px 32px 10px 10px;
  margin-bottom: 20px;
  list-style-type: none;
  position: relative;
}

.ck-content .commentlist li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 100%;
  top: 19px;
  right: -8px;
  border: 2px solid #fff;
  box-sizing: content-box;
  box-shadow: 0 0 4px #bbb;
}

.ck-content .commentlist li::after {
  content: "";
  width: 15px;
  border-top: 4px dotted #ccc;
  position: absolute;
  top: 24px;
  right: 12px;
}

.ck-content .commentlist li p {
  line-height: 28px;
  margin-bottom: 8px;
}

.ck-content .commentlist li p a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: inline-block;
  transition: all 0.4s;
}

.ck-content .commentlist li p a:hover {
  border-color: #0087de;
}

.ck-content .commentlist li .comment-meta {
  display: none;
}

.ck-content .commentlist li .comment-author {
  margin-bottom: 10px;
}

.ck-content .commentlist li .comment-author .says {
  display: none;
}

.ck-content .commentlist li .comment-author cite {
  font-style: normal;
  font-weight: 600;
  margin-right: 5px;
  font-size: 15px;
  color: #035a97;
}

.ck-content .commentlist li .comment-author img {
  border-radius: 100%;
}

.ck-content .commentlist li .comment-awaiting-moderation {
  color: #888;
  font-size: 13px;
  font-style: normal;
  padding: 5px 0;
  display: inline-block;
}

.ck-content .commentlist li .reply a {
  font-size: 12px;
  border: 1px solid #aaa;
  padding: 0 5px 2px;
  border-radius: 4px;
  color: #888;
}

.ck-content .commentlist li .reply a:hover {
  background: #f9f9f9;
  color: #666;
}

.ck-content ul.children {
  padding: 0;
  margin: 0;
}

.ck-content ul.children li {
  margin: 20px 20px 0 0;
}

.ck-content ul.children li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #429ad4;
  border-radius: 100%;
  top: 19px;
  right: -60px;
  border: 2px solid #fff;
  box-sizing: content-box;
  box-shadow: 0 0 4px #bbb;
}

.ck-content ul.children li::after {
  content: "";
  width: 66px;
  border-top: 4px dotted #429ad4;
  position: absolute;
  top: 24px;
  right: -40px;
}

.ck-content #comment .entry {
  background: #fff;
}

.ck-content #comment #reply-title {
  display: none;
}

.ck-content #comment .logged-in-as {
  padding: 10px 0 5px 0;
  font-size: 14px;
}

.ck-content #comment .comment-notes {
  color: #888;
  font-size: 13px;
  padding-top: 10px;
}

.ck-content #comment #commentform textarea {
  font-size: 14px;
  line-height: 28px;
  padding: 14px 10px;
  width: 100%;
  height: 120px;
  outline: none;
  border: 1px solid #aaa;
  color: #666;
}

.ck-content #comment #commentform textarea:focus {
  border-color: #005cd4;
}

.ck-content #comment .comment-form-cookies-consent {
  display: none;
}

.ck-content #comment .comment-form-comment {
  margin-bottom: 10px;
  position: relative;
}

.ck-content #comment .comment-form-author {
  float: right;
  width: 33.33%;
  box-sizing: border-box;
  padding-left: 6px;
  position: relative;
}

.ck-content #comment .comment-form-email {
  float: right;
  width: 33.33%;
  box-sizing: border-box;
  padding: 0 3px;
  position: relative;
}

.ck-content #comment .comment-form-url {
  float: right;
  width: 33.33%;
  box-sizing: border-box;
  padding-right: 6px;
  position: relative;
}

.ck-content #comment .comment-form-comment label, .ck-content #comment .comment-form-author label, .ck-content #comment .comment-form-email label, .ck-content #comment .comment-form-url label {
  display: block;
  position: absolute;
  font-size: 13px;
  color: #666;
  background: #fff;
  top: -11px;
  right: 10px;
  padding: 0 5px;
}

.ck-content #comment .comment-form-author input, .ck-content #comment .comment-form-email input, .ck-content #comment .comment-form-url input {
  width: 100%;
  height: 48px;
  outline: none;
  border: 1px solid #aaa;
  padding: 0 10px;
  font-size: 14px;
  color: #555;
}

.ck-content #comment .comment-form-author input:focus, .ck-content #comment .comment-form-email input:focus, .ck-content #comment .comment-form-url input:focus {
  border-color: #005cd4;
}

.ck-content #comment #submit {
  background: #0070b9;
  border: none;
  color: white;
  padding: 6px 14px;
  outline: none;
  border-radius: 3px;
  transition: all 0.2s;
  font-size: 14px;
}

.ck-content #comment #submit:hover {
  background: #005C97;
  color: white;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
  border: 1px solid green;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

@media screen and (max-width: 576px) {
  .ck-content #comment .comment-form-author, .ck-content #comment .comment-form-email, .ck-content #comment .comment-form-url {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 25px;
  }
}
#most-visited-signle .item > a {
  float: right;
  padding: 15px;
}

#most-visited-signle .item > a img {
  margin-right: 0;
}

#most-visited-signle .item .title > a {
  padding-top: 15px;
  display: block;
  padding-left: 15px;
  font-weight: 400;
}

#courses-list .item {
  background: #444;
  margin-bottom: 0;
  border-bottom: 1px solid #555;
  transition: all 0.1s;
}

#courses-list .item:hover, #courses-list .item.active {
  background: #4e4e4e;
}

#courses-list .item a {
  font-size: 14px;
  color: #ddd;
  line-height: 26px;
  font-weight: 300;
}

#courses-list .item:hover a, #courses-list .item.active a {
  color: white;
}

@media (max-width: 760px) {
  .ck-content header h1 {
    font-size: 18px;
    line-height: 32px;
  }
}

/*# sourceMappingURL=main.css.map */
