.App {
    text-align: center
}

.container {
    width: 90%!important;
    margin: 0 auto;
    max-width: 1340px!important
}

.App-logo {
    animation: App-logo-spin infinite 20s linear;
    height: 80px
}

.App-header {
    background-color: #222;
    height: 150px;
    padding: 20px;
    color: #fff
}

.App-intro {
    font-size: large
}

@keyframes App-logo-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.Toastify__toast-container {
    z-index: 9999;
    -webkit-transform: translateZ(9999px);
    position: fixed;
    padding: 4px;
    width: 320px;
    box-sizing: border-box;
    color: #fff
}

.Toastify__toast-container--top-left {
    top: 1em;
    left: 1em
}

.Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    margin-left: -160px
}

.Toastify__toast-container--top-right {
    top: 1em;
    right: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -160px
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        width:100vw;
        padding: 0;
        left: 0;
        margin: 0
    }

    .Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right {
        top: 0
    }

    .Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right {
        bottom: 0
    }

    .Toastify__toast-container--rtl {
        right: 0;
        left: auto
    }
}

.Toastify__toast {
    position: relative;
    min-height: 64px;
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 1px;
    box-shadow: 0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-height: 800px;
    overflow: hidden;
    font-family: sans-serif;
    cursor: pointer;
    direction: ltr
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--default {
    background: #fff;
    color: #aaa
}

.Toastify__toast--info {
    background: #3498db
}

.Toastify__toast--success {
    background: #07bc0c
}

.Toastify__toast--warning {
    background: #f1c40f
}

.Toastify__toast--error {
    background: #e74c3c
}

.Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1;
    flex: 1
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        margin-bottom:0
    }
}

.Toastify__close-button {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: .7;
    transition: .3s ease;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.Toastify__close-button--default {
    color: #000;
    opacity: .3
}

.Toastify__close-button:focus,.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 9999;
    opacity: .7;
    background-color: hsla(0,0%,100%,.7);
    -ms-transform-origin: left;
    transform-origin: left
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    right: 0;
    left: auto;
    -ms-transform-origin: right;
    transform-origin: right
}

.Toastify__progress-bar--default {
    background: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55)
}

@keyframes Toastify__bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.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
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes Toastify__bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.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
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes Toastify__bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        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: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes Toastify__bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.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
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0,110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0,-110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(110%,0,0)
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-110%,0,0)
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,500px,0)
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-500px,0)
    }
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
    box-sizing: border-box;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 13px;
    height: 100%;
    margin: 0;
    position: relative
}

.ql-container.ql-disabled .ql-tooltip {
    visibility: hidden
}

.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before {
    pointer-events: none
}

.ql-clipboard {
    left: -100000px;
    height: 1px;
    overflow-y: hidden;
    position: absolute;
    top: 50%
}

.ql-clipboard p {
    margin: 0;
    padding: 0
}

.ql-editor {
    box-sizing: border-box;
    line-height: 1.42;
    height: 100%;
    outline: none;
    overflow-y: auto;
    padding: 12px 15px;
    tab-size: 4;
    -moz-tab-size: 4;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word
}

.ql-editor>* {
    cursor: text
}

.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul {
    margin: 0;
    padding: 0;
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
}

.ql-editor ol,.ql-editor ul {
    padding-left: 1.5em
}

.ql-editor ol>li,.ql-editor ul>li {
    list-style-type: none
}

.ql-editor ul>li:before {
    content: "\2022"
}

.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true] {
    pointer-events: none
}

.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li * {
    pointer-events: all
}

.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before {
    color: #777;
    cursor: pointer;
    pointer-events: all
}

.ql-editor ul[data-checked=true]>li:before {
    content: "\2611"
}

.ql-editor ul[data-checked=false]>li:before {
    content: "\2610"
}

.ql-editor li:before {
    display: inline-block;
    white-space: nowrap;
    width: 1.2em
}

.ql-editor li:not(.ql-direction-rtl):before {
    margin-left: -1.5em;
    margin-right: .3em;
    text-align: right
}

.ql-editor li.ql-direction-rtl:before {
    margin-left: .3em;
    margin-right: -1.5em
}

.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl) {
    padding-left: 1.5em
}

.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl {
    padding-right: 1.5em
}

.ql-editor ol li {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
    counter-increment: list-0
}

.ql-editor ol li:before {
    content: counter(list-0,decimal) ". "
}

.ql-editor ol li.ql-indent-1 {
    counter-increment: list-1
}

.ql-editor ol li.ql-indent-1:before {
    content: counter(list-1,lower-alpha) ". "
}

.ql-editor ol li.ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
}

.ql-editor ol li.ql-indent-2 {
    counter-increment: list-2
}

.ql-editor ol li.ql-indent-2:before {
    content: counter(list-2,lower-roman) ". "
}

.ql-editor ol li.ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9
}

.ql-editor ol li.ql-indent-3 {
    counter-increment: list-3
}

.ql-editor ol li.ql-indent-3:before {
    content: counter(list-3,decimal) ". "
}

.ql-editor ol li.ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9
}

.ql-editor ol li.ql-indent-4 {
    counter-increment: list-4
}

.ql-editor ol li.ql-indent-4:before {
    content: counter(list-4,lower-alpha) ". "
}

.ql-editor ol li.ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9
}

.ql-editor ol li.ql-indent-5 {
    counter-increment: list-5
}

.ql-editor ol li.ql-indent-5:before {
    content: counter(list-5,lower-roman) ". "
}

.ql-editor ol li.ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9
}

.ql-editor ol li.ql-indent-6 {
    counter-increment: list-6
}

.ql-editor ol li.ql-indent-6:before {
    content: counter(list-6,decimal) ". "
}

.ql-editor ol li.ql-indent-6 {
    counter-reset: list-7 list-8 list-9
}

.ql-editor ol li.ql-indent-7 {
    counter-increment: list-7
}

.ql-editor ol li.ql-indent-7:before {
    content: counter(list-7,lower-alpha) ". "
}

.ql-editor ol li.ql-indent-7 {
    counter-reset: list-8 list-9
}

.ql-editor ol li.ql-indent-8 {
    counter-increment: list-8
}

.ql-editor ol li.ql-indent-8:before {
    content: counter(list-8,lower-roman) ". "
}

.ql-editor ol li.ql-indent-8 {
    counter-reset: list-9
}

.ql-editor ol li.ql-indent-9 {
    counter-increment: list-9
}

.ql-editor ol li.ql-indent-9:before {
    content: counter(list-9,decimal) ". "
}

.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
    padding-left: 3em
}

.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
    padding-left: 4.5em
}

.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
    padding-right: 3em
}

.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
    padding-right: 4.5em
}

.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
    padding-left: 6em
}

.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
    padding-left: 7.5em
}

.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
    padding-right: 6em
}

.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
    padding-right: 7.5em
}

.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
    padding-left: 9em
}

.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
    padding-left: 10.5em
}

.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
    padding-right: 9em
}

.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
    padding-right: 10.5em
}

.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
    padding-left: 12em
}

.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
    padding-left: 13.5em
}

.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
    padding-right: 12em
}

.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
    padding-right: 13.5em
}

.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
    padding-left: 15em
}

.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
    padding-left: 16.5em
}

.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
    padding-right: 15em
}

.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
    padding-right: 16.5em
}

.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
    padding-left: 18em
}

.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
    padding-left: 19.5em
}

.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
    padding-right: 18em
}

.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
    padding-right: 19.5em
}

.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
    padding-left: 21em
}

.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
    padding-left: 22.5em
}

.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
    padding-right: 21em
}

.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
    padding-right: 22.5em
}

.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
    padding-left: 24em
}

.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
    padding-left: 25.5em
}

.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
    padding-right: 24em
}

.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
    padding-right: 25.5em
}

.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
    padding-left: 27em
}

.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
    padding-left: 28.5em
}

.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
    padding-right: 27em
}

.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
    padding-right: 28.5em
}

.ql-editor .ql-video {
    display: block;
    max-width: 100%
}

.ql-editor .ql-video.ql-align-center {
    margin: 0 auto
}

.ql-editor .ql-video.ql-align-right {
    margin: 0 0 0 auto
}

.ql-editor .ql-bg-black {
    background-color: #000
}

.ql-editor .ql-bg-red {
    background-color: #e60000
}

.ql-editor .ql-bg-orange {
    background-color: #f90
}

.ql-editor .ql-bg-yellow {
    background-color: #ff0
}

.ql-editor .ql-bg-green {
    background-color: #008a00
}

.ql-editor .ql-bg-blue {
    background-color: #06c
}

.ql-editor .ql-bg-purple {
    background-color: #93f
}

.ql-editor .ql-color-white {
    color: #fff
}

.ql-editor .ql-color-red {
    color: #e60000
}

.ql-editor .ql-color-orange {
    color: #f90
}

.ql-editor .ql-color-yellow {
    color: #ff0
}

.ql-editor .ql-color-green {
    color: #008a00
}

.ql-editor .ql-color-blue {
    color: #06c
}

.ql-editor .ql-color-purple {
    color: #93f
}

.ql-editor .ql-font-serif {
    font-family: Georgia,Times New Roman,serif
}

.ql-editor .ql-font-monospace {
    font-family: Monaco,Courier New,monospace
}

.ql-editor .ql-size-small {
    font-size: .75em
}

.ql-editor .ql-size-large {
    font-size: 1.5em
}

.ql-editor .ql-size-huge {
    font-size: 2.5em
}

.ql-editor .ql-direction-rtl {
    direction: rtl;
    text-align: inherit
}

.ql-editor .ql-align-center {
    text-align: center
}

.ql-editor .ql-align-justify {
    text-align: justify
}

.ql-editor .ql-align-right {
    text-align: right
}

.ql-editor.ql-blank:before {
    color: rgba(0,0,0,.6);
    content: attr(data-placeholder);
    font-style: italic;
    left: 15px;
    pointer-events: none;
    position: absolute;
    right: 15px
}

.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after {
    clear: both;
    content: "";
    display: table
}

.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    float: left;
    height: 24px;
    padding: 3px 5px;
    width: 28px
}

.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg {
    float: left;
    height: 100%
}

.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover {
    outline: none
}

.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file] {
    display: none
}

.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover {
    color: #06c
}

.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill {
    fill: #06c
}

.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter {
    stroke: #06c
}

@media (pointer: coarse) {
    .ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active) {
        color:#444
    }

    .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
        fill: #444
    }

    .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
        stroke: #444
    }
}

.ql-snow,.ql-snow * {
    box-sizing: border-box
}

.ql-snow .ql-hidden {
    display: none
}

.ql-snow .ql-out-bottom,.ql-snow .ql-out-top {
    visibility: hidden
}

.ql-snow .ql-tooltip {
    position: absolute;
    -ms-transform: translateY(10px);
    transform: translateY(10px)
}

.ql-snow .ql-tooltip a {
    cursor: pointer;
    text-decoration: none
}

.ql-snow .ql-tooltip.ql-flip {
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
}

.ql-snow .ql-formats {
    display: inline-block;
    vertical-align: middle
}

.ql-snow .ql-formats:after {
    clear: both;
    content: "";
    display: table
}

.ql-snow .ql-stroke {
    fill: none;
    stroke: #444;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2
}

.ql-snow .ql-stroke-miter {
    fill: none;
    stroke: #444;
    stroke-miterlimit: 10;
    stroke-width: 2
}

.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill {
    fill: #444
}

.ql-snow .ql-empty {
    fill: none
}

.ql-snow .ql-even {
    fill-rule: evenodd
}

.ql-snow .ql-stroke.ql-thin,.ql-snow .ql-thin {
    stroke-width: 1
}

.ql-snow .ql-transparent {
    opacity: .4
}

.ql-snow .ql-direction svg:last-child {
    display: none
}

.ql-snow .ql-direction.ql-active svg:last-child {
    display: inline
}

.ql-snow .ql-direction.ql-active svg:first-child {
    display: none
}

.ql-snow .ql-editor h1 {
    font-size: 2em
}

.ql-snow .ql-editor h2 {
    font-size: 1.5em
}

.ql-snow .ql-editor h3 {
    font-size: 1.17em
}

.ql-snow .ql-editor h4 {
    font-size: 1em
}

.ql-snow .ql-editor h5 {
    font-size: .83em
}

.ql-snow .ql-editor h6 {
    font-size: .67em
}

.ql-snow .ql-editor a {
    text-decoration: underline
}

.ql-snow .ql-editor blockquote {
    border-left: 4px solid #ccc;
    margin-bottom: 5px;
    margin-top: 5px;
    padding-left: 16px
}

.ql-snow .ql-editor code,.ql-snow .ql-editor pre {
    background-color: #f0f0f0;
    border-radius: 3px
}

.ql-snow .ql-editor pre {
    white-space: pre-wrap;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 5px 10px
}

.ql-snow .ql-editor code {
    font-size: 85%;
    padding: 2px 4px
}

.ql-snow .ql-editor pre.ql-syntax {
    background-color: #23241f;
    color: #f8f8f2;
    overflow: visible
}

.ql-snow .ql-editor img {
    max-width: 100%
}

.ql-snow .ql-picker {
    color: #444;
    display: inline-block;
    float: left;
    font-size: 14px;
    font-weight: 500;
    height: 24px;
    position: relative;
    vertical-align: middle
}

.ql-snow .ql-picker-label {
    cursor: pointer;
    display: inline-block;
    height: 100%;
    padding-left: 8px;
    padding-right: 2px;
    position: relative;
    width: 100%
}

.ql-snow .ql-picker-label:before {
    display: inline-block;
    line-height: 22px
}

.ql-snow .ql-picker-options {
    background-color: #fff;
    display: none;
    min-width: 100%;
    padding: 4px 8px;
    position: absolute;
    white-space: nowrap
}

.ql-snow .ql-picker-options .ql-picker-item {
    cursor: pointer;
    display: block;
    padding-bottom: 5px;
    padding-top: 5px
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label {
    color: #ccc;
    z-index: 2
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
    fill: #ccc
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
    stroke: #ccc
}

.ql-snow .ql-picker.ql-expanded .ql-picker-options {
    display: block;
    margin-top: -1px;
    top: 100%;
    z-index: 1
}

.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker {
    width: 28px
}

.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label {
    padding: 2px 4px
}

.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg {
    right: 4px
}

.ql-snow .ql-icon-picker .ql-picker-options {
    padding: 4px 0
}

.ql-snow .ql-icon-picker .ql-picker-item {
    height: 24px;
    width: 24px;
    padding: 2px 4px
}

.ql-snow .ql-color-picker .ql-picker-options {
    padding: 3px 5px;
    width: 152px
}

.ql-snow .ql-color-picker .ql-picker-item {
    border: 1px solid transparent;
    float: left;
    height: 16px;
    margin: 2px;
    padding: 0;
    width: 16px
}

.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
    position: absolute;
    margin-top: -9px;
    right: 0;
    top: 50%;
    width: 18px
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before {
    content: attr(data-label)
}

.ql-snow .ql-picker.ql-header {
    width: 98px
}

.ql-snow .ql-picker.ql-header .ql-picker-item:before,.ql-snow .ql-picker.ql-header .ql-picker-label:before {
    content: "Normal"
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before {
    content: "Heading 1"
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before {
    content: "Heading 2"
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before {
    content: "Heading 3"
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before {
    content: "Heading 4"
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before {
    content: "Heading 5"
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before {
    content: "Heading 6"
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before {
    font-size: 2em
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before {
    font-size: 1.5em
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before {
    font-size: 1.17em
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before {
    font-size: 1em
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before {
    font-size: .83em
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before {
    font-size: .67em
}

.ql-snow .ql-picker.ql-font {
    width: 108px
}

.ql-snow .ql-picker.ql-font .ql-picker-item:before,.ql-snow .ql-picker.ql-font .ql-picker-label:before {
    content: "Sans Serif"
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before {
    content: "Serif"
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before {
    content: "Monospace"
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before {
    font-family: Georgia,Times New Roman,serif
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before {
    font-family: Monaco,Courier New,monospace
}

.ql-snow .ql-picker.ql-size {
    width: 98px
}

.ql-snow .ql-picker.ql-size .ql-picker-item:before,.ql-snow .ql-picker.ql-size .ql-picker-label:before {
    content: "Normal"
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before {
    content: "Small"
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before {
    content: "Large"
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before {
    content: "Huge"
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before {
    font-size: 10px
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before {
    font-size: 18px
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before {
    font-size: 32px
}

.ql-snow .ql-color-picker.ql-background .ql-picker-item {
    background-color: #fff
}

.ql-snow .ql-color-picker.ql-color .ql-picker-item {
    background-color: #000
}

.ql-toolbar.ql-snow {
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    padding: 8px
}

.ql-toolbar.ql-snow .ql-formats {
    margin-right: 15px
}

.ql-toolbar.ql-snow .ql-picker-label {
    border: 1px solid transparent
}

.ql-toolbar.ql-snow .ql-picker-options {
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,.2)
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
    border-color: #ccc
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
    border-color: #000
}

.ql-toolbar.ql-snow+.ql-container.ql-snow {
    border-top: 0
}

.ql-snow .ql-tooltip {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #ddd;
    color: #444;
    padding: 5px 12px;
    white-space: nowrap
}

.ql-snow .ql-tooltip:before {
    content: "Visit URL:";
    line-height: 26px;
    margin-right: 8px
}

.ql-snow .ql-tooltip input[type=text] {
    display: none;
    border: 1px solid #ccc;
    font-size: 13px;
    height: 26px;
    margin: 0;
    padding: 3px 5px;
    width: 170px
}

.ql-snow .ql-tooltip a.ql-preview {
    display: inline-block;
    max-width: 200px;
    overflow-x: hidden;
    text-overflow: ellipsis;
    vertical-align: top
}

.ql-snow .ql-tooltip a.ql-action:after {
    border-right: 1px solid #ccc;
    content: "Edit";
    margin-left: 16px;
    padding-right: 8px
}

.ql-snow .ql-tooltip a.ql-remove:before {
    content: "Remove";
    margin-left: 8px
}

.ql-snow .ql-tooltip a {
    line-height: 26px
}

.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove {
    display: none
}

.ql-snow .ql-tooltip.ql-editing input[type=text] {
    display: inline-block
}

.ql-snow .ql-tooltip.ql-editing a.ql-action:after {
    border-right: 0;
    content: "Save";
    padding-right: 0
}

.ql-snow .ql-tooltip[data-mode=link]:before {
    content: "Enter link:"
}

.ql-snow .ql-tooltip[data-mode=formula]:before {
    content: "Enter formula:"
}

.ql-snow .ql-tooltip[data-mode=video]:before {
    content: "Enter video:"
}

.ql-snow a {
    color: #06c
}

.ql-container.ql-snow {
    border: 1px solid #ccc
}

.Select {
    position: relative
}

.Select input::-webkit-contacts-auto-fill-button,.Select input::-webkit-credentials-auto-fill-button {
    display: none!important
}

.Select input::-ms-clear,.Select input::-ms-reveal {
    display: none!important
}

.Select,.Select div,.Select input,.Select span {
    box-sizing: border-box
}

.Select.is-disabled .Select-arrow-zone {
    cursor: default;
    pointer-events: none;
    opacity: .35
}

.Select.is-disabled>.Select-control {
    background-color: #f9f9f9
}

.Select.is-disabled>.Select-control:hover {
    box-shadow: none
}

.Select.is-open>.Select-control {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #fff;
    border-color: #b3b3b3 #ccc #d9d9d9
}

.Select.is-open>.Select-control .Select-arrow {
    top: -2px;
    border-color: transparent transparent #999;
    border-width: 0 5px 5px
}

.Select.is-searchable.is-focused:not(.is-open)>.Select-control,.Select.is-searchable.is-open>.Select-control {
    cursor: text
}

.Select.is-focused>.Select-control {
    background: #fff
}

.Select.is-focused:not(.is-open)>.Select-control {
    border-color: #007eff;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 0 3px rgba(0,126,255,.1);
    background: #fff
}

.Select.has-value.is-clearable.Select--single>.Select-control .Select-value {
    padding-right: 42px
}

.Select.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label,.Select.has-value.Select--single>.Select-control .Select-value .Select-value-label {
    color: #333
}

.Select.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label,.Select.has-value.Select--single>.Select-control .Select-value a.Select-value-label {
    cursor: pointer;
    text-decoration: none
}

.Select.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:focus,.Select.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:hover,.Select.has-value.Select--single>.Select-control .Select-value a.Select-value-label:focus,.Select.has-value.Select--single>.Select-control .Select-value a.Select-value-label:hover {
    color: #007eff;
    outline: none;
    text-decoration: underline
}

.Select.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:focus,.Select.has-value.Select--single>.Select-control .Select-value a.Select-value-label:focus {
    background: #fff
}

.Select.has-value.is-pseudo-focused .Select-input {
    opacity: 0
}

.Select.is-open .Select-arrow,.Select .Select-arrow-zone:hover>.Select-arrow {
    border-top-color: #666
}

.Select.Select--rtl {
    direction: rtl;
    text-align: right
}

.Select-control {
    background-color: #fff;
    border-color: #d9d9d9 #ccc #b3b3b3;
    border-radius: 4px;
    border: 1px solid #ccc;
    color: #333;
    cursor: default;
    display: table;
    border-spacing: 0;
    border-collapse: separate;
    height: 36px;
    outline: none;
    overflow: hidden;
    position: relative;
    width: 100%
}

.Select-control:hover {
    box-shadow: 0 1px 0 rgba(0,0,0,.06)
}

.Select-control .Select-input:focus {
    outline: none;
    background: #fff
}

.Select--single>.Select-control .Select-value,.Select-placeholder {
    bottom: 0;
    color: #aaa;
    left: 0;
    line-height: 34px;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    right: 0;
    top: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.Select-input {
    height: 34px;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle
}

.Select-input>input {
    width: 100%;
    background: none transparent;
    border: 0 none;
    box-shadow: none;
    cursor: default;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    outline: none;
    line-height: 17px;
    padding: 8px 0 12px;
    -webkit-appearance: none
}

.is-focused .Select-input>input {
    cursor: text
}

.has-value.is-pseudo-focused .Select-input {
    opacity: 0
}

.Select-control:not(.is-searchable)>.Select-input {
    outline: none
}

.Select-loading-zone {
    cursor: pointer;
    display: table-cell;
    text-align: center
}

.Select-loading,.Select-loading-zone {
    position: relative;
    vertical-align: middle;
    width: 16px
}

.Select-loading {
    animation: Select-animation-spin .4s infinite linear;
    height: 16px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-right-color: #333;
    display: inline-block
}

.Select-clear-zone {
    animation: Select-animation-fadeIn .2s;
    color: #999;
    cursor: pointer;
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 17px
}

.Select-clear-zone:hover {
    color: #d0021b
}

.Select-clear {
    display: inline-block;
    font-size: 18px;
    line-height: 1
}

.Select--multi .Select-clear-zone {
    width: 17px
}

.Select-arrow-zone {
    cursor: pointer;
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 25px;
    padding-right: 5px
}

.Select--rtl .Select-arrow-zone {
    padding-right: 0;
    padding-left: 5px
}

.Select-arrow {
    border-color: #999 transparent transparent;
    border-style: solid;
    border-width: 5px 5px 2.5px;
    display: inline-block;
    height: 0;
    width: 0;
    position: relative
}

.Select-control>:last-child {
    padding-right: 5px
}

.Select--multi .Select-multi-value-wrapper {
    display: inline-block
}

.Select .Select-aria-only {
    position: absolute;
    display: inline-block;
    height: 1px;
    width: 1px;
    margin: -1px;
    clip: rect(0,0,0,0);
    overflow: hidden;
    float: left
}

@keyframes Select-animation-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.Select-menu-outer {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top-color: #e6e6e6;
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
    box-sizing: border-box;
    margin-top: -1px;
    max-height: 200px;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 1;
    -webkit-overflow-scrolling: touch
}

.Select-menu {
    max-height: 198px;
    overflow-y: auto
}

.Select-option {
    box-sizing: border-box;
    background-color: #fff;
    color: #666;
    cursor: pointer;
    display: block;
    padding: 8px 10px
}

.Select-option:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.Select-option.is-selected {
    background-color: #f5faff;
    background-color: rgba(0,126,255,.04);
    color: #333
}

.Select-option.is-focused {
    background-color: #ebf5ff;
    background-color: rgba(0,126,255,.08);
    color: #333
}

.Select-option.is-disabled {
    color: #ccc;
    cursor: default
}

.Select-noresults {
    box-sizing: border-box;
    color: #999;
    cursor: default;
    display: block;
    padding: 8px 10px
}

.Select--multi .Select-input {
    vertical-align: middle;
    margin-left: 10px;
    padding: 0
}

.Select--multi.Select--rtl .Select-input {
    margin-left: 0;
    margin-right: 10px
}

.Select--multi.has-value .Select-input {
    margin-left: 5px
}

.Select--multi .Select-value {
    background-color: #ebf5ff;
    background-color: rgba(0,126,255,.08);
    border-radius: 2px;
    border: 1px solid #c2e0ff;
    border: 1px solid rgba(0,126,255,.24);
    color: #007eff;
    display: inline-block;
    font-size: .9em;
    line-height: 1.4;
    margin-left: 5px;
    margin-top: 5px;
    vertical-align: top
}

.Select--multi .Select-value-icon,.Select--multi .Select-value-label {
    display: inline-block;
    vertical-align: middle
}

.Select--multi .Select-value-label {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    cursor: default;
    padding: 2px 5px
}

.Select--multi a.Select-value-label {
    color: #007eff;
    cursor: pointer;
    text-decoration: none
}

.Select--multi a.Select-value-label:hover {
    text-decoration: underline
}

.Select--multi .Select-value-icon {
    cursor: pointer;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    border-right: 1px solid #c2e0ff;
    border-right: 1px solid rgba(0,126,255,.24);
    padding: 1px 5px 3px
}

.Select--multi .Select-value-icon:focus,.Select--multi .Select-value-icon:hover {
    background-color: #d8eafd;
    background-color: rgba(0,113,230,.08);
    color: #0071e6
}

.Select--multi .Select-value-icon:active {
    background-color: #c2e0ff;
    background-color: rgba(0,126,255,.24)
}

.Select--multi.Select--rtl .Select-value {
    margin-left: 0;
    margin-right: 5px
}

.Select--multi.Select--rtl .Select-value-icon {
    border-right: none;
    border-left: 1px solid #c2e0ff;
    border-left: 1px solid rgba(0,126,255,.24)
}

.Select--multi.is-disabled .Select-value {
    background-color: #fcfcfc;
    border: 1px solid #e3e3e3;
    color: #333
}

.Select--multi.is-disabled .Select-value-icon {
    cursor: not-allowed;
    border-right: 1px solid #e3e3e3
}

.Select--multi.is-disabled .Select-value-icon:active,.Select--multi.is-disabled .Select-value-icon:focus,.Select--multi.is-disabled .Select-value-icon:hover {
    background-color: #fcfcfc
}

@keyframes Select-animation-spin {
    to {
        transform: rotate(1turn)
    }
}

.ReactVirtualized__Table__headerRow {
    font-weight: 700;
    text-transform: uppercase
}

.ReactVirtualized__Table__headerRow,.ReactVirtualized__Table__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center
}

.ReactVirtualized__Table__headerTruncatedText {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.ReactVirtualized__Table__headerColumn,.ReactVirtualized__Table__rowColumn {
    margin-right: 10px;
    min-width: 0
}

.ReactVirtualized__Table__rowColumn {
    text-overflow: ellipsis;
    white-space: nowrap
}

.ReactVirtualized__Table__headerColumn:first-of-type,.ReactVirtualized__Table__rowColumn:first-of-type {
    margin-left: 10px
}

.ReactVirtualized__Table__sortableHeaderColumn {
    cursor: pointer
}

.ReactVirtualized__Table__sortableHeaderIconContainer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.ReactVirtualized__Table__sortableHeaderIcon {
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    height: 1em;
    width: 1em;
    fill: currentColor
}

.VirtualSelectGrid {
    z-index: 1
}

.VirtualizedSelectOption {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 .5rem;
    cursor: pointer
}

.VirtualizedSelectFocusedOption {
    background-color: rgba(0,126,255,.1)
}

.VirtualizedSelectDisabledOption {
    opacity: .5
}

.VirtualizedSelectSelectedOption {
    font-weight: 700
}

.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__navigation-icon:before,.react-datepicker__year-read-view--down-arrow {
    border-color: #ccc;
    border-style: solid;
    border-width: 3px 3px 0 0;
    content: "";
    display: block;
    height: 9px;
    position: absolute;
    top: 6px;
    width: 9px
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
    margin-left: -4px;
    position: absolute;
    width: 0
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before {
    box-sizing: content-box;
    position: absolute;
    border: 8px solid transparent;
    height: 0;
    width: 1px;
    content: "";
    z-index: -1;
    border-width: 8px;
    left: -8px
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before {
    border-bottom-color: #aeaeae
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
    top: 0;
    margin-top: -8px
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before {
    border-top: none;
    border-bottom-color: #f0f0f0
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after {
    top: 0
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before {
    top: -1px;
    border-bottom-color: #aeaeae
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
    bottom: 0;
    margin-bottom: -8px
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before {
    border-bottom: none;
    border-top-color: #fff
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after {
    bottom: 0
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before {
    bottom: -1px;
    border-top-color: #aeaeae
}

.react-datepicker-wrapper {
    display: inline-block;
    padding: 0;
    border: 0
}

.react-datepicker {
    font-family: Helvetica Neue,helvetica,arial,sans-serif;
    font-size: .8rem;
    background-color: #fff;
    color: #000;
    border: 1px solid #aeaeae;
    border-radius: .3rem;
    display: inline-block;
    position: relative
}

.react-datepicker--time-only .react-datepicker__triangle {
    left: 35px
}

.react-datepicker--time-only .react-datepicker__time-container {
    border-left: 0
}

.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box {
    border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.react-datepicker__triangle {
    position: absolute;
    left: 50px
}

.react-datepicker-popper {
    z-index: 1
}

.react-datepicker-popper[data-placement^=bottom] {
    padding-top: 10px
}

.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle {
    left: auto;
    right: 50px
}

.react-datepicker-popper[data-placement^=top] {
    padding-bottom: 10px
}

.react-datepicker-popper[data-placement^=right] {
    padding-left: 8px
}

.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
    left: auto;
    right: 42px
}

.react-datepicker-popper[data-placement^=left] {
    padding-right: 8px
}

.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
    left: 42px;
    right: auto
}

.react-datepicker__header {
    text-align: center;
    background-color: #f0f0f0;
    border-bottom: 1px solid #aeaeae;
    border-top-left-radius: .3rem;
    padding: 8px 0;
    position: relative
}

.react-datepicker__header--time {
    padding-bottom: 8px;
    padding-left: 5px;
    padding-right: 5px
}

.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
    border-top-left-radius: 0
}

.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
    border-top-right-radius: .3rem
}

.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__year-dropdown-container--select {
    display: inline-block;
    margin: 0 15px
}

.react-datepicker-time__header,.react-datepicker-year-header,.react-datepicker__current-month {
    margin-top: 0;
    color: #000;
    font-weight: 700;
    font-size: .944rem
}

.react-datepicker-time__header {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.react-datepicker__navigation {
    -ms-flex-align: center;
    align-items: center;
    background: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 2px;
    padding: 0;
    border: none;
    z-index: 1;
    height: 32px;
    width: 32px;
    text-indent: -999em;
    overflow: hidden
}

.react-datepicker__navigation--previous {
    left: 2px
}

.react-datepicker__navigation--next {
    right: 2px
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
    right: 85px
}

.react-datepicker__navigation--years {
    position: relative;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.react-datepicker__navigation--years-previous {
    top: 4px
}

.react-datepicker__navigation--years-upcoming {
    top: -4px
}

.react-datepicker__navigation:hover :before {
    border-color: #a6a6a6
}

.react-datepicker__navigation-icon {
    position: relative;
    top: -1px;
    font-size: 20px;
    width: 0
}

.react-datepicker__navigation-icon--next {
    left: -2px
}

.react-datepicker__navigation-icon--next:before {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -7px
}

.react-datepicker__navigation-icon--previous {
    right: -2px
}

.react-datepicker__navigation-icon--previous:before {
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    right: -7px
}

.react-datepicker__month-container {
    float: left
}

.react-datepicker__year {
    margin: .4rem;
    text-align: center
}

.react-datepicker__year-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 180px
}

.react-datepicker__year .react-datepicker__year-text {
    display: inline-block;
    width: 4rem;
    margin: 2px
}

.react-datepicker__month {
    margin: .4rem;
    text-align: center
}

.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text {
    display: inline-block;
    width: 4rem;
    margin: 2px
}

.react-datepicker__input-time-container {
    clear: both;
    width: 100%;
    float: left;
    margin: 5px 0 10px 15px;
    text-align: left
}

.react-datepicker__input-time-container .react-datepicker-time__caption,.react-datepicker__input-time-container .react-datepicker-time__input-container {
    display: inline-block
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
    display: inline-block;
    margin-left: 10px
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
    width: auto
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
    -moz-appearance: textfield
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
    margin-left: 5px;
    display: inline-block
}

.react-datepicker__time-container {
    float: right;
    border-left: 1px solid #aeaeae;
    width: 85px
}

.react-datepicker__time-container--with-today-button {
    display: inline;
    border: 1px solid #aeaeae;
    border-radius: .3rem;
    position: absolute;
    right: -87px;
    top: 0
}

.react-datepicker__time-container .react-datepicker__time {
    position: relative;
    background: #fff;
    border-bottom-right-radius: .3rem
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
    width: 85px;
    overflow-x: hidden;
    margin: 0 auto;
    text-align: center;
    border-bottom-right-radius: .3rem
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
    list-style: none;
    margin: 0;
    height: calc(195px + 1.7rem / 2);
    overflow-y: scroll;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    box-sizing: content-box
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
    height: 30px;
    padding: 5px 10px;
    white-space: nowrap
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
    cursor: pointer;
    background-color: #f0f0f0
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
    background-color: #216ba5;
    color: #fff;
    font-weight: 700
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
    background-color: #216ba5
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
    color: #ccc
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
    cursor: default;
    background-color: transparent
}

.react-datepicker__week-number {
    color: #ccc;
    display: inline-block;
    width: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    margin: .166rem
}

.react-datepicker__week-number.react-datepicker__week-number--clickable {
    cursor: pointer
}

.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected,.react-datepicker__week-number--keyboard-selected):hover {
    border-radius: .3rem;
    background-color: #f0f0f0
}

.react-datepicker__week-number--selected {
    border-radius: .3rem;
    background-color: #216ba5;
    color: #fff
}

.react-datepicker__week-number--selected:hover {
    background-color: #1d5d90
}

.react-datepicker__week-number--keyboard-selected {
    border-radius: .3rem;
    background-color: #2a87d0;
    color: #fff
}

.react-datepicker__week-number--keyboard-selected:hover {
    background-color: #1d5d90
}

.react-datepicker__day-names {
    white-space: nowrap;
    margin-bottom: -8px
}

.react-datepicker__week {
    white-space: nowrap
}

.react-datepicker__day,.react-datepicker__day-name,.react-datepicker__time-name {
    color: #000;
    display: inline-block;
    width: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    margin: .166rem
}

.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text,.react-datepicker__year-text {
    cursor: pointer
}

.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover,.react-datepicker__year-text:hover {
    border-radius: .3rem;
    background-color: #f0f0f0
}

.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today,.react-datepicker__year-text--today {
    font-weight: 700
}

.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted,.react-datepicker__year-text--highlighted {
    border-radius: .3rem;
    background-color: #3dcc4a;
    color: #fff
}

.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover,.react-datepicker__year-text--highlighted:hover {
    background-color: #32be3f
}

.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1,.react-datepicker__year-text--highlighted-custom-1 {
    color: #f0f
}

.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2,.react-datepicker__year-text--highlighted-custom-2 {
    color: green
}

.react-datepicker__day--holidays,.react-datepicker__month-text--holidays,.react-datepicker__quarter-text--holidays,.react-datepicker__year-text--holidays {
    position: relative;
    border-radius: .3rem;
    background-color: #ff6803;
    color: #fff
}

.react-datepicker__day--holidays .holiday-overlay,.react-datepicker__month-text--holidays .holiday-overlay,.react-datepicker__quarter-text--holidays .holiday-overlay,.react-datepicker__year-text--holidays .holiday-overlay {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 4px;
    border-radius: 4px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s,opacity .3s ease-in-out
}

.react-datepicker__day--holidays:hover,.react-datepicker__month-text--holidays:hover,.react-datepicker__quarter-text--holidays:hover,.react-datepicker__year-text--holidays:hover {
    background-color: #cf5300
}

.react-datepicker__day--holidays:hover .holiday-overlay,.react-datepicker__month-text--holidays:hover .holiday-overlay,.react-datepicker__quarter-text--holidays:hover .holiday-overlay,.react-datepicker__year-text--holidays:hover .holiday-overlay {
    visibility: visible;
    opacity: 1
}

.react-datepicker__day--in-range,.react-datepicker__day--in-selecting-range,.react-datepicker__day--selected,.react-datepicker__month-text--in-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--selected,.react-datepicker__quarter-text--in-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--selected,.react-datepicker__year-text--in-range,.react-datepicker__year-text--in-selecting-range,.react-datepicker__year-text--selected {
    border-radius: .3rem;
    background-color: #216ba5;
    color: #fff
}

.react-datepicker__day--in-range:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--selected:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__year-text--in-range:hover,.react-datepicker__year-text--in-selecting-range:hover,.react-datepicker__year-text--selected:hover {
    background-color: #1d5d90
}

.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected,.react-datepicker__year-text--keyboard-selected {
    border-radius: .3rem;
    background-color: #bad9f1;
    color: #000
}

.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover,.react-datepicker__year-text--keyboard-selected:hover {
    background-color: #1d5d90
}

.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range) {
    background-color: rgba(33,107,165,.5)
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range) {
    background-color: #f0f0f0;
    color: #000
}

.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled,.react-datepicker__year-text--disabled {
    cursor: default;
    color: #ccc
}

.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover,.react-datepicker__year-text--disabled:hover {
    background-color: transparent
}

.react-datepicker__input-container {
    position: relative;
    display: inline-block;
    width: 100%
}

.react-datepicker__input-container .react-datepicker__calendar-icon {
    position: absolute;
    padding: .5rem;
    box-sizing: content-box
}

.react-datepicker__view-calendar-icon input {
    padding: 6px 10px 5px 25px
}

.react-datepicker__month-read-view,.react-datepicker__month-year-read-view,.react-datepicker__year-read-view {
    border: 1px solid transparent;
    border-radius: .3rem;
    position: relative
}

.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover,.react-datepicker__year-read-view:hover {
    cursor: pointer
}

.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow {
    border-top-color: #b3b3b3
}

.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow {
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: -16px;
    top: 0
}

.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown,.react-datepicker__year-dropdown {
    background-color: #f0f0f0;
    position: absolute;
    width: 50%;
    left: 25%;
    top: 30px;
    z-index: 1;
    text-align: center;
    border-radius: .3rem;
    border: 1px solid #aeaeae
}

.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover,.react-datepicker__year-dropdown:hover {
    cursor: pointer
}

.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable,.react-datepicker__year-dropdown--scrollable {
    height: 150px;
    overflow-y: scroll
}

.react-datepicker__month-option,.react-datepicker__month-year-option,.react-datepicker__year-option {
    line-height: 20px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type,.react-datepicker__year-option:first-of-type {
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem
}

.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type,.react-datepicker__year-option:last-of-type {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover,.react-datepicker__year-option:hover {
    background-color: #ccc
}

.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming {
    border-bottom-color: #b3b3b3
}

.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous {
    border-top-color: #b3b3b3
}

.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected,.react-datepicker__year-option--selected {
    position: absolute;
    left: 15px
}

.react-datepicker__close-icon {
    cursor: pointer;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 0 6px 0 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: table-cell;
    vertical-align: middle
}

.react-datepicker__close-icon:after {
    cursor: pointer;
    background-color: #216ba5;
    color: #fff;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    padding: 2px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    content: "\D7"
}

.react-datepicker__close-icon--disabled {
    cursor: default
}

.react-datepicker__close-icon--disabled:after {
    cursor: default;
    background-color: #ccc
}

.react-datepicker__today-button {
    background: #f0f0f0;
    border-top: 1px solid #aeaeae;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    padding: 5px 0;
    clear: left
}

.react-datepicker__portal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.8);
    left: 0;
    top: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    z-index: 2147483647
}

.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name {
    width: 3rem;
    line-height: 3rem
}

@media (max-height: 550px),(max-width:400px) {
    .react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name {
        width:2rem;
        line-height: 2rem
    }
}

.react-datepicker__portal .react-datepicker-time__header,.react-datepicker__portal .react-datepicker__current-month {
    font-size: 1.44rem
}

.react-datepicker__children-container {
    width: 13.8rem;
    margin: .4rem;
    padding-right: .2rem;
    padding-left: .2rem;
    height: auto
}

.react-datepicker__aria-live {
    position: absolute;
    -webkit-clip-path: circle(0);
    clip-path: circle(0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    width: 1px;
    white-space: nowrap
}

.react-datepicker__calendar-icon {
    width: 1em;
    height: 1em;
    vertical-align: -.125em
}

@media only screen and (min-width: 901px) and (max-width:4000px) {
    .soto-screen {
        display:none
    }

    .t {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        padding-top: 1rem
    }

    .t li {
        list-style: none
    }

    .t li a {
        text-decoration: none
    }
}

@media only screen and (min-width: 400px) and (max-width:450px) {
    .soto-screen {
        display:block;
        position: relative
    }

    .big-screen {
        display: none
    }

    .buttonUL {
        background-color: #eee;
        position: absolute;
        top: 73px;
        z-index: 1111;
        right: 0;
        min-width: 330px;
        margin: 0 auto;
        padding: 1rem;
        border-radius: 10px;
        color: #fff
    }

    ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    ul li {
        list-style: none
    }

    ul li a {
        text-decoration: none
    }
}

@media only screen and (min-width: 450px) and (max-width:549px) {
    .soto-screen {
        display:block;
        position: relative
    }

    .big-screen {
        display: none
    }

    .buttonUL {
        background-color: #eee;
        position: absolute;
        top: 73px;
        z-index: 1111;
        right: 0;
        min-width: 330px;
        margin: 0 auto;
        padding: 1rem;
        border-radius: 10px;
        color: #fff
    }

    ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    ul li {
        list-style: none
    }

    ul li a {
        text-decoration: none
    }
}

@media only screen and (min-width: 550px) and (max-width:767px) {
    .soto-screen {
        display:block;
        position: relative
    }

    .big-screen {
        display: none
    }

    .buttonUL {
        background-color: #eee;
        position: absolute;
        top: 73px;
        z-index: 1111;
        right: 0;
        min-width: 400px;
        margin: 0 auto;
        padding: 1rem;
        border-radius: 10px;
        color: #fff
    }

    ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    ul li {
        list-style: none
    }

    ul li a {
        text-decoration: none
    }
}

@media only screen and (min-width: 768px) and (max-width:900px) {
    .soto-screen {
        display:block;
        position: relative
    }

    .big-screen {
        display: none
    }

    .buttonUL {
        background-color: #eee;
        position: absolute;
        top: 73px;
        z-index: 1111;
        right: 0;
        min-width: 430px;
        margin: 0 auto;
        padding: 1rem;
        border-radius: 10px;
        color: #fff
    }

    ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    ul li {
        list-style: none
    }

    ul li a {
        text-decoration: none
    }
}

@media only screen and (min-width: 350px) and (max-width:390px) {
    .soto-screen {
        display:block;
        position: relative
    }

    .big-screen {
        display: none
    }

    .buttonUL {
        background-color: #eee;
        position: absolute;
        top: 73px;
        z-index: 1111;
        right: 0;
        min-width: 330px;
        margin: 0 auto;
        padding: 1rem;
        border-radius: 10px;
        color: #fff
    }

    ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    ul li {
        list-style: none
    }

    ul li a {
        text-decoration: none
    }
}

.pad {
    display: -ms-flexbox;
    display: flex;
    margin-left: 7px;
    -ms-flex-pack: left;
    justify-content: left;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (min-width: 380px) and (max-width:399px) {
    .soto-screen {
        display:block;
        position: relative
    }

    .big-screen {
        display: none
    }

    .buttonUL {
        background-color: #eee;
        position: absolute;
        top: 73px;
        z-index: 1111;
        right: 0;
        min-width: 330px;
        margin: 0 auto;
        padding: 1rem;
        border-radius: 10px;
        color: #fff
    }

    ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    ul li {
        list-style: none
    }

    ul li a {
        text-decoration: none
    }
}

.nav-item {
    color: #000
}

@media screen and (min-width: 0px) and (max-width:425px) {
    .mobileView {
        border:1px solid red
    }
}

.buts:enabled {
    background-color: #ff5722;
    color: #fff!important
}

.buts:disabled,.buts:enabled {
    border: none;
    width: 100%;
    border-radius: 5px;
    padding: .8rem;
    text-transform: uppercase
}

.buts:disabled {
    background-color: gray
}

.form-content {
    width: 90vw;
    max-width: 600px;
    padding: 2rem;
    box-shadow: 0 0 15px 0 rgb(0 0 0/31%);
    border-radius: 5px
}

.butttons {
    width: 100%;
    margin-bottom: 1rem;
    border: none;
    padding: .5rem;
    border-radius: 5px;
    background-color: #da6621;
    color: #ffff
}

.bloodGroup {
    padding-right: 350px
}

.borders {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh
}

.btn {
    border-radius: 0!important
}

.bootstrap-select .btn {
    background-color: transparent!important;
    color: #000
}

.bootstrap-select .btn:hover {
    color: #000
}

.bootstrap-select .btn:focus {
    border: 0!important
}

.bootstrap-select {
    border: 1px solid #ddd;
    border-radius: 5px!important
}

@media only screen and (min-width: 280px) and (max-width:1199px) {
    .bloodGroup {
        padding-right:0
    }
}

@keyframes closeWindow {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.ril__outer {
    background-color: rgba(0,0,0,.85);
    outline: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    -ms-content-zooming: none;
    -ms-user-select: none;
    -ms-touch-select: none;
    -ms-touch-action: none;
    touch-action: none
}

.ril__outerClosing {
    opacity: 0
}

.ril__image,.ril__imageNext,.ril__imagePrev,.ril__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.ril__image,.ril__imageNext,.ril__imagePrev {
    margin: auto;
    max-width: none;
    -ms-content-zooming: none;
    -ms-user-select: none;
    -ms-touch-select: none;
    -ms-touch-action: none;
    touch-action: none
}

.ril__imageDiscourager {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain
}

.ril__navButtons {
    border: none;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 34px;
    padding: 40px 30px;
    margin: auto;
    cursor: pointer;
    opacity: .7
}

.ril__navButtons:hover {
    opacity: 1
}

.ril__navButtons:active {
    opacity: .7
}

.ril__navButtonPrev {
    left: 0;
    background: rgba(0,0,0,.2) url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDE5LDMgLTIsLTIgLTE2LDE2IDE2LDE2IDEsLTEgLTE1LC0xNSAxNSwtMTUgeiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==") no-repeat 50%
}

.ril__navButtonNext {
    right: 0;
    background: rgba(0,0,0,.2) url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDEsMyAyLC0yIDE2LDE2IC0xNiwxNiAtMSwtMSAxNSwtMTUgLTE1LC0xNSB6IiBmaWxsPSIjRkZGIi8+PC9zdmc+") no-repeat 50%
}

.ril__downloadBlocker {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
    background-size: cover
}

.ril__caption,.ril__toolbar {
    background-color: rgba(0,0,0,.5);
    position: absolute;
    left: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.ril__caption {
    bottom: 0;
    max-height: 150px;
    overflow: auto
}

.ril__captionContent {
    padding: 10px 20px;
    color: #fff
}

.ril__toolbar {
    top: 0;
    height: 50px
}

.ril__toolbarSide {
    height: 50px;
    margin: 0
}

.ril__toolbarLeftSide {
    padding-left: 20px;
    padding-right: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    overflow: hidden;
    text-overflow: ellipsis
}

.ril__toolbarRightSide {
    padding-left: 0;
    padding-right: 20px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.ril__toolbarItem {
    display: inline-block;
    line-height: 50px;
    padding: 0;
    color: #fff;
    font-size: 120%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ril__toolbarItemChild {
    vertical-align: middle
}

.ril__builtinButton {
    width: 40px;
    height: 35px;
    cursor: pointer;
    border: none;
    opacity: .7
}

.ril__builtinButton:hover {
    opacity: 1
}

.ril__builtinButton:active {
    outline: none
}

.ril__builtinButtonDisabled {
    cursor: default;
    opacity: .5
}

.ril__builtinButtonDisabled:hover {
    opacity: .5
}

.ril__closeButton {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIj48cGF0aCBkPSJtIDEsMyAxLjI1LC0xLjI1IDcuNSw3LjUgNy41LC03LjUgMS4yNSwxLjI1IC03LjUsNy41IDcuNSw3LjUgLTEuMjUsMS4yNSAtNy41LC03LjUgLTcuNSw3LjUgLTEuMjUsLTEuMjUgNy41LC03LjUgLTcuNSwtNy41IHoiIGZpbGw9IiNGRkYiLz48L3N2Zz4=") no-repeat 50%
}

.ril__zoomInButton {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PHBhdGggZD0iTTEyIDV2NiIvPjwvZz48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjciIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+") no-repeat 50%
}

.ril__zoomOutButton {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PC9nPjxjaXJjbGUgY3g9IjEyIiBjeT0iOCIgcj0iNyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=") no-repeat 50%
}

.ril__outerAnimating {
    animation-name: closeWindow
}

@keyframes pointFade {
    0%,19.999%,to {
        opacity: 0
    }

    20% {
        opacity: 1
    }
}

.ril__loadingCircle {
    width: 60px;
    height: 60px;
    position: relative
}

.ril__loadingCirclePoint {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.ril__loadingCirclePoint:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 11%;
    height: 30%;
    background-color: #fff;
    border-radius: 30%;
    animation: pointFade .8s infinite ease-in-out both
}

.ril__loadingCirclePoint:first-of-type {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.ril__loadingCirclePoint:first-of-type::before,.ril__loadingCirclePoint:nth-of-type(7):before {
    animation-delay: -.8s
}

.ril__loadingCirclePoint:nth-of-type(2) {
    -ms-transform: rotate(30deg);
    transform: rotate(30deg)
}

.ril__loadingCirclePoint:nth-of-type(8) {
    -ms-transform: rotate(210deg);
    transform: rotate(210deg)
}

.ril__loadingCirclePoint:nth-of-type(2):before,.ril__loadingCirclePoint:nth-of-type(8):before {
    animation-delay: -666ms
}

.ril__loadingCirclePoint:nth-of-type(3) {
    -ms-transform: rotate(60deg);
    transform: rotate(60deg)
}

.ril__loadingCirclePoint:nth-of-type(9) {
    -ms-transform: rotate(240deg);
    transform: rotate(240deg)
}

.ril__loadingCirclePoint:nth-of-type(3):before,.ril__loadingCirclePoint:nth-of-type(9):before {
    animation-delay: -533ms
}

.ril__loadingCirclePoint:nth-of-type(4) {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.ril__loadingCirclePoint:nth-of-type(10) {
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.ril__loadingCirclePoint:nth-of-type(4):before,.ril__loadingCirclePoint:nth-of-type(10):before {
    animation-delay: -.4s
}

.ril__loadingCirclePoint:nth-of-type(5) {
    -ms-transform: rotate(120deg);
    transform: rotate(120deg)
}

.ril__loadingCirclePoint:nth-of-type(11) {
    -ms-transform: rotate(300deg);
    transform: rotate(300deg)
}

.ril__loadingCirclePoint:nth-of-type(5):before,.ril__loadingCirclePoint:nth-of-type(11):before {
    animation-delay: -266ms
}

.ril__loadingCirclePoint:nth-of-type(6) {
    -ms-transform: rotate(150deg);
    transform: rotate(150deg)
}

.ril__loadingCirclePoint:nth-of-type(12) {
    -ms-transform: rotate(330deg);
    transform: rotate(330deg)
}

.ril__loadingCirclePoint:nth-of-type(6):before,.ril__loadingCirclePoint:nth-of-type(12):before {
    animation-delay: -133ms
}

.ril__loadingCirclePoint:nth-of-type(7) {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.ril__loadingCirclePoint:nth-of-type(13) {
    -ms-transform: rotate(1turn);
    transform: rotate(1turn)
}

.ril__loadingCirclePoint:nth-of-type(7):before,.ril__loadingCirclePoint:nth-of-type(13):before {
    animation-delay: 0ms
}

.ril__loadingContainer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.ril__imageNext .ril__loadingContainer,.ril__imagePrev .ril__loadingContainer {
    display: none
}

.ril__errorContainer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff
}

.ril__imageNext .ril__errorContainer,.ril__imagePrev .ril__errorContainer {
    display: none
}

.ril__loadingContainer__icon {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

body {
    font-family: Barlow,sans-serif
}

img {
    max-width: 100%
}

.top-part {
    background: #41414b;
    padding: 8px 0!important
}

.top-part p {
    margin: 0;
    color: #fff;
    font-size: 1.1rem
}

.life {
    margin-bottom: 3rem
}

.header-part.bg-overlay {
    background: #0000006b
}

.header-part {
    background: #554f4a
}

.offcan-top-mar {
    padding: 20px 0 30px
}

.bangla-part {
    width: 130px
}

.bangla-part a.nav-link {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex
}

.banner-part .banner_part_search input.form-control {
    border-radius: 100px;
    border-radius: 30px;
    background: #fff;
    border-right: 1px solid #fff;
    border: 2px solid #fb6201;
    padding: 1rem;
    font-size: 1.6rem;
    color: #000
}

.invBtn {
    border-radius: 5px!important
}

.packagesA {
    background-color: #fff!important
}

.banner-part .banner_part_search input.form-control:-ms-input-placeholder {
    color: #000
}

.banner-part .banner_part_search input.form-control::placeholder {
    color: #000
}

.banner-part .banner_part_search span#basic-addon1 {
    background: #fff;
    border-radius: 0[x] 31px 31px 0;
    margin-left: -3px;
    border: 2px solid #fb6201
}

.banner-part .banner_part_search span#basic-addon1 i {
    color: #eb2128
}

.header-part div#navbarSupportedContent {
    padding-left: 30px
}

.banner-part {
    padding: 0;
    height: 100vh
}

.header-part div#navbarSupportedContent a {
    color: #fff!important;
    font-size: 1rem;
    font-weight: 600
}

.header-part .input-group {
    width: 300px
}

.header-part .input-group input {
    font-size: .8rem
}

.mb-lg-0 {
    margin-bottom: 15px!important
}

li.login-white {
    padding: 0 12px;
    margin-left: 10px;
    margin-right: 20px
}

.header-part li.login-white a {
    color: #eb2128!important;
    padding: 5px
}

.bangla-part a.nav-link:hover {
    background: #fb6201;
    border: 1px solid #fb6201
}

.contact-number:hover p,.contact-number:hover p span {
    color: #fb6201!important
}

.header-part li.login-white:hover p {
    color: #fff!important
}

.header-part li.login-white:hover a {
    color: #fff!important;
    margin: 0;
    padding-top: 8px;
    color: #eb2128!important
}

.banner-part {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom
}

.make-orange,.make-orange:hover {
    transition: all .3s ease-in-out
}

.make-orange:hover {
    background-color: #f6821f!important;
    color: #fff!important
}

.card .make-packages-orange {
    transition: all .3s ease-in-out
}

.card:hover .make-packages-orange {
    transition: all .3s ease-in-out;
    background-color: #f6821f!important;
    color: #fff
}

.card .make-testimonial-text-white {
    transition: all .3s ease-in-out
}

.card:hover .make-testimonial-text-white {
    transition: all .3s ease-in-out;
    color: #fff!important
}

.card .testimonial-button-hover-effect {
    transition: all .3s ease-in-out;
    background-color: #af9763;
    color: #fff;
    font-weight: 700;
    border-top: 1px solid #af9763!important
}

.card:hover .testimonial-button-hover-effect {
    transition: all .3s ease-in-out;
    background-color: #fff;
    color: #f6821f!important;
    border-top: 1px solid #fff!important
}

.card .make-packages-price-orange {
    transition: all .3s ease-in-out
}

.card:hover .make-packages-price-orange {
    transition: all .3s ease-in-out;
    color: #f6821f
}

.header-location .make-packages-price-orange {
    color: #fff;
    transition: all .3s ease-in-out
}

.header-location:hover .make-packages-price-orange {
    transition: all .3s ease-in-out;
    color: #f6821f
}

.bakround-img {
    background-image: url(/static/media/banner-profile-1.9af95681.jpeg);
    padding: 1% 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom
}

div#navbarSupportedContent li.nav-item.login-white p {
    margin: 8px 0 0
}

header#doctor-profile.header-part div#navbarSupportedContent li.nav-item.login-white p {
    margin: 0
}

.header-part #navbarSupportedContent li.login-white a {
    color: #eb2128!important;
    padding: 5px;
    text-decoration: none
}

.left-offcanvas div#time-date a.btn-links {
    padding: 7px 6px
}

div#navbarSupportedContent li.nav-item.login-white:hover a {
    color: #fff!important
}

.banner-part .banner_part_search h1 {
    text-align: right;
    color: #fff;
    font-size: 4.2rem;
    font-weight: 400;
    margin: 30px 0
}

.center-search {
    width: 100%;
    max-width: 936px;
    margin: 0 auto
}

@media only screen and (min-width: 321px) and (max-width:768px) {
    .center-search {
        top:-64px!important
    }
}

.sp-rifht-0 {
    padding-right: 0!important
}

.excellence-part {
    background: #f3efe8;
    padding: 16px 12px;
    transition: .5s;
    border-radius: 31px
}

.excellence-part p {
    margin: 0;
    color: #222!important;
    font-size: 1.1rem;
    line-height: 1.2
}

.excellence-part i {
    color: #9d8f8f;
    font-size: 1.7rem;
    margin-top: 5px!important
}

.excellence-part:hover {
    background: #f58220!important
}

.ql-background {
    background-color: #e6dfcf
}

.excellence-part:hover i,.excellence-part:hover p {
    color: #fff!important
}

.contact-number {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    margin-top: 90px;
    padding: 10px;
    position: absolute;
    max-width: 356px
}

.contact-number span {
    color: #747474;
    font-size: 1.2rem;
    font-weight: 300
}

.contact-number a {
    text-decoration: none
}

.contact-number p {
    margin: 0;
    color: #747474;
    font-size: 3rem;
    font-weight: 700;
    line-height: 44px
}

.contact-number img {
    margin-top: 25px
}

.center-of-excellence {
    padding: 0!important;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fef3e9
}

.center-of-excellence h2 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #3f3f4a
}

.center-of-excellence .post-slide span img {
    border: 2px solid #a9a9a9;
    padding: 15px;
    border-radius: 200px;
    height: 200px!important;
    width: 321px!important
}

.center-of-excellence .post-slide:hover span img {
    border: 2px solid #ed6e1f
}

.center-of-excellence .post-slide {
    text-align: center
}

.center-of-excellence .post-slide p {
    margin: 10px 0 0;
    font-size: 1.1rem
}

.center-of-excellence .owl-next {
    background: #000;
    width: 85px;
    height: 85px;
    border-radius: 100px;
    text-align: center;
    color: #fff;
    padding: 0 8px;
    font-size: 50px;
    position: absolute;
    right: -9.3%;
    top: 10px
}

#tabs-mm .tab:not(:target) {
    display: none
}

#tabs-mm .tab:last-child {
    display: block
}

#tabs-mm .tab:target~.tab:last-child {
    display: none
}

#tabs-mm .nav,#tabs-mm .nav a {
    -ms-flex-pack: center;
    justify-content: center
}

#tabs-mm .nav a {
    padding: 12px;
    color: #41414b;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #41414b;
    display: -ms-flexbox;
    display: flex;
    border-radius: 14px 0 0 14px;
    margin-right: -1px
}

div#tabs-mm {
    margin-top: 45px
}

#tabs-mm .nav li.active a {
    background-color: #af9763;
    border-color: #af9763;
    color: #fff
}

#tabs-mm .nav li {
    width: 120px
}

#tabs-mm .nav a img {
    width: 25px;
    margin-right: 5px
}

#tabs-mm .nav li.active a img {
    filter: brightness(0) invert(1)
}

#tabs-mm a.border-red {
    border-radius: 0 10px 10px 0;
    border-left: 1px solid #fb6201;
    margin-left: 0
}

.text-areya {
    text-align: center
}

.zubaida {
    position: relative
}

#saying {
    margin-top: 40px
}

#saying h3 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #3f3f4a
}

#saying h3 span {
    font-size: 1.2rem;
    color: #8b8b8b;
    position: absolute;
    right: 15px;
    top: 6px
}

button.see-more {
    background: #41414b;
    color: #fff;
    width: 100%;
    font-size: 1.1rem;
    padding: 16px 5px;
    border: unset;
    margin-top: 83px
}

.ceo-section {
    background-image: url(/static/media/ceo-back.5688399b.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4% 0;
    background-position: bottom
}

.ceo-section h3 {
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #f26726
}

.ceo-section p {
    font-size: 1.7rem;
    line-height: 28px
}

.sspp {
    padding: 0 2%
}

.news-part {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 235px;
    width: 100%!important
}

.bg-color-back {
    bottom: 0
}

.news-events .post-slide {
    padding-right: 10px
}

.news-part p {
    color: #fff;
    font-size: 1.1rem;
    text-align: left;
    padding-left: 10px;
    text-transform: capitalize
}

.news-events .owl-buttons {
    position: absolute;
    top: -50px;
    width: 92px;
    right: 0
}

.news-events .owl-prev,.owl-next {
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    padding: 2px 0
}

.news-events .owl-next {
    position: relative;
    bottom: 40px;
    right: -45px
}

input#css,input#html,label.label-text input {
    accent-color: #fb6201
}

.news-events {
    padding: 30px 0
}

.news-events h2.border-bottom {
    border-bottom: 1px solid #fb6201!important
}

.img-back-pub {
    position: relative;
    border-radius: 5px
}

#Publications {
    background: #f3f3f3
}

.publication_crousel img {
    z-index: -1
}

.publication_crousel button {
    z-index: 1
}

.img-back-pub img {
    width: 100%;
    border-radius: 5px
}

.areya-contant {
    position: absolute;
    bottom: 0;
    background: #0c807d;
    padding: 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

.areya-contant p {
    color: #fff;
    font-size: 1.1rem;
    margin: 0
}

.test {
    padding: 40px 0
}

.footer-part {
    padding: 100px 0 50px;
    background-color: #474747;
    color: #cfcfcf
}

h3.font-width.colum-3-h3 {
    margin-top: 0
}

.footer-part h3 {
    font-size: 1.3rem;
    margin-top: 18px;
    margin-bottom: 8px
}

.footer-part p {
    font-size: 1rem;
    margin: 0 0 3px;
    line-height: 26px
}

h3.font-width {
    font-weight: 300
}

.footer-part p a {
    color: #cfcfcf;
    text-decoration: none
}

.footer-part p a:hover {
    color: #fb6201
}

.left-offcanvas {
    padding: 25px 0
}

.left-offcanvas h4 {
    font-size: 36px;
    color: #fb6201;
    font-weight: 500
}

.left-offcanvas p {
    font-size: 18px
}

.left-offcanvas .form-control {
    border: 2px solid #ced4da;
    padding: 9px 11px;
    font-size: 21px
}

.left-offcanvas a {
    color: #000!important
}

.left-offcanvas a.btn-links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #d4d3d2;
    padding: 11px 7px;
    border-radius: 7px;
    font-size: 21px;
    text-decoration: none
}

.left-offcanvas a.btn-links:hover {
    background: #d4d3d2
}

.header-part .offcanvas.show .input-group {
    width: 100%
}

.header-part .offcanvas.show .input-group input {
    font-size: 21px
}

.offcanvas span#basic-addon2 {
    background: #979797;
    color: #fff;
    font-size: 21px
}

a#black-btn {
    background: #41414b;
    color: #fff!important;
    font-size: 20px!important;
    text-decoration: none;
    display: block;
    width: 100%!important;
    padding: 10;
    text-align: center
}

.offcanvas p label {
    color: #fb6201;
    font-size: 17px;
    margin-top: 12px
}

.offcanvas p label a {
    color: #fb6201!important;
    text-decoration: none;
    font-size: 17px
}

.offcanvas p label a:hover {
    color: #41414b!important
}

.fild-1 {
    width: 18%;
    text-align: center;
    border: 1px solid #979797;
    margin-right: 10px;
    padding: 8px 6px;
    box-shadow: inset 0 0 5px #00000040;
    margin-top: 20px;
    border-radius: 4px
}

.doctor-list h5 {
    font-size: 10px
}

.left-offcanvas .doctor-list p {
    font-size: 8px;
    margin: 0
}

.doctor-list .col-5 {
    padding: 0
}

.doctor-list .col-7 {
    text-align: left
}

.doctor-list {
    padding: 0 10px
}

@media only screen and (max-width: 600px) {
    .book-appointment {
        background-color:#ff5722!important;
        border: none!important;
        padding: 12px!important;
        font-size: 15px!important;
        width: 91%;
        border-bottom-right-radius: 5px;
        margin-left: 18px
    }
}

a.btn-links.color-check {
    background: #e3e2e1!important;
    font-weight: 400
}

.offcanvas-body {
    padding: 1rem
}

.doctor-list.active {
    border: 1px solid #fb6201
}

#doctor-profile.header-part {
    background: #fff
}

#doctor-profile.header-part a.nav-link.number img {
    width: 35px;
    margin: -5px 0 0
}

#doctor-profile.header-part a.nav-link.number {
    font-size: 1.5rem;
    padding: 2px
}

#doctor-profile li.login-white {
    padding: 20px 12px!important;
    margin-left: 0;
    margin-right: 0
}

#doctor-profile.header-part li.login-white p {
    padding-top: 0
}

#doctor-profile.header-part nav.navbar {
    padding: 0
}

#doctor-profile.header-part ul.navbar-nav {
    margin-bottom: 0!important
}

h6.timer {
    font-size: 1.1rem
}

label.dont {
    color: #41414b!important
}

div#dr h5 {
    font-size: 18px
}

div#dr p {
    font-size: 12px
}

div#dr {
    padding: 21px 0 0 14px
}

.col-4.sp-0-1 {
    padding: 0 0 0 2px
}

.left-offcanvas div#time-date a.btn-links {
    border-radius: 0;
    font-size: 12px;
    margin-bottom: 9px;
    border: 1px solid #888!important;
    font-weight: 400
}

.left-offcanvas div#time-date a.btn-links.color-orange {
    background: #fb6201;
    color: #fff!important;
    border: 1px solid #fb6201
}

#Schedule.appointment-new,a#black-btn.appointment-new {
    font-size: 24px
}

.left-offcanvas .payment p {
    color: #888
}

.left-offcanvas .payment p.color-drak {
    color: #000
}

.payment label {
    font-size: 22px!important;
    margin-left: 5px
}

.payment input.radio-btn {
    width: 24px;
    height: 24px;
    position: relative;
    top: 5px
}

label.label-text {
    color: #888;
    font-size: 13px
}

div#tab1 li.active a {
    border-radius: 10px 0 0 10px
}

.doctor-list:focus,.doctor-list:focus-visible {
    border: 1px solid #fb6201!important;
    outline: none
}

.testimonialDesign {
    position: relative
}

.testimonialDesign img {
    position: absolute;
    top: -50px;
    max-width: 70px
}

@media (max-width: 1199px) {
    .header-part div#navbarSupportedContent a {
        font-size:.8rem
    }

    .header-part a,.header-part li.login-white p {
        font-size: 12px
    }

    .banner-part .banner_part_search h1 {
        font-size: 3.4rem!important
    }

    .excellence-part p {
        font-size: 12px!important
    }

    .excellence-part i {
        font-size: 19px;
        margin-top: 8px
    }

    button.see-more {
        font-size: 14px
    }

    .center-of-excellence h2 {
        font-size: 26px
    }

    #saying h3 {
        font-size: 1.6rem
    }

    #saying h3 span {
        font-size: 1.1rem;
        top: 3px
    }

    .areya-contant p {
        font-size: 1rem
    }

    .areya-contant {
        padding: 7px
    }

    .footer-part h3 {
        font-size: 1.2rem
    }

    .footer-part p {
        font-size: .8rem
    }
}

@media (max-width: 1199px) {
    .left-offcanvas p {
        font-size:.9rem!important
    }

    .payment label {
        font-size: 17px!important
    }
}

@media (max-width: 991px) {
    section.drop-gender .dropdown {
        margin-bottom:18px
    }

    .navbar-light .navbar-toggler {
        background: #fff
    }

    .excellence-part p {
        font-size: .6rem
    }

    .excellence-part i {
        font-size: 1.1rem;
        margin-top: 4px
    }

    .contact-number span {
        font-size: .9rem
    }

    .contact-number p {
        font-size: 1.8rem;
        line-height: 1.8rem
    }

    .contact-number img {
        margin-top: 12px
    }

    button.see-more {
        font-size: .8rem
    }

    #saying h3 span {
        font-size: .9rem;
        top: 8px
    }

    .news-part p {
        margin-bottom: 210px;
        -ms-flex-align: center!important;
        align-items: center!important
    }

    .footer-part h3,.news-part p {
        font-size: 1rem
    }

    .footer-part p {
        font-size: .8rem
    }

    .ceo-section h3 {
        font-size: 1.5rem
    }

    .ceo-section p {
        font-size: 1.2rem;
        line-height: 25px
    }

    .our-recommendations .doctor-list {
        width: 60%;
        margin: 10px auto
    }

    .banner-part {
        height: unset
    }

    .contact-number {
        position: unset;
        max-width: unset
    }

    .banner-part .banner_part_search input.form-control {
        font-size: 1.2rem
    }
}

@media (max-width: 767px) {
    .news-part p {
        font-size:1.2rem
    }

    .departmentWrapper {
        margin-top: 20px
    }

    .areya-contant p {
        font-size: 1.1rem
    }

    .our-recommendations .doctor-list {
        width: 100%
    }

    img.ceo-img {
        width: 100%;
        margin-top: 50px
    }

    .banner-part .banner_part_search h1 {
        font-size: 2rem
    }

    .banner-part .banner_part_search input.form-control {
        font-size: .9rem
    }

    .excellence-part i {
        font-size: 1.8rem;
        margin-top: 5px
    }

    .excellence-part p {
        font-size: 1.2rem;
        margin-top: 6px
    }

    .banner-part .banner_part_search .col-3 {
        text-align: right
    }

    .excellence-part {
        margin-bottom: 15px
    }

    .sp-top .row.mt-4 {
        margin-top: 0!important
    }

    .contact-number span {
        font-size: 1rem
    }

    .contact-number p {
        font-size: 2.3rem;
        line-height: 34px
    }

    .center-of-excellence h2 {
        font-size: 1.6rem;
        text-align: center
    }

    #saying h3 span {
        font-size: 17px;
        position: unset
    }

    #saying h3 {
        text-align: center
    }

    button.see-more {
        font-size: 16px;
        margin-top: 7px
    }

    .footer-part h3 {
        font-size: 1.2rem
    }

    .footer-part p {
        font-size: 16px
    }

    .header-part a {
        font-size: 17px
    }

    .header-part li.login-white {
        padding: 8px 10px;
        width: 148px
    }

    .header-part li.login-white p {
        font-size: 16px
    }

    .bangla-part {
        margin-top: 16px
    }

    div#navbarSupportedContent {
        padding-left: 0!important;
        background: #fb6201;
        padding: 13px!important;
        border-radius: 10px
    }

    .footerIframe {
        max-width: 550px!important;
        max-height: 200px!important
    }
}

@media (max-width: 380px) {
    .left-offcanvas p {
        font-size:13px
    }

    .payment label {
        font-size: 22px
    }

    .payment input.radio-btn {
        width: 17px;
        height: 17px;
        top: 3px
    }

    #Schedule.pay-now {
        font-size: 19px
    }

    .left-offcanvas h4 {
        font-size: 28px
    }

    .header-part a,.left-offcanvas .form-control {
        font-size: 12px
    }

    div#dr {
        padding: 11px 0 0 14px
    }

    h6.timer {
        font-size: 18px
    }

    .left-offcanvas div#time-date a.btn-links {
        font-size: 10px
    }
}

.left-offcanvas div#time-date a.color-check.active {
    background: #fb6201!important;
    color: #fff!important
}

.text-profile label.label-text {
    font-size: 1rem;
    color: #252525
}

.border-part {
    padding: 30px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    margin-top: -8px;
    background-color: #fff
}

.roomContainer {
    max-width: 100%;
    max-height: 600px
}

.roomContainer a img {
    height: 400px;
    width: 100%
}

.roomTable {
    max-width: 75%
}

.ril__toolbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: end;
    top: 0!important;
    background-color: #242424;
    height: 155px
}

.roomDetails {
    margin-top: 63px
}

@media (max-width: 767px) {
    .roomContainer {
        max-width:100%;
        max-height: 400px
    }

    .roomTable {
        max-width: 100%
    }

    .roomContainer a img {
        height: 200px;
        width: 100%
    }

    .roomDetails {
        margin-top: -20px;
        margin-bottom: 30px
    }
}

.jci {
    max-width: 1315px!important
}

ul#pills-tab {
    border-radius: 5px;
    background-color: #fff;
    width: 100%!important;
    max-width: 1300px!important
}

.container .photoContainer {
    max-width: 1285px!important
}

@media (min-width: 992px) {
    .jciContainer {
        background-image:url(/static/media/updated_jci.png_1.aae8d991.png);
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: cover
    }
}

@media (max-width: 992px) {
    .jci-content {
        margin-top:10px!important;
        margin-bottom: 40px!important
    }

    .jci-content,.videoContainer {
        background-color: #fff;
        padding: 15px;
        border-radius: 5px
    }
}

.div1 {
    width: 90%!important
}

.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button {
    width: 30px
}

@media (min-width: 1441px) {
    .packagesBannerContainer {
        height:400px
    }
}

@media (min-width: 1025px) and (max-width:1440px) {
    .packagesBannerContainer {
        height:400px
    }
}

@media (min-width: 769px) and (max-width:1024px) {
    .packagesBannerContainer {
        height:400px
    }
}

@media (min-width: 320px) and (max-width:768px) {
    .packagesBannerContainer {
        height:220px
    }
}

.pagination {
    margin: 0!important;
    padding: 20px 0
}

@media (min-width: 360px) and (max-width:767px) {
    .cardHover {
        width:100%;
        margin: 0 auto;
        color: #af9763
    }

    .cardHover .imgContainerDept {
        display: none!important;
        width: 50%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-align: center;
        align-items: center;
        padding-right: 40px
    }

    .cardHover p {
        text-align: center
    }

    .div {
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
        max-width: 180px;
        padding: 0!important
    }

    .div h3 {
        font-size: 20px!important;
        margin-left: .5rem!important
    }

    .div img {
        width: 20px!important
    }

    .div button {
        width: 100%!important;
        max-width: 100px!important;
        height: 30px!important;
        font-size: 10px!important
    }

    .div button img {
        margin: 3px!important
    }

    .div1 {
        margin-top: 10px!important;
        column-gap: 20px!important
    }

    .jci_text h2 {
        font-size: 16px
    }

    .jci_text p {
        font-size: 14px
    }

    .img-1 {
        max-width: 50px!important;
        margin-left: 7px!important
    }

    .img-1,.img-2 {
        width: 100%!important
    }

    .img-2 {
        max-width: 90px!important
    }

    .footerHeight {
        height: 100%!important;
        padding: 10px!important
    }

    .text-light {
        font-size: 14px!important
    }

    .top-header {
        margin-bottom: 10px!important
    }
}

@media (min-width: 768px) and (max-width:1023px) {
    .roomContainer a img {
        height:250px;
        width: 100%
    }

    .div {
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
        width: 400px;
        padding: 0!important
    }

    .div1 {
        margin-top: 10px!important;
        column-gap: 20px!important
    }

    .jci_text h2 {
        font-size: 16px
    }

    .jci_text p {
        font-size: 14px
    }
}

.makeInnerH2Golden h2 {
    color: #af9763;
    font-weight: 700
}

@media (min-width: 1024px) and (max-width:1199px) {
    .jci {
        height:475px!important
    }

    .div {
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
        max-width: 400px;
        padding: 0!important
    }

    .div1 {
        margin-top: 10px!important;
        column-gap: 20px!important
    }

    .jci_text h2 {
        font-size: 18px
    }

    .jci_text p {
        font-size: 16px
    }
}

@media (min-width: 1200px) {
    .jci {
        height:550px!important
    }
}

.div1 {
    margin-top: 10px!important;
    column-gap: 20px!important
}

.jci_text h2 {
    font-size: 18px
}

.jci_text p {
    font-size: 16px
}

.cardHover {
    color: #af9763
}

.cardHover,.cardHover:hover {
    transition: all .2s ease-in-out
}

.cardHover:hover {
    background-color: #f58220!important;
    color: #fff
}

img.img-doc {
    width: 204px;
    border: 3px solid #0c807d;
    margin-top: -100px
}

div#tab-mob {
    padding-left: 8px
}

.text-profile img.img-doc {
    margin-bottom: 20px
}

.text-profile h3 {
    font-size: 22px
}

.text-profile p {
    font-size: 14px!important;
    color: #252525;
    line-height: 1.8em!important;
    margin-bottom: 7px
}

.text-profile p.b {
    padding: 20px
}

table.table-sst th {
    background: #e6e6e6;
    text-align: center;
    font-size: 1.1rem
}

table.table-sst td {
    text-align: center;
    font-size: .6rem
}

table.table-sst tr {
    border: 1px solid #b4b4b4
}

.number-profile {
    background: #41414b;
    border-radius: 5px
}

.number-profile p span {
    font-size: 1.2rem;
    font-weight: 500
}

.number-profile p {
    font-size: 3.2rem;
    color: #fff;
    font-weight: 600;
    line-height: 45px
}

.number-profile a,.number-profile p {
    text-decoration: none
}

.number-profile img {
    margin-top: 35px
}

button.make-btn {
    width: 100%;
    background: #41414b;
    font-size: 1rem;
    padding: 16px 7px;
    margin-top: 15px;
    border-radius: 5px
}

button.dropdown-toggle.make-btn {
    position: relative
}

button.dropdown-toggle.make-btn i {
    background: #fff;
    color: #000;
    padding: 6px 7px;
    border-radius: 100px;
    position: absolute;
    right: 15px
}

.btn-check:focus+.btn-secondary,.btn-secondary:focus {
    color: #fff;
    background-color: #41414b;
    border-color: #5c636a;
    box-shadow: unset;
    opacity: 1
}

.profile-slider {
    padding: 5px
}

.post-slider-contant {
    background: #f2f2f2;
    padding: 10px;
    border: 1px solid #e5e5e5
}

.post-slider-contant h4 {
    font-size: 1.1rem;
    color: #565656
}

.post-slider-contant p.dis-date {
    font-size: .7rem;
    color: #565656
}

.owl-next,.text-profile .owl-prev {
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    padding: 2px 0
}

.text-profile .owl-buttons {
    position: absolute;
    top: -48px;
    width: 92px;
    right: 0
}

.text-profile .owl-next {
    position: relative;
    bottom: 40px;
    right: -45px
}

#hr-lines hr {
    border-top: 3px dotted #fb6201;
    background: #ff000000;
    opacity: 1;
    margin: 22px 0;
    width: 99%
}

.text-profile h5 {
    color: #585858;
    font-size: 1.2rem
}

.profile-slider img {
    width: 100%
}

.testimonials-part .profile-slider p {
    font-size: .9rem
}

#package {
    background-image: url(/static/media/package.7dd75d9f.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5% 0
}

#package h2 {
    font-size: 3.1rem;
    color: #41414b
}

#package button.btn.btn-secondary.make-btn {
    width: unset;
    padding: 18px 35px;
    margin-right: 10px;
    border-radius: 0
}

.form-control:focus {
    box-shadow: unset!important
}

.drop-gender button.make-btn {
    margin: 0;
    border: 1px solid #41414b;
    background: #fff;
    color: #41414b;
    padding: 14px 15px;
    font-size: 1.1rem;
    text-align: left
}

.col-12.center-of-excellence.hide-arrow {
    background: #fff
}

.drop-gender button.make-btn i {
    background: #000;
    color: #fff
}

.drop-gender input {
    width: 100%;
    padding: 15px 10px;
    outline: none
}

.drop-gender {
    padding: 20px 0
}

.drop-gender button.make-btn i#color-org {
    background: #fb6201
}

.drop-gender button.make-btn:after {
    color: #ef323200
}

.drop-gender .center-of-excellence.hide-arrow .owl-next {
    position: unset;
    background: no-repeat
}

.doctor-list img {
    border-radius: 6px;
    max-height: 100%!important
}

.drop-gender .center-of-excellence.hide-arrow {
    padding-bottom: 0
}

.our-recommendations h3 {
    font-size: 1.5rem;
    color: #41414b
}

.our-recommendations hr:not([size]) {
    height: 2px
}

.our-recommendations .doctor-list h4 {
    font-size: 1.1rem;
    padding-top: 15px
}

.our-recommendations .doctor-list p {
    font-size: .9rem
}

.our-recommendations .doctor-list:hover {
    border: 1px solid #fd8450
}

.drop-gender input:-ms-input-placeholder {
    color: #41414b
}

.drop-gender input::placeholder {
    color: #41414b
}

.input-group.navi-input span#basic-addon2 {
    background: #fff
}

.input-group.navi-input input.form-control {
    border-right: 0
}

.input-group.navi-input {
    width: unset;
    border: 1px solid #fb6201;
    border-radius: 4px
}

.header-part .input-group i {
    color: #ec1c24
}

@media (max-width: 1100px) {
    #doctor-profile.header-part a {
        font-size:9px
    }

    .our-recommendations .doctor-list h4 {
        font-size: 1rem
    }

    .header-part div#navbarSupportedContent a {
        font-size: .7rem
    }
}

.top-header a {
    color: #fff!important
}

@media (max-width: 980px) {
    header#doctor-profile div#navbarSupportedContent {
        background:#fff
    }

    #doctor-profile.header-part li.nav-item {
        padding: 4px 5px
    }

    #doctor-profile.header-part a {
        font-size: 16px
    }

    #doctor-profile.header-part li.nav-item {
        border-right: 1px solid #dbdbdb00
    }
}

@media (max-width: 767px) {
    .number-profile p span {
        font-size:.8rem
    }

    .number-profile p {
        font-size: 33px;
        line-height: 28px
    }

    .number-profile img {
        margin-top: 22px;
        width: 40px;
        max-width: 40px;
        margin-left: 0
    }

    #package h2 {
        font-size: 1.5rem;
        text-align: center
    }

    #package button.btn.btn-secondary.make-btn {
        width: 100%;
        padding: 15px;
        font-size: 1.2rem;
        margin-top: 8px
    }

    .drop-gender button.make-btn {
        margin-top: 20px
    }

    .drop-gender input {
        outline: none;
        margin-top: 20px
    }

    .our-recommendations .doctor-list h4 {
        font-size: 16px;
        padding-top: 6px
    }

    .our-recommendations .doctor-list .col-7 {
        padding: 9px
    }

    div#ssp-0 {
        margin-top: 0!important
    }

    .our-recommendations .doctor-list {
        margin-top: 15px
    }

    .our-recommendations h3 {
        text-align: center
    }
}

.headers {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    padding: 1rem;
    max-width: 1150px
}

@media screen and (min-width: 992px) and (max-width:4000px) {
    .b {
        border-radius:5px;
        background-color: #fff;
        padding: 10px;
        margin-bottom: .5rem
    }
}

@media screen and (max-width: 991px) {
    .b {
        border-radius:5px;
        background-color: #fff;
        padding: 10px;
        margin-bottom: .5rem
    }
}

@media only screen and (max-width: 600px) {
    .headers {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .headers .menus,.headers h3 {
        width: 100%
    }

    .top-section {
        top: 100
    }

    .border-part {
        padding: 1rem
    }

    .text-profile p {
        border: none
    }
}

img.img-doc {
    border: 4px solid #f26726
}

.border-part {
    border: 1px solid rgb(139 139 139)
}

.text-profile h2 {
    color: #3c3b3b;
    font-size: 1.5rem
}

.text-profile p {
    font-size: 1rem;
    color: #545151
}

#tell p {
    font-size: 3.2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    line-height: 45px
}

.text-profile h3 {
    color: #585858;
    font-size: 1.5rem;
    font-weight: 600
}

#doctor-profile.header-part a {
    font-size: 16px;
    font-weight: 600
}

#saying p {
    font-size: 1rem;
    font-weight: 400;
    padding: 0 15px 0 0;
    text-align: justify
}

.our-recommendations .doctor-list {
    border: 1px solid #8585858c
}

.doctor-list img {
    border-radius: 0;
    margin-left: 2px;
    margin-top: -1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0
}

.news-events h2.border-bottom {
    border-bottom: 1px solid gray!important;
    padding-bottom: 10px;
    color: #fb6201
}

section#hr-lines .owl-buttons {
    top: -86px
}

.news-events.hr-lines .owl-buttons {
    top: -73px
}

.news-events h2.border-bottom {
    font-weight: 600
}

.Chittagong-part {
    margin: 2rem 0
}

@media (max-width: 1185px) {
    #doctor-profile.header-part a {
        font-size:.8rem
    }

    #doctor-profile.header-part a.nav-link.number {
        font-size: 1.1rem
    }

    .drop-gender button.make-btn {
        font-size: .9rem
    }

    .our-recommendations .doctor-list .col-7 {
        padding: 9px
    }

    .our-recommendations h3 {
        font-size: 1.3rem
    }

    table.table-sst td {
        font-size: .9rem
    }
}

@media (max-width: 991px) {
    .header-part li.nav-item {
        padding:7px 10px
    }

    .header-part li.login-white p {
        padding-top: 0
    }

    .header-part a {
        font-size: 1rem
    }

    li.login-white {
        width: 140px
    }

    li.nav-item.bangla-part {
        margin-top: 1rem
    }

    .center-of-excellence .owl-next {
        width: 3rem;
        height: 3rem;
        font-size: 1.8rem;
        top: 20px
    }
}

@media (max-width: 767px) {
    .bg-color-back {
        width:100%
    }

    .center-of-excellence h2 {
        margin-bottom: 0
    }

    #saying img {
        margin-bottom: 2rem
    }

    .Chittagong-part {
        margin: 1rem 0
    }

    .center-of-excellence h2 {
        margin-bottom: 2rem
    }

    #saying p {
        font-size: 1rem
    }

    .center-search {
        width: 100%
    }

    img.img-doc {
        margin-top: 0
    }

    div#mobile-part div#tab-mob .col-2 {
        width: 100%;
        padding: 0
    }

    div#mobile-part div#tab-mob .col-2 table.table-sst th {
        font-size: 1.5rem
    }

    div#mobile-part div#tab-mob .col-2 table.table-sst td {
        font-size: 1rem
    }

    div#mobile-part .number-profile img {
        margin-top: 24px
    }

    #tell p {
        font-size: 2.2rem;
        line-height: 28px
    }

    .text-profile h2 {
        font-size: 1.2rem
    }
}

@media (max-width: 370px) {
    .center-of-excellence .owl-next {
        width:2rem;
        height: 2rem;
        font-size: 1.2rem
    }
}

div#offcanvasExample input.form-control {
    border-radius: 5px!important;
    background: #fff!important;
    border-right: unset!important;
    border: 1px solid #b7b7b7!important;
    padding: 5px 15px!important;
    font-size: 21px!important;
    color: #41414b!important;
    font-weight: 600
}

div#offcanvasExample input.form-control:-ms-input-placeholder {
    color: #41414b
}

div#offcanvasExample input.form-control::placeholder {
    color: #41414b
}

.news-part {
    margin-bottom: 10px
}

h2.border-bottom.Publications {
    border-bottom: 3px dotted #fb6201!important;
    background: #ff000000;
    margin: 18px 0;
    width: 99%
}

.doctor-list.Dr-Reazur img {
    width: 100%
}

.dropdownMenu {
    background-color: transparent!important;
    color: #da6621!important;
    font-size: 16px;
    font-weight: 600;
    border: none!important;
    outline: none!important;
    border: 0
}

.carousel-item {
    box-shadow: 0 -3px 30px 7px rgba(91,85,85,.1)
}

.tips a {
    border-radius: 0 0 5px 5px!important;
    background-color: #187979
}

.tips a:hover {
    background-color: #33debe
}

.btn-group .tip1 {
    border-radius: 5px 0 0 5px!important;
    background-color: #187979!important
}

.btn-group .tip2 {
    background-color: #af976d!important
}

.btn-group .tip3 {
    background-color: #f48421!important;
    border-radius: 0 5px 5px 0!important
}

.tips li {
    border-radius: 0 0 5px 5px!important;
    background-color: #187979
}

.tips li:hover {
    background-color: #33debe
}

progress {
    width: 100%;
    vertical-align: bottom
}

.tabsGroup .tip1 {
    border-radius: 5px 0 0 5px!important;
    background-color: #187979!important
}

.btn-group .tip {
    border-radius: 5px!important
}

.tabsGroup .tip2 {
    background-color: #af976d!important
}

.tabsGroup .tip3 {
    background-color: #f48421!important;
    border-radius: 0 5px 5px 0!important
}

.tabsGroup button:focus {
    box-shadow: none!important
}

@media (min-width: 768px) and (max-width:1199px) {
    .addToCartText {
        margin:10px 0 5px
    }
}

.colum-1 .united-hospital {
    margin-top: -50px
}

@media (min-width: 1200px) {
    .dropdown-menu {
        right:-7px;
        top: 49px
    }

    .headers h3 {
        padding-left: 19.5%
    }

    .offcanvas-start {
        width: 30%
    }
}

@media (min-width: 1400px) {
    .container {
        max-width:1140px
    }

    .headers h3 {
        padding-left: 13%
    }
}

@media (min-width: 1700px) {
    .headers h3 {
        padding-left:11%
    }

    .contact-number span {
        font-size: 23px
    }

    .contact-number p {
        font-size: 50px
    }

    .contact-number {
        margin-top: 230px!important
    }
}

@media (max-width: 1500px) {
    .doctor-list.Dr-Reazur h5 {
        font-size:23px!important;
        margin-top: 0
    }

    .doctor-list.Dr-Reazur p {
        font-size: 15px!important
    }

    .left-offcanvas a.btn-links {
        font-size: 1rem
    }

    div#offcanvasExample input.form-control {
        font-size: 1rem!important
    }

    .left-offcanvas h4 {
        font-size: 2.1rem
    }

    .left-offcanvas p {
        font-size: 1rem
    }

    div#dr {
        padding: 7px 0 0 14px
    }
}

@media (max-width: 980px) {
    .header-part div#navbarSupportedContent li.nav-item.login-white p {
        margin:0
    }

    .banner-part .banner_part_search h1 {
        text-align: center;
        font-size: 42px!important
    }
}

@media (max-width: 990px) {
    .banner-part .banner_part_search h1 {
        font-size:42px!important
    }
}

@media (max-width: 767px) {
    .left-offcanvas .form-control,.left-offcanvas a.btn-links {
        font-size:.8rem!important
    }

    .left-offcanvas h4 {
        font-size: 1.8rem
    }

    .header-part .offcanvas span#basic-addon2 {
        font-size: .7rem
    }

    .doctor-list.Dr-Reazur h5 {
        font-size: 1rem!important;
        margin-top: 0
    }

    .doctor-list.Dr-Reazur p {
        font-size: .7rem!important
    }

    .hide-mobile-view {
        display: none
    }

    .contact-number {
        margin-top: 30px;
        max-width: 220px
    }

    .colum-1 {
        margin-bottom: 20px
    }
}

@media (max-width: 370px) {
    .center-of-excellence .owl-next {
        top:32px
    }
}

.doctor-list img {
    border-radius: 4px 0 0 4px;
    margin-top: 0
}

.left-offcanvas p.goback {
    font-size: 1rem
}

a#black-btn {
    font-size: 2rem!important;
    padding: 0 0 3px
}

div#offcanvasExample .input-group input.form-control {
    border-radius: 9px 0 0 9px!important
}

header#doctor-profile div#navbarSupportedContent a {
    color: #da6621!important
}

.banner-cardic {
    padding: 4% 0
}

.cardic-box .excellence-part {
    background: #f7f3f0;
    border: 1px solid #d9d7d5
}

.cardic-box .excellence-part:hover {
    background: #fa6400;
    border: 1px solid #fa6400
}

.cardic-box h1 {
    color: #fa6400;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 2rem
}

.cardic-box .input-group img {
    width: 2.2rem
}

.cardic-box .input-group.navi-input input:-ms-input-placeholder {
    color: #41414b
}

.cardic-box .input-group.navi-input input::placeholder {
    color: #41414b
}

.cardic-box .input-group.navi-input input {
    color: #41414b;
    font-size: 1.1rem
}

#excellence-part h2,.cardic-box {
    padding-left: 2rem
}

.cardic-box .input-group.navi-input span#basic-addon2 {
    padding: 4px
}

.hos-right {
    padding-right: 0
}

#excellence-part {
    background: #fff;
    padding-top: 0
}

#excellence-part .owl-next {
    display: none
}

.body-and-doctor h4 {
    font-size: 4rem;
    font-weight: 600
}

.body-and-doctor p {
    font-size: 1rem
}

.our-consultants h3 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #3f3f4a
}

.our-consultants h3 span {
    font-size: 1.2rem;
    color: #333
}

.our-consultants .doctor-list h6 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.our-consultants .doctor-list p {
    line-height: 1.1rem;
    font-size: .8rem;
    margin: 0 0 1rem
}

.our-consultants .doctor-list p a.read-more {
    line-height: 1.1rem;
    font-size: .8rem;
    color: #333;
    text-decoration: none;
    position: relative;
    top: 5px
}

img.hero-body {
    width: 100%
}

.our-consultants .doctor-list .col-7 {
    padding: 12px
}

.hos-right img,.our-consultants .doctor-list img {
    width: 100%
}

.search-popup {
    background: #fff;
    width: 95%;
    padding: 20px;
    margin: 0 auto;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666
}

.search-popup h4 {
    color: #999;
    font-size: 1.5rem
}

.search-popup h5 {
    color: #999;
    font-size: 1.3rem
}

.search-popup .doctor-list p {
    font-size: .4rem;
    margin: 0
}

.search-popup .doctor-list h6 {
    font-size: .5rem;
    margin: 1rem 0 0
}

.Package-part .bg-color-gry p {
    margin: 5px 0 0;
    font-size: .7rem
}

.bg-color-gry {
    background: #f2f2f2
}

.sp-0-search {
    padding: 0 4px
}

.search-popup h5.colo-dark {
    color: #333
}

.search-popup p.pera-search {
    font-size: .7rem
}

.search-popup-main {
    position: relative
}

.search-popup {
    position: absolute;
    z-index: 9999;
    display: none;
    left: 5.8rem
}

@media (min-width: 1700px) {
    .excellence-part p {
        font-size:1rem
    }

    .excellence-part i {
        font-size: 2rem
    }

    .cardic-box h1 {
        font-size: 4.4rem
    }

    .cardic-box .input-group.navi-input input {
        font-size: 1.6rem
    }

    .cardic-box .input-group img {
        width: 2.7rem
    }

    .Package-part .bg-color-gry p {
        margin: 5px 0 0;
        font-size: 1.1rem
    }

    .search-popup h5 {
        font-size: 1.8rem
    }

    .search-popup h4 {
        font-size: 2rem
    }

    .search-popup p.pera-search {
        font-size: 1.2rem
    }

    .search-popup .doctor-list h6 {
        font-size: .9rem;
        margin: 2rem 0 0
    }

    .search-popup .doctor-list p {
        font-size: .7rem
    }
}

@media (max-width: 1100px) {
    .news-events .owl-buttons {
        top:-67px
    }

    .left-offcanvas p {
        font-size: .8rem
    }

    .payment label {
        font-size: 1.2rem
    }
}

@media (max-width: 767px) {
    .body-and-doctor h4,.cardic-box h1 {
        font-size:2rem
    }

    img.hero-body {
        margin-bottom: 25px
    }

    .our-consultants h3 {
        font-size: 1.5rem
    }

    .doctor-list {
        width: 90%!important;
        margin-bottom: 15px
    }

    #excellence-part h2 {
        padding-left: 0
    }

    #saying h3 {
        font-size: 1.2rem
    }

    .cardic-box {
        padding-left: 0
    }

    .offcanvas-body {
        padding: 1rem
    }

    .left-offcanvas a.btn-links {
        padding: 15px 7px
    }
}

.tab-pane.fade {
    width: 100%!important
}

@media screen and (min-width: 766px) and (max-width:1199px) {
    .doctor-list {
        margin-bottom:15px
    }
}

.flex-columns-gallery {
    max-width: 400px
}

@media screen and (min-width: 1120px) and (max-width:1275px) {
    .flex-columns-gallery {
        max-width:350px
    }
}

@media screen and (min-width: 950px) and (max-width:1119px) {
    .flex-columns-gallery {
        max-width:300px
    }
}

@media screen and (min-width: 768px) and (max-width:949px) {
    .flex-columns-gallery {
        max-width:240px
    }
}

@media (max-width: 360px) {
    .top-part p {
        font-size:.9rem
    }
}

[data-aos^=zoom][data-aos^=zoom] {
    opacity: 1!important;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1)
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 1!important
}

#color-org {
    background: #fb6201!important
}

.banner-part .banner_part_search .sp-top {
    margin-top: 12.9%!important
}

.banner-part .banner_part_search h1 {
    margin-top: -70px!important
}

a.navbar-brand img {
    width: 30%!important
}

#package button.btn.btn-secondary.make-btn {
    margin-right: 15px!important
}

.doctor-list .col-7 {
    padding: 0;
    border: 0!important
}

a.navbar-brand.img-logo {
    width: 125px;
    height: 84px
}

li.nav-item.login-white.btnclass {
    margin-top: -7px
}

.dropdown-toggle.make-btn i {
    padding: 6px 7px;
    border-radius: 100px;
    position: absolute;
    width: 30px!important;
    height: 30px!important;
    color: #fff!important;
    background: #000!important
}

.drop-gender button.make-btn i#color-org {
    background: #fb6201!important
}

.doctor-list {
    padding: 0!important;
    background: #eee;
    border-radius: 5px;
    border: 1px solid #bdbdcc8c
}

form input:-ms-input-placeholder {
    color: #b7b7b7!important
}

form input::placeholder {
    color: #b7b7b7!important
}

.doctor-list .col-7 {
    padding: 5px;
    padding-left: 15px!important
}

button#black-btn {
    width: 100%;
    font-size: 1.5rem!important;
    padding: 0 0 3px;
    background: #41414b;
    color: #fff!important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 21px;
    text-decoration: none
}

#loginform label {
    font-weight: 400!important
}

.doctor_id,.patient_user {
    width: 100%;
    padding: 86px 0;
    opacity: 0;
    height: 92px;
    position: absolute;
    top: 0
}

#time-date .doctor_schedule_section,.doctor-list {
    position: relative
}

.doctor-list>input:checked+div {
    border: 1px solid #fb6222
}

#Schedule {
    background: #41414b;
    width: 100%;
    color: #fff!important;
    padding: 6px 0;
    border-radius: 6px
}

#schedule_date_time {
    width: 100%;
    padding: 86px 0;
    opacity: 0;
    height: 33px;
    position: absolute;
    left: 0
}

#time-date .doctor_schedule_section>input:checked+div {
    background: #fb6201!important;
    color: #fff
}

#change_schedule_date::-webkit-datetime-edit {
    color: transparent
}

#change_schedule_date:focus::-webkit-datetime-edit {
    color: #000
}

#change_schedule_date {
    width: 42px;
    border: none
}

section#hr-lines.news-events {
    background: #fff
}

.col-4.sp-0-1.left-0 {
    padding: 0
}

#sslczPayBtn.appointment-new {
    font-size: 24px
}

#sslczPayBtn {
    background: #41414b;
    width: 100%;
    color: #fff!important;
    padding: 15px 0;
    border-radius: 6px
}

.change_schedule_date {
    padding: 5px 10px;
    height: 30px;
    width: 150px
}

.open-button {
    width: 160px;
    height: 25px;
    background: #fff;
    pointer-events: none;
    position: relative;
    left: -35px
}

.open-button button {
    border: none;
    background: transparent
}

#change_schedule_date:focus-visible {
    outline: none
}

.pagination {
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.pagination li a {
    margin: 0 10px
}

a,button {
    transition: .8s!important
}

.pagination .active {
    background: linear-gradient(0deg,#ff897c,#e0595f 60%)!important;
    padding: 5px
}

.pagination .active a,.pagination .active a:hover {
    color: #fff!important
}

.pagination li a {
    line-height: 25px!important;
    color: #000;
    font-weight: 400;
    text-decoration: none
}

.pagination li {
    background-color: #e0e6ee;
    border: 1px solid #ccc;
    padding: 5px
}

#tech-companies-1 tbody tr td i {
    font-size: 18px;
    margin-bottom: 5px;
    padding: 5px;
    color: #000
}

.single_body_right_content_sec {
    text-align: left
}

.view-page {
    padding: 30px 0
}

.view-img img {
    border-radius: 10px
}

.view-page-box h1 {
    font-size: 45px;
    font-weight: 400;
    color: #fa6400
}

.view-page-box h2 {
    font-size: 30px;
    font-weight: 400;
    color: #fa6400
}

.view-page-box h3 {
    font-size: 25px;
    font-weight: 400;
    color: #fa6400
}

.start-icons i {
    color: #ffb208;
    margin-right: 6px
}

.edit {
    text-align: right
}

.edit a {
    text-decoration: none
}

.edit a i {
    background: #fff;
    padding: 10px;
    border-radius: 40px;
    color: #fa6400;
    border: 2px solid #fa6400
}

.edit a i:hover {
    background: #fa6400;
    color: #fff;
    border: 2px solid #fa6400
}

.edu-part {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px
}

.view-page-box h4 {
    font-size: 20px;
    margin-top: 20px
}

.view-page-box p {
    font-size: 15px;
    margin-bottom: 7px
}

.news-part-event {
    padding: 4%;
    box-shadow: 0 0 13px 9px #f3f3f3;
    border-radius: 10px
}

.news-part-event h3 {
    margin-top: 8px
}

.news-part-event h2,.news-part-event h3 {
    font-size: 30px;
    font-weight: 400;
    color: #fa6400
}

p.time-color {
    font-weight: 600;
    color: #fa6400
}

.news-part-event p {
    margin: 0 0 6px
}

.boarder-left {
    border-left: 2px solid #fa6400
}

.main-timeline {
    font-family: Poppins,sans-serif;
    padding: 15px 0;
    position: relative
}

.main-timeline:after {
    content: "";
    display: block;
    clear: both
}

.main-timeline:before {
    content: "";
    background: #dcdde1;
    width: 10px;
    height: 100%;
    border-radius: 50px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%
}

.main-timeline .timeline {
    width: 50.2%;
    padding: 0 0 0 50px;
    margin: 0 0 35px;
    float: right;
    position: relative
}

.main-timeline .timeline:before {
    content: "";
    width: 35px;
    height: 35px;
    border: 6px solid #fa6400;
    border-radius: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -14px
}

.main-timeline .timeline-content {
    color: #555;
    background-color: #fff;
    min-height: 120px;
    padding: 15px 15px 15px 100px;
    box-shadow: 0 0 15px -3px rgba(0,0,0,.2);
    display: block;
    position: relative
}

.main-timeline .timeline-content:hover {
    text-decoration: none
}

.main-timeline .timeline-content:after,.main-timeline .timeline-content:before {
    content: "";
    background-color: #fa6400;
    height: 100%;
    width: 80px;
    position: absolute;
    left: 0;
    top: 0
}

.main-timeline .timeline-content:after {
    height: 40px;
    width: 40px;
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    left: -13px
}

.main-timeline .timeline-year {
    color: #fa6400;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 17px 0;
    text-transform: capitalize;
    width: 110px;
    height: 110px;
    line-height: 1.3;
    border-radius: 50%;
    border: 10px solid #dcdde1;
    box-shadow: 0 0 15px -3px rgba(0,0,0,.2);
    left: -200px
}

.main-timeline .timeline-icon,.main-timeline .timeline-year {
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%
}

.main-timeline .timeline-icon {
    color: #fff;
    font-size: 50px;
    left: 15px;
    z-index: 1
}

.main-timeline .title {
    color: #fa6400;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 3px
}

.main-timeline .description {
    font-size: 13px;
    margin: 0
}

.main-timeline .timeline:nth-child(2n) {
    padding: 0 50px 0 0;
    float: left
}

.main-timeline .timeline:nth-child(2n):before {
    left: auto;
    right: -16px
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
    padding: 15px 100px 15px 15px
}

.main-timeline .timeline:nth-child(2n) .timeline-content:before {
    left: auto;
    right: 0
}

.main-timeline .timeline:nth-child(2n) .timeline-content:after {
    left: auto;
    right: -13px
}

.main-timeline .timeline:nth-child(2n) .timeline-year {
    left: auto;
    right: -200px
}

.main-timeline .timeline:nth-child(2n) .timeline-icon {
    left: auto;
    right: 15px
}

@media screen and (max-width: 767px) {
    .main-timeline:before {
        -ms-transform:translateX(-50%);
        transform: translateX(-50%);
        left: 17px
    }

    .main-timeline .timeline,.main-timeline .timeline:nth-child(2n) {
        width: 100%;
        padding: 125px 0 0 65px
    }

    .main-timeline .timeline:before,.main-timeline .timeline:nth-child(2n):before {
        left: 0;
        top: calc(50% + 63px)
    }

    .main-timeline .timeline-content,.main-timeline .timeline:nth-child(2n) .timeline-content {
        padding: 15px 15px 15px 100px
    }

    .main-timeline .timeline-content:before,.main-timeline .timeline:nth-child(2n) .timeline-content:before {
        right: auto;
        left: 0
    }

    .main-timeline .timeline-content:after,.main-timeline .timeline:nth-child(2n) .timeline-content:after {
        right: auto;
        left: -13px
    }

    .main-timeline .timeline-year,.main-timeline .timeline:nth-child(2n) .timeline-year {
        -ms-transform: translateY(0);
        transform: translateY(0);
        right: auto;
        left: 0;
        top: -125px
    }

    .main-timeline .timeline-icon,.main-timeline .timeline:nth-child(2n) .timeline-icon {
        right: auto;
        left: 15px
    }
}

@media screen and (max-width: 576px) {
    .main-timeline .timeline:before,.main-timeline .timeline:nth-child(2n):before {
        -ms-transform:translateY(0);
        transform: translateY(0);
        top: 148px
    }

    .main-timeline .timeline-content,.main-timeline .timeline:nth-child(2n) .timeline-content {
        padding: 100px 15px 15px
    }

    .main-timeline .timeline-content:before,.main-timeline .timeline:nth-child(2n) .timeline-content:before {
        width: 100%;
        height: 80px
    }

    .main-timeline .timeline-content:after,.main-timeline .timeline:nth-child(2n) .timeline-content:after {
        -ms-transform: translateX(-50%) translateY(0) rotate(45deg);
        transform: translateX(-50%) translateY(0) rotate(45deg);
        top: 20px;
        left: 7px
    }

    .main-timeline .timeline-icon,.main-timeline .timeline:nth-child(2n) .timeline-icon {
        -ms-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
        left: 50%;
        top: 6px
    }
}

a.timeline-content {
    text-decoration: none
}

.main-timeline .timeline-icon img {
    border-radius: 120px;
    border: 4px solid #fff;
    width: 55px
}

.center-text {
    text-align: center
}

button.load-more-btn {
    background: #fa6400;
    color: #fff;
    border-radius: 30px;
    padding: 13px 31px;
    font-size: 19px;
    border: 0 solid;
    margin-top: 15px
}

.show-more {
    display: none
}

th.Doctor-w {
    width: 25%
}

.table-new th {
    font-size: 16px;
    color: #fa6400
}

.table-new p {
    margin-bottom: 3px
}

.table-new p,.table-new td {
    font-size: 13px
}

.table-new img {
    border-radius: 130px;
    border: 2px solid;
    margin-top: 4px
}

.table-new .col-9 p {
    color: #000
}

.table-new td p span,.table-new th p span {
    color: #fa6400!important
}

.table-new th p {
    color: #000
}

a.read-text {
    color: #fa6400;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500
}

ul.making-time {
    padding: 0
}

ul.making-time li {
    display: inline-block;
    padding-right: 25px;
    margin-top: 10px
}

ul.making-time li i {
    color: #fa6400;
    margin-right: 3px
}

.news-part-event.blogimg h3 {
    font-size: 22px
}

.banner-part .banner_part_search .form-control {
    border-radius: 24px;
    background: #fff;
    border-right: 1px solid #fff;
    border: 2px solid #fb6201;
    padding: 15px;
    font-size: 24px;
    color: #000
}

.customDatePicker {
    border-radius: 5px;
    background: #fff;
    border-right: 1px solid #fff;
    border: 2px solid #8b8b8b;
    font-size: 24px;
    color: #000;
    width: 100%;
    padding: 4px
}

.banner-part .banner_part_search .custom-form-control {
    border-radius: 10px;
    background: #fff;
    border-right: 1px solid #fff;
    border: 2px solid #6e6e6ed0;
    padding: 15px;
    font-size: 16px;
    color: #000;
    width: 100%
}

.custom-form-control .customOptions {
    border-radius: 10px!important;
    background: #ff1d1d;
    border-right: 1px solid #fff;
    border: 2px solid #6e6e6ed0;
    padding: 15px;
    font-size: 16px;
    color: #000;
    width: 100%
}

.accept-button {
    background: #333;
    color: #fff;
    padding: 10px 30px
}

.avability_time {
    width: 86px;
    padding: 86px 0;
    opacity: 0;
    height: 70px;
    position: absolute
}

.doctor_schedule_section>input:checked+div {
    border: 1px solid #fb6222
}

.table-sst ul li:first-child {
    background: #e6e6e6;
    font-weight: 700
}

.table-sst ul li,.table-sst ul li:first-child {
    list-style: none;
    text-align: center;
    padding: 5px 0
}

.table-sst ul li {
    background: #fff
}

.table.table-sst ul {
    border: 1px solid #ccc;
    margin-bottom: 0;
    height: 100px;
    overflow: auto
}

@media screen and (min-width: 766px) and (max-width:1199px) {
    .timer {
        font-size:17px
    }
}

@media (max-width: 580px) {
    .table-sst ul li {
        font-size:10px
    }
}

@media (min-width: 1501px) {
    #Schedule {
        padding:10px 0!important
    }
}

.offcanvas-start {
    z-index: 9999999
}

.Toastify {
    z-index: 99999999999!important;
    position: relative
}

.category-list-link {
    -webkit-text-decoration-line: none;
    text-decoration-line: none;
    padding: 18px 20px;
    text-transform: uppercase;
    color: #fff!important;
    background: #0c807d;
    width: 100%;
    display: inline-block;
    font-weight: 500;
    font-size: 16px
}

.category-list li {
    border-bottom: 1px solid hsla(0,0%,78%,.3);
    margin-left: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 94%;
    float: left
}

.category-list li a {
    color: #666;
    font-size: .813em;
    width: 100%;
    float: left;
    text-transform: uppercase;
    -webkit-text-decoration-line: none!important;
    text-decoration-line: none!important;
    font-weight: 600;
    margin-top: 2px
}

.category-list li a:hover {
    color: #ff5722
}

.category-list {
    background-color: hsla(0,0%,100%,.6);
    float: left;
    margin: 0;
    padding: 15px 0 40px;
    width: 100%;
    z-index: 99;
    border-bottom: 2px solid #ff5722
}

#department-list-sidebar {
    height: 400px;
    overflow: overlay
}

.slick-next:before,.slick-prev:before {
    color: #000
}

.testimonial_section .slick-arrow.slick-prev {
    left: -10px
}

.testimonial_section .slick-arrow.slick-next {
    right: -10px
}

.news_section .post-slide {
    color: aqua;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.news_section button {
    z-index: 1
}

.slick-next:before,.slick-prev:before {
    border: 10px solid #e7e7e7;
    border-radius: 50%!important;
    margin-left: -15px!important
}

.motherDiv {
    position: absolute
}

.childDiv {
    position: relative;
    top: 0
}

#doctor-profile a.navbar-brand img {
    width: 100%!important
}

.see-more {
    background: #41414b;
    width: 100%;
    font-size: 16px;
    padding: 16px 20px;
    border: unset;
    margin-top: 83px;
    text-decoration: none
}

.see-more,.see-more:hover {
    color: #fff
}

.testimonial_desc_string img {
    width: 80px
}

.testimonial_block_sec {
    background: #fff;
    padding: 10px;
    min-height: 165px;
    margin-bottom: 25px
}

.news_events_title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    height: 75px!important;
    opacity: 1;
    background-color: #fff;
    color: #af9763
}

.news-part:hover .bg-color-back p {
    opacity: 1!important
}

@media (min-width: 992px) {
    .news-part:hover .bg-color-back p {
        opacity:1!important
    }
}

@supports (-moz-appearance: none) {
    #change_schedule_date {
        width:63px
    }

    .open-button {
        left: -90px
    }

    .moz-cover-clear {
        position: relative;
        z-index: 0;
        display: inline-block;
        left: -30px;
        top: 6px;
        width: 35px;
        height: 30px;
        background-color: #fff
    }
}

.icon_sec img {
    width: 120px;
    height: 120px
}

.news-part img {
    width: 100%
}

.post-slide a img {
    margin: 0 auto;
    z-index: -1
}

.tab-left {
    text-align: right
}

@media (min-width: 1024px) {
    .excellence-part {
        overflow:hidden;
        height: 55px
    }

    .banner-cardic .excellence-part {
        height: unset
    }
}

@media (max-width: 980px) {
    .icon_sec img {
        width:90px;
        height: 90px
    }

    .post-slide {
        height: unset!important
    }

    .see-more {
        font-size: 12px;
        padding: 7px 9px
    }

    .excellence-part p {
        font-size: 1rem!important;
        margin-top: 4px
    }

    .cardic-box h1 {
        font-size: 2.2rem!important
    }

    .body-and-doctor h4 {
        font-size: 2rem!important
    }
}

.imgContainer img {
    height: 100%!important;
    width: 100%!important
}

@media (max-width: 767px) {
    #saying img {
        margin:0 auto
    }

    .slick-next {
        right: 0
    }

    .slick-prev {
        left: 0
    }

    .zubaida {
        padding: 0 30px 23px
    }

    .zubaida,.zubaida p {
        text-align: center!important
    }

    .zubaida p {
        padding: 0!important
    }

    a.see-more {
        -ms-flex-pack: center;
        justify-content: center;
        display: -ms-flexbox;
        display: flex
    }

    .settings-mt-0,a.see-more {
        margin-top: 0!important
    }

    .news-part {
        width: 90%;
        margin: 0 auto
    }

    .see-more {
        font-size: 16px;
        padding: 16px 20px
    }

    .top-part {
        text-align: center
    }

    .top-part p {
        font-size: 15px!important
    }

    .cardic-box h1 {
        font-size: 1.6rem!important
    }

    .body-and-doctor h4 {
        font-size: 2rem!important
    }
}

.position-absolute {
    position: unset!important;
    float: unset!important
}

.view-page-box p br {
    display: none
}

.news-part-event img {
    margin-bottom: 7px
}

.thumb-sm {
    margin-right: 8px
}

.dash-chart {
    height: unset
}

button.waves-light {
    margin: 0 4px
}

.view-text h5 a i.fa.fa-eye {
    padding-right: 6px
}

.news-part-event a i.fa.fa-eye {
    margin-right: 5px
}

@media (min-width: 1024px) {
    .card-body .view-page .news-part-event {
        margin-bottom:30px
    }
}

@media (max-width: 980px) {
    #doctor-profile ul li.login-white {
        text-align:center;
        margin-bottom: 15px;
        padding: 14px 10px!important
    }

    #doctor-profile ul li.login-white a {
        font-size: 15px!important
    }

    a.waves-effect.waves-light {
        font-size: 10px;
        margin-top: 6px
    }
}

@media (max-width: 767px) {
    a.waves-effect.waves-light {
        font-size:15px;
        margin-top: 15px
    }

    .tab-left {
        text-align: center
    }

    .excellence-part {
        margin-bottom: -6px!important
    }

    .icon_sec {
        width: 100%!important
    }

    .news-events .post-slide {
        padding-right: 0!important
    }

    select#age {
        margin-bottom: 20px
    }

    .view-page-box h1 {
        font-size: 22px
    }

    .view-page-box h2 {
        font-size: 18px
    }

    .view-page-box p,.view-text h5 {
        margin-top: 10px
    }
}

@supports (-moz-appearance: none) {
    .btnCal-click {
        border:.0625rem solid #cfd0d3;
        background-color: transparent;
        width: 100%;
        padding: .75rem;
        cursor: pointer;
        border-radius: 0;
        font-size: .875rem;
        line-height: 1.4
    }

    .btnCal {
        background: transparent;
        border: none;
        color: #000;
        padding: 13px;
        position: absolute;
        right: 0;
        top: 0;
        display: block!important
    }
}

#navbarSupportedContent .nav-link:focus-visible {
    outline: none
}

.offcanvas a,button {
    transition: unset!important
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999
}

.sticky+.content {
    padding-top: 60px
}

.react-datepicker-wrapper {
    display: block!important
}

#search_keywords {
    border: none!important;
    font-size: 18px;
    border-radius: 31px 0 0 31px!important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 62px
}

#basic-addon1 {
    border: none!important
}

.login-white {
    padding: 0!important
}

.login-white a {
    padding: 15px!important
}

.departmentBg {
    background-color: #cc9618
}

.giveMargin {
    margin-top: 85px
}

.giveMarginService {
    margin-top: 120px
}

img.navbar-brand2 {
    z-index: 1
}

@media (min-width: 300px) and (max-width:768px) {
    .banner-partstop {
        margin-top:-50px!important
    }

    #header_search_keywords {
        width: 100%!important
    }

    .search-popup-main {
        width: 100%
    }

    .singleCartgories {
        margin-top: 11px!important
    }

    .singledpt {
        column-gap: .5rem!important;
        margin-left: 2.5rem
    }

    .doctorName {
        font-size: 16px!important
    }

    .doctordpts {
        font-size: 12px!important
    }

    .doctordscr {
        font-size: 10px!important
    }

    .navbar-brand2 img {
        display: none
    }
}

.dropdown-toggle .userProfile {
    display: block
}

.dropdown-toggle .userName {
    display: none
}

.navsdpdw .dropdown-toggle:after {
    display: none!important
}

@media (min-width: 1100px) and (max-width:5000px) {
    .dropdown-toggle .userProfile {
        display:none!important
    }

    .dropdown-toggle .userName {
        display: block!important
    }
}

@media (min-width: 901px) and (max-width:991px) {
    .humanMaleBodyImg {
        width:65%;
        max-width: 3000px;
        margin: 0 auto
    }
}

@media (min-width: 992px) and (max-width:1364px) {
    #header_search_keywords {
        border-radius:5px;
        width: 90vw;
        max-width: 247px;
        margin-left: 152px
    }

    .navbar {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center
    }

    #doctor-profile a.navbar-brand img {
        width: 100px!important
    }

    .humanFemaleBodyImg,.humanMaleBodyImg {
        width: 130%;
        max-width: 3000px;
        margin: 0 auto
    }

    #doctor-profile a.navbar-brand2 img {
        position: absolute;
        top: -4px
    }

    .navbar-brand1 img {
        display: none
    }
}

@media (min-width: 769px) and (max-width:900px) {
    .navbar-brand1 img {
        display:none
    }
}

@media (min-width: 320px) and (max-width:900px) {
    .searchContainer {
        width:75%
    }
}

@media (min-width: 1300px) and (max-width:1600px) {
    #header_search_keywords {
        border-radius:5px;
        margin-top: 12px;
        width: 90vw;
        max-width: 300px;
        margin-left: 225px
    }

    .humanFemaleBodyImg,.humanMaleBodyImg {
        width: 130%;
        max-width: 3000px;
        margin: 0 auto
    }

    #doctor-profile a.navbar-brand2 img {
        position: absolute;
        top: -4px
    }

    .navbar-brand1 img {
        display: none
    }
}

@media (min-width: 1600px) and (max-width:4000px) {
    #header_search_keywords {
        border-radius:5px;
        width: 90vw;
        max-width: 500px;
        margin-left: 225px
    }

    .humanFemaleBodyImg,.humanMaleBodyImg {
        width: 130%;
        max-width: 3000px;
        margin: 0 auto
    }

    #doctor-profile a.navbar-brand2 img {
        position: absolute;
        top: -4px
    }

    .navbar-brand1 img {
        display: none
    }
}

.home_search_input_section {
    box-shadow: 0 0 15px 0 rgb(0 0 0/31%);
    border-radius: 31px
}

.home_header_dropdown .dropdown-menu {
    background-color: #fd8e5e!important
}

.home_header_dropdown .dropdown-menu .dropdown-item {
    padding: 8px!important
}

.home_header_dropdown button {
    background-color: #fd8e5e!important;
    border: none!important;
    min-height: 42px;
    border-radius: 9px;
    color: #fff
}

.home_header_dropdown button:hover {
    color: #fff
}

.home_header_dropdown .dropdown-menu .dropdown-item:hover {
    background: none
}

.navsdpdw .dropdown-menu {
    left: -120px!important
}

.home_header_dropdown .dropdown-menu .dropdown-item:hovcard-img-topcenter-searcher {
    background: none
}

.text-profile .img-thumbnail {
    max-height: 300px
}

.card-img-top {
    object-fit: cover
}

.packages {
    background-color: #0a807e;
    padding: 1rem
}

.packages2 {
    background-color: #ed982e;
    padding: 1rem
}

.packages3 {
    background-color: #af976d;
    padding: 1rem
}

.packages2 p,.packages3 p,.packages p {
    text-align: center;
    color: #fff
}

.btn-lights {
    background-color: #0c807d;
    width: 100%;
    padding: 8px 10px;
    color: #fff
}

.btn-borders {
    border-radius: 5px 0 0 5px
}

.btn-bordere {
    border-radius: 0 5px 5px 0
}

.btn-lights:hover {
    background-color: #0c7c80!important;
    cursor: pointer
}

.image-container {
    position: relative;
    overflow: hidden
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #55a5a6;
    color: #fff;
    opacity: 0;
    transition: opacity .3s ease;
    padding: 20px;
    cursor: pointer
}

.first-overlay {
    z-index: 1
}

.col-xl-4:first-child:hover+.col-xl-4:nth-child(2) .second-overlay,.col-xl-4:nth-child(2):hover+.col-xl-4:nth-child(3) .third-overlay {
    opacity: 1
}

.slick-next,.slick-prev {
    display: none
}

.slick-slide {
    margin-bottom: 30px!important
}

.slick-slider .slick-next:before {
    content: url("/assets/images/arrow-circle-right.png");
    display: inline-block;
    margin-right: 10px;
    margin-top: -20px
}

.slick-slider .slick-prev:before {
    content: url("/assets/images/arrow-circle-left.png");
    display: inline-block;
    margin-top: -20px
}

.slick-next {
    right: -5px
}

.slick-prev {
    left: -5px
}

.hover-trigger {
    cursor: pointer
}

.hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/your-background-image.jpg");
    background-size: cover;
    background-position: 50%;
    transition: all .8s ease;
    opacity: 0;
    padding: 20px;
    box-sizing: border-box;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 4px 20px #f6831f
}

.hover-trigger:hover .hover-content {
    opacity: 1;
    bottom: 0
}

.hover-content .d-flex {
    z-index: 10
}

.locationContainer {
    background-color: rgba(0,0,0,.6);
    padding: 10px;
    border-radius: 8px
}

.locationContainer h6 {
    text-transform: uppercase
}

.hover-trigger {
    position: relative;
    overflow: hidden
}

.hover-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/images/uhl_foote_bg_overlay.svg") no-repeat 50%;
    background-size: cover;
    transition: top .7s ease
}

.hover-trigger:hover .hover-overlay {
    top: 0
}

.image-hover {
    transition: filter .3s ease
}

.hover-trigger:hover .image-hover {
    filter: blur(4px)
}

.header-text {
    font-size: 30px;
    color: #fff;
    font-weight: 700
}

.sub-header-text {
    font-size: 18px;
    color: #fff;
    font-weight: 800
}

.normal-text {
    font-size: 16px;
    color: #fff
}

.locationIcon {
    font-size: 85px;
    color: #fff
}

@media (min-width: 0px) and (max-width:450px) {
    .header-text {
        font-size:18px
    }

    .sub-header-text {
        font-size: 15px
    }

    .normal-text {
        font-size: 11px
    }

    .locationIcon {
        font-size: 40px
    }
}

@media (min-width: 451px) and (max-width:650px) {
    .header-text {
        font-size:28px
    }

    .sub-header-text {
        font-size: 20px
    }

    .normal-text {
        font-size: 15px
    }
}

@media (min-width: 992px) and (max-width:1275px) {
    .header-text {
        font-size:18px
    }

    .sub-header-text {
        font-size: 15px
    }

    .normal-text {
        font-size: 11px
    }

    .locationIcon {
        font-size: 50px
    }
}

@media (min-width: 1276px) and (max-width:1567px) {
    .header-text {
        font-size:25px
    }

    .sub-header-text {
        font-size: 18px
    }

    .normal-text {
        font-size: 11px
    }
}

.seconderLocationContainer {
    padding-top: 1.5rem
}

@media (max-width: 767px) {
    .locationContainer p {
        font-size:10px!important
    }
}

@media (min-width: 320px) and (max-width:410px) {
    .seconderLocationContainer {
        padding-top:.3rem;
        margin-top: -25px
    }
}

@media (min-width: 411px) and (max-width:991px) {
    .seconderLocationContainer {
        padding-top:.3rem
    }
}

@media (min-width: 992px) and (max-width:1030px) {
    .locationContainer h3 {
        font-size:15px!important
    }

    .locationContainer p {
        font-size: 10px!important
    }

    .locationContainer h5 {
        font-size: 12px!important
    }

    .locationContainer iframe {
        height: 95px!important
    }

    .seconderLocationContainer {
        padding-top: .5rem
    }
}

@media (min-width: 1031px) and (max-width:1139px) {
    .locationContainer h3 {
        font-size:20px!important
    }

    .locationContainer p {
        font-size: 10px!important
    }

    .locationContainer h5 {
        font-size: 12px!important
    }

    .locationContainer iframe {
        height: 95px!important
    }

    .seconderLocationContainer {
        padding-top: .5rem
    }
}

@media (min-width: 1140px) and (max-width:1300px) {
    .locationContainer h3 {
        font-size:20px!important
    }

    .locationContainer p {
        font-size: 11px!important
    }

    .locationContainer h5 {
        font-size: 15px!important
    }

    .locationContainer iframe {
        height: 95px!important
    }

    .seconderLocationContainer {
        padding-top: 1rem
    }
}

@media (min-width: 1301px) and (max-width:1450px) {
    .locationContainer h3 {
        font-size:20px!important
    }

    .locationContainer p {
        font-size: 13px!important
    }

    .locationContainer h5 {
        font-size: 18px!important
    }

    .locationContainer iframe {
        height: 95px!important
    }

    .seconderLocationContainer {
        padding-top: 1rem
    }
}

.accordion {
    padding: 10px;
    width: 100%;
    height: 100%
}

.accordion-item {
    border: none
}

.card-body li::marker {
    color: #0c807d
}

.card-body li {
    list-style-position: outside
}

.departmentsContainer {
    height: 555px
}

@media (min-width: 320px) and (max-width:767px) {
    .applyDate {
        width:20%
    }

    .departmentsContainer {
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important;
        height: 100%!important
    }
}

@media (min-width: 768px) {
    .applyDate {
        width:10%
    }

    .departmentsContainer {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important
    }
}

@media (min-width: 320px) and (max-width:767px) {
    .gallery-tab .nav-item {
        width:100%
    }
}

@media (min-width: 768px) and (max-width:1050px) {
    .gallery-tab .nav-item {
        width:20%;
        font-size: 10px!important
    }

    .gallery-tab .nav-link {
        padding: .5rem 0
    }
}

@media (min-width: 1280px) {
    .gallery-tab .nav-item {
        width:20%
    }
}

.gallery-modal .modal-dialog-scrollable .modal-content {
    top: 74px!important
}

@media (min-width: 576px) {
    .modal-dialog-scrollable {
        height:calc(100% - 7.5rem)
    }
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical>.swiper-wrapper {
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-container-multirow>.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-multirow-column>.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-container-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-container-pointer-events.swiper-container-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    transition-property: transform,height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg,rgba(0,0,0,.5),transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg,rgba(0,0,0,.5),transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg,rgba(0,0,0,.5),transparent)
}

.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after,.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: normal;
    line-height: 1
}

.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #fff
}

.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -ms-transform: scale(.33);
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -ms-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none!important
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0,-50%,0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s,top .2s
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s,left .2s
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s,right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0,0,0,.25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color,var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-transform: scale(0);
    transform: scale(0);
    -ms-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white {
    --swiper-pagination-color: #fff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,.1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    to {
        transform: rotate(1turn)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-container-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden
}

.carousel.vertical .carousel-item-next,.carousel.vertical .carousel-item-prev {
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.carousel.vertical .carousel-item.active {
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.carousel.vertical .carousel-control-next,.carousel.vertical .carousel-control-prev {
    width: 100%;
    height: 50px;
    background-color: red
}

.carousel.vertical .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 50%;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: end;
    align-items: end;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 0;
    margin-right: 10px
}

.carousel.vertical .carousel-indicators li {
    width: 50%;
    height: 50%;
    padding: 5px;
    background-color: transparent;
    border-radius: 50%
}

.carousel.vertical .carousel-indicators .active {
    background-color: #187979
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif
}

.custom_select_search {
    border: none;
    padding: 0
}

body {
    font-family: Barlow,sans-serif
}

img {
    max-width: 100%
}

.top-part {
    background: #41414b;
    padding: 8px 0!important
}

.top-part p {
    margin: 0;
    color: #fff;
    font-size: 17px
}

.header-part {
    background: #0404047a
}

.offcan-top-mar {
    padding: 20px 0 30px
}

.bangla-part {
    width: 130px
}

.bangla-part a.nav-link {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex
}

.banner-part .banner_part_search input.form-control {
    border-radius: 100px
}

.play-icon {
    animation: pulse 2s infinite;
    transition: transform .3s ease
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.2);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.play-icon:hover {
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.banner-part .banner_part_search input.form-control {
    border-radius: 24px;
    background: #fff;
    border-right: 1px solid #fff;
    border: 2px solid #fb6201;
    padding: 8px 15px;
    font-size: 24px;
    color: #000
}

.banner-part .banner_part_search input.form-control:-ms-input-placeholder {
    color: #a3a3a3!important
}

.banner-part .banner_part_search input.form-control::placeholder {
    color: #a3a3a3!important
}

.banner-part .banner_part_search span#basic-addon1 {
    background: #fff;
    border-radius: 0 31px 31px 0;
    margin-left: -3px;
    border: 2px solid #fb6201
}

.banner-part .banner_part_search span#basic-addon1 i {
    color: #eb2128
}

.header-part div#navbarSupportedContent {
    padding-left: 30px
}

.banner-part {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: fixed;
    background-color: #fef3e9
}

.header-part div#navbarSupportedContent a {
    color: #fff!important;
    font-size: 16px;
    font-weight: 600
}

.header-part .input-group {
    width: 300px
}

.header-part .input-group input {
    font-size: 12px
}

.mb-lg-0 {
    margin-bottom: 15px!important
}

li.login-white {
    background: #fff;
    padding: 0 12px;
    margin-left: 10px;
    margin-right: 20px
}

.header-part li.login-white a {
    color: #eb2128!important;
    padding: 5px
}

.bangla-part a.nav-link:hover {
    background: #fb6201;
    border: 1px solid #fb6201
}

li.login-white:hover {
    background: #f26726
}

.contact-number:hover p,.contact-number:hover p span {
    color: #fb6201!important
}

.header-part li.login-white:hover p {
    color: #fff!important
}

.header-part li.login-white:hover a {
    color: #fff!important;
    margin: 0;
    padding-top: 8px;
    color: #eb2128!important
}

.header-part div#navbarSupportedContent li.nav-item.login-white p {
    margin: 8px 0 0
}

header#doctor-profile.header-part div#navbarSupportedContent li.nav-item.login-white p {
    margin: 0
}

.header-part #navbarSupportedContent li.login-white a {
    color: #eb2128!important;
    padding: 5px;
    text-decoration: none
}

.doctor_single_profile_popup .left-offcanvas div#time-date .btn-links,.header-part .left-offcanvas div#time-date .btn-links,.header-part .left-offcanvas div#time-date a.btn-links {
    padding: 7px 6px
}

.header-part div#navbarSupportedContent li.nav-item.login-white:hover a {
    color: #fff!important
}

.banner-part .banner_part_search h1 {
    text-align: right;
    color: #fff;
    font-size: 67px;
    font-weight: 400;
    margin: 30px 0
}

.center-search {
    width: 76%;
    margin: 0 auto
}

.sp-rifht-0 {
    padding-right: 0!important
}

.excellence-part {
    box-shadow: 0 0 15px 0 rgb(0 0 0/31%);
    padding: 12px;
    transition: .5s
}

.excellence-part p {
    margin: 0;
    color: #000;
    font-size: 16px;
    width: 100%
}

.excellence-part i {
    color: #9d8f8f;
    font-size: 26px;
    margin-top: 10px
}

.excellence-part:hover {
    background: #fa6400
}

.excellence-part:hover i {
    color: #fff
}

.excellence-part:hover p {
    color: #000
}

.contact-number {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    margin-top: 90px;
    padding: 10px 30px 26px;
    bottom: 0;
    position: absolute;
    max-width: 356px
}

.contact-number span {
    color: #747474;
    font-size: 18px;
    font-weight: 300
}

.contact-number a {
    text-decoration: none
}

.contact-number p {
    margin: 0;
    color: #747474;
    font-size: 44px;
    font-weight: 700;
    line-height: 40px
}

.contact-number img {
    margin-top: 25px
}

.center-of-excellence {
    padding: 5% 0;
    background-repeat: no-repeat;
    background-size: cover
}

.drop-gender .center-of-excellence {
    background-image: none
}

.center-of-excellence h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #3f3f4a
}

.center-of-excellence .post-slide span img {
    border: 2px solid #a9a9a9;
    padding: 15px;
    border-radius: 200px;
    height: 100px;
    width: 100px
}

.center-of-excellence .post-slide:hover span img {
    border: 2px solid #ed6e1f
}

.center-of-excellence .post-slide {
    text-align: center
}

.center-of-excellence .post-slide p {
    margin: 10px 0 0;
    font-size: 17px
}

.center-of-excellence .owl-next {
    background: #000;
    width: 85px;
    height: 85px;
    border-radius: 100px;
    text-align: center;
    color: #fff;
    padding: 0 8px;
    font-size: 50px;
    position: absolute;
    right: -9.3%;
    top: 10px
}

#tabs-mm .tab:not(:target) {
    display: none
}

#tabs-mm .tab:last-child {
    display: block
}

#tabs-mm .tab:target~.tab:last-child {
    display: none
}

#tabs-mm .nav {
    -ms-flex-direction: row;
    flex-direction: row
}

#tabs-mm .nav,#tabs-mm .nav a {
    -ms-flex-pack: center;
    justify-content: center
}

#tabs-mm .nav a {
    padding: 12px;
    color: #41414b;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #af9763;
    display: -ms-flexbox;
    display: flex;
    border-radius: 14px 0 0 14px;
    margin-right: -1px
}

div#tabs-mm {
    margin-top: 45px
}

#tabs-mm .nav li.active a {
    background-color: #af9763;
    border-color: #af9763;
    color: #fff
}

#tabs-mm .nav li {
    width: 120px
}

#tabs-mm .nav a img {
    width: 25px;
    margin-right: 5px
}

#tabs-mm .nav li.active a img {
    filter: brightness(0) invert(1)
}

#tabs-mm a.border-red {
    border-radius: 0 10px 10px 0;
    border-left: 1px solid #af9763;
    margin-left: 0
}

.text-areya {
    text-align: center
}

.zubaida {
    position: relative
}

#saying {
    margin-top: 40px
}

#saying h3 {
    font-size: 36px;
    font-weight: 600;
    color: #3f3f4a
}

#saying h3 span {
    font-size: 18px;
    color: #8b8b8b;
    position: absolute;
    right: 15px;
    top: 6px
}

#saying p {
    font-size: 15px
}

button.see-more {
    background: #41414b;
    color: #fff;
    width: 100%;
    font-size: 16px;
    padding: 16px 5px;
    border: unset;
    margin-top: 83px
}

.ceo-section {
    background-image: url(/static/media/ceo-back.5688399b.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4% 0;
    background-position: bottom
}

.ceo-section h3 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #f26726
}

.ceo-section p {
    font-size: 22px;
    line-height: 28px
}

.sspp {
    padding: 0 2%
}

.news-part img {
    width: 100%
}

.imgContainer img {
    max-height: 300px!important;
    width: 300px!important
}

.news-part {
    position: relative;
    overflow: hidden;
    border-radius: 5px
}

.bg-color-back {
    position: absolute;
    bottom: 0
}

.news-events .post-slide {
    padding-right: 10px
}

.news-part p {
    color: #fff;
    font-size: 20px;
    border-bottom-right-radius: "5px"!important
}

.news-events .owl-buttons {
    position: absolute;
    top: -50px;
    width: 92px;
    right: 0
}

.news-events .owl-prev,.owl-next {
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    font-size: 21px;
    text-align: center;
    color: #fff;
    padding: 2px 0
}

.news-events .owl-next {
    position: relative;
    bottom: 40px;
    right: -45px
}

input#css,input#html,label.label-text input {
    accent-color: #fb6201
}

.news-events {
    padding: 30px 0
}

.news-events h2.border-bottom {
    border-bottom: 1px solid #fb6201!important
}

.img-back-pub {
    position: relative
}

#Publications {
    background: #f3f3f3
}

.img-back-pub img {
    width: 100%
}

.areya-contant {
    position: absolute;
    bottom: 0;
    background: #0c807d;
    padding: 15px;
    width: 100%
}

.areya-contant p {
    color: #fff;
    font-size: 20px;
    margin: 0
}

.test {
    padding: 40px 0
}

.footer-part {
    padding: 100px 0 50px;
    background-color: #474747;
    color: #cfcfcf
}

h3.font-width.colum-3-h3 {
    margin-top: 0
}

.footer-part h3 {
    font-size: 22px;
    margin-top: 18px;
    margin-bottom: 8px
}

.footer-part p {
    font-size: 15px;
    margin: 0 0 3px;
    line-height: 26px
}

h3.font-width {
    font-weight: 300
}

.footer-part p a {
    color: #cfcfcf;
    text-decoration: none
}

.footer-part p a:hover {
    color: #fb6201
}

.left-offcanvas {
    padding: 25px 0
}

.left-offcanvas h4 {
    font-size: 36px;
    color: #fb6201;
    font-weight: 500
}

.left-offcanvas p {
    font-size: 18px
}

.left-offcanvas .form-control {
    border: 2px solid #ced4da;
    padding: 9px 11px;
    font-size: 21px
}

.header-part .left-offcanvas a {
    color: #000!important
}

.header-part .left-offcanvas a.btn-links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #d4d3d2;
    padding: 11px 7px;
    border-radius: 7px;
    font-size: 21px;
    text-decoration: none
}

.header-part .left-offcanvas a.btn-links:hover {
    background: #d4d3d2
}

.header-part .offcanvas.show .input-group {
    width: 100%
}

.header-part .offcanvas.show .input-group input {
    font-size: 21px
}

.header-part .offcanvas span#basic-addon2 {
    background: #979797;
    color: #fff;
    font-size: 21px
}

#black-btn {
    background: #41414b;
    color: #fff!important;
    font-size: 20px;
    width: 100%;
    padding: 14px 0;
    border-radius: 5px;
    border: none
}

.header-part .offcanvas p label {
    color: #fb6201;
    font-size: 17px;
    margin-top: 12px
}

.header-part .offcanvas p label a {
    color: #fb6201!important;
    text-decoration: none;
    font-size: 17px
}

.header-part .offcanvas p label a:hover {
    color: #41414b!important
}

.fild-1 {
    width: 18%;
    text-align: center;
    border: 1px solid #979797;
    margin-right: 10px;
    padding: 8px 6px;
    margin-top: 20px;
    border-radius: 4px
}

a#Schedule {
    background: #41414b;
    color: #fff!important
}

.doctor-list h5 {
    font-size: 14px
}

.left-offcanvas .doctor-list p {
    font-size: 11px;
    margin: 0
}

.doctor-list .col-5 {
    padding: 0
}

.doctor-list .col-7 {
    padding: 10px 5px 5px
}

.doctor-list {
    padding: 0 10px;
    background: #eee;
    border-radius: 10px;
    border: 1px solid #bdbdcc8c
}

.btn-links.color-check,a.btn-links.color-check {
    background: #e3e2e1!important;
    font-weight: 400
}

.offcanvas-body {
    padding: 1rem 2rem
}

.doctor-list.active {
    border: 1px solid #fb6201
}

.departmentBg {
    background-color: #e6dfcf
}

#doctor-profile.header-part {
    background: #fff
}

.header-part li.login-white a:hover {
    color: #fff!important;
    font-size: 16px
}

#doctor-profile.header-part a.nav-link.number img {
    width: 35px
}

#doctor-profile.header-part a.nav-link.number {
    font-size: 25px;
    padding: 2px
}

#doctor-profile li.login-white {
    background: #fff;
    padding: 25px 12px!important;
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;
    width: -moz-fit-content;
    width: fit-content
}

#doctor-profile.header-part li.login-white p {
    padding-top: 0;
    height: 20px
}

#doctor-profile.header-part nav.navbar {
    padding: 0
}

#doctor-profile.header-part li.login-white p {
    color: #fff!important
}

#doctor-profile.header-part ul.navbar-nav {
    margin-bottom: 0!important
}

h6.timer {
    font-size: 1.2rem
}

label.dont {
    color: #41414b!important
}

div#dr h5 {
    font-size: 18px
}

div#dr p {
    font-size: 12px
}

div#dr {
    padding: 21px 0 0 14px
}

.col-4.sp-0-1 {
    padding: 0 0 0 2px
}

.header-part .left-offcanvas div#time-date a.btn-links {
    border-radius: 0;
    font-size: 12px;
    margin-bottom: 9px;
    border: 1px solid #888;
    font-weight: 400
}

.header-part .left-offcanvas div#time-date a.btn-links.color-orange {
    background: #fb6201;
    color: #fff!important;
    border: 1px solid #fb6201
}

.header-part .left-offcanvas div#time-date .btn-links {
    border-radius: 0;
    font-size: 12px;
    margin-bottom: 9px;
    border: 1px solid #888;
    font-weight: 400
}

.header-part .left-offcanvas div#time-date .btn-links.color-orange {
    background: #fb6201;
    color: #fff!important;
    border: 1px solid #fb6201
}

.doctor_single_profile_popup .left-offcanvas div#time-date .btn-links {
    border-radius: 0;
    font-size: 12px;
    margin-bottom: 9px;
    border: 1px solid #888;
    font-weight: 400
}

.doctor_single_profile_popup .left-offcanvas div#time-date .btn-links.color-orange {
    background: #fb6201;
    color: #fff!important;
    border: 1px solid #fb6201
}

a#black-btn.appointment-new,a#Schedule.appointment-new {
    font-size: 24px
}

.left-offcanvas .payment p {
    color: #888
}

.left-offcanvas .payment p.color-drak {
    color: #000
}

.payment label {
    font-size: 24px
}

.payment input.radio-btn {
    width: 24px;
    height: 24px;
    position: relative;
    top: 5px
}

label.label-text {
    color: #888;
    font-size: 13px
}

div#tab1 li.active a {
    border-radius: 10px 0 0 10px
}

.doctor-list:focus,.doctor-list:focus-visible {
    border: 1px solid #fb6201!important;
    outline: none
}

.singleDoctorWidth {
    width: 32%
}

@media (max-width: 1200px) {
    .singleDoctorWidth {
        width:31%
    }
}

@media (max-width: 1100px) {
    .header-part a,.header-part li.login-white p {
        font-size:12px
    }

    .banner-part .banner_part_search h1 {
        font-size: 30px
    }

    .excellence-part p {
        font-size: 12px
    }

    .excellence-part i {
        font-size: 19px;
        margin-top: 8px
    }

    button.see-more {
        font-size: 14px
    }

    .center-of-excellence h2 {
        font-size: 26px
    }

    #saying h3 {
        font-size: 22px
    }

    #saying h3 span {
        font-size: 16px;
        top: 3px
    }

    .areya-contant p {
        font-size: 15px
    }

    .areya-contant {
        padding: 7px
    }

    .footer-part h3 {
        font-size: 20px
    }

    .footer-part p {
        font-size: 13px
    }

    .singleDoctorWidth {
        width: 31%
    }
}

.homeBanner {
    width: 75%;
    margin-left: .5rem
}

.homeBannerTabs {
    width: 25%
}

.banner_part_search {
    margin-bottom: 300px
}

@media (max-width: 499px) {
    .homeBanner {
        width:100%;
        height: 230px;
        margin-top: 20px!important;
        margin-left: 0
    }
}

@media (min-width: 500px) and (max-width:991px) {
    .homeBanner {
        width:100%;
        margin-top: 20px!important;
        margin-left: 0
    }
}

@media (max-width: 991px) {
    .homeBannerTabs {
        width:100%
    }

    section.drop-gender .dropdown {
        margin-bottom: 18px
    }

    .navbar-light .navbar-toggler {
        background: #fff
    }

    .excellence-part p {
        font-size: .6rem
    }

    .excellence-part i {
        font-size: 16px;
        margin-top: 4px
    }

    .contact-number span {
        font-size: 14px
    }

    .contact-number p {
        font-size: 27px;
        line-height: 27px
    }

    .contact-number img {
        margin-top: 12px
    }

    button.see-more {
        font-size: 10px
    }

    #saying h3 span {
        font-size: 13px;
        top: 8px
    }

    .news-part p {
        font-size: 25px;
        display: -ms-grid;
        display: grid;
        -ms-flex-pack: start;
        justify-content: start;
        -ms-flex-align: end;
        align-items: end;
        width: 100%;
        text-align: left;
        background: #259774ad;
        border-bottom-right-radius: "5px"!important
    }

    .news-part {
        width: 100%
    }

    .news_events_title {
        opacity: unset
    }

    .footer-part h3 {
        font-size: 15px
    }

    .footer-part p {
        font-size: 11px
    }

    .ceo-section h3 {
        font-size: 1.5rem
    }

    .ceo-section p {
        font-size: 18px;
        line-height: 25px
    }

    .our-recommendations .doctor-list {
        width: 60%;
        margin: 10px auto
    }

    .singleDoctorWidth {
        width: 47%
    }
}

.termscondbody .photoContainer {
    max-width: 1285px!important;
    margin: 0 auto
}

@media (max-width: 767px) {
    .our-recommendations .doctor-list {
        width:100%
    }

    img.ceo-img {
        width: 100%;
        margin-top: 50px
    }

    .banner-part .banner_part_search h1 {
        font-size: 2rem
    }

    .banner-part .banner_part_search input.form-control {
        font-size: .9rem
    }

    .excellence-part i {
        font-size: 25px;
        margin-top: 5px
    }

    .excellence-part p {
        font-size: 1.2rem;
        margin-top: 6px
    }

    .banner-part .banner_part_search .col-3 {
        text-align: right
    }

    .excellence-part {
        margin-bottom: 15px
    }

    .sp-top .row.mt-4 {
        margin-top: 0!important
    }

    .contact-number span {
        font-size: 1rem
    }

    .contact-number p {
        font-size: 2.3rem;
        line-height: 34px
    }

    .center-of-excellence h2 {
        font-size: 1.6rem;
        text-align: center
    }

    #saying h3 span {
        font-size: 17px;
        position: unset
    }

    #saying h3 {
        text-align: center
    }

    button.see-more {
        font-size: 16px;
        margin-top: 7px
    }

    .footer-part h3 {
        font-size: 25px
    }

    .footer-part p {
        font-size: 16px
    }

    .header-part a {
        font-size: 17px
    }

    .header-part li.login-white {
        padding: 8px 10px;
        width: 148px
    }

    .header-part li.login-white p {
        font-size: 16px
    }

    .bangla-part {
        margin-top: 16px
    }

    div#navbarSupportedContent {
        padding-left: 0!important;
        background: #fb6201;
        padding: 13px!important;
        border-radius: 10px
    }

    .singleDoctorWidth {
        width: 60%
    }
}

@media (max-width: 380px) {
    .left-offcanvas p {
        font-size:13px
    }

    .payment label {
        font-size: 15px
    }

    .payment input.radio-btn {
        width: 17px;
        height: 17px;
        top: 3px
    }

    a#Schedule.pay-now {
        font-size: 19px
    }

    .left-offcanvas h4 {
        font-size: 28px
    }

    .header-part a,.left-offcanvas .form-control {
        font-size: 12px
    }

    div#dr {
        padding: 11px 0 0 14px
    }

    h6.timer {
        font-size: 18px
    }

    .header-part .left-offcanvas div#time-date a.btn-links {
        font-size: 10px
    }

    .singleDoctorWidth {
        width: 90%
    }
}

.header-part .left-offcanvas div#time-date a.color-check.active {
    background: #fb6201!important;
    color: #fff!important
}

.text-profile label.label-text {
    font-size: 16px;
    color: #252525
}

.border-part {
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    margin-top: -8px
}

img.img-doc {
    border-radius: 10px;
    width: 175px;
    height: 80vh;
    max-height: 185px;
    border: 3px solid #0c807d;
    margin-top: 10px;
    object-fit: cover
}

.text-profile img.img-doc {
    margin-bottom: 30px;
    background: #f2f2f2
}

.text-profile h2 {
    color: #252525;
    font-size: 20px!important
}

.text-profile p {
    color: #252525
}

table.table-sst th {
    background: #e6e6e6;
    text-align: center;
    font-size: 17px
}

table.table-sst td {
    text-align: center;
    font-size: 11px
}

table.table-sst tr {
    border: 1px solid #b4b4b4
}

.number-profile {
    background: #41414b;
    border-radius: 5px
}

.number-profile p span {
    font-size: 18px;
    font-weight: 500
}

.number-profile p {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    line-height: 45px
}

.number-profile a,.number-profile p {
    text-decoration: none
}

.number-profile img {
    margin-top: 10px
}

button.make-btn {
    width: 100%;
    background: #41414b;
    font-size: 16px;
    padding: 16px 7px;
    margin-top: 15px;
    border-radius: 5px!important
}

button.dropdown-toggle.make-btn {
    position: relative
}

button.dropdown-toggle.make-btn i {
    background: #fff;
    color: #000;
    padding: 6px 7px;
    border-radius: 100px;
    position: absolute;
    right: 12px
}

.btn-check:focus+.btn-secondary,.btn-secondary:focus {
    color: #fff;
    background-color: #41414b;
    border-color: #5c636a;
    box-shadow: unset;
    opacity: 1
}

.profile-slider {
    padding: 5px
}

.post-slider-contant {
    background: #f2f2f2;
    padding: 10px;
    border: 1px solid #e5e5e5
}

.post-slider-contant h4 {
    font-size: 18px;
    color: #565656
}

.post-slider-contant p.dis-date {
    font-size: 11px;
    color: #565656
}

.owl-next,.text-profile .owl-prev {
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    font-size: 21px;
    text-align: center;
    color: #fff;
    padding: 2px 0
}

.text-profile .owl-buttons {
    position: absolute;
    top: -48px;
    width: 92px;
    right: 0
}

.text-profile .owl-next {
    position: relative;
    bottom: 40px;
    right: -45px
}

#hr-lines hr {
    border-top: 3px dotted #fb6201;
    background: #ff000000;
    opacity: 1;
    margin: 22px 0;
    width: 99%
}

.text-profile h5 {
    color: #585858;
    font-size: 19px
}

.profile-slider img {
    width: 100%
}

.testimonials-part .profile-slider p {
    font-size: 14px
}

#package {
    background-image: url(/static/media/package.7dd75d9f.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5% 0
}

#package h2 {
    font-size: 50px;
    color: #41414b
}

#package button.btn.btn-secondary.make-btn {
    width: unset;
    padding: 18px 35px;
    margin-right: 10px;
    border-radius: 0
}

.form-control:focus {
    box-shadow: unset!important
}

.drop-gender button.make-btn {
    margin: 0;
    border: 1px solid #41414b;
    background: #fff;
    color: #41414b;
    padding: 14px 6px;
    font-size: 19px;
    text-align: left
}

.drop-gender button.make-btn i {
    background: #000;
    color: #fff
}

.drop-gender input {
    width: 100%;
    padding: 15px 10px;
    outline: none
}

.drop-gender {
    padding: 20px 0
}

.drop-gender button.make-btn i#color-org {
    background: #fb6201
}

.drop-gender button.make-btn:after {
    color: #ef323200
}

.drop-gender .center-of-excellence.hide-arrow .owl-next {
    position: unset;
    background: no-repeat
}

.doctor-list img {
    border-radius: 6px;
    width: 80px
}

.drop-gender .center-of-excellence.hide-arrow {
    padding-bottom: 0
}

.our-recommendations h3 {
    font-size: 25px;
    color: #41414b
}

.our-recommendations hr:not([size]) {
    height: 2px
}

.our-recommendations .doctor-list h4 {
    font-size: 17px;
    padding-top: 15px
}

.our-recommendations .doctor-list p {
    font-size: 14px
}

.our-recommendations .doctor-list:hover {
    border: 1px solid #fd8450
}

.drop-gender input:-ms-input-placeholder {
    color: #41414b
}

.drop-gender input::placeholder {
    color: #41414b
}

.input-group.navi-input span#basic-addon2 {
    background: #fff
}

.input-group.navi-input input.form-control {
    border-right: 0
}

.input-group.navi-input {
    width: unset;
    border: 1px solid #fb6201;
    border-radius: 4px
}

.header-part .input-group i {
    color: #ec1c24
}

.department-menu {
    min-width: 200px
}

.deptBtnFont {
    font-size: 14px
}

@media (max-width: 1100px) {
    #doctor-profile.header-part a {
        font-size:9px
    }

    .deptBtnFont {
        font-size: 12px
    }
}

.sideButtonMenu {
    padding: 40px 10px
}

.upperHeaderMenus {
    column-gap: 20px
}

@media (max-width: 767px) and (min-height:0px) and (max-height:499px) {
    .center-of-excellence {
        padding-top:1180px!important
    }
}

@media (max-width: 767px) and (min-height:500px) and (max-height:599px) {
    .center-of-excellence {
        padding-top:1130px!important
    }
}

@media (max-width: 767px) and (min-height:600px) and (max-height:700px) {
    .center-of-excellence {
        padding-top:1030px!important
    }
}

@media (max-width: 767px) and (min-height:701px) and (max-height:1000px) {
    .center-of-excellence {
        padding-top:850px!important
    }
}

@media (min-width: 768px) and (max-width:991px) and (min-height:0px) and (max-height:499px) {
    .center-of-excellence {
        padding-top:1150px!important
    }
}

@media (min-width: 768px) and (max-width:991px) and (min-height:500px) and (max-height:599px) {
    .center-of-excellence {
        padding-top:1150px!important
    }
}

@media (min-width: 768px) and (max-width:991px) and (min-height:600px) and (max-height:699px) {
    .center-of-excellence {
        padding-top:1050px!important
    }
}

@media (min-width: 768px) and (max-width:991px) and (min-height:700px) and (max-height:799px) {
    .center-of-excellence {
        padding-top:950px!important
    }
}

@media (min-width: 768px) and (max-width:991px) and (min-height:800px) {
    .center-of-excellence {
        padding-top:850px!important
    }
}

@media (min-width: 992px) and (max-width:1024px) and (min-height:0px) and (max-height:499px) {
    .center-of-excellence {
        padding-top:350px!important
    }
}

@media (min-width: 992px) and (max-width:1024px) and (min-height:500px) and (max-height:599px) {
    .center-of-excellence {
        padding-top:270px!important
    }
}

@media (min-width: 992px) and (max-width:1024px) and (min-height:600px) and (max-height:699px) {
    .center-of-excellence {
        padding-top:180px!important
    }
}

@media (min-width: 992px) and (max-width:1024px) and (min-height:700px) and (max-height:799px) {
    .center-of-excellence {
        padding-top:100px!important
    }
}

@media (min-width: 1025px) and (max-width:1240px) and (min-height:0px) and (max-height:499px) {
    .center-of-excellence {
        padding-top:300px!important
    }
}

@media (min-width: 1025px) and (max-width:1240px) and (min-height:500px) and (max-height:599px) {
    .center-of-excellence {
        padding-top:260px!important
    }
}

@media (min-width: 1025px) and (max-width:1240px) and (min-height:600px) and (max-height:699px) {
    .center-of-excellence {
        padding-top:170px!important
    }
}

@media (min-width: 1025px) and (max-width:1240px) and (min-height:700px) and (max-height:799px) {
    .center-of-excellence {
        padding-top:100px!important
    }
}

@media (max-width: 1098) {
    .dropdown-toggle .userProfile {
        display:block
    }

    .dropdown-toggle .userName {
        display: none
    }
}

@media (max-width: 980px) {
    header#doctor-profile div#navbarSupportedContent {
        background:#fff
    }

    #doctor-profile.header-part li.nav-item {
        padding: 4px 5px
    }

    #doctor-profile.header-part a {
        font-size: 16px
    }

    #doctor-profile.header-part li.nav-item {
        border-right: 1px solid #dbdbdb00
    }
}

@media (max-width: 991px) {
    .sideButtonMenu {
        width:32%!important;
        max-height: 180px!important
    }
}

@media (max-width: 767px) {
    .number-profile p span {
        font-size:12px
    }

    .sideButtonMenu {
        max-height: 85px!important;
        width: 32%
    }

    .number-profile p {
        font-size: 33px;
        line-height: 28px
    }

    .sideButtonMenu h5 {
        font-size: 10px!important
    }

    .number-profile img {
        margin-top: 22px;
        width: 40px;
        max-width: 40px;
        margin-left: 0
    }

    #package h2 {
        font-size: 1.5rem;
        text-align: center
    }

    #package button.btn.btn-secondary.make-btn {
        width: 100%;
        padding: 15px;
        font-size: 1.2rem;
        margin-top: 8px
    }

    .drop-gender button.make-btn {
        margin-top: 20px
    }

    .drop-gender input {
        outline: none;
        margin-top: 20px
    }

    .our-recommendations .doctor-list h4 {
        font-size: 16px;
        padding-top: 6px
    }

    .our-recommendations .doctor-list .col-7 {
        padding: 9px
    }

    div#ssp-0 {
        margin-top: 0!important
    }

    .our-recommendations .doctor-list {
        margin-top: 15px
    }

    .our-recommendations h3 {
        text-align: center
    }

    .sideButtonMenu {
        padding: 10px
    }

    .sideButtonMenu img {
        width: 40%
    }

    .sideButtonMenu h5 {
        text-align: center;
        font-size: 15px
    }

    .upperHeaderMenus {
        column-gap: 10px
    }
}

@media screen and (min-width: 500px) and (max-width:1024px) {
    .jobModalContent {
        max-height:300px
    }
}

img.img-doc {
    border: 4px solid #0c807d
}

.border-part {
    border: 1px solid #d9d8d8
}

.border-part ul {
    padding: 0
}

.border-part h5 {
    margin: 0;
    font-weight: 700
}

.text-profile h2 {
    color: #3c3b3b;
    font-size: 24px;
    font-weight: 700
}

.text-profile p {
    font-size: 16px;
    color: #545151
}

#tab-mob {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.week-days {
    width: 15%
}

#tell p {
    font-size: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 25px
}

.text-profile h3 {
    color: #585858;
    font-size: 22px;
    font-weight: 600
}

#doctor-profile.header-part a {
    font-size: 14px;
    font-weight: 500
}

#saying p {
    font-size: 16px;
    font-weight: 400;
    padding: 0 15px 0 0;
    text-align: justify
}

.our-recommendations .doctor-list {
    border: 1px solid #8585858c
}

.doctor-list img {
    border-radius: 0;
    margin-left: 2px;
    margin-top: -1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0
}

.news-events h2.border-bottom {
    border-bottom: 1px solid gray!important;
    padding-bottom: 10px;
    color: #fb6201
}

section#hr-lines .owl-buttons {
    top: -86px
}

.news-events.hr-lines .owl-buttons {
    top: -73px
}

.news-events h2.border-bottom {
    font-weight: 600
}

.Chittagong-part {
    margin: 2rem 0
}

@media (max-width: 992px) {
    .col-lg-7.videoContainer {
        height:300px!important
    }
}

@media (min-width: 320px) and (max-width:991px) {
    .jciImg {
        height:50%
    }
}

@media (min-width: 992px) and (max-width:1239px) {
    .videoContainer {
        max-width:375px!important
    }
}

@media (min-width: 1240px) and (max-width:1400px) {
    .videoContainer {
        max-width:480px!important
    }
}

@media (min-width: 1401px) {
    .videoContainer {
        max-width:550px!important
    }
}

@media (max-width: 1185px) {
    #doctor-profile.header-part a {
        font-size:11px
    }

    #doctor-profile.header-part a.nav-link.number {
        font-size: 20px
    }

    .drop-gender button.make-btn {
        font-size: 14px
    }

    .our-recommendations .doctor-list .col-7 {
        padding: 9px
    }

    .our-recommendations h3 {
        font-size: 1.3rem
    }

    table.table-sst td {
        font-size: .9rem
    }
}

@media (max-width: 991px) {
    .header-part li.nav-item {
        padding:7px 10px
    }

    .header-part li.login-white p {
        padding-top: 0
    }

    .header-part a {
        font-size: 1rem
    }

    li.login-white {
        width: 140px
    }

    li.nav-item.bangla-part {
        margin-top: 1rem
    }

    .center-of-excellence .owl-next {
        width: 3rem;
        height: 3rem;
        font-size: 1.8rem;
        top: 20px
    }
}

@media (min-width: 767px) {
    .excellenceWrapper {
        height:100%!important
    }
}

@media (max-width: 767px) {
    .bg-color-back {
        width:100%
    }

    .center-of-excellence h2 {
        margin-bottom: 0
    }

    #saying img {
        margin-bottom: 2rem
    }

    .Chittagong-part {
        margin: 1rem 0
    }

    .center-of-excellence h2 {
        margin-bottom: 2rem
    }

    #saying p {
        font-size: 1rem
    }

    .center-search {
        width: 100%
    }

    img.img-doc {
        margin-top: 0
    }

    div#mobile-part div#tab-mob .col-2 {
        width: 100%;
        padding: 0
    }

    div#mobile-part div#tab-mob .col-2 table.table-sst th {
        font-size: 1.5rem
    }

    div#mobile-part div#tab-mob .col-2 table.table-sst td {
        font-size: 1rem
    }

    div#mobile-part .number-profile img {
        margin-top: 24px
    }

    #tell p {
        font-size: 35px;
        line-height: 28px
    }

    .text-profile h2 {
        font-size: 1.2rem
    }
}

@media (max-width: 370px) {
    .center-of-excellence .owl-next {
        width:2rem;
        height: 2rem;
        font-size: 1.2rem
    }
}

div#offcanvasExample input.form-control {
    border-radius: 5px!important;
    background: #fff!important;
    border-right: unset!important;
    border: 1px solid #b7b7b7!important;
    padding: 4px 15px!important;
    font-size: 21px!important;
    color: #41414b!important;
    font-weight: 600
}

div#offcanvasExample input.form-control:-ms-input-placeholder {
    color: #41414b
}

div#offcanvasExample input.form-control::placeholder {
    color: #41414b
}

.news-part {
    margin-bottom: 10px
}

h2.border-bottom.Publications {
    border-bottom: 3px dotted #fb6201!important;
    background: #ff000000;
    margin: 18px 0;
    width: 99%
}

.doctor-list.Dr-Reazur img {
    width: 100%
}

.colum-1 .united-hospital {
    margin-top: -50px
}

@media (min-width: 1200px) {
    .offcanvas-start {
        width:30%
    }
}

@media (min-width: 1400px) {
    .container {
        max-width:1140px
    }
}

@media (min-width: 1700px) {
    .contact-number span {
        font-size:23px
    }

    .contact-number p {
        font-size: 50px
    }

    .contact-number {
        margin-top: 140px
    }
}

@media (max-width: 1500px) {
    .doctor-list.Dr-Reazur h5 {
        font-size:23px!important;
        margin-top: 0
    }

    .doctor-list.Dr-Reazur p {
        font-size: 15px!important
    }

    .header-part .left-offcanvas a.btn-links {
        font-size: 1rem
    }

    div#offcanvasExample input.form-control {
        font-size: 1rem!important
    }

    .left-offcanvas h4 {
        font-size: 2.1rem
    }

    .left-offcanvas p {
        font-size: 1rem
    }

    div#dr {
        padding: 7px 0 0 14px
    }
}

@media (max-width: 980px) {
    .header-part div#navbarSupportedContent li.nav-item.login-white p {
        margin:0
    }

    .banner-part .banner_part_search h1 {
        text-align: center
    }
}

@media (max-width: 767px) {
    .header-part .left-offcanvas a.btn-links,.left-offcanvas .form-control {
        font-size:.8rem!important
    }

    .left-offcanvas h4 {
        font-size: 1.8rem
    }

    .excellence-part {
        margin: 0 28px 20px
    }

    .header-part .offcanvas span#basic-addon2 {
        font-size: .7rem
    }

    .doctor-list.Dr-Reazur h5 {
        font-size: 1rem!important;
        margin-top: 0
    }

    .doctor-list.Dr-Reazur p {
        font-size: .7rem!important
    }

    .hide-mobile-view {
        display: none
    }

    .contact-number {
        margin-top: 30px;
        max-width: 220px;
        position: absolute;
        max-width: unset;
        width: 80%;
        left: 10%
    }

    .colum-1 {
        margin-bottom: 20px
    }
}

@media (max-width: 370px) {
    .center-of-excellence .owl-next {
        top:32px
    }
}

.doctor-list img {
    border-radius: 4px 0 0 4px;
    margin-top: 0
}

.left-offcanvas p.goback {
    font-size: 1rem
}

a#black-btn {
    font-size: 2rem!important;
    padding: 0 0 3px
}

div#offcanvasExample .input-group input.form-control {
    border-radius: 9px 0 0 9px!important
}

header#doctor-profile div#navbarSupportedContent a {
    color: #da6621!important
}

.banner-cardic {
    padding: 4% 0
}

.cardic-box .excellence-part {
    background: #f7f3f0;
    border: 1px solid #d9d7d5
}

.cardic-box .excellence-part:hover {
    background: #fa6400;
    border: 1px solid #fa6400
}

.cardic-box h1 {
    color: #fa6400;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 2rem
}

.cardic-box .input-group img {
    width: 2.2rem
}

.cardic-box .input-group.navi-input input:-ms-input-placeholder {
    color: #41414b
}

.cardic-box .input-group.navi-input input::placeholder {
    color: #41414b
}

.cardic-box .input-group.navi-input input {
    color: #41414b;
    font-size: 1.1rem
}

#excellence-part h2,.cardic-box {
    padding-left: 2rem
}

.cardic-box .input-group.navi-input span#basic-addon2 {
    padding: 4px
}

.hos-right {
    padding-right: 0
}

#excellence-part {
    background: #fff;
    padding-top: 0
}

#excellence-part .owl-next {
    display: none
}

.body-and-doctor h4 {
    font-size: 4rem;
    font-weight: 600
}

.body-and-doctor p {
    font-size: 1rem
}

.our-consultants h3 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #3f3f4a
}

.our-consultants h3 span {
    font-size: 1.2rem;
    color: #333
}

.our-consultants .doctor-list h6 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.our-consultants .doctor-list p {
    line-height: 1.1rem;
    font-size: .8rem;
    margin: 0 0 1rem
}

.our-consultants .doctor-list p a.read-more {
    line-height: 1.1rem;
    font-size: .8rem;
    color: #333;
    text-decoration: none;
    position: relative;
    top: 5px
}

img.hero-body {
    width: 100%
}

.our-consultants .doctor-list .col-7 {
    padding: 12px
}

.hos-right img,.our-consultants .doctor-list img {
    width: 100%
}

.search-popup {
    background: #fff;
    width: 95%;
    margin-left: .5em;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666
}

@media only screen and (max-width: 900px) {
    .dd {
        width:90%
    }
}

.search-popup h4 {
    color: #999;
    font-size: 1.5rem
}

.search-popup h5 {
    color: #999;
    font-size: 1.3rem
}

.search-popup .doctor-list p {
    font-size: .4rem;
    margin: 0
}

.search-popup .doctor-list h6 {
    font-size: .5rem;
    margin: 1rem 0 0
}

.Package-part .bg-color-gry p {
    margin: 5px 0 0;
    font-size: .7rem
}

.bg-color-gry {
    background: #f2f2f2
}

.sp-0-search {
    padding: 0 4px
}

.search-popup h5.colo-dark {
    color: #333
}

.search-popup p.pera-search {
    font-size: .7rem
}

.search-popup-main {
    position: relative
}

.search-popup {
    position: absolute;
    z-index: 9999;
    display: none;
    left: .8rem
}

@media (min-width: 1700px) {
    .excellence-part p {
        font-size:1rem
    }

    .excellence-part i {
        font-size: 2rem
    }

    .cardic-box h1 {
        font-size: 4.4rem
    }

    .cardic-box .input-group.navi-input input {
        font-size: 1.6rem
    }

    .cardic-box .input-group img {
        width: 2.7rem
    }

    .Package-part .bg-color-gry p {
        margin: 5px 0 0;
        font-size: 1.1rem
    }

    .search-popup h5 {
        font-size: 1.8rem
    }

    .search-popup h4 {
        font-size: 2rem
    }

    .search-popup p.pera-search {
        font-size: 1.2rem
    }

    .search-popup .doctor-list h6 {
        font-size: .9rem;
        margin: 2rem 0 0
    }

    .search-popup .doctor-list p {
        font-size: .7rem
    }
}

td.testimonial_desc {
    width: 200px!important;
    white-space: normal!important
}

#tell p {
    margin-bottom: 14px;
    margin-top: 12px
}

.table_style4 {
    width: 100%;
    float: left;
    color: #797979;
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 20px
}

table.table_style4 tr td {
    float: left;
    width: 90%!important;
    padding: 10px 15px;
    height: auto!important;
    border-left: 1px solid #f2f2f2
}

table.table_style4 tr {
    border-bottom: 1px solid #f2f2f2
}

table.table_style4 tr td:first-child {
    width: 100%!important;
    border-left: none
}

table.table_style4 tr:first-child {
    background: #edf2f3!important
}

.jci-left-container {
    height: 460px
}

.jci-right-container {
    height: 470px
}

.jci-brand-img {
    max-width: 78px
}

.jci-img-news {
    width: 80%
}

.jci-heading {
    font-size: 20px
}

@media screen and (min-width: 320px) and (max-width:575px) {
    .jci-left-container {
        height:290px;
        width: 100%
    }

    .give-padding {
        padding-top: 50px
    }

    .jci-right-container {
        height: 271px
    }

    .jci-brand-img {
        max-width: 50px
    }

    .jci-img-news {
        width: 263px;
        height: 95px;
        object-fit: cover
    }

    .jci-heading {
        font-size: 15px
    }

    .jci-text {
        font-size: 12px
    }

    .read-more-text {
        background-color: #af9763;
        padding: 2px 12px;
        color: #fff;
        border-radius: 5px;
        text-align: center;
        font-size: 15px
    }

    .jci_circular_img {
        width: 252px
    }

    .date-container {
        height: 23px;
        width: 86px;
        background-color: #af9763;
        border-radius: 5px
    }

    .date-container h6 {
        font-size: 10px
    }

    .calendar-img {
        width: 16px
    }
}

@media screen and (min-width: 576px) and (max-width:670px) {
    .jci-left-container {
        height:346px;
        width: 100%
    }

    .jci-right-container {
        height: 323px
    }

    .jci-brand-img {
        max-width: 71px
    }

    .jci-img-news {
        width: 278px;
        height: 130px;
        object-fit: cover
    }

    .jci-heading {
        font-size: 15px
    }

    .jci-text {
        font-size: 12px
    }

    .read-more-text {
        background-color: #af9763;
        padding: 7px 27px;
        color: #fff;
        border-radius: 5px;
        text-align: center;
        font-size: 15px
    }

    .jci_circular_img {
        width: 222px
    }

    .date-container {
        height: 42px;
        width: 164px;
        background-color: #af9763;
        border-radius: 5px
    }

    .date-container h6 {
        font-size: 17px
    }
}

@media screen and (min-width: 671px) and (max-width:767px) {
    .jci-left-container {
        height:377px;
        width: 100%
    }

    .jci-right-container {
        height: 379px
    }

    .jci-brand-img {
        max-width: 100px
    }

    .jci-img-news {
        width: 445px;
        height: 175px;
        object-fit: cover
    }

    .jci-heading {
        font-size: 20px
    }

    .jci-text {
        font-size: 15px
    }

    .read-more-text {
        background-color: #af9763;
        padding: 12px 27px;
        color: #fff;
        border-radius: 5px;
        text-align: center;
        font-size: 15px
    }

    .jci_circular_img {
        width: 222px
    }

    .date-container {
        height: 42px;
        width: 164px;
        background-color: #af9763;
        border-radius: 5px
    }

    .date-container h6 {
        font-size: 17px
    }
}

@media screen and (min-width: 768px) and (max-width:991px) {
    .jci-left-container {
        height:494px;
        width: 100%
    }

    .jci-right-container {
        height: 492px
    }

    .jci-brand-img {
        max-width: 100px
    }

    .jci-img-news {
        width: 445px;
        height: 175px;
        object-fit: cover
    }

    .jci-heading {
        font-size: 25px
    }

    .jci-text {
        font-size: 15px
    }

    .read-more-text {
        background-color: #af9763;
        padding: 12px 27px;
        color: #fff;
        border-radius: 5px;
        text-align: center;
        font-size: 15px
    }

    .jci_circular_img {
        width: 267px
    }

    .date-container {
        height: 42px;
        width: 164px;
        background-color: #af9763;
        border-radius: 5px
    }

    .date-container h6 {
        font-size: 20px
    }
}

@media screen and (min-width: 992px) and (max-width:1215px) {
    .jci-left-container {
        height:370px
    }

    .jci-right-container {
        height: 368px
    }

    .jci-brand-img {
        max-width: 48px
    }

    .jci-img-news {
        width: 315px;
        height: 109px;
        object-fit: cover
    }

    .jci-heading {
        font-size: 18px
    }
}

@media screen and (min-width: 1216px) and (max-width:1485px) {
    .jci-left-container {
        height:430px
    }

    .jci-right-container {
        height: 415px
    }
}

body {
    font-family: Barlow,sans-serif;
    background: #f2f2f2
}

img {
    max-width: 100%
}

.flex-part {
    display: -ms-flexbox;
    display: flex
}

.dash-menu {
    width: 20%
}

.left-dash {
    overflow-y: scroll;
    position: fixed;
    background: #fff;
    padding: 10px 0;
    width: 20%;
    height: 100vh
}

.left-dash::-webkit-scrollbar {
    width: 1px
}

.left-dash::-webkit-scrollbar-thumb,.left-dash::-webkit-scrollbar-track {
    background: #fff
}

.left-dash::-webkit-scrollbar-thumb:hover {
    background: #fff
}

.dash-body {
    width: 80%;
    padding: 10px 3% 50px
}

.doctor-part-img {
    text-align: center;
    padding: 30px 25px 90px
}

.doctor-part-img img {
    width: 140px
}

.doctor-part-img p {
    margin: 0 0 8px;
    font-size: 17px
}

ul.left-menu {
    padding: 0
}

ul.left-menu li {
    list-style: none;
    padding: 1px 0
}

ul.left-menu li a {
    font-size: 16px;
    padding: 9px 50px;
    text-decoration: none;
    display: -ms-flexbox;
    display: flex;
    color: #333
}

ul.left-menu li.active {
    background: #fb6201
}

ul.left-menu li.active a {
    color: #fff
}

ul.left-menu li.active a i,ul.left-menu li a i {
    margin-right: 8px;
    margin-top: 5px;
    color: #fff
}

ul.left-menu li.active a i {
    margin-left: -32px
}

ul.left-menu li a:hover {
    background: #fb6201!important;
    color: #fff
}

.dash-text {
    background: #fff;
    padding: 10px;
    border-radius: 10px
}

.dash-text p {
    margin: 0;
    font-size: 16px
}

div#form-search.search-icon .input-group-prepend {
    position: absolute;
    right: 0
}

div#form-search.search-icon span#basic-addon1 {
    background: #fff;
    border: none;
    margin-top: 5px;
    margin-right: 3px
}

div#form-search.search-icon .input-group-prepend I {
    color: #ec1c24
}

div#form-search.search-icon input {
    background: #fff;
    padding: 10px;
    border: none;
    border-radius: 10px
}

.dash-text h3 {
    font-size: 22px;
    font-weight: 600
}

.dash-text.sspp {
    padding: 25px 15px
}

.sp-l-r {
    padding-left: 0;
    padding-right: 0;
    margin: auto
}

.prof p {
    font-size: 11px;
    color: #999
}

.prof p b {
    color: #222
}

.img-sp {
    padding-right: 0
}

.prof {
    padding-top: 6px
}

.img-sp img {
    width: 100px;
    border-radius: 50%;
    border: 2px solid #fb6201;
    height: auto
}

button.btn-notes {
    background: #41414b;
    color: #fff;
    border: none;
    font-size: 13px;
    padding: 6px 15px
}

.table-appoin {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px
}

.table-appoin h5 {
    margin-bottom: 0
}

.font-table p {
    font-size: 7px
}

.font-table h5 {
    font-size: 11px
}

.border-right {
    border-right: 1px solid #99999942
}

.font-table .img-sp.text-center p {
    font-size: 6px
}

.dash-text.sspp.prof.font-table {
    padding: 17px 15px 18px
}

.do-list {
    background: #f2f2f2;
    border-radius: 11px;
    padding: 0 25px;
    margin-top: 50px
}

.do-list .doc-text img {
    margin-top: -40px
}

.do-list .doc-text h4 {
    font-weight: 200;
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 0;
    color: #494949
}

.do-list .doc-text p {
    font-size: 12px;
    color: #999;
    font-weight: 400
}

.doc-text {
    margin-bottom: 30px
}

.dash-text.sspp .do-list p {
    font-size: 12px;
    color: #999;
    font-weight: 400
}

.dash-text.sspp .do-list p b {
    color: #222
}

.follow-mm {
    background: #41414b;
    margin-top: -9px;
    border-radius: 0 0 11px 11px
}

.follow-mm .boxs a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 11px;
    padding: 15px 2px;
    color: #fff;
    text-decoration: none
}

.follow-mm .boxs {
    width: 33.333%;
    border-right: 1.5px solid #eee
}

.reports .follow-mm {
    background: #fff;
    margin-top: 0
}

.reports .follow-mm .boxs.rep a {
    background: #41414b;
    border-radius: 11px 0 0 0;
    color: #fff
}

.reports .follow-mm .boxs a {
    font-size: 22px;
    color: #222;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 13px 36px
}

a.your-stats {
    border-right: 2px solid #b9b9b9
}

.reports .follow-mm {
    border-bottom: 1px solid #b9b9b96b
}

.reports {
    background: #fff;
    border-radius: 11px
}

ul.blood-report {
    padding: 0;
    margin: 0
}

ul.blood-report li {
    list-style: none
}

ul.blood-report li a {
    padding: 15px 25px 30px 23px;
    border-bottom: 1px solid #b5b5b5;
    border-right: 1px solid #b5b5b5;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    position: relative;
    color: #000
}

ul.blood-report li a span {
    position: absolute;
    bottom: 16px;
    font-size: 10px;
    color: #b5b5b5
}

ul.blood-report li.view-all a {
    background: #b5b5b5;
    padding: 27px 23px;
    border-radius: 0 0 0 11px
}

.months-text {
    text-align: right
}

.icon-7 .post-slide {
    text-align: center
}

.icon-7 .post-slide span img {
    border: 2px solid #a9a9a9;
    padding: 15px;
    border-radius: 200px;
    height: 100px;
    width: 100px
}

.icon-7 .post-slide:hover span img {
    border: 2px solid #ed6e1f
}

.icon-7 .post-slide p {
    margin: 10px 0 0;
    font-size: 15px
}

.doctor-list .col-7 {
    padding: 0 10px;
    border: 2px solid #bdbdcc8c
}

.doctor-list .row {
    margin-right: 0;
    margin-left: 0;
    height: 100%
}

.doctor-list img {
    border-radius: 0;
    margin-left: 0;
    width: 100%
}

.doctor-list .col-5 {
    padding: 0
}

.doctor-list .col-7 {
    padding: 5px;
    padding-left: 15px
}

.doctor-list h4 {
    font-size: 15px;
    padding-top: 11px
}

.doctor-list p {
    font-size: 13px
}

.progressbar-part p {
    font-size: 14px;
    font-weight: 300;
    color: #666
}

.progressbar-part .progress-bar {
    background-color: #41414b7a;
    border-radius: 10px
}

.progressbar-part .progress {
    height: .9rem
}

.progressbar-part .progress p {
    font-size: 10px;
    padding: 0 5px;
    background: #fff
}

@media (min-width: 1700px) {
    .font-table p {
        font-size:13px!important
    }

    .font-table .img-sp.text-center p {
        font-size: 11px!important
    }

    .font-table h5 {
        font-size: 15px!important
    }

    .dash-text.sspp .do-list p {
        font-size: 17px!important
    }

    ul.left-menu li a {
        font-size: 20px!important
    }
}

@media (max-width: 1100px) {
    .dash-text h3 {
        font-size:15px
    }

    div#form-search.search-icon input {
        font-size: 13px
    }

    .prof p {
        font-size: 8px
    }

    .table-appoin .dash-text.sspp.prof.font-table {
        overflow: hidden
    }

    .scrool .border-right {
        width: 100%;
        margin-bottom: 7px
    }

    .row.scrool {
        display: unset
    }

    .dash-text.sspp.prof.font-table p {
        font-size: .8rem!important
    }

    .scrool .col-2.text-center {
        width: 100%
    }

    .scrool .text-center {
        text-align: left!important
    }

    .row.scrool .sp-l-r {
        padding-left: 10px
    }

    button.btn-notes {
        font-size: .7rem;
        padding: 6px
    }

    .follow-mm .boxs a {
        font-size: .5rem;
        padding: 15px 2px
    }

    .doctor-part-img {
        padding: 30px 15px 90px
    }

    ul.blood-report li a {
        padding: 15px 10px 30px
    }

    .dash-text.sspp p.mt-3.mb-4 {
        margin-bottom: 0!important;
        margin-top: 0!important
    }

    .doctor-list h4 {
        padding-top: 0
    }

    .doctor-list .col-7 {
        padding-left: 10px
    }
}

@media (max-width: 980px) {
    ul.blood-report li.view-all a {
        padding:18px 12px
    }

    .prof p {
        font-size: 1rem
    }

    .img-sp img {
        width: 60px
    }

    .dash-text.sspp.prof.font-table p {
        font-size: 7px
    }

    .flex-part {
        display: unset
    }

    .dash-menu {
        width: 100%
    }

    .left-dash {
        width: 100%;
        height: unset;
        position: unset
    }

    .dash-body {
        width: 100%;
        padding: 10px 15px
    }
}

@media (max-width: 767px) {
    .dash-text.sspp .prof {
        padding:0 9px
    }

    .reports .follow-mm .boxs a {
        font-size: .8rem;
        padding: 13px 10px
    }

    ul.blood-report li a span {
        bottom: 11px;
        font-size: 14px
    }

    .progressbar-part p {
        font-size: 16px
    }

    .doctor-list h4 {
        padding-top: 18px;
        font-size: 14px
    }

    .doctor-list {
        margin-bottom: 15px
    }

    .dash-text.sspp h3,.months-text {
        text-align: center
    }
}

.follow-mm .boxs.rep.border-0 a.your-stats {
    border-radius: 0
}

div#dark-version .left-dash {
    background: #383838
}

div#dark-version ul.left-menu li a {
    color: #fff
}

.my-calendar {
    background: #44434c;
    color: #fff;
    font-size: 1.3rem;
    padding: .4rem;
    margin: -.6rem 0;
    text-align: center
}

.my-calendar img {
    width: 2.6rem
}

p.Logout-dash {
    text-align: center;
    padding: 3px 0 0
}

p.Logout-dash a {
    text-decoration: none
}

.text-pera-body p,p.Logout-dash a {
    color: #333;
    font-size: 1.2rem
}

.text-pera-body p.color-feed {
    color: #999
}

.plus-icon {
    position: absolute;
    right: 1rem
}

div#dark-version-body .dash-text {
    position: relative
}

.text-right {
    text-align: right
}

div#dark-version-body .dash-text h3.orange {
    color: #fb6201
}

h3.orange i {
    color: #ccc
}

table.table.table-part th {
    color: #fb6201;
    font-weight: 500;
    font-size: 1.1rem
}

.follow-up {
    text-align: center;
    background: #383838;
    border-radius: 5px
}

.follow-up ul {
    padding: 0;
    margin: 0
}

.follow-up ul li {
    list-style: none;
    display: inline-block;
    font-size: .8rem;
    color: #fff;
    padding: 5px 3px
}

table.table.table-part tr td {
    padding: 15px 9px;
    border-top: 1.3px solid #000
}

div#dark-version-body p.Logout-dash.log a {
    font-size: 1rem!important
}

.blood-test p {
    margin-bottom: 3px
}

div#dark-version-body .dash-text h3 {
    color: #333;
    font-size: 1.3rem
}

h3.Advise {
    margin: .7rem 0 0!important
}

p.date-link span {
    color: #fb6201
}

p.date-link a {
    color: #999
}

#dark-version-body p.Date-time {
    font-size: .8rem;
    font-weight: 500
}

.dash-text.sspp.upcoming {
    background: #f8f3f0
}

.endocrinology-upcoming {
    border-left: 1px solid #afaead;
    padding-bottom: 40px;
    border-right: 1px solid #afaead
}

div#dark-version-body .dash-text h3 {
    position: relative
}

div#dark-version-body .dash-text h3 i.fa-solid.fa-calendar {
    color: #bbb;
    position: absolute;
    right: 1.3rem
}

p.Logout-dash.log {
    text-align: right;
    padding-right: 10px
}

div#dark-version-body .dash-text h3.Your {
    font-size: 1.4rem
}

.dash-text.sspp.icon-and-text p {
    font-size: .6rem
}

.dash-text.sspp.icon-and-text {
    padding: 1rem;
    margin-bottom: 1.4rem;
    border-radius: 12px;
    box-shadow: 0 2px 3px 0 #00000014
}

div#dark-version i.fa-solid.fa-house {
    color: #fff
}

.update-profile p {
    font-size: .8rem;
    margin-bottom: 4px
}

.dash-text.sspp.Alergies {
    padding: 10px 13px
}

.dash-text.sspp.family-members {
    padding: 10px;
    overflow: hidden
}

.dash-text.sspp.family-members h3 {
    font-size: 1.7rem!important
}

.dash-text.sspp.family-members i.fa-solid.fa-plus {
    font-size: 2rem;
    border: 2px solid #000;
    padding: .5rem;
    border-radius: 40px;
    margin-top: .6rem
}

.family-members input {
    position: absolute;
    top: 30px;
    z-index: 9;
    opacity: 0;
    cursor: pointer
}

table#table-apppin td {
    border-top: unset;
    padding: 9px 6px
}

.shadab-boarder {
    border-right: 1px solid #c8c9ca
}

.shadab-boarder-top-left {
    border-top: 1px solid #c8c9ca;
    padding-top: 15px
}

hr.overview {
    margin-bottom: 0
}

.pb-3a,.shadab-boarder {
    padding-top: 1.2rem
}

.dash-text.sspp.icon-and-text.boarder-r {
    border-radius: 25px
}

.input-group.navi-input {
    width: unset;
    border: 1px solid #fb6201;
    border-radius: 4px
}

.step-away .input-group.navi-input input {
    color: #41414b;
    font-size: 1.1rem
}

.step-away .input-group.navi-input span#basic-addon2 {
    padding: 4px
}

.input-group.navi-input span#basic-addon2 {
    background: #fff
}

.input-group.navi-input input.form-control {
    border-right: 0
}

.step-away .input-group img {
    width: 2.2rem
}

.step-away h2 {
    color: #fa6400;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 2rem
}

button.dropdown-toggle.make-btn i {
    background: #fff;
    color: #000;
    padding: 6px 7px;
    border-radius: 100px;
    position: absolute
}

.dash-text.sspp.icon-and-text button#dropdownMenuButton1 {
    background: #41414b;
    padding: 16px 5px
}

.dash-text.sspp.icon-and-text button#dropdownMenuButton1 i {
    margin-left: 3px
}

.past-consultations p {
    font-size: .9rem;
    margin-bottom: 1rem
}

.btn.btn-karim {
    background: #fb6201;
    color: #fff;
    padding: 3px 10px;
    border-radius: 32px;
    width: 100%
}

button.btn.btn-karim.pending {
    background: #b4b4b4
}

table#table-apppin.bold-td {
    font-weight: 500
}

table#table-apppin.bold-td td i.fa-solid.fa-plus {
    font-size: 1rem;
    border: 2px solid #000;
    padding: .5rem;
    border-radius: 40px
}

table.date-table {
    width: 100%;
    background: #fb6201
}

table.date-table tr td {
    padding: 10px
}

table.date-table tr td p {
    color: #fff;
    font-size: 1.1rem
}

table.date-table tr td .btn.btn-karim {
    background: #fffefd;
    color: #111
}

table.date-table tr td i {
    color: #fff
}

table.date-table tr td i.fa-solid.fa-angle-down {
    font-size: 1.4rem
}

#Metabolism .prof p,.ordered p {
    font-size: .8rem
}

div#Metabolism i {
    color: #bbb
}

#Metabolism .prof {
    padding-top: 0
}

.dash-text .dummy {
    border: 1px solid #999;
    width: 98%;
    margin: 0 auto;
    padding: 1rem
}

.dash-text .dummy p {
    font-size: 1.2rem;
    font-weight: 200
}

.dash-text .dummy h2 {
    color: #5e5e5e
}

@media (min-width: 1500px) {
    .dash-text.sspp.family-members h3 {
        font-size:1.9rem!important
    }

    .update-profile p {
        font-size: 1.2rem
    }

    .dash-text.sspp.icon-and-text p {
        font-size: .9rem
    }

    .dash-text.sspp.icon-and-text {
        margin-bottom: 1rem
    }

    .prof p {
        font-size: 1rem
    }

    div#dark-version-body .dash-text h3.Your {
        font-size: 2rem
    }

    div#dark-version-body .dash-text h3 {
        font-size: 1.7rem
    }

    #dark-version-body p.Date-time,button.btn-notes {
        font-size: 1.2rem
    }
}

table#tech-companies-1 td.testimonial_desc {
    white-space: normal!important
}

@media (max-width: 1600px) {
    .banner-part {
        height:unset!important
    }

    .contact-number {
        position: unset
    }
}

@media (max-width: 1199px) {
    .header-part div#navbarSupportedContent a {
        font-size:14px
    }

    header#doctor-profile div#navbarSupportedContent a {
        font-size: 12px
    }

    button.dropdown-toggle.make-btn i {
        padding: 8px 9px;
        bottom: 9px
    }

    .our-recommendations .doctor-list h4 {
        font-size: 14px
    }
}

@media (max-width: 1099px) {
    .banner-part h1 {
        font-size:47px
    }

    .left-offcanvas h4 {
        font-size: 1.8rem
    }

    .left-offcanvas h4 br {
        display: none
    }

    .humanFemaleBodyImg,.humanMaleBodyImg {
        height: auto
    }
}

@media (max-width: 980px) {
    .banner-part h1 {
        font-size:37px
    }

    .banner-part input.form-control {
        padding: 8px 10px;
        font-size: 18px
    }

    .input-group img {
        width: 31px
    }

    .contact-number {
        position: unset;
        margin-top: 50px
    }

    .banner-part {
        height: unset
    }

    .border-part h5 {
        font-weight: 500
    }
}

@media (max-width: 766px) {
    .contact-number {
        position:unset
    }

    .excellence-part {
        margin: 0 28px 15px
    }

    .offcanvas-body {
        padding: 1rem
    }

    .footer-part h3 {
        font-size: 16px
    }

    div#tab-mob {
        padding-left: 8!important;
        margin-top: 30px
    }
}

@media (max-width: 350px) {
    header#doctor-profile a.navbar-brand {
        margin-right:-8px!important
    }

    h6.timer {
        font-size: 17px
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.fade:not(.show) {
    opacity: 1
}

.fadeInDown,.fadeInLeft,.fadeInRight,.fadeInUp {
    opacity: 0;
    -ms-transform: translateX(400px);
    transform: translateX(400px)
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1;
        display: block
    }
}

.fadeIn {
    opacity: 0
}

.fadeIn.go {
    animation-name: fadeIn
}

@keyframes fadeInLeft {
    0% {
        opacity: .3;
        transform: translateX(-100px)
    }

    50% {
        opacity: .7
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeft {
    opacity: 0;
    -ms-transform: translateX(-100px);
    transform: translateX(-100px)
}

.fadeInLeft.go {
    animation-name: fadeInLeft
}

@keyframes fadeInRight {
    0% {
        opacity: .3;
        transform: translateX(100px)
    }

    50% {
        opacity: .7
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRight {
    opacity: 0;
    -ms-transform: translateX(100px);
    transform: translateX(100px)
}

.fadeInRight.go {
    animation-name: fadeInRight
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-200px)
    }

    50% {
        opacity: .3
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDown {
    opacity: 0;
    -ms-transform: translateY(-200px);
    transform: translateY(-200px)
}

.fadeInDown.go {
    animation-name: fadeInDown
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

::-moz-selection {
    background: #ffa200;
    color: #fff;
    text-shadow: none
}

img {
    vertical-align: middle;
    border: none
}

p {
    padding: 0;
    display: block;
    margin: 0
}

a {
    color: #666
}

a:hover {
    cursor: pointer;
    color: #212121
}

a:focus,a:hover {
    outline: 0;
    text-decoration: none
}

.full-width {
    float: left;
    width: 100%
}

.relative {
    position: relative
}

.full-img {
    width: 100%
}

.float-left {
    float: left
}

.float-right {
    float: right
}

.marginnone {
    margin: 0
}

.margintop10 {
    margin-top: 10px
}

.margintop20 {
    margin-top: 20px
}

.margintop30 {
    margin-top: 30px
}

.margintop40 {
    margin-top: 40px
}

.marginbottom10 {
    margin-bottom: 10px
}

.marginbottom20 {
    margin-bottom: 20px
}

.marginbottom30 {
    margin-bottom: 30px
}

.marginbottom40 {
    margin-bottom: 40px
}

.marginbottom60 {
    margin-bottom: 60px
}

.paddingnone {
    padding: 0!important
}

.paddingtop10 {
    padding-top: 10px
}

.paddingtop20 {
    padding-top: 20px
}

.paddingtop30 {
    padding-top: 30px
}

.paddingtop40 {
    padding-top: 40px
}

.paddingbottom10 {
    padding-bottom: 10px
}

.paddingbottom20 {
    padding-bottom: 20px
}

.paddingbottom30 {
    padding-bottom: 30px
}

.paddingbottom40 {
    padding-bottom: 40px
}

@keyframes uptext {
    0% {
        transform: translateY(0);
        opacity: 0
    }

    to {
        transform: translateY(-40px);
        opacity: 1
    }
}

@keyframes downtext {
    0% {
        transform: translateY(-40px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.img_block>img {
    width: 100%
}

.btn {
    color: #fff;
    line-height: 40px;
    border-radius: 40px;
    padding: 0 20px;
    background-color: #019f48;
    font-size: 16px;
    border: none
}

.btn:hover {
    background-color: #f70a02;
    color: #fff
}

.styled_select {
    position: relative;
    width: 100%
}

.styled_select:after {
    content: "\C3\AF\C6\2019\E2\20AC\201D";
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    top: 3px;
    width: 30px;
    line-height: 34px;
    color: #555;
    font-size: 16px;
    text-align: center;
    pointer-events: none
}

.anthem_dwn {
    position: absolute;
    left: 70px;
    bottom: 40px;
    z-index: 99
}

.anthem_dwn ul {
    display: inline-block
}

.anthem_dwn ul li {
    float: left;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase
}

.anthem_dwn ul li:first-child {
    padding-right: 10px
}

.anthem_dwn ul li a {
    float: left;
    background-color: #5a5a5a;
    color: #fff;
    width: 44px;
    text-align: center;
    border-radius: 17px 0 0 17px
}

.anthem_dwn ul li a .fa {
    line-height: 34px
}

.anthem_dwn ul li:last-child a {
    background-color: #4a4a4a;
    border-radius: 0 17px 17px 0
}

.fixed_social {
    position: fixed;
    top: 50%;
    left: 20px;
    margin-top: -55px;
    z-index: 80
}

.fixed_social ul,.fixed_social ul li {
    width: 30px;
    float: left
}

.fixed_social ul li {
    padding-bottom: 10px
}

.fixed_social ul li:last-child {
    padding-bottom: 0
}

.fixed_social ul li a {
    float: left;
    width: 30px;
    background-color: #fff;
    position: relative;
    line-height: 28px;
    color: #000;
    font-size: 16px;
    text-align: center;
    border-radius: 100%;
    border: 1px solid #ccc
}

.fixed_social ul li a:hover {
    background-color: #3b5999;
    color: #fff
}

.fixed_social ul li:nth-child(2) a:hover {
    background-color: #01bbf6
}

.fixed_social ul li:nth-child(3) a:hover {
    background-color: #fe0000
}

.scroll_down {
    position: absolute;
    right: 40px;
    bottom: 0;
    z-index: 88
}

.check_container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #a5a5a5;
    min-height: 27px;
    margin: 0;
    line-height: 27px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.check_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 27px;
    width: 27px;
    background-color: transparent;
    border: 1px solid #656565
}

.check_container input:checked~.checkmark {
    border: none
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.check_container input:checked~.checkmark:after {
    display: block
}

.check_container .checkmark:after {
    left: 0;
    top: 0;
    width: 5px;
    height: 10px
}

.abt_section {
    margin: 50px 0 20px;
    position: relative;
    overflow: hidden
}

.abt_section:before {
    content: "";
    background-color: #e6e9ea;
    width: 33%;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0
}

.about_inner {
    position: relative;
    padding-right: 590px;
    min-height: 470px
}

.abt_section h2 {
    color: #1b1b1b;
    font-size: 33px;
    letter-spacing: 1px;
    padding: 30px 0;
    line-height: 30px
}

.abt_section .textarea {
    position: relative;
    background-color: #fff;
    min-height: 340px;
    box-shadow: 0 0 65px 2px rgba(0,0,0,.22);
    padding-right: 415px;
    overflow: hidden
}

.abt_section .textarea .img_block {
    position: absolute;
    right: 0;
    top: 0;
    width: 415px
}

.abt_section .textarea .text {
    padding: 20px 25px
}

.abt_section .textarea .text p {
    font-size: 14px;
    line-height: 24px;
    color: #404040;
    padding-bottom: 10px
}

.abt_section .textarea .text .btn {
    background-color: #1b1b1b;
    line-height: 36px
}

.abt_section .textarea .text .btn:hover {
    background-color: #f80609
}

.form_section {
    position: absolute;
    right: 0;
    width: 470px;
    background-color: #00000a;
    padding: 35px;
    top: 0
}

.abt_section .form_section h2 {
    color: #019f48;
    padding: 0 0 20px
}

.abt_section .form_section .form-control {
    background-color: transparent;
    border: 1px solid #656565;
    height: 60px;
    color: #fff;
    padding-left: 20px;
    line-height: 20px;
    font-size: 14px
}

.abt_section .form_section .form-control::-moz-placeholder {
    color: #fff;
    opacity: 1
}

.abt_section .form_section .form-control::-webkit-input-placeholder {
    color: #fff;
    opacity: 1
}

.abt_section .form_section .btns {
    display: inline-block;
    padding-top: 20px;
    width: 100%
}

.abt_section .form_section .btns li {
    float: left
}

.abt_section .form_section .btns li .btn {
    line-height: 50px;
    min-width: 156px;
    color: #fff
}

.abt_section .form_section .btns li:last-child {
    padding-left: 20px
}

.abt_section .form_section .btns li a {
    color: #a5a5a5;
    line-height: 46px;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
    background-color: transparent;
    border: none;
    padding: 0
}

.abt_section .form_section .btns li a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    height: 2px;
    width: 0;
    background-color: #f80609;
    transition: all .25s ease-in 0s;
    -webkit-transition: all .25s ease-in 0s
}

.abt_section .form_section .btns li a:hover:after {
    width: 100%;
    left: 0
}

.abt_section .form_section .btns li a:hover {
    border-bottom-color: #f80609
}

.pledge_btn {
    display: none
}

.upcoming_event_section {
    background-color: #e7e7e7;
    padding: 50px 0;
    overflow: hidden
}

.upcoming_event_section h2 {
    color: #1b1b1b;
    font-size: 33px;
    letter-spacing: 1px;
    padding: 0 50px 30px
}

.upcoming_event_section h2 .link {
    float: right;
    font-size: 16px;
    color: #5a5a5a;
    letter-spacing: normal;
    border-bottom: 2px solid transparent;
    position: relative
}

.upcoming_event_section h2 .link:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    height: 2px;
    width: 0;
    background-color: #f80609;
    transition: all .25s ease-in 0s;
    -webkit-transition: all .25s ease-in 0s
}

.upcoming_event_section h2 .link:hover:after {
    width: 100%;
    left: 0
}

.event_carousel {
    padding: 0 100px 0 0
}

.event_carousel .item {
    background-color: #fff;
    padding: 20px
}

.event_carousel .item .date {
    font-size: 12px;
    color: #3f3f3f;
    line-height: 24px;
    padding-bottom: 5px
}

.event_carousel .item .date .fa {
    font-size: 18px;
    padding-right: 5px;
    opacity: .6
}

.event_carousel .item h3 {
    font-size: 20px;
    color: #1b1b1b;
    padding-bottom: 10px
}

.event_carousel .item p {
    padding-bottom: 10px;
    color: #3f3f3f;
    line-height: 20px
}

.event_carousel .item .img_block {
    margin-bottom: 20px
}

.event_carousel .item .btn {
    background-color: #fff;
    border: 1px solid #818181;
    color: #23ac60;
    border-radius: 0;
    line-height: 48px
}

.event_carousel .item .btn .fa {
    padding-left: 10px
}

.event_carousel .item .btn:hover {
    background-color: #f80609;
    color: #fff;
    border-color: #f80609
}

.partner_section {
    position: relative;
    padding: 40px 0 50px;
    overflow: hidden
}

.partner_section:before {
    content: "";
    background-color: #23ac60;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 210px
}

.partner_section h2 {
    font-size: 33px;
    color: #e7e7e7;
    padding-bottom: 30px;
    text-align: center
}

.partner_section .container {
    position: relative;
    z-index: 2
}

.partner_section .white_bg {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,.2)
}

.partner_carousel {
    padding: 0 50px
}

.gallery_section {
    padding: 0 0 50px
}

.gallery_section h2 {
    color: #1b1b1b;
    font-size: 33px;
    letter-spacing: 1px;
    padding-bottom: 30px;
    text-align: center
}

.large_slide .slides>li a {
    position: relative;
    float: left;
    width: 100%
}

.large_slide .slides>li a .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 0 40px 40px;
    width: 100%
}

.large_slide .slides>li a .overlay h3 {
    color: #fff;
    font-size: 33px;
    letter-spacing: 1px
}

.thumb_slide {
    float: right;
    max-width: 970px;
    width: 100%;
    background-color: #fff;
    padding: 2px;
    margin-top: -75px
}

.thumb_slide .slides>li img {
    filter: grayscale(100%)
}

.thumb_slide .slides>li.flex-active-slide img {
    filter: grayscale(0)
}

.thumb_slide .flex-direction-nav a:before {
    color: #23ac60;
    position: static;
    margin: 0;
    height: 52px;
    width: 52px;
    border: 1px solid #878787;
    border-radius: 100%;
    line-height: 50px
}

.thumb_slide .flex-direction-nav a:hover:before {
    border-color: #f80609
}

.thumb_slide .flex-direction-nav {
    position: absolute;
    left: -160px;
    bottom: 5px;
    width: 130px;
    height: 52px
}

.thumb_slide .flex-direction-nav li {
    float: left;
    width: 52px
}

.thumb_slide .flex-direction-nav li:last-child {
    float: right
}

.thumb_slide .flex-direction-nav li a {
    float: left;
    width: 100%;
    position: static;
    height: auto
}

.flex-direction-nav a:hover:before {
    color: #f80609
}

.flex-direction-nav a.flex-disabled {
    opacity: .5
}

.top_footer {
    background-color: #e6e6e6;
    padding: 25px 0
}

.footer_list {
    float: left;
    padding-top: 5px
}

.footer_list li {
    float: left;
    position: relative;
    padding: 0 15px
}

.footer_list li:before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
    color: #a8a8a8
}

.footer_list li:first-child {
    padding-left: 0
}

.footer_list li:last-child {
    padding-right: 0
}

.footer_list li:first-child:before {
    display: none
}

.footer_list li a {
    float: left;
    color: #323232;
    position: relative;
    line-height: 20px
}

.footer_list li a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    height: 1px;
    width: 0;
    background-color: #f80609;
    transition: all .25s ease-in 0s;
    -webkit-transition: all .25s ease-in 0s
}

.footer_list li a:hover:after {
    width: 100%;
    left: 0
}

.footer_list li a:hover {
    color: #f80609
}

.social_list {
    float: right
}

.social_list li {
    float: left;
    font-size: 14px;
    color: #323232;
    padding-left: 10px;
    line-height: 30px
}

.social_list li:first-child {
    padding-left: 0
}

.social_list li a {
    float: left;
    width: 30px;
    color: #fff;
    text-align: center;
    border-radius: 100%
}

.social_list li a .fa {
    line-height: 30px
}

.social_list li:nth-child(2) a {
    background-color: #2153a5
}

.social_list li:nth-child(3) a {
    background-color: #07a1da
}

.social_list li:nth-child(4) a {
    background-color: red
}

.bottom_footer {
    padding: 20px 0
}

.bottom_footer p {
    font-size: 14px;
    color: #7c7c7c
}

.inner_banner {
    position: relative
}

.inner_banner>img {
    width: 100%
}

.inner_banner .overlay {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    margin-top: -66px
}

.od_reg_section {
    padding: 40px 0 80px
}

.od_reg_section .container {
    max-width: 1250px;
    width: 100%
}

.od_reg_section h2 {
    font-size: 33px;
    color: #019f48;
    letter-spacing: 1px;
    text-align: center
}

.audio_block,.od_reg_section h2 {
    padding-bottom: 40px
}

.audio_block audio {
    width: 100%;
    border-radius: 20px
}

.audio_block p {
    font-size: 14px;
    color: #049344;
    text-transform: uppercase;
    line-height: 34px;
    padding-top: 3px;
    text-align: right
}

.audio_block p a {
    background-color: #049344;
    color: #fff;
    display: inline-block;
    width: 56px;
    border-radius: 17px;
    text-align: center;
    font-size: 18px;
    margin-left: 5px
}

.audio_block p a .fa {
    line-height: 34px
}

.od_reg_section .shadow_bg {
    background-color: #fff;
    box-shadow: 0 0 68px rgba(0,0,0,.13);
    padding: 40px 60px
}

.od_reg_section label {
    color: #3a3a3a;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 10px
}

.od_reg_section label span {
    color: red
}

.od_reg_section .form-control {
    border: 1px solid #656565;
    height: 60px;
    color: #3a3a3a;
    font-size: 14px;
    padding-left: 15px
}

.od_reg_section textarea.form-control {
    padding-top: 15px;
    height: 190px;
    resize: none
}

.od_reg_section .form-group {
    margin-bottom: 25px
}

.od_reg_section .select_list {
    margin: 0 -5px
}

.od_reg_section .select_list li {
    padding: 0 5px;
    width: 33.33%;
    float: left
}

.od_reg_section .styled_select:after {
    line-height: 56px;
    content: "\C3\AF\E2\20AC\17E\E2\20AC\A1";
    font-size: 20px;
    width: 40px
}

.od_reg_section .has-feedback .form-control {
    padding-right: 10px;
    padding-left: 75px
}

.od_reg_section .has-feedback span {
    position: absolute;
    left: 1px;
    top: 1px;
    line-height: 58px;
    text-align: center;
    width: 60px;
    border-right: 1px solid #656565;
    background-color: #efefef
}

.od_reg_section .btn_list {
    display: inline-block;
    width: 100%
}

.od_reg_section .btn_list li label.check_container {
    font-size: 14px;
    color: #3a3a3a;
    margin-bottom: 0
}

.od_reg_section .btn_list li {
    float: left
}

.od_reg_section .btn_list li:last-child {
    float: right
}

.od_reg_section .btn_list li .btn {
    line-height: 50px;
    min-width: 156px;
    color: #fff
}

.abt_section .container,.slide_section .container {
    max-width: 1500px;
    width: 100%
}

.abt_section .container {
    position: relative;
    z-index: 2
}

.gallery_section .container,.partner_section .container,.upcoming_event_section .container {
    max-width: 1500px;
    width: 100%
}

@media (max-width: 1440px) {
    .abt_section .container,.gallery_section .container,.partner_section .container,.slide_section .container,.upcoming_event_section .container {
        max-width:1280px
    }

    .sub_s_section h3 {
        font-size: 24px
    }

    .fixed_social {
        left: 5px
    }

    .form_section {
        width: 350px;
        padding: 25px;
        min-height: 430px
    }

    .about_inner {
        padding-right: 380px
    }

    .abt_section .form_section .form-control {
        height: 50px;
        padding-left: 15px
    }

    .abt_section .form_section .btns li .btn {
        min-width: 120px
    }

    .abt_section h2 {
        font-size: 27px
    }

    .abt_section .textarea .text p {
        font-size: 13px;
        line-height: 22px
    }

    .upcoming_event_section h2 {
        font-size: 27px
    }

    .event_carousel .item h3 {
        font-size: 18px
    }

    .event_carousel .item .btn {
        font-size: 14px;
        line-height: 40px
    }

    .partner_section h2 {
        font-size: 27px
    }

    .partner_section:before {
        height: 180px
    }

    .gallery_section h2,.large_slide .slides>li a .overlay h3 {
        font-size: 27px
    }

    .large_slide .slides>li a .overlay {
        padding: 0 0 50px 20px
    }

    .thumb_slide {
        margin-top: -40px
    }

    .inner_banner .overlay img,.slide_section .item .overlay img {
        max-width: 800px
    }

    .od_reg_section h2 {
        font-size: 27px
    }

    .inner_banner .overlay {
        margin-top: -55px
    }
}

@media (max-width: 1279px) {
    .slide_section .item .overlay {
        padding:0 50px
    }

    .slide_section .item .overlay img {
        max-width: 600px
    }

    .slide_section .item .overlay .btn {
        top: -10px
    }

    .abt_section {
        margin-top: 20px;
        margin-bottom: 0
    }

    .abt_section h2 {
        padding-top: 0;
        padding-bottom: 20px;
        padding-left: 15px
    }

    .about_inner {
        padding-right: 0
    }

    .abt_section:before {
        display: none
    }

    .abt_section .container {
        padding: 0
    }

    .form_section {
        position: static;
        min-height: auto;
        width: 100%;
        padding: 25px 40px
    }

    .abt_section .form_section h2 {
        text-align: center;
        padding-left: 0
    }

    .upcoming_event_section {
        padding: 20px 0
    }

    .upcoming_event_section h2 {
        padding-bottom: 20px
    }

    .partner_section {
        padding: 20px 0 10px
    }

    .partner_section h2 {
        padding-bottom: 20px
    }

    .partner_section:before {
        height: 140px
    }

    .thumb_slide .flex-direction-nav {
        position: static;
        text-align: center;
        width: 100%;
        padding-top: 10px
    }

    .thumb_slide .flex-direction-nav li {
        display: inline-block;
        float: none;
        margin: 0 5px
    }

    .thumb_slide .flex-direction-nav li:last-child {
        float: none
    }

    .thumb_slide {
        max-width: 100%;
        margin-top: 0
    }

    .large_slide .slides>li a .overlay {
        padding: 0 0 20px 40px
    }

    .gallery_section {
        padding: 30px 0 20px
    }

    .gallery_section h2 {
        padding-bottom: 20px
    }

    .fixed_social {
        display: none
    }

    .inner_banner .overlay img {
        max-width: 600px
    }

    .od_reg_section .shadow_bg {
        padding: 20px;
        box-shadow: 0 0 30px rgba(0,0,0,.13)
    }

    .od_reg_section .form-control {
        height: 50px
    }

    .od_reg_section .styled_select:after {
        line-height: 46px
    }

    .od_reg_section .has-feedback span {
        line-height: 48px
    }

    .od_reg_section {
        padding: 30px 0
    }

    .od_reg_section h2 {
        padding-bottom: 20px
    }

    .inner_banner .overlay {
        margin-top: -40px
    }

    .footer_list {
        width: 100%;
        padding: 0 0 10px;
        text-align: center
    }

    .footer_list li {
        float: none;
        display: inline-block;
        padding: 0 4px 0 10px
    }

    .social_list {
        width: 100%;
        text-align: center
    }

    .social_list li {
        float: none;
        display: inline-block;
        vertical-align: top
    }

    .sub_s_section p {
        font-size: 14px;
        line-height: 20px
    }

    .sub_s_section .btn {
        line-height: 34px
    }

    .btc_section .sub_s_section .relative {
        padding-left: 0
    }

    .btc_section .sub_s_section .nav-tabs {
        width: 100%;
        position: static;
        padding-bottom: 20px
    }

    .sub_s_section .nav-tabs>li>a:after {
        display: none
    }

    .sub_s_section .nav-tabs>li>a {
        font-size: 14px;
        text-transform: none
    }
}

@media (max-width: 1023px) {
    .scroll_down {
        display:none
    }

    .slide_section .item .overlay {
        bottom: 50px;
        top: auto;
        margin-top: 0
    }

    .slide_section .item .overlay img {
        width: 100%;
        max-width: 400px
    }

    .slide_section .item .overlay .btn {
        line-height: 36px;
        font-size: 13px;
        min-width: inherit;
        top: -20px
    }

    .slide_section .item .overlay h1 {
        padding-bottom: 0
    }

    .slide_section .owl-dots {
        top: auto;
        bottom: 0;
        right: auto;
        left: 0;
        width: 100%;
        text-align: center
    }

    .slide_section .owl-dot {
        float: none;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 0;
        padding: 0 7px
    }

    .anthem_dwn {
        position: static;
        background-color: #151515;
        padding: 10px 15px
    }

    .abt_section .textarea .text {
        padding: 15px
    }

    .abt_section .textarea .img_block {
        width: 380px
    }

    .abt_section .textarea {
        padding-right: 380px
    }

    .abt_section h2,.gallery_section h2,.large_slide .slides>li a .overlay h3,.partner_section h2,.upcoming_event_section h2 {
        font-size: 22px
    }

    .large_slide .slides>li a .overlay {
        padding: 0 0 15px 15px
    }

    .inner_banner .overlay img {
        max-width: 400px
    }

    .od_reg_section h2 {
        font-size: 22px
    }

    .od_reg_section textarea.form-control {
        height: 120px;
        padding-top: 10px
    }

    .inner_banner .overlay {
        margin-top: -28px
    }

    .audio_block {
        padding-bottom: 20px
    }

    .footer_list li a {
        font-size: 12px
    }

    .sub_s_section .inner {
        padding: 15px 15px 0
    }

    .sub_s_section h3 {
        font-size: 18px
    }

    .sub_s_section .relative {
        padding-left: 0
    }

    .sub_s_section .nav-tabs {
        position: static;
        width: 100%;
        padding-bottom: 15px
    }

    .sub_s_section .nav-tabs>li {
        border-bottom: none;
        width: auto
    }

    .sub_s_section .nav-tabs>li>a:after {
        right: auto;
        left: 50%;
        margin: 0 0 0 -7px;
        top: auto;
        bottom: -7px
    }

    .sub_s_section .nav-tabs>li>a {
        font-size: 14px;
        padding: 10px
    }
}

@media (max-width: 767px) {
    .abt_section h2,.gallery_section h2,.large_slide .slides>li a .overlay h3,.partner_section h2,.upcoming_event_section h2 {
        font-size:18px
    }

    .container-fluid>.navbar-header {
        margin-left: 0;
        margin-right: 0
    }

    .abt_section .textarea {
        padding-right: 0
    }

    .abt_section .textarea .img_block {
        width: 100%;
        position: static
    }

    .form_section {
        padding: 15px
    }

    .abt_section .form_section .btns li .btn {
        line-height: 36px;
        font-size: 13px
    }

    .abt_section .form_section .btns li a {
        line-height: 36px
    }

    .thumb_slide {
        display: none
    }

    .owl-nav {
        text-align: center;
        padding-top: 20px;
        position: absolute;
        top: 40%;
        width: 100%
    }

    .owl-nav [class*=owl-] {
        position: absolute;
        display: inline-block;
        margin: 0 10px
    }

    .event_carousel {
        padding: 0
    }

    .upcoming_event_section h2 {
        padding: 0 0 20px
    }

    .bottom_footer p {
        font-size: 12px
    }

    .upcoming_event_section {
        padding-bottom: 10px
    }

    .footer_list li a {
        font-size: 12px
    }

    .slide_section .item .overlay {
        padding: 0
    }

    .anthem_dwn ul li {
        font-size: 12px
    }

    .slide_section .item .mobile_banner {
        display: block
    }

    .slide_section .item .desktop_banner {
        display: none
    }

    .mobile_banner {
        display: block
    }

    .desktop_banner {
        display: none
    }

    .slide_section .item .overlay .btn {
        top: -20px
    }

    .bottom_footer,.top_footer {
        padding: 10px 0
    }

    .pledge_btn {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: #23ac60;
        color: #fff;
        z-index: 999;
        text-align: center;
        font-size: 14px;
        text-transform: uppercase;
        font-family: Montserrat;
        font-weight: 600;
        line-height: 40px
    }

    .pledge_btn:hover {
        color: #fff
    }

    .gallery_section {
        padding: 20px 0
    }

    .od_reg_section h2 {
        font-size: 18px
    }

    .od_reg_section .shadow_bg {
        padding: 10px
    }

    .od_reg_section .form-control {
        height: 40px;
        padding-left: 10px;
        font-size: 12px
    }

    .od_reg_section .styled_select:after {
        line-height: 36px
    }

    .od_reg_section .has-feedback span {
        line-height: 38px;
        width: 40px
    }

    .od_reg_section .has-feedback .form-control {
        padding-left: 50px
    }

    .od_reg_section select.form-control {
        padding-left: 5px
    }

    .od_reg_section .btn_list li .btn {
        line-height: 34px;
        font-size: 13px;
        min-width: inherit
    }

    .od_reg_section .btn_list li label.check_container {
        font-size: 13px
    }

    .audio_block p,.od_reg_section {
        padding-top: 10px
    }

    .audio_block p {
        text-align: center;
        padding: 5px 10px;
        background-color: #f1f2f3;
        border-radius: 22px
    }

    .sub_s_section h3 {
        font-size: 16px
    }

    .sub_s_section {
        padding: 15px 15px 0
    }

    .sub_s_section .inner {
        padding: 10px 10px 0
    }

    .sub_s_section .nav-tabs>li>a {
        text-transform: none
    }

    .sub_s_section .nav-tabs>li a {
        padding: 15px
    }

    .sub_s_section .nav-tabs>li>a {
        background-color: transparent;
        border-bottom: 2px solid transparent;
        text-transform: uppercase
    }

    .sub_s_section .nav-tabs>li.active>a,.sub_s_section .nav-tabs>li.active>a:focus,.sub_s_section .nav-tabs>li.active>a:hover {
        background-color: transparent;
        border-bottom: 2px solid #00a950
    }
}

@media (max-width: 639px) {
    .partner_carousel {
        padding:0
    }

    .event_carousel .item,.partner_section .white_bg {
        padding: 10px
    }

    .slide_section .item .overlay {
        bottom: 20px
    }

    .slide_section .owl-dots {
        bottom: -5px
    }

    .slide_section .item .overlay .btn {
        line-height: 30px;
        font-size: 12px
    }

    .footer_list li {
        padding: 0 0 0 7px
    }

    .footer_list li a {
        font-size: 11px
    }
}

@media (max-width: 479px) {
    .slide_section .item .overlay {
        bottom:10px
    }

    .inner_banner .overlay img,.slide_section .item .overlay img {
        max-width: 260px
    }

    .od_reg_section .btn_list li {
        width: 100%
    }

    .od_reg_section .btn_list li:last-child {
        text-align: center;
        padding-top: 20px
    }

    .od_reg_section .select_list li {
        padding-bottom: 10px;
        width: 100%
    }

    .od_reg_section .select_list li:last-child {
        padding-bottom: 0
    }

    .sub_s_section .nav-tabs>li a {
        padding: 10px
    }

    .sub_s_section .nav-tabs>li>a {
        font-size: 12px
    }
}

.ipslide_section {
    position: relative
}

.ipslide_section>.container {
    max-width: 100%;
    padding: 0
}

.ipslide_section .overlay {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    margin-top: -90px
}

.ipslide_section .overlay .container {
    max-width: 1240px;
    width: 100%
}

.ipslide_section .overlay h2 {
    font-size: 40px;
    font-weight: 700;
    color: #00a950;
    line-height: 46px;
    padding-bottom: 10px
}

.ipslide_section .overlay p {
    font-size: 22px;
    font-weight: 400;
    color: #161a1f;
    padding-bottom: 20px
}

.ipslide_section .overlay h3 {
    font-size: 24px;
    font-weight: 500;
    color: #161a1f;
    padding-left: 50px;
    position: relative
}

.ipslide_section .overlay h3 img {
    width: auto;
    position: absolute;
    left: 0;
    top: 0
}

.ip_carousel .owl-dots {
    position: absolute;
    right: 0;
    bottom: 90px;
    width: 100%;
    text-align: center;
    z-index: 100
}

.ip_carousel .owl-dots .owl-dot {
    padding: 0 3px;
    display: inline-block
}

.ip_carousel .owl-dots .owl-dot span {
    margin: 0;
    border-radius: 0;
    height: 4px;
    width: 38px;
    background-color: hsla(0,0%,100%,0);
    float: left;
    border: 1px solid #00a950
}

.hb_carousel .owl-dots .owl-dot:hover span,.ip_carousel .owl-dots .owl-dot.active span {
    background-color: #00a950
}

.ip_list {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    text-align: center;
    display: table;
    z-index: 9;
    background: rgba(0,0,0,.5);
    padding-top: 15px
}

.ip_list ul {
    display: inline-block
}

.ip_list ul li {
    display: table-cell;
    vertical-align: middle;
    height: 60px;
    border-left: 1px solid #0ed36b;
    padding: 0 15px
}

.ip_list ul li:first-child {
    border-left: none;
    padding-left: 0
}

.ip_list ul li:last-child {
    padding-right: 0
}

.ip_list ul li .inner {
    display: inline-block
}

.ip_list ul li .inner img {
    position: relative;
    top: -12px;
    padding-right: 5px
}

.ip_list ul li:first-child .inner img {
    top: -3px
}

.ip_list ul li:last-child .inner img {
    top: -2px
}

.ip_list ul li .inner h5 {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px
}

.whyus_section {
    background-color: #00a950;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 30px;
    margin: 1px 0 30px
}

.whyus_section h2 {
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
    font-size: 44px
}

.whyus_section ul {
    display: inline-block;
    width: 100%;
    padding: 0 100px
}

.whyus_section ul li {
    float: left;
    width: 20%;
    padding: 0 10px;
    text-align: center;
    padding-bottom: 30px;
    list-style-type: none
}

.whyus_section ul li p {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    line-height: 24px
}

.whyus_section ul li .icon {
    padding-bottom: 20px
}

.ohn_section .container {
    padding: 0 30px
}

.ohn_section .inner {
    padding: 30px 170px 0
}

.ohn_section .inner h2 {
    text-align: center;
    color: #00a950;
    padding-bottom: 20px;
    font-size: 44px
}

.ohn_section .inner .block {
    text-align: center;
    padding-bottom: 30px
}

.ohn_section .inner .block .img_block {
    padding-bottom: 15px
}

.ohn_section .inner .block h3 {
    font-size: 18px;
    color: #00a950;
    text-transform: uppercase;
    padding-bottom: 10px
}

.ohn_section .inner .block p {
    font-size: 14px;
    color: #807e7e;
    padding-bottom: 15px
}

.ohn_section .inner .block .btn {
    border-radius: 4px;
    background-color: #024b59;
    font-size: 14px;
    line-height: 40px
}

.ohn_section .inner .block .btn:hover {
    background-color: #00a950
}

.patientstory_section {
    padding: 30px 0
}

.patientstory_section .container {
    max-width: 1170px;
    width: 100%
}

.patientstory_section h2 {
    text-align: center;
    color: #00a950;
    padding-bottom: 20px;
    font-size: 44px
}

.patientstory_section p {
    text-align: center;
    color: #024b59;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 20px
}

.pslarge_slide {
    margin-bottom: -1px
}

.pslarge_slide .slides>li a {
    position: relative;
    float: left;
    width: 100%
}

.pslarge_slide .flex-direction-nav a:before {
    content: "\C3\AF\C2\81\E2\20AC\153";
    font-size: 30px
}

.pslarge_slide .flex-direction-nav a.flex-next:before {
    content: "\C3\AF\C2\81\E2\20AC\9D"
}

.pslarge_slide .flex-direction-nav a:hover:before {
    color: #fff
}

.pslarge_slide .slides>li a .overlay {
    position: absolute;
    left: 0;
    top: 50%;
    padding: 0;
    width: 100%;
    margin: -65px 0 0;
    text-align: center
}

.pslarge_slide .slides>li a .overlay .fa {
    color: #fff;
    font-size: 100px;
    display: inline-block;
    padding-bottom: 10px
}

.pslarge_slide .slides>li a .overlay p {
    color: #fff;
    font-size: 18px
}

.psthumb_slide {
    float: right;
    width: 100%;
    margin-top: 0;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 0
}

.psthumb_slide .flex-direction-nav a:before {
    color: #fff;
    position: static;
    margin: 0
}

.psthumb_slide .flex-direction-nav a:hover:before {
    border-color: #f80609
}

.psthumb_slide .flex-direction-nav {
    width: 100%;
    position: relative
}

.psthumb_slide .flex-direction-nav li {
    width: 40px;
    position: absolute;
    left: 0;
    z-index: 9;
    top: -50px
}

.psthumb_slide .flex-direction-nav li:last-child {
    right: 0;
    left: auto
}

.psthumb_slide .flex-direction-nav li a {
    float: left;
    width: 100%;
    position: static;
    height: auto
}

.psthumb_slide .slides>li {
    text-align: center;
    line-height: 70px;
    cursor: pointer;
    color: #a5c8be;
    font-size: 18px;
    border-top: 4px solid transparent;
    position: relative
}

.psthumb_slide .slides>li:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    border-style: solid;
    border-width: 10px 10px 0;
    border-color: #33e18d transparent transparent;
    margin-left: -10px;
    opacity: 0
}

.psthumb_slide .slides>li.flex-active-slide {
    color: #fff;
    border-top-color: #33e18d
}

.psthumb_slide .slides>li.flex-active-slide:before {
    opacity: 1
}

.psthumb_slide .flex-viewport {
    padding: 0 60px
}

.psthumb_slide .flex-direction-nav a:before {
    content: "\C3\AF\C2\81\E2\20AC\153"
}

.psthumb_slide .flex-direction-nav a.flex-next:before {
    content: "\C3\AF\C2\81\E2\20AC\9D"
}

.procedure_section .container {
    padding: 0 30px
}

.procedure_section .inner {
    padding: 30px 35px
}

.procedure_section .inner h2 {
    text-align: center;
    color: #00a950;
    padding-bottom: 30px;
    font-size: 44px
}

.procedure_section .inner h2 a {
    line-height: 38px;
    min-width: 120px;
    background-color: #024b59;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 5px;
    position: relative;
    top: -5px
}

.procedure_carousel .item {
    text-align: center
}

.procedure_carousel .item .icon {
    display: inline-block;
    padding-bottom: 10px
}

.procedure_carousel .item .icon>img {
    width: auto
}

.procedure_carousel .item h4 {
    color: #656565;
    font-size: 16px;
    text-transform: uppercase
}

.procedure_carousel .owl-nav [class*=owl-] {
    color: rgba(72,72,72,.4)
}

.procedure_carousel .owl-nav [class*=owl-] .fa {
    font-size: 36px
}

.procedure_carousel {
    padding: 0 60px
}

.free_form_section {
    padding: 30px 0
}

.free_form_section .container {
    padding: 0
}

.free_form_section h2 {
    text-align: center;
    color: #00a950;
    padding-bottom: 20px;
    font-size: 44px
}

.free_form_section .inner {
    background-color: #25a858;
    padding: 20px 50px
}

.free_form_section .inner p {
    font-size: 14px;
    color: #fff;
    padding: 14px 0
}

.free_form_section form ul {
    display: inline-block;
    width: 100%
}

.free_form_section form ul li {
    float: left;
    width: 16.5%;
    padding: 0 10px 20px;
    position: relative;
    list-style-type: none
}

.free_form_section form ul li:nth-last-child(2) {
    width: 33%
}

.free_form_section form ul li:nth-last-child(2) .relative {
    min-height: 40px
}

.free_form_section form ul li:last-child {
    width: 50%
}

.free_form_section form ul li .form-control {
    background-color: transparent;
    color: #fff;
    border: 1px solid hsla(0,0%,100%,.5);
    height: 40px
}

.free_form_section form ul li .form-control::-moz-placeholder {
    opacity: 1;
    color: #fff
}

.free_form_section form ul li .form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #fff
}

.free_form_section form ul li .col-half {
    width: 50%;
    float: left
}

.free_form_section form ul li .col-half:first-child {
    padding-right: 10px
}

.free_form_section form ul li .col-half:last-child {
    padding-left: 10px
}

.free_form_section form ul li .last_li {
    position: relative;
    padding-right: 170px
}

.free_form_section form ul li .last_li .btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    padding: 0 10px;
    line-height: 40px;
    background-color: #ed1c24;
    border-radius: 4px;
    font-size: 14px
}

.free_form_section form ul li .styled_select:after {
    line-height: 34px;
    content: "\C3\AF\E2\20AC\17E\E2\20AC\A1";
    color: #fff;
    font-size: 22px
}

.free_form_section form ul li input[type=file] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 100%
}

.free_form_section form ul li .upload_btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    border: 1px solid hsla(0,0%,100%,.5);
    color: #fff;
    pointer-events: none;
    padding: 10px 10px 0
}

.free_form_section form ul li .upload_btn .fa {
    float: right;
    font-size: 18px
}

.free_form_section form ul li .relative {
    padding-left: 50px;
    min-height: 40px
}

.free_form_section form ul li .relative .num {
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid hsla(0,0%,100%,.5);
    width: 40px;
    line-height: 38px;
    color: #fff;
    text-align: center
}

.foreplan_section {
    padding: 30px 0 60px
}

.foreplan_section .container {
    max-width: 1400px
}

.foreplan_section .inner {
    border: 1px dashed #00a950;
    padding: 0 30px
}

.foreplan_section .heading {
    text-align: center;
    padding-bottom: 30px;
    margin-top: -25px
}

.foreplan_section .heading h2 {
    display: inline-block;
    background-color: #fff;
    color: #00a950;
    font-size: 44px
}

.foreplan_section .block {
    position: relative;
    padding: 0 15px;
    margin-bottom: -20px
}

.foreplan_section .block .number {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    line-height: 46px;
    text-align: center;
    font-size: 27px;
    color: #00a950;
    font-weight: 300;
    border: 2px solid #656565;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 3px 3px 0 rgba(0,0,0,.2)
}

.foreplan_section .block .img_block {
    max-width: 230px;
    width: 100%;
    padding-bottom: 5px
}

.foreplan_section .block p {
    font-size: 18px;
    line-height: 24px;
    color: #00a950;
    padding-bottom: 10px
}

.foreplan_section .block .btn {
    border-radius: 4px;
    min-width: 210px;
    font-size: 14px;
    font-weight: 300
}

.faq_section .container {
    padding: 0 15px;
    max-width: 1320px
}

.faq_section .heading {
    display: inline-block;
    width: 100%;
    padding-bottom: 10px
}

.faq_section h2 {
    color: #00a950;
    font-size: 44px;
    float: left
}

.search_box {
    float: right;
    padding-top: 10px
}

.search_box .fa {
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    color: #019f48;
    font-size: 16px;
    width: 40px;
    line-height: 36px
}

.search_box .form-control {
    border: none;
    background-color: #e9e9e9;
    height: 36px;
    border-radius: 4px;
    padding: 0 50px 0 40px
}

.search_box .btn {
    border-radius: 4px;
    line-height: 36px;
    width: 50px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0
}

.faq_section .panel-group {
    border-bottom: 1px solid #6b6b6b;
    margin-bottom: 60px
}

.faq_section .panel-group .panel {
    border-radius: 0;
    border-bottom: none;
    border-color: #6b6b6b;
    border-left: none;
    border-right: none
}

.faq_section .panel-default>.panel-heading {
    padding: 0;
    background-color: #fff;
    border: none
}

.faq_section .panel-title {
    margin-bottom: 0
}

.faq_section .panel-title>a {
    display: block;
    position: relative;
    padding: 20px 40px 20px 0;
    font-size: 14px;
    color: #000
}

.faq_section .panel-title>a span {
    color: #25a858;
    text-decoration: underline
}

.faq_section .panel-title>a .fa {
    position: absolute;
    right: 0;
    top: 5px;
    width: 40px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #019f48
}

.faq_section .panel-group .panel+.panel {
    margin-top: 0
}

.faq_section .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top: none;
    padding-left: 0
}

.faq_section p {
    padding-bottom: 15px;
    font-size: 14px;
    color: #313131;
    line-height: 20px
}

.cscd_section {
    position: relative;
    z-index: 9
}

.cscd_section .container {
    padding: 0 30px;
    max-width: 100%;
    width: 100%
}

.cscd_section .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 20px 5px;
    width: 100%;
    z-index: 99
}

.cscd_section .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding-left: 0;
    height: 46px;
    letter-spacing: 1px;
    color: #fff;
    font-family: FrutigerLTStd55Roman
}

.cscd_section .form-control::-moz-placeholder {
    opacity: 1;
    color: #fff
}

.cscd_section .form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #fff
}

.cscd_section .input-group-btn:last-child>.btn {
    margin-left: 10px;
    border-radius: 4px;
    background: #f87a2f;
    margin-top: 3px;
    color: #fff;
    border: 1px solid #fff
}

.cscd_section .input-group-btn:last-child>.btn:hover {
    background-color: #fff;
    color: #f87a2f;
    border-color: #f87a2f
}

.owl-carousel .owl-item img.mobile_banner {
    display: none
}

header.stick .mainheader {
    position: fixed;
    top: 0;
    float: left;
    width: 100%;
    z-index: 99;
    background: #fff;
    border-bottom: 3px solid #00a950
}

.cardiology_section {
    padding: 45px 0 0
}

.cardiology_section .container {
    padding: 0 30px;
    max-width: 100%;
    width: 100%
}

.cardiology_section h1,.cardiology_section h2 {
    text-align: center;
    font-size: 44px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    padding: 12px 10px;
    font-family: frutiger_ce_55_romanregular
}

.cardiology_section h1 {
    margin: 0
}

.consultant_section .container {
    padding: 0 30px;
    max-width: 100%;
    width: 100%
}

.consultant_section .inner {
    padding: 0 80px;
    float: left;
    width: 100%
}

.consultant_section .inner h2 {
    text-align: center;
    color: #fff;
    padding: 20px 0;
    display: block;
    vertical-align: middle;
    font-size: 44px;
    margin: 0;
    font-family: frutiger_ce_55_romanregular
}

.consultant_section .inner h2 a {
    font-family: FrutigerLTStd55Roman;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    margin-left: 5px;
    position: relative;
    background-color: #f87a2f;
    border: 1px solid #fff;
    height: 42px;
    line-height: 42px;
    top: -10px
}

.consultant_section .inner h2 a:hover {
    color: #f87a2f;
    background-color: #fff;
    border: 1px solid #f87a2f
}

.consult_carousel .img_block {
    height: 220px;
    overflow: hidden
}

.consult_carousel .inner_item {
    padding: 10px 0 0;
    text-align: center
}

.consult_carousel .inner_item h3 {
    color: #00a950;
    font-size: 15px;
    min-height: 50px;
    line-height: 24px
}

.consult_carousel .inner_item h3,.consult_carousel .inner_item p {
    text-transform: uppercase;
    font-family: frutiger_ce_55_romanregular;
    margin: 0
}

.consult_carousel .inner_item p {
    color: #656565;
    font-size: 12px;
    line-height: 18px;
    padding-bottom: 10px;
    min-height: 75px
}

.consult_carousel .inner_item p span {
    display: block
}

.consult_carousel .inner_item .btn {
    background-color: #f87a2f;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    font-family: FrutigerLTStd55Roman;
    padding: 0 10px;
    height: 42px;
    line-height: 42px
}

.consult_carousel .inner_item .btn:hover {
    background-color: #fff;
    color: #f87a2f;
    border: 1px solid #f87a2f
}

.consult_carousel .owl-nav [class*=owl-] {
    color: #59c78d;
    top: 30%
}

.consult_carousel .owl-nav [class*=owl-] .fa {
    font-size: 36px
}

.consult_carousel .owl-nav .owl-prev {
    left: -40px
}

.consult_carousel .owl-nav .owl-next {
    right: -40px
}

.cmp_section {
    padding: 0;
    margin: 0 0 4px
}

.cmp_section .container {
    padding: 0 30px;
    max-width: 100%;
    width: 100%
}

.cmp_section .inner {
    padding: 20px 80px;
    background: #f3f3f3
}

.cmp_section .inner h2 {
    text-align: center;
    color: #00a950;
    padding: 0 0 20px;
    font-size: 44px;
    font-family: frutiger_ce_55_romanregular
}

.cmp_section .inner h2 a {
    font-family: FrutigerLTStd55Roman;
    font-size: 14px;
    margin-left: 10px;
    color: #fff;
    background-color: #f87a2f;
    height: 42px;
    line-height: 42px;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 0 10px
}

.cmp_section .inner h2 a:hover {
    color: #f87a2f;
    background-color: #fff;
    border: 1px solid #f87a2f
}

.cmp_carousel .item h3 {
    white-space: nowrap;
    width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #00a950;
    font-size: 18px;
    font-family: frutiger_ce_55_romanregular;
    line-height: 26px;
    letter-spacing: 1px
}

.cmp_carousel .item p {
    color: #656565;
    font-size: 16px;
    font-family: frutiger_ce_55_romanregular;
    line-height: 24px;
    padding-bottom: 0;
    margin: 0 0 15px
}

.cmp_carousel .item .btn {
    font-family: FrutigerLTStd55Roman;
    font-size: 14px;
    background-color: #f87a2f;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 0 10px;
    height: 42px;
    line-height: 42px;
    color: #fff
}

.cmp_carousel .item .btn:hover {
    background-color: #fff;
    border: 1px solid #f87a2f;
    color: #f87a2f
}

.cmp_carousel .owl-nav [class*=owl-] {
    color: #737373;
    top: 30%
}

.cmp_carousel .owl-nav [class*=owl-] .fa {
    font-size: 36px
}

.cmp_carousel .owl-nav .owl-prev {
    left: -40px
}

.cmp_carousel .owl-nav .owl-next {
    right: -40px
}

.cscdblog_section {
    padding: 0;
    margin: 0 0 4px
}

.cscdblog_section .container {
    padding: 0 30px;
    max-width: 100%;
    width: 100%
}

.cscdblog_section .inner h2 {
    text-align: center;
    margin: 0;
    color: #00a950;
    padding: 0 0 20px;
    font-size: 44px;
    font-family: frutiger_ce_55_romanregular
}

.cscdblog_section .inner h2 a {
    min-width: 120px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 5px;
    position: relative;
    font-family: FrutigerLTStd55Roman;
    background-color: #f87a2f;
    border: 1px solid #fff;
    line-height: 36px;
    top: 0;
    height: 42px;
    line-height: 42px;
    padding: 0 10px
}

.cscdblog_section .inner h2 a:hover {
    color: #f87a2f;
    background-color: #fff;
    border: 1px solid #f87a2f
}

.cscdblog_section .inner {
    background: #f3f3f3;
    padding: 10px 80px 20px
}

.cscdblog_section .row {
    margin-left: -10px;
    margin-right: -10px
}

.cscdblog_section .row .col-xs-12 {
    padding-left: 10px;
    padding-right: 10px
}

.cscdblog_section .blog_item .img_block {
    padding-bottom: 20px
}

.cscdblog_section .blog_item p {
    color: #656565;
    font-size: 16px;
    font-family: frutiger_ce_55_romanregular;
    line-height: normal;
    padding-bottom: 10px
}

.cscdblog_section .blog_item .btn {
    background-color: #f87a2f;
    border: 1px solid #fff;
    font-size: 14px;
    border-radius: 4px;
    font-family: FrutigerLTStd55Roman;
    padding: 0 10px;
    height: 42px;
    line-height: 42px;
    color: #fff
}

.cscdblog_section .blog_item .btn:hover {
    background-color: #fff;
    color: #f87a2f;
    border: 1px solid #f87a2f
}

.hb_section {
    position: relative
}

.hb_section .container {
    padding: 0 30px;
    width: 100%
}

.hb_section .ip_list {
    bottom: 45px
}

.hb_section .ip_list ul li .inner img {
    top: 0
}

.hb_carousel .owl-dots {
    position: absolute;
    right: 0;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 100
}

.hb_carousel .owl-dots .owl-dot {
    padding: 0 3px;
    display: inline-block
}

.hb_carousel .owl-dots .owl-dot span {
    margin: 0;
    border-radius: 0;
    height: 4px;
    width: 38px;
    background-color: hsla(0,0%,100%,0);
    float: left;
    border: 1px solid #fff
}

.hb_carousel .owl-dots .owl-dot.active span,.hb_carousel .owl-dots .owl-dot:hover span {
    background-color: #fff
}

.under_hbanner .container {
    padding: 0 30px;
    width: 100%
}

.under_hbanner .inner {
    text-align: center;
    margin-top: 1px;
    padding: 20px 80px 30px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover
}

.under_hbanner h1 {
    font-size: 44px;
    padding-bottom: 10px
}

.under_hbanner h1,.under_hbanner p {
    color: #fff;
    font-family: frutiger_ce_55_romanregular
}

.under_hbanner p {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 30px
}

.under_hbanner .inner ul {
    display: inline-block;
    width: 100%
}

.under_hbanner .inner ul li {
    float: left;
    color: #fff;
    font-family: frutiger_ce_55_romanregular;
    font-size: 18px;
    position: relative;
    padding-left: 25px;
    text-align: left;
    padding-right: 20px;
    list-style: none;
    width: 35%
}

.under_hbanner .inner ul li:nth-child(2) {
    width: 30%
}

.under_hbanner .inner ul li a {
    color: #fff;
    font-size: 18px;
    font-family: frutiger_ce_55_romanregular
}

.under_hbanner .inner ul li a:hover {
    text-decoration: underline
}

.under_hbanner .inner ul li .fa {
    position: absolute;
    left: 0;
    top: 5px
}

.clinical_sp_section {
    padding: 20px 0
}

.clinical_sp_section .container {
    padding: 0 30px;
    max-width: inherit;
    width: 100%
}

.clinical_sp_section .inner {
    padding: 20px 50px
}

.clinical_sp_section .inner h2 {
    text-align: center;
    color: #00a950;
    padding: 0 0 20px;
    font-size: 44px;
    font-family: frutiger_ce_55_romanregular
}

.clinical_sp_section .inner h2 a {
    line-height: 14px;
    padding: 10px;
    background-color: #f87a2f;
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 5px;
    position: relative;
    top: -8px;
    font-family: FrutigerLTStd55Roman
}

.clinical_sp_section .inner h2 a:hover {
    background-color: #fff;
    border: 1px solid #f87a2f;
    color: #f87a2f
}

.clinicalsp_carousel .item {
    text-align: center
}

.clinicalsp_carousel .item p {
    color: #656565;
    font-size: 13px;
    font-family: frutiger_ce_55_romanregular;
    text-transform: uppercase
}

.clinicalsp_carousel .item .icon {
    display: inline-block;
    width: 92px;
    margin-bottom: 10px
}

.clinicalsp_carousel .owl-nav [class*=owl-] {
    color: #737373;
    top: 30%
}

.clinicalsp_carousel .owl-nav [class*=owl-] .fa {
    font-size: 36px
}

.clinicalsp_carousel .owl-nav .owl-prev {
    left: -30px
}

.clinicalsp_carousel .owl-nav .owl-next {
    right: -30px
}

.hb_consultant.consultant_section {
    padding: 0;
    margin: 4px 0 0
}

.hb_consultant .inner h2 a {
    top: -4px
}

.hb_consultant .inner h2 a:hover {
    background-color: #fff;
    border: 1px solid #f87a2f;
    color: #f87a2f
}

.hb_consultant .consult_carousel {
    padding-top: 0
}

.hb_consultant .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding-left: 0;
    height: 46px;
    letter-spacing: 1px;
    color: #fff;
    font-family: FrutigerLTStd55Roman
}

.hb_consultant .form-control::-moz-placeholder {
    opacity: 1;
    color: #fff
}

.hb_consultant .form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #fff
}

.hb_consultant .input-group-btn:last-child>.btn {
    margin-left: 10px;
    border-radius: 4px;
    margin-top: 3px;
    background-color: #f87a2f;
    border: 1px solid #fff
}

.hb_consultant .consult_carousel .owl-nav [class*=owl-] {
    top: 50%
}

.hb_consultant .consult_carousel .owl-nav .owl-prev {
    float: left
}

.hb_consultant .consult_carousel .owl-nav .owl-next {
    float: right
}

.hb_consultant .consult_carousel .inner_item p {
    padding-bottom: 0
}

.hb_consultant .consult_carousel .inner_item .btn {
    margin-top: 10px
}

.event_update_section {
    padding: 0!important;
    margin: 0 0 4px
}

.event_update_section .container {
    padding: 0 30px;
    max-width: 100%;
    width: 100%
}

.event_update_section .inner {
    background-color: #e8e8e8;
    padding: 20px 80px
}

.event_update_section .inner h2,.event_update_section h3 {
    text-align: center;
    font-size: 44px;
    padding-bottom: 20px;
    color: #024b59;
    font-family: frutiger_ce_55_romanregular
}

.update_list {
    display: inline-block;
    width: 100%
}

.update_list li {
    position: relative;
    padding-left: 190px;
    min-height: 200px;
    margin-bottom: 20px
}

.update_list li .img_block {
    position: absolute;
    left: 0;
    top: 0;
    width: 170px
}

.update_list li .cont h6 {
    color: #656565;
    font-weight: 300;
    font-size: 12px;
    padding-bottom: 10px
}

.update_list li .cont h4 {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 10px;
    white-space: nowrap;
    text-overflow: ellipsis
}

.update_list li .cont h4,.update_list li .cont p {
    font-family: frutiger_ce_55_romanregular;
    color: #656565;
    overflow: hidden
}

.update_list li .cont p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3
}

.update_list li .btn {
    background-color: transparent;
    border: 1px solid #00a950;
    font-size: 14px;
    border-radius: 4px;
    font-family: FrutigerLTStd55Roman;
    padding: 0 10px;
    line-height: 30px;
    color: #00a950
}

.update_list li .btn:hover {
    background-color: #00a950;
    color: #fff
}

.event_update_section .left {
    border-right: 3px solid #00a950;
    padding: 20px 90px 20px 15px
}

.event_update_section .right {
    padding: 20px 15px 20px 93px;
    border-left: 3px solid #00a950;
    margin-left: -3px
}

.pt_block {
    border: 1px solid #00a950;
    padding: 20px 10px 10px 190px;
    position: relative;
    min-height: 180px;
    margin-bottom: 40px
}

.pt_block .user_block {
    position: absolute;
    left: 0;
    top: -35px;
    width: 180px;
    text-align: center;
    padding-left: 50px
}

.pt_block .user_block .img_block {
    display: inline-block;
    width: 105px;
    overflow: hidden;
    border-radius: 100%
}

.pt_block .user_block .img_block>img {
    border-radius: 100%
}

.ptestimonial_carousel .item {
    padding-top: 35px;
    padding-right: 22px
}

.pt_block .user_block h4 {
    font-size: 16px;
    line-height: 20px;
    color: #656565;
    text-transform: uppercase;
    font-family: FrutigerLTStd55Roman;
    padding-top: 10px
}

.pt_block .user_block h4 span {
    font-size: 14px;
    display: block
}

.pt_block p {
    font-size: 18px;
    line-height: 26px;
    color: #656565;
    font-style: italic;
    font-family: frutiger_ce_55_romanregular
}

.pt_block:before {
    position: absolute;
    left: 10px;
    top: -19px
}

.pt_block:after {
    position: absolute;
    right: -20px;
    bottom: 10px
}

.ptestimonial_carousel .owl-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 100
}

.ptestimonial_carousel .owl-dots .owl-dot {
    padding: 0 3px;
    display: inline-block
}

.ptestimonial_carousel .owl-dots .owl-dot span {
    margin: 0;
    border-radius: 100%;
    height: 10px;
    width: 10px;
    background-color: #f87a2f;
    float: left
}

.ptestimonial_carousel .owl-dots .owl-dot.active span,.ptestimonial_carousel .owl-dots .owl-dot:hover span {
    background-color: #024b59
}

.cardiology_section h3 {
    text-align: center;
    font-size: 44px;
    padding-bottom: 20px;
    color: #024b59;
    font-family: frutiger_ce_55_romanregular
}

.btc_btns {
    text-align: center;
    border-top: 1px solid rgba(57,57,57,.3);
    padding: 30px 0
}

.btc_btns,.btc_btns>ul {
    display: block;
    overflow: hidden
}

.btc_btns>ul li {
    float: left;
    padding: 0 25px;
    width: 25%;
    list-style-type: none
}

.btc_btns>ul li a {
    float: left;
    width: 100%;
    line-height: 50px;
    background-color: #024b59;
    color: #fff;
    border-radius: 4px;
    font-family: FrutigerLTStd55Roman;
    font-size: 19px
}

.btc_btnnew {
    text-align: center;
    padding: 10px 0;
    margin-top: -29px
}

.btc_btnnew,.btc_btnnew>ul {
    display: block;
    overflow: hidden
}

.btc_btnnew>ul li {
    float: left;
    padding: 0 9px;
    width: 25%;
    list-style-type: none
}

.btc_btnnew>ul li a {
    float: left;
    width: 100%;
    line-height: 50px;
    background-color: #024b59;
    color: #fff;
    border-radius: 4px;
    font-family: FrutigerLTStd55Roman;
    font-size: 19px
}

.hb_carousel .item {
    position: relative
}

.hb_carousel .item .banner_text {
    position: absolute;
    left: 0;
    top: 50%;
    padding-left: 70px;
    margin-top: -80px
}

.hb_carousel .item .banner_text h2 {
    font-size: 53px;
    color: #00a950;
    font-family: frutiger_ce_55_romanregular;
    padding-bottom: 10px;
    line-height: 50px
}

.hb_carousel .item .banner_text p {
    color: #024b59;
    font-size: 28px;
    font-family: frutiger_ce_55_romanregular
}

.searchf_section .form-control {
    background-color: transparent;
    border: none;
    border: 0;
    border-color: none;
    border-bottom: 1px solid #fff;
    padding: 0;
    height: 45px;
    letter-spacing: 1px;
    color: #fff;
    font-family: FrutigerLTStd55Roman;
    box-shadow: inherit
}

.searchf_section .form-control::-moz-placeholder {
    color: #fff
}

.searchf_section .form-control::-webkit-input-placeholder {
    color: #fff
}

.searchf_section .input-group-btn:last-child>.btn {
    margin-left: 20px;
    border-radius: 4px;
    margin-top: 28px;
    background-color: #f87a2f;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-size: 17px
}

.searchf_section .input-group-btn:last-child>.btn i {
    margin-left: 5px;
    position: relative;
    top: -1px
}

.searchf_section .input-group-btn:last-child>.btn:hover {
    background-color: #fff;
    color: #f87a2f;
    border: 1px solid #f87a2f
}

.searchf_section {
    margin: 4px 0;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 15px;
    float: left;
    width: 100%
}

.searchf_section .inner {
    text-align: center;
    padding: 20px 0;
    background-image: none;
    float: left;
    width: 100%
}

.csp_section {
    padding: 0;
    margin: 0 0 4px;
    float: left;
    width: 100%
}

.csp_section .container {
    padding: 0 30px;
    width: 100%
}

.csp_section .fullinner {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover
}

.csp_section .inner {
    max-width: 1580px;
    padding: 0 80px;
    position: relative;
    margin: 0 auto;
    width: 100%
}

.csp_section .mid_img {
    position: absolute;
    left: 50%;
    top: 30px;
    margin-left: -335px;
    width: 670px
}

.csp_section .mid_img>img {
    width: 100%
}

.csp_section .left_txt {
    float: left;
    width: 100%;
    padding-top: 150px
}

.csp_section .left_txt h2 {
    font-size: 70px;
    color: #fff;
    padding-bottom: 20px;
    font-family: frutiger_ce_55_romanregular
}

.csp_section .left_txt .btn_list2 {
    display: inline-block;
    padding-bottom: 15px;
    border: none
}

.csp_section .left_txt .btn_list2 li {
    float: left;
    padding-right: 15px
}

.csp_section .left_txt .btn_list2 li a {
    float: left;
    min-width: 105px;
    line-height: 36px;
    font-size: 14px;
    color: #fff;
    border: 2px solid #fff!important;
    border-radius: 4px!important;
    text-align: center;
    font-family: FrutigerLTStd55Roman;
    padding: 0
}

.csp_section .left_txt .btn_list2 li a:hover {
    background-color: #fff;
    color: #000
}

.csp_section .left_txt .btn_list2 li.active a {
    background-color: #fff!important;
    color: #000;
    border: 2px solid #fff!important;
    border-radius: 4px!important
}

.csp_section .left_txt p {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-family: FrutigerLTStd55Roman;
    padding-bottom: 0
}

.csp_section .left_txt .btn_list2 li:last-child {
    padding-right: 0
}

.csp_section .left_txt .form-group {
    padding-right: 50px
}

.csp_section .left_txt .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding-left: 0;
    height: 46px;
    letter-spacing: 1px;
    color: #fff;
    font-family: FrutigerLTStd55Roman
}

.csp_section .left_txt .form-control::-moz-placeholder {
    opacity: 1;
    color: #fff
}

.csp_section .left_txt .form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #fff
}

.right_txt {
    width: 320px;
    position: absolute;
    left: -350px;
    top: -35px;
    text-align: left;
    z-index: 90;
    transition: all .25s ease-in 0s;
    -webkit-transition: all .25s ease-in 0s;
    opacity: 0;
    visibility: hidden
}

.right_txt .inner_dd {
    width: 100%;
    border: 1px dashed #f87a2f;
    background-color: #195b68;
    max-height: 350px;
    overflow: hidden;
    overflow-y: auto
}

.right_txt:before {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f87a2f;
    position: absolute;
    right: -10px;
    top: 35px
}

.right_txt .inner_dd>ul {
    float: left;
    width: 100%;
    padding: 20px 0
}

.right_txt .inner_dd>ul>li {
    float: left;
    width: 100%;
    list-style: none
}

.right_txt .inner_dd>ul>li>a {
    float: left;
    width: 100%;
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    font-family: FrutigerLTStd55Roman;
    text-decoration: none
}

.right_txt .inner_dd>ul>li>a:hover {
    background-color: #f87a2f
}

.right_txt .inner_dd a.btn {
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #f87a2f;
    border: 1px solid #fff;
    font-family: FrutigerLTStd55Roman;
    line-height: 36px;
    margin-left: 20px;
    padding: 0 10px
}

.right_txt .inner_dd>ul>li>a:before,.right_txt .inner_dd a.btn:before {
    display: none
}

.right_txt p {
    color: #fff;
    background-color: #f87a2f;
    font-family: FrutigerLTStd55Roman;
    font-size: 18px;
    text-align: center;
    padding: 5px;
    display: none;
    border-radius: 5px 5px 0 0;
    margin: 0
}

.structure {
    text-align: center;
    position: relative;
    max-width: 695px;
    margin: auto
}

.structure>img {
    max-width: 410px;
    display: inline-block;
    width: 100%
}

.body_list {
    position: absolute;
    left: 0;
    top: 0
}

.body_list.right {
    left: auto;
    right: 0
}

.body_list>li {
    position: absolute;
    top: 0;
    list-style: none
}

.body_list>li:hover .right_txt {
    opacity: 1;
    visibility: visible;
    left: -360px
}

.body_list>li:hover>a {
    color: #f87a2f
}

.body_list.right .right_txt {
    right: -415px;
    left: auto;
    top: -30px
}

.body_list.right .right_txt:before {
    border-width: 10px 10px 10px 0;
    border-color: transparent #f87a2f transparent transparent;
    right: auto;
    top: 30px;
    left: -10px
}

.body_list.right>li:hover .right_txt {
    opacity: 1;
    visibility: visible;
    right: -405px;
    left: auto
}

.body_list>li>a {
    position: relative;
    color: #fff;
    font-family: FrutigerLTStd55Roman;
    font-size: 16px;
    transition: none
}

.body_list>li>a:hover {
    color: #f87a2f
}

.body_list>li>a>.txt {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .2s ease-in-out 0s;
    color: #fff
}

.body_list>li:hover>a .txt,.body_list>li>a:hover .txt {
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    top: -1px;
    left: -10px;
    color: #f87a2f
}

.structure.male .body_list.left>li.eyeMpointer {
    left: 70px;
    top: 48px
}

.structure.male .body_list.left>li.eyeMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/earMPointerImgWhite.png);
    position: absolute;
    right: -265px
}

.body_list.left>li.eyeMpointer>a:hover:before,.structure.male .body_list.left>li.eyeMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/eyeMpointerImgRed.png)
}

.structure.male .body_list.left>li.earMPointer {
    left: 50px;
    top: 65px
}

.structure.male .body_list.left>li.earMPointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/earMPointerImgWhite.png);
    position: absolute;
    right: -265px
}

.body_list.left>li.earMPointer>a:hover:before,.structure.male .body_list.left>li.earMPointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/earMPointerImgRed.png)
}

.structure.male .body_list.left>li.teethMpointer {
    left: 80px;
    top: 100px
}

.structure.male .body_list.left>li.teethMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/teethMpointerImgWhite.png);
    position: absolute;
    right: -260px;
    top: -14px
}

.body_list.left>li.teethMpointer>a:hover:before,.structure.male .body_list.left>li.teethMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/teethMpointerImgRed.png)
}

.structure.male .body_list.left>li.throatMpointer {
    left: 80px;
    top: 135px
}

.structure.male .body_list.left>li.throatMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/throatMpointerImgWhite.png);
    position: absolute;
    right: -260px;
    top: -23px
}

.body_list.left>li.throatMpointer>a:hover:before,.structure.male .body_list.left>li.throatMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/throatMpointerImgRed.png)
}

.structure.male .body_list.left>li.chestMpointer {
    left: 15px;
    top: 165px
}

.structure.male .body_list.left>li.chestMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/chestMpointerImgWhite.png);
    position: absolute;
    right: -305px;
    top: -2px
}

.body_list.left>li.chestMpointer>a:hover:before,.structure.male .body_list.left>li.chestMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/chestMpointerImgRed.png)
}

.structure.male .body_list.left>li.liverMpointer {
    left: 30px;
    top: 195px
}

.structure.male .body_list.left>li.liverMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/liverMpointerImgWhite.png);
    position: absolute;
    right: -303px;
    top: 0
}

.body_list.left>li.liverMpointer>a:hover:before,.structure.male .body_list.left>li.liverMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/liverMpointerImgRed.png)
}

.structure.male .body_list.left>li.handMpointer {
    left: -5px;
    top: 235px
}

.structure.male .body_list.left>li.handMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/handMpointerImgWhite.png);
    position: absolute;
    right: -250px;
    top: -2px
}

.body_list.left>li.handMpointer>a:hover:before,.structure.male .body_list.left>li.handMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/handMpointerImgRed.png)
}

.structure.male .body_list.left>li.kidneysMpointer {
    left: 55px;
    top: 265px
}

.structure.male .body_list.left>li.kidneysMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/kidneysMpointerImgWhite.png);
    position: absolute;
    right: -262px;
    top: 8px
}

.body_list.left>li.kidneysMpointer>a:hover:before,.structure.male .body_list.left>li.kidneysMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/kidneysMpointerImgRed.png)
}

.structure.male .body_list.left>li.lowerBackMpointer {
    left: 50px;
    top: 330px
}

.structure.male .body_list.left>li.lowerBackMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/lowerBackMpointerImgWhite.png);
    position: absolute;
    right: -285px;
    top: -7px
}

.body_list.left>li.lowerBackMpointer>a:hover:before,.structure.male .body_list.left>li.lowerBackMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/lowerBackMpointerImgRed.png)
}

.body_list.left>li.lowerBackMpointer>a:hover .txt,.structure.male .body_list.left>li.lowerBackMpointer:hover>a .txt {
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    top: -1px;
    left: -20px;
    color: #f87a2f
}

.structure.male .body_list.left>li.lowerBackMpointer .right_txt {
    left: -370px
}

.structure.male .body_list.left>li.lowerBackMpointer:hover .right_txt {
    left: -380px
}

.structure.male .body_list.left>li.lowerBackMpointer>a>.txt {
    white-space: nowrap
}

.structure.male .body_list.left>li.reproductiveMpointer {
    left: 55px;
    top: 365px
}

.structure.male .body_list.left>li.reproductiveMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/reproductiveMpointerImgWhite.png);
    position: absolute;
    right: -292px;
    top: -3px
}

.body_list.left>li.reproductiveMpointer>a:hover:before,.structure.male .body_list.left>li.reproductiveMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/reproductiveMpointerImgRed.png)
}

.body_list.left>li.reproductiveMpointer>a:hover .txt,.structure.male .body_list.left>li.reproductiveMpointer:hover>a .txt {
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    top: -1px;
    left: -20px;
    color: #f87a2f
}

.structure.male .body_list.left>li.reproductiveMpointer .right_txt {
    left: -370px
}

.structure.male .body_list.left>li.reproductiveMpointer:hover .right_txt {
    left: -380px
}

.structure.male .body_list.left>li.reproductiveMpointer>a>.txt {
    text-align: left;
    line-height: 16px
}

.structure.male .body_list.left>li.thighMpointer {
    left: 100px;
    top: 440px
}

.structure.male .body_list.left>li.thighMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    right: -205px;
    top: 0
}

.body_list.left>li.thighMpointer>a:hover:before,.structure.male .body_list.left>li.thighMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/thighMpointerImgRed.png)
}

.structure.male .body_list.left>li.footMpointer {
    left: 50px;
    top: 635px
}

.structure.male .body_list.left>li.footMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/footMpointerImgWhite.png);
    position: absolute;
    right: -265px;
    top: 8px
}

.body_list.left>li.footMpointer>a:hover:before,.structure.male .body_list.left>li.footMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/footMpointerImgRed.png)
}

.structure.male .body_list.right>li>a>.txt {
    left: auto;
    right: -40px
}

.body_list.right>li>a:hover .txt,.structure.male .body_list.right>li:hover>a .txt {
    left: auto;
    right: -50px
}

.structure.male .body_list.right>li.brainMpointer {
    left: -132px;
    top: 60px
}

.structure.male .body_list.right>li.brainMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/brainMpointerImgWhite.png);
    position: absolute;
    left: -210px;
    top: -22px;
    width: 200px
}

.body_list.right>li.brainMpointer>a:hover:before,.structure.male .body_list.right>li.brainMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/brainMpointerImgRed.png)
}

.structure.male .body_list.right>li.noseMpointer {
    left: -110px;
    top: 100px
}

.structure.male .body_list.right>li.noseMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/noseMpointerImgWhite.png);
    position: absolute;
    left: -235px;
    top: -23px;
    width: 182px
}

.body_list.right>li.noseMpointer>a:hover:before,.structure.male .body_list.right>li.noseMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/noseMpointerImgRed.png)
}

.structure.male .body_list.right>li.heartMpointer {
    left: -145px;
    top: 162px
}

.structure.male .body_list.right>li.heartMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    left: -170px;
    top: 0;
    width: 160px
}

.body_list.right>li.heartMpointer>a:hover:before,.structure.male .body_list.right>li.heartMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/heartMpointerImgRed.png)
}

.structure.male .body_list.right>li.lungMpointer {
    left: -143px;
    top: 197px
}

.structure.male .body_list.right>li.lungMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    left: -170px;
    top: 0;
    width: 160px
}

.body_list.right>li.lungMpointer>a:hover:before,.structure.male .body_list.right>li.lungMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/lungMpointerImgRed.png)
}

.structure.male .body_list.right>li.elbowMpointer {
    left: -105px;
    top: 240px
}

.structure.male .body_list.right>li.elbowMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    left: -170px;
    top: 0;
    width: 160px
}

.body_list.right li.elbowMpointer>a:hover:before,.structure.male .body_list.right>li.elbowMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgRed.png)
}

.structure.male .body_list.right>li.spineMpointer {
    left: -145px;
    top: 265px
}

.structure.male .body_list.right>li.spineMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/spineMpointerImgWhite.png);
    position: absolute;
    left: -210px;
    top: -20px;
    width: 200px
}

.body_list.right li.spineMpointer>a:hover:before,.structure.male .body_list.right>li.spineMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/spineMpointerImgRed.png)
}

.structure.male .body_list.right>li.stomachMpointer {
    left: -115px;
    top: 340px
}

.structure.male .body_list.right>li.stomachMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/brainMpointerImgWhite.png);
    position: absolute;
    left: -235px;
    top: -23px;
    width: 198px
}

.body_list.right li.stomachMpointer>a:hover:before,.structure.male .body_list.right>li.stomachMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/stomachMpointerImgRed.png)
}

.structure.male .body_list.right>li.hipMpointer {
    left: -92px;
    top: 372px
}

.structure.male .body_list.right>li.hipMpointer>a {
    min-width: 90px
}

.structure.male .body_list.right>li.hipMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/hipMpointerImgWhite.png);
    position: absolute;
    left: -195px;
    top: 0;
    width: 200px
}

.body_list.right li.hipMpointer>a:hover:before,.structure.male .body_list.right>li.hipMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/hipMpointerImgRed.png)
}

.structure.male .body_list.right>li.skinMpointer {
    left: -104px;
    top: 448px
}

.structure.male .body_list.right>li.skinMpointer>a {
    min-width: 90px
}

.structure.male .body_list.right>li.skinMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/hipMpointerImgWhite.png);
    position: absolute;
    left: -195px;
    top: 0;
    width: 200px
}

.body_list.right li.skinMpointer>a:hover:before,.structure.male .body_list.right>li.skinMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/hipMpointerImgRed.png)
}

.structure.male .body_list.right>li.kneeMpointer {
    left: -155px;
    top: 510px
}

.structure.male .body_list.right>li.kneeMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    left: -165px;
    top: 0;
    width: 160px
}

.body_list.right li.kneeMpointer>a:hover:before,.structure.male .body_list.right>li.kneeMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/kneeMpointerImgRed.png)
}

.structure.male .body_list.right>li.ankleMpointer {
    left: -105px;
    top: 600px
}

.structure.male .body_list.right>li.ankleMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/ankleMpointerImgWhite.png);
    position: absolute;
    left: -228px;
    top: 6px;
    width: 215px
}

.body_list.right li:nth-child(10)>a:hover:before,.structure.male .body_list.right>li.ankleMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/ankleMpointerImgRed.png)
}

.structure.female .body_list.left>li.eyeMpointer {
    left: 70px;
    top: 60px
}

.structure.female .body_list.left>li.eyeMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/earMPointerImgWhite.png);
    position: absolute;
    right: -265px
}

.body_list.left>li.eyeMpointer>a:hover:before,.structure.female .body_list.left>li.eyeMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/eyeMpointerImgRed.png)
}

.structure.female .body_list.left>li.earMPointer {
    left: 50px;
    top: 75px
}

.structure.female .body_list.left>li.earMPointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/earMPointerImgWhite.png);
    position: absolute;
    right: -265px
}

.body_list.left>li.earMPointer>a:hover:before,.structure.female .body_list.left>li.earMPointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/earMPointerImgRed.png)
}

.structure.female .body_list.left>li.teethMpointer {
    left: 80px;
    top: 110px
}

.structure.female .body_list.left>li.teethMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/teethMpointerImgWhite.png);
    position: absolute;
    right: -260px;
    top: -14px
}

.body_list.left>li.teethMpointer>a:hover:before,.structure.female .body_list.left>li.teethMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/teethMpointerImgRed.png)
}

.structure.female .body_list.left>li.throatMpointer {
    left: 80px;
    top: 145px
}

.structure.female .body_list.left>li.throatMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/throatMpointerImgWhite.png);
    position: absolute;
    right: -260px;
    top: -23px
}

.body_list.left>li.throatMpointer>a:hover:before,.structure.female .body_list.left>li.throatMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/throatMpointerImgRed.png)
}

.structure.female .body_list.left>li.chestMpointer {
    left: 0;
    top: 185px
}

.structure.female .body_list.left>li.chestMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/chestMpointerImgWhite.png);
    position: absolute;
    right: -315px;
    top: -2px
}

.body_list.left>li.chestMpointer>a:hover:before,.structure.female .body_list.left>li.chestMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/chestMpointerImgRed.png)
}

.structure.female .body_list.left>li.liverMpointer {
    left: 30px;
    top: 215px
}

.structure.female .body_list.left>li.liverMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/liverMpointerImgWhite.png);
    position: absolute;
    right: -303px;
    top: 0
}

.body_list.left>li.liverMpointer>a:hover:before,.structure.female .body_list.left>li.liverMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/liverMpointerImgRed.png)
}

.structure.female .body_list.left>li.handMpointer {
    left: -5px;
    top: 255px
}

.structure.female .body_list.left>li.handMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/handMpointerImgWhite.png);
    position: absolute;
    right: -250px;
    top: -2px
}

.body_list.left>li.handMpointer>a:hover:before,.structure.female .body_list.left>li.handMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/handMpointerImgRed.png)
}

.structure.female .body_list.left>li.kidneysMpointer {
    left: 55px;
    top: 280px
}

.structure.female .body_list.left>li.kidneysMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/kidneysMpointerImgWhite.png);
    position: absolute;
    right: -262px;
    top: 8px
}

.body_list.left>li.kidneysMpointer>a:hover:before,.structure.female .body_list.left>li.kidneysMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/kidneysMpointerImgRed.png)
}

.structure.female .body_list.left>li.lowerBackMpointer {
    left: 50px;
    top: 340px
}

.structure.female .body_list.left>li.lowerBackMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/lowerBackMpointerImgWhite.png);
    position: absolute;
    right: -285px;
    top: -7px
}

.body_list.left>li.lowerBackMpointer>a:hover:before,.structure.female .body_list.left>li.lowerBackMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/lowerBackMpointerImgRed.png)
}

.body_list.left>li.lowerBackMpointer>a:hover .txt,.structure.female .body_list.left>li.lowerBackMpointer:hover>a .txt {
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    top: -1px;
    left: -20px;
    color: #f87a2f
}

.structure.female .body_list.left>li.lowerBackMpointer .right_txt {
    left: -370px
}

.structure.female .body_list.left>li.lowerBackMpointer:hover .right_txt {
    left: -380px
}

.structure.female .body_list.left>li.lowerBackMpointer>a>.txt {
    white-space: nowrap
}

.structure.female .body_list.left>li.reproductiveMpointer {
    left: 55px;
    top: 380px
}

.structure.female .body_list.left>li.reproductiveMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/reproductiveMpointerImgWhite.png);
    position: absolute;
    right: -292px;
    top: -3px
}

.body_list.left>li.reproductiveMpointer>a:hover:before,.structure.female .body_list.left>li.reproductiveMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/reproductiveMpointerImgRed.png)
}

.body_list.left>li.reproductiveMpointer>a:hover .txt,.structure.female .body_list.left>li.reproductiveMpointer:hover>a .txt {
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    top: -1px;
    left: -20px;
    color: #f87a2f
}

.structure.female .body_list.left>li.reproductiveMpointer .right_txt {
    left: -370px
}

.structure.female .body_list.left>li.reproductiveMpointer:hover .right_txt {
    left: -380px
}

.structure.female .body_list.left>li.reproductiveMpointer>a>.txt {
    text-align: left;
    line-height: 16px
}

.structure.female .body_list.left>li.thighMpointer {
    left: 100px;
    top: 440px
}

.structure.female .body_list.left>li.thighMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    right: -205px;
    top: 0
}

.body_list.left>li.thighMpointer>a:hover:before,.structure.female .body_list.left>li.thighMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/thighMpointerImgRed.png)
}

.structure.female .body_list.left>li.footMpointer {
    left: 50px;
    top: 660px
}

.structure.female .body_list.left>li.footMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/footMpointerImgWhite.png);
    position: absolute;
    right: -265px;
    top: 8px
}

.body_list.left>li.footMpointer>a:hover:before,.structure.female .body_list.left>li.footMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/footMpointerImgRed.png)
}

.structure.female .body_list.right>li>a>.txt {
    left: auto;
    right: -40px
}

.body_list.right>li>a:hover .txt,.structure.female .body_list.right>li:hover>a .txt {
    left: auto;
    right: -50px
}

.structure.female .body_list.right>li.brainMpointer {
    left: -132px;
    top: 70px
}

.structure.female .body_list.right>li.brainMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/brainMpointerImgWhite.png);
    position: absolute;
    left: -210px;
    top: -22px;
    width: 200px
}

.body_list.right>li.brainMpointer>a:hover:before,.structure.female .body_list.right>li.brainMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/brainMpointerImgRed.png)
}

.structure.female .body_list.right>li.noseMpointer {
    left: -110px;
    top: 112px
}

.structure.female .body_list.right>li.noseMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/noseMpointerImgWhite.png);
    position: absolute;
    left: -235px;
    top: -23px;
    width: 182px
}

.body_list.right>li.noseMpointer>a:hover:before,.structure.female .body_list.right>li.noseMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/noseMpointerImgRed.png)
}

.structure.female .body_list.right>li.heartMpointer {
    left: -145px;
    top: 172px
}

.structure.female .body_list.right>li.heartMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    left: -170px;
    top: 0;
    width: 160px
}

.body_list.right>li.heartMpointer>a:hover:before,.structure.female .body_list.right>li.heartMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/heartMpointerImgRed.png)
}

.structure.female .body_list.right>li.lungMpointer {
    left: -155px;
    top: 215px
}

.structure.female .body_list.right>li.lungMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    left: -170px;
    top: 0;
    width: 160px
}

.body_list.right>li.lungMpointer>a:hover:before,.structure.female .body_list.right>li.lungMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/lungMpointerImgRed.png)
}

.structure.female .body_list.right>li.elbowMpointer {
    left: -100px;
    top: 250px
}

.structure.female .body_list.right>li.elbowMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    left: -170px;
    top: 0;
    width: 160px
}

.body_list.right li.elbowMpointer>a:hover:before,.structure.female .body_list.right>li.elbowMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgRed.png)
}

.structure.female .body_list.right>li.spineMpointer {
    left: -150px;
    top: 277px
}

.structure.female .body_list.right>li.spineMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/spineMpointerImgWhite.png);
    position: absolute;
    left: -210px;
    top: -20px;
    width: 200px
}

.body_list.right li.spineMpointer>a:hover:before,.structure.female .body_list.right>li.spineMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/spineMpointerImgRed.png)
}

.structure.female .body_list.right>li.stomachMpointer {
    left: -115px;
    top: 355px
}

.structure.female .body_list.right>li.stomachMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/brainMpointerImgWhite.png);
    position: absolute;
    left: -235px;
    top: -23px;
    width: 198px
}

.body_list.right li.stomachMpointer>a:hover:before,.structure.female .body_list.right>li.stomachMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/stomachMpointerImgRed.png)
}

.structure.female .body_list.right>li.hipMpointer {
    left: -92px;
    top: 390px
}

.structure.female .body_list.right>li.hipMpointer>a {
    min-width: 90px
}

.structure.female .body_list.right>li.hipMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/hipMpointerImgWhite.png);
    position: absolute;
    left: -195px;
    top: 0;
    width: 200px
}

.body_list.right li.hipMpointer>a:hover:before,.structure.female .body_list.right>li.hipMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/hipMpointerImgRed.png)
}

.structure.female .body_list.right>li.skinMpointer {
    left: -99px;
    top: 462px
}

.structure.female .body_list.right>li.skinMpointer>a {
    min-width: 90px
}

.structure.female .body_list.right>li.skinMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/hipMpointerImgWhite.png);
    position: absolute;
    left: -195px;
    top: 0;
    width: 200px
}

.body_list.right li.skinMpointer>a:hover:before,.structure.female .body_list.right>li.skinMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/hipMpointerImgRed.png)
}

.structure.female .body_list.right>li.kneeMpointer {
    left: -155px;
    top: 530px
}

.structure.female .body_list.right>li.kneeMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/elbowMpointerImgWhite.png);
    position: absolute;
    left: -165px;
    top: 0;
    width: 160px
}

.body_list.right li.kneeMpointer>a:hover:before,.structure.female .body_list.right>li.kneeMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/kneeMpointerImgRed.png)
}

.structure.female .body_list.right>li.ankleMpointer {
    left: -105px;
    top: 630px
}

.structure.female .body_list.right>li.ankleMpointer>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/ankleMpointerImgWhite.png);
    position: absolute;
    left: -228px;
    top: 6px;
    width: 215px
}

.body_list.right li:nth-child(10)>a:hover:before,.structure.female .body_list.right>li.ankleMpointer:hover>a:before {
    content: url(https://d3frl090092vlr.cloudfront.net/revised/images/ankleMpointerImgRed.png)
}

.forOtherProTxt {
    float: left;
    width: 100%;
    position: relative;
    bottom: 40px;
    padding-left: 15px;
    font-family: FrutigerLTStd55Roman;
    font-size: 20px;
    color: #fff
}

.forOtherProTxt a {
    font-family: frutiger_boldregular;
    color: #f87a2f;
    font-weight: 700;
    text-decoration: underline
}

.forOtherProTxt a:hover {
    text-decoration: none;
    color: #f87a2f
}

.multiFunctionPopup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1,33,39,.9);
    display: none
}

.multiFunctionPopup .inner {
    height: 100%
}

.multiFunctionPopup .inner .row {
    height: 100%;
    position: relative
}

.multiFunctionMain {
    position: absolute;
    width: 400px;
    border: 1px dashed #f87a2f;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    top: 50%;
    left: 15%;
    background: #0f5866;
    background: linear-gradient(180deg,#0f5866 0,#012f38)
}

.multiFunctionMain h2 {
    font-family: frutiger_boldregular;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: #f87a2f;
    padding: 20px;
    margin: 0
}

.multiFunctionMain ul {
    padding: 10px 20px;
    margin: 0;
    list-style: none
}

.multiFunctionMain li a {
    font-family: FrutigerLTStd55Roman;
    color: #fff;
    font-size: 16px;
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid #427b86
}

.multiFunctionMain li a:hover {
    color: #f87a2f
}

.multiFunctionMain li:last-child a {
    border-bottom: 0
}

.multiFunctionMain span {
    position: absolute;
    top: 18px;
    right: 20px
}

.kyc_section {
    padding-top: 0
}

.kyc_section .container {
    padding: 0 30px;
    max-width: 1580px;
    width: 100%
}

.kyc_section .inner {
    background: #f3f3f3;
    padding: 20px 80px
}

.kyc_section h2 {
    text-align: center;
    color: #024b59;
    font-size: 44px;
    padding-bottom: 20px
}

.kyc_section .img_block {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 40px
}

.kyc_section .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #03aa70;
    padding: 0 40px 0 0;
    height: 40px;
    letter-spacing: 1px;
    color: #1f1f1f;
    font-family: FrutigerLTStd55Roman
}

.kyc_section .form-control::-moz-placeholder {
    opacity: 1;
    color: #1f1f1f
}

.kyc_section .form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #1f1f1f
}

.kyc_section .btn {
    border-radius: 0;
    background-color: transparent;
    border: none;
    color: #03aa70;
    padding: 0;
    width: 40px;
    line-height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px
}

.mmh_section {
    padding-top: 0;
    margin: 4px 0
}

.mmh_section .container {
    padding: 0 30px;
    width: 100%
}

.mmh_section .inner {
    padding: 20px 80px 0;
    background-color: #f3f3f3
}

.mmh_section h2 {
    font-family: frutiger_ce_55_romanregular;
    text-align: center;
    color: #024b59;
    font-size: 44px;
    padding-bottom: 20px;
    margin: 0
}

.mmh_block {
    padding-bottom: 30px
}

.mmh_block .img_block {
    position: relative;
    padding-bottom: 10px
}

.mmh_block .img_block .play_btn {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    font-size: 50px;
    width: 50px;
    line-height: 50px;
    margin: -25px 0 0 -25px
}

.mmh_block h3 {
    margin-bottom: 0
}

.mmh_block h3,.mmh_block h4 {
    font-size: 18px;
    color: #656565;
    font-family: frutiger_ce_55_romanregular;
    line-height: 20px
}

.mmh_block h4 {
    padding-bottom: 10px
}

.mmh_block h4 span {
    font-size: 14px;
    display: block
}

.mmh_block p {
    font-size: 14px;
    line-height: 16px;
    color: #656565;
    font-family: frutiger_ce_55_romanregular
}

.ps_section {
    padding-top: 0;
    margin: 0 0 4px
}

.ps_section .container {
    padding: 0 30px;
    max-width: 100%;
    width: 100%
}

.ps_section .inner {
    padding: 20px 80px 30px;
    background-color: #024754
}

.ps_section h2 {
    font-family: frutiger_ce_55_romanregular;
    text-align: center;
    color: #fff;
    font-size: 44px
}

.ps_section .pt_block {
    border: 1px solid #fff;
    padding: 20px 10px 10px 200px;
    position: relative;
    min-height: 180px;
    margin-bottom: 0
}

.ps_section .pt_block .user_block {
    position: absolute;
    left: 0;
    top: -35px;
    width: 180px;
    text-align: center;
    padding-left: 50px
}

.ps_section .pt_block .user_block .img_block {
    display: inline-block;
    width: 105px;
    overflow: hidden;
    border-radius: 100%
}

.ps_section .pt_block .user_block .img_block>img {
    border-radius: 100%
}

.pspeak_carousel1 .item,.pspeak_carousel .item {
    padding-top: 35px;
    padding-right: 22px
}

.ps_section .pt_block .user_block h4 {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    text-transform: uppercase;
    font-family: FrutigerLTStd55Roman;
    padding-top: 10px
}

.ps_section .pt_block .user_block h4 span {
    font-size: 15px;
    display: block
}

.ps_section .pt_block p {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    font-style: italic;
    font-family: frutiger_ce_55_romanregular
}

.ps_section .pt_block:before {
    position: absolute;
    left: 10px;
    top: -19px
}

.ps_section .pt_block:after {
    position: absolute;
    right: -20px;
    bottom: 10px
}

.pspeak_carousel .owl-dots {
    width: 100%;
    text-align: center;
    z-index: 100;
    padding-top: 20px
}

.pspeak_carousel .owl-dots .owl-dot {
    padding: 0 3px;
    display: inline-block
}

.pspeak_carousel .owl-dots .owl-dot span {
    margin: 0;
    border-radius: 100%;
    height: 10px;
    width: 10px;
    background-color: #f87a2f;
    float: left
}

.pspeak_carousel1 .owl-dots {
    width: 100%;
    text-align: center;
    z-index: 100;
    padding-top: 20px
}

.pspeak_carousel1 .owl-dots .owl-dot {
    padding: 0 3px;
    display: inline-block
}

.pspeak_carousel1 .owl-dots .owl-dot span {
    margin: 0;
    border-radius: 100%;
    height: 10px;
    width: 10px;
    background-color: #f87a2f;
    float: left
}

.pspeak_carousel1 .owl-dots .owl-dot.active span,.pspeak_carousel1 .owl-dots .owl-dot:hover span,.pspeak_carousel .owl-dots .owl-dot.active span,.pspeak_carousel .owl-dots .owl-dot:hover span {
    background-color: #fff
}

.nnm_section {
    padding-bottom: 45px
}

.nnm_section .inner {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat
}

.nnm_section .inner h2,.nnm_section h3 {
    color: #fff
}

.nnm_section .update_list li {
    padding-left: 0;
    float: left;
    width: 100%;
    min-height: inherit;
    margin-bottom: 40px
}

.nnm_section .update_list li .img_block {
    width: 200px;
    height: 150px;
    overflow: hidden;
    float: left;
    position: relative
}

.nnm_section .update_list li .cont {
    width: calc(100% - 220px);
    float: right;
    position: relative
}

.nnm_section .update_list li .cont h6 {
    color: #fff;
    margin: 0
}

.nnm_section .update_list li .cont h4 {
    color: #fff
}

.nnm_section .update_list li .cont p {
    color: #fff;
    margin: 0
}

.nnm_section .update_list li .btn {
    background-color: #f87a2f;
    color: #fff;
    border: 1px solid #fff;
    height: 42px;
    line-height: 42px
}

.nnm_section .update_list li .btn:hover {
    background-color: #fff;
    color: #f87a2f;
    border: 1px solid #f87a2f
}

.nnm_section .left {
    border-right: 1px solid #fff
}

.nnm_section .right {
    margin-left: -1px;
    border-left: 1px solid #fff
}

.nnm_section .video_block {
    position: relative
}

.nnm_section .video_block>img {
    width: 100%
}

.nnm_section .video_block iframe {
    width: 100%;
    height: 220px
}

.nnm_section .video_block .play_btn {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    font-size: 50px;
    width: 50px;
    line-height: 50px;
    margin: -25px 0 0 -25px
}

.nnm_section .right h4 {
    font-size: 18px;
    padding: 10px 0
}

.nnm_section .right h4,.nnm_section .right p {
    color: #fff;
    font-family: frutiger_ce_55_romanregular
}

.nnm_section .right p {
    font-size: 14px;
    line-height: 16px;
    padding-bottom: 10px
}

.nnm_section .right .btn {
    border-radius: 4px;
    border: 1px solid #fff;
    background-color: #f87a2f;
    color: #fff;
    line-height: 36px;
    font-size: 14px;
    margin-top: 10px
}

.request_app {
    margin-top: 20px
}

.get_estimate,.request_app {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 199
}

.get_estimate {
    margin-top: -110px
}

.raa_header {
    background: #021f38;
    width: 100%;
    min-height: 300px;
    padding-top: 20px
}

.raa_header .container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px
}

.dr_block {
    float: left;
    position: relative;
    padding-left: 170px;
    padding-top: 15px;
    width: 75%
}

.dr_block .dr_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 150px
}

.dr_block .dr_img>img {
    width: 100%;
    border-radius: 100%;
    height: 100%
}

.dr_block h1,.dr_block h2 {
    color: #fff;
    font-size: 33px;
    font-weight: 700;
    padding-bottom: 5px;
    margin: 0
}

.designation {
    position: relative;
    padding-left: 0;
    padding-top: 5px
}

.designation>span {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    position: absolute;
    left: 0;
    top: 0
}

.designation h2 {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px
}

.designation h2 span {
    display: block;
    font-weight: 700;
    font-size: 22px
}

.raa_btn {
    float: right;
    padding-top: 65px
}

.raa_btn .btn {
    line-height: 44px;
    border-radius: 5px;
    padding: 0 15px
}

.raa_btn .btn:hover {
    color: #fff
}

.doctors_profile {
    margin-top: -70px;
    display: inline-block;
    width: 100%
}

.doctors_profile .container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px
}

.profile_wrap {
    background-color: #fff
}

.view_opd {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    padding: 15px 30px
}

.view_opd,.view_opd:hover {
    color: #00a950
}

.profile_wrap.active .view_opd .fa {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.doctors_profile h2 {
    font-size: 30px;
    color: #656565;
    padding-bottom: 20px;
    font-weight: 700;
    margin: 0
}

.doctors_profile p {
    color: #656565;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 20px
}

.profile_inner {
    padding: 30px
}

.opd_schdule {
    padding: 30px;
    background-color: #e3e3e3;
    display: none
}

.opd_schdule h3 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    color: #00a950
}

.opd_schdule ul {
    margin: 0 -20px
}

.opd_schdule ul li {
    float: left;
    width: 16.66%;
    padding: 0 20px 30px;
    text-align: center;
    list-style: none
}

.opd_schdule ul li .inner {
    background-color: #fff
}

.opd_schdule ul li h5 {
    background-color: #f3f4f3;
    font-size: 17px;
    font-weight: 700;
    color: #656565;
    padding: 15px 10px
}

.opd_schdule ul li p {
    padding-bottom: 0;
    color: #00a950;
    font-size: 15px;
    line-height: 24px
}

.opd_schdule h4 {
    font-size: 24px;
    color: #00a950;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    width: 100%
}

.opd_schdule ul li .cont {
    padding: 15px 10px;
    min-height: 80px
}

.repertoire_section {
    padding-bottom: 30px
}

.repertoire_section .container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px
}

.repertoire_section .inner_bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 100%;
    padding: 50px;
    float: left
}

.repertoire_section h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 20px;
    text-align: center
}

.repertoire_tabs {
    position: relative;
    padding-left: 0
}

.repertoire_tabs .nav-tabs {
    position: relative;
    left: 0;
    top: 0;
    float: left;
    border: none;
    width: 300px
}

.repertoire_tabs .nav-tabs>li {
    width: 100%;
    padding: 0;
    margin: 0
}

.repertoire_tabs .nav-tabs>li>a {
    float: left;
    width: 100%;
    padding: 30px 20px 30px 80px!important;
    margin: 0;
    border: none!important;
    border-radius: 0!important;
    background-color: #021f38;
    color: #fff;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: none
}

.repertoire_tabs .nav-tabs>li>a .green_icon {
    opacity: 0;
    visibility: hidden
}

.repertoire_tabs .nav-tabs>li.active>a .green_icon {
    opacity: 1;
    visibility: visible
}

.repertoire_tabs .nav-tabs>li.active>a .white_icon {
    opacity: 0;
    visibility: hidden
}

.repertoire_tabs .nav-tabs>li>a img {
    position: absolute;
    left: 20px;
    top: 20px;
    transition: all .25s ease-in 0s;
    -webkit-transition: all .25s ease-in 0s
}

.repertoire_tabs .nav-tabs>li:last-child>a img {
    top: 30px
}

.repertoire_tabs .nav-tabs>li.active>a,.repertoire_tabs .nav-tabs>li.active>a:focus,.repertoire_tabs .nav-tabs>li.active>a:hover {
    border: none!important;
    background-color: #021f38!important;
    color: #09b058!important;
    box-shadow: none
}

.repertoire_tabs .nav-tabs>li>a:hover {
    border: none;
    background-color: #021f38;
    color: #fff
}

.repertoire_tabs .nav-tabs>li>a:after {
    content: "";
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #021f38 transparent transparent;
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -10px;
    opacity: 0;
    visibility: hidden;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transition: all .25s ease-in 0s;
    -webkit-transition: all .25s ease-in 0s
}

.repertoire_tabs .nav-tabs>li.active>a:after {
    opacity: 1;
    visibility: visible
}

.repertoire_tabs .tab-content {
    background-color: #fff;
    padding: 20px 10px 20px 30px;
    float: right;
    width: calc(100% - 300px)
}

.dr_list {
    padding-right: 20px
}

.dr_list li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px
}

.dr_list li:last-child {
    -ms-flex-align: 0;
    align-items: 0;
    padding-bottom: 0
}

.dr_list li:before {
    content: "\F138";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: #09b058
}

.dr_list li h6 {
    font-size: 14px;
    color: #00a962;
    font-weight: 700;
    padding-bottom: 10px;
    line-height: 20px
}

.dr_list li h6 span {
    display: block;
    color: #656565;
    font-weight: 400
}

.dr_list li p {
    color: #656565;
    font-size: 14px;
    line-height: 20px
}

.custom_scroll {
    height: auto
}

.raa_ps {
    padding: 0 0 30px
}

.raa_ps .container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px
}

.raa_ps .inner {
    background-color: #e8e8e8
}

.raa_ps h2 {
    color: #024b59
}

.raa_ps .pt_block .user_block h4,.raa_ps .pt_block p {
    color: #656565
}

.raa_ps .pt_block {
    border: 1px solid #09b058
}

.raa_ps .pspeak_carousel .owl-dots .owl-dot.active span,.raa_ps .pspeak_carousel .owl-dots .owl-dot:hover span {
    background-color: #024b59
}

header.ip_menu {
    background: 0 0;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    position: relative;
    z-index: 99
}

.ip_menu .container {
    position: relative;
    padding: 0 120px 0 30px
}

.navbar-default {
    width: 100%
}

.navbar>.container-fluid .navbar-brand {
    margin-left: 0
}

.navbar-brand {
    padding: 0;
    height: auto
}

.navbar-brand li {
    float: left;
    padding: 0 15px;
    position: relative;
    line-height: 80px
}

.navbar-brand li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 56px;
    width: 1px;
    background-color: #c8c8c8;
    margin-top: -28px
}

.navbar-brand li:first-child {
    padding-left: 0
}

.navbar-brand li:first-child:before {
    display: none
}

.navbar-brand li:last-child {
    padding-right: 0
}

.navbar-brand li a {
    float: left
}

.navbar-default {
    background-color: transparent;
    border: none;
    border-radius: 0;
    min-height: inherit;
    margin-bottom: 0;
    float: left;
    padding: 15px 0
}

.navbar-collapse {
    padding: 0;
    border: none
}

.navbar-default .navbar-nav {
    float: right
}

.navbar-default .navbar-nav>li {
    margin-left: 0;
    position: relative
}

.navbar-default .navbar-nav>li:before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0
}

.navbar-default .navbar-nav>li:first-child a {
    padding-left: 0
}

.navbar-default .navbar-nav>li:first-child:before {
    display: none
}

.navbar-default .navbar-nav>li:last-child a {
    padding-right: 0
}

.navbar-default .navbar-nav>li>a {
    font-size: 14px;
    color: #030303;
    padding: 0 20px;
    position: relative
}

.navbar-default .navbar-nav>li.active>a,.navbar-default .navbar-nav>li>a:hover {
    color: #ed1c24
}

.navbar-default .navbar-nav>li.active>a:after {
    width: 100%;
    left: 0
}

.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover {
    background-color: transparent;
    color: #030303
}

.hamburger {
    width: 22px;
    height: 20px;
    background-color: transparent;
    border: none;
    position: relative;
    margin: 0;
    padding: 0;
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: .5s ease-in-out;
    cursor: pointer
}

.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover {
    background-color: transparent!important
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #000;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: .25s ease-in-out
}

.hamburger span:first-child {
    top: 0
}

.hamburger span:nth-child(2) {
    top: 7px;
    left: 0
}

.hamburger span:nth-child(3) {
    top: 14px
}

.hamburger.open span {
    height: 3px
}

.hamburger.open span:first-child {
    top: 7px;
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -22px
}

.hamburger.open span:nth-child(3) {
    top: 7px;
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.search_block {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    background-color: #dfdfdf;
    line-height: 82px;
    color: #09b058;
    font-size: 20px
}

.search_block:hover {
    color: #09b058
}

ul.slides li iframe {
    height: 380px;
    width: 100%
}

.consult_carousel .item {
    background-color: #fff;
    margin-bottom: 25px
}

.consult_carousel .item .img_block>img {
    cursor: pointer
}

.clinical-speciality-mobile,.fixed_bottom,.mobile-search-first,.mobile-search-second,.mobile-search-third,div#accordion span.glyphicon.pull-right.glyphicon-minus,div#accordion span.glyphicon.pull-right.glyphicon-plus {
    display: none
}

.img_block.hostipal-image-custom img {
    height: 126px;
    width: 100%;
    max-width: 100%;
    overflow: hidden
}

.procedure_carousel .owl-stage-outer .owl-stage .item {
    cursor: pointer
}

.pr_accodion .panel-default ul li {
    display: block;
    list-style-type: none
}

ul.update_list li {
    list-style-type: none
}

.video_carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center
}

.video_carousel .owl-dot {
    display: inline-block;
    padding: 0 3px
}

.video_carousel .owl-dot span {
    float: left;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #fff
}

.video_carousel .owl-dot.active span {
    background-color: #f87a2f
}

.latest_carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center
}

.latest_carousel .owl-dot {
    display: inline-block;
    padding: 0 3px
}

.latest_carousel .owl-dot span {
    float: left;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #fff
}

.latest_carousel .owl-dot.active span {
    background-color: #f87a2f
}

.hb_section .inner {
    position: relative
}

.logo a {
    top: 0
}

.bottom_nnav .navbar-default {
    margin: 0;
    background: 0 0;
    border: 0
}

.bottom_nnav .navbar-default .navbar-nav>li.ip_item a:hover {
    background: #00a951!important
}

.header_text {
    font-size: 12px;
    background-color: #00a950;
    padding: 7px;
    color: #fff;
    letter-spacing: 1px;
    font-family: FrutigerLTStd55Roman
}

.header_text a {
    color: #fff
}

.new_header {
    min-height: 100px;
    position: relative;
    z-index: 99;
    background-color: #fff
}

.new_header .container {
    padding: 0 30px;
    max-width: 100%;
    width: 100%
}

.new_header .inner_nav {
    position: relative
}

.top_nnav {
    padding-top: 20px
}

.top_nav_item_left {
    float: left
}

.top_nav_item_left li {
    float: left;
    margin-left: 20px
}

.top_nav_item_left li:first-child {
    margin-left: 0
}

.top_nav_item_left li a {
    float: left;
    color: #3a4652;
    font-size: 13px;
    font-family: FrutigerLTStd55Roman;
    letter-spacing: 1px;
    line-height: 24px
}

.top_nav_item_left li a:hover {
    color: #ed1c24
}

.top_nav_item_right {
    float: left;
    margin-left: 30px;
    margin-bottom: 0
}

.top_nav_item_right li {
    float: left;
    padding: 0 15px;
    position: relative
}

.top_nav_item_right li:before {
    content: "";
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    background-color: #bebebe;
    margin-top: -10px
}

.top_nav_item_right li:first-child {
    margin-left: 0;
    padding-left: 0
}

.top_nav_item_right li:first-child:before {
    display: none
}

.top_nav_item_right li a {
    float: left;
    color: #3a4652;
    font-size: 13px;
    padding: 0;
    font-family: FrutigerLTStd55Roman;
    letter-spacing: 1px;
    line-height: 24px
}

.top_nav_item_right li a .fa {
    font-size: 18px;
    padding-right: 5px
}

.top_nav_item_right li a .fa-caret-down {
    font-size: 18px;
    padding-left: 3px;
    padding-right: 0;
    position: relative;
    top: 2px
}

.top_nav_item_right li a .fa-mobile {
    font-size: 20px;
    position: relative;
    top: 2px;
    line-height: 22px
}

.top_nav_item_right li:last-child a,.top_nav_item_right li a:hover {
    color: #ed1c24
}

.bottom_nnav .navbar-default {
    padding: 0;
    position: static
}

.bottom_nnav .navbar-default .navbar-nav {
    padding-top: 25px
}

.bottom_nnav .navbar-default .navbar-nav>li:before {
    display: none
}

.bottom_nnav .navbar-default .navbar-nav>li {
    padding-left: 4px;
    position: static
}

.bottom_nnav .navbar-default .navbar-nav>li>a {
    font-weight: 400;
    padding: 0 10px;
    text-transform: capitalize;
    line-height: 40px;
    border: 1px solid #bebebe;
    border-bottom: none;
    color: #282828;
    font-family: FrutigerLTStd55Roman
}

.bottom_nnav .navbar-default .navbar-nav>li.active>a,.bottom_nnav .navbar-default .navbar-nav>li:hover>a,.bottom_nnav .navbar-default .navbar-nav>li>a:hover {
    background-color: #e4e4e4!important;
    color: #282828
}

.bottom_nnav .navbar-default .navbar-nav>li.ip_item a {
    background-color: #00a951;
    color: #fff;
    border-color: #00a951
}

.bottom_nnav .navbar-default .navbar-nav>li.ip_item a img {
    position: relative;
    top: -2px;
    padding-right: 5px
}

.bottom_nnav .navbar-default .navbar-nav>li>.dropdown-menu {
    padding: 20px 60px;
    background-color: #e4e4e4;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    width: 100%;
    border: none;
    display: block;
    visibility: hidden;
    opacity: 0;
    -ms-transform-origin: top;
    transform-origin: top;
    animation-fill-mode: forwards;
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    transition: all .2s linear;
    -webkit-transition: all .2s linear
}

.bottom_nnav .navbar-default .navbar-nav>li.open>.dropdown-menu,.bottom_nnav .navbar-default .navbar-nav>li:hover>.dropdown-menu {
    visibility: visible;
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1)
}

.bottom_nnav .navbar-default .navbar-nav>li>.dropdown-menu .row {
    margin-left: -15px;
    margin-right: -15px
}

.bottom_nnav .navbar-default .navbar-nav>li>.dropdown-menu .row .col-md-2 {
    padding-left: 15px;
    padding-right: 15px;
    width: 20%
}

.nav_two,.nav_two>li {
    float: left;
    width: 100%
}

.nav_two>li {
    padding-bottom: 7px
}

.nav_two>li>a {
    float: left;
    font-size: 14px;
    color: #000;
    font-family: FrutigerLTStd55Roman;
    line-height: 16px
}

.nav_two>li>a:hover {
    color: #00a950
}

.nav_two>li .sub_list {
    float: left;
    width: 100%;
    padding: 7px 0
}

.nav_two>li .sub_list>li {
    float: left;
    width: 100%;
    padding-bottom: 4px
}

.nav_two>li .sub_list>li>a {
    float: left;
    font-size: 14px;
    color: #9b9b9b;
    font-family: FrutigerLTStd55Roman;
    line-height: 16px
}

.nav_two>li .sub_list>li>a:hover {
    color: #00a951
}

.drop_overlay.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    z-index: 999
}

.bottom_nnav .navbar-default .navbar-nav>li.sticky_item {
    display: none
}

.bottom_nnav .navbar-default .navbar-nav>li.sticky_item a {
    border: none;
    background-color: #f1f1f1
}

.bottom_nnav .navbar-default .navbar-nav>li.sticky_item.red a {
    color: #ed1c24
}

.bottom_nnav .navbar-default .navbar-nav>li.sticky_item.red a .fa-mobile {
    font-size: 22px;
    position: relative;
    top: 2px;
    line-height: 22px;
    padding-right: 5px
}

.bottom_nnav .navbar-default .navbar-nav>li.sticky_item.red a .fa-caret-down {
    font-size: 18px;
    padding-left: 5px;
    padding-right: 0;
    position: relative;
    top: 2px
}

.bottom_nnav.affix {
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    padding-top: 10px
}

.bottom_nnav.affix .navbar-brand img {
    height: 46px
}

.bottom_nnav.affix .navbar-default .navbar-nav {
    padding-top: 15px
}

.bottom_nnav.affix .navbar-default .navbar-nav>li.ip_item {
    display: none
}

.bottom_nnav.affix .navbar-default .navbar-nav>li.sticky_item {
    display: inline-block
}

.mobAmbulance,.mobSearch {
    display: none
}

.hamburger {
    width: 27px
}

.hamburger span {
    height: 3px
}

.searchf_section .form-control::-moz-placeholder {
    opacity: 1;
    color: #fff!important
}

.searchf_section .form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #fff!important
}

.bannercontentbox {
    position: absolute;
    top: 35%;
    left: 30px;
    bottom: auto;
    width: 520px;
    padding: 20px;
    background-color: rgba(0,0,0,.6)
}

.bannercontentbox h1,.bannercontentbox h2 {
    font-size: 30px;
    color: #00a950;
    margin: 0;
    padding: 0 0 10px
}

.bannercontentbox p {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    margin: 0;
    padding: 0
}

.fixedpopupbox {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: 9
}

.fixedpopupbox.active {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1)
}

.dicebutton,.dicebutton-pink {
    cursor: pointer;
    position: relative;
    z-index: 999;
    display: block;
    width: 45px;
    height: 45px;
    left: auto
}

.fixedsidebar {
    width: 45px;
    height: 45px;
    bottom: 50%;
    right: 0;
    top: auto;
    position: fixed;
    z-index: 999
}

.fixedinrpopup {
    background: #00a851;
    width: 320px;
    right: -140px;
    top: -340%;
    bottom: auto;
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 999
}

.fixedinrpopup,.fixedsidebar.active .fixedinrpopup {
    float: left;
    position: absolute;
    transition-duration: .5s;
    -webkit-transition-duration: .5s
}

.fixedsidebar.active .fixedinrpopup {
    width: 300px;
    right: 45px;
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1)
}

.fixedinrpopup ul {
    border: 7px solid #fff;
    display: block;
    font-size: 0
}

.verticalcenter {
    display: table;
    height: 100%;
    width: 100%
}

.verticalinner {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%
}

.fixedinrpopup ul li {
    height: 135px;
    width: 50%;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border-bottom: 7px solid #fff;
    border-right: 7px solid #fff
}

.fixedinrpopup ul li label {
    cursor: pointer;
    margin: 5px 0 0;
    padding: 0 10px;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    color: #fff;
    transition-duration: .5s;
    -webkit-transition-duration: .5s
}

.fixedinrpopup ul li label:hover {
    color: #024754;
    transition-duration: .5s;
    -webkit-transition-duration: .5s
}

.fixedinrpopup ul li:nth-child(2n) {
    border-right: 0
}

.new_header {
    padding-top: 0
}

.bottom_nnav.affix,.new_header {
    border-bottom: 3px solid #00aa4d
}

.right_menu {
    display: none
}

.top_nav_item_right li.desktop_search_list {
    min-width: 95px;
    min-height: 40px;
    padding-right: 0
}

.top_nav_item_right li.desktop_search_list:before {
    margin-top: -18px
}

.top_nav_item_right li.desktop_search_list form {
    position: relative
}

.close_search {
    position: absolute;
    right: 10px;
    top: 3px;
    z-index: 1111;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    width: 17px
}

.close_search>img {
    width: 100%
}

.desktop_search {
    border: none;
    height: 40px;
    width: 90px;
    cursor: pointer;
    transition: all .5s;
    box-sizing: content-box;
    font-family: FrutigerLTStd55Roman;
    color: #3a4652;
    outline: 0;
    position: absolute;
    right: 0;
    top: -7px;
    z-index: 1002;
    padding: 0 10px 0 30px
}

.desktop_search::-moz-placeholder {
    opacity: 1;
    color: #3a4652
}

.desktop_search::-webkit-input-placeholder {
    opacity: 1;
    color: #3a4652
}

.ds_block.active .desktop_search {
    width: 790px;
    background-color: #dbdbdb;
    cursor: text
}

.ds_block.active .close_search {
    visibility: visible;
    opacity: 1
}

.navbar-nav>li.sticky_search {
    min-width: 95px;
    min-height: 40px;
    padding-right: 0
}

.navbar-nav>li.sticky_search .ds_block {
    position: relative
}

.navbar-nav>li.sticky_search .desktop_search {
    top: 0
}

.navbar-nav>li.sticky_search .ds_block.active .desktop_search {
    width: 915px
}

.navbar-nav>li.sticky_search .close_search {
    top: 10px
}

.dropdown_search_mobile {
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    top: 100%;
    position: absolute;
    display: none
}

.scrollEffect {
    width: 100%;
    overflow: scroll
}

.scrollEffect ul {
    width: 970px!important;
    width: 825px!important
}

.sub_s_section {
    background-color: #f1efef;
    padding: 10px 20px 0
}

.sub_s_section p {
    color: #656565;
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 20px;
    margin: 0;
    font-family: frutigermedium
}

.sub_s_section .btn {
    background-color: transparent;
    border: 1px solid #019f48;
    border-radius: 5px;
    color: #00a950;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: FrutigerLTStd55Roman
}

.sub_s_section .btn:hover {
    background-color: #019f48;
    color: #fff
}

.sub_s_section .inner {
    background-color: #fff;
    padding: 20px 15px 0;
    margin-top: 20px
}

.sub_s_section h3 {
    text-align: center;
    font-size: 38px;
    color: #414141;
    padding-bottom: 20px;
    font-family: frutiger_ce_55_romanregular
}

.sub_s_section .relative {
    padding-left: 0;
    float: left;
    width: 100%
}

.sub_s_section .nav-tabs {
    border: none;
    position: relative;
    left: 0;
    top: 0;
    float: left;
    width: 290px
}

.sub_s_section .tab-content {
    float: right;
    width: calc(100% - 320px)
}

.sub_s_section .nav-tabs>li {
    width: 100%;
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid rgba(40,40,40,.2)
}

.sub_s_section .nav-tabs>li:last-child {
    border: none
}

.sub_s_section .nav-tabs>li>a {
    border: none;
    color: #414141;
    text-transform: uppercase;
    font-size: 18px;
    background-color: #ebeaea;
    font-family: frutiger_ce_55_romanregular;
    position: relative;
    padding: 10px
}

.sub_s_section .nav-tabs>li>a:after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    background-color: #ebeaea;
    margin-top: -7px;
    height: 14px;
    width: 14px;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden
}

.sub_s_section .nav-tabs>li.active>a,.sub_s_section .nav-tabs>li.active>a:focus,.sub_s_section .nav-tabs>li.active>a:hover {
    border: none;
    background-color: #ebeaea;
    color: #00a950;
    box-shadow: inherit
}

.sub_s_section .nav-tabs>li.active>a:after {
    opacity: 1;
    visibility: visible
}

.btc_section .sub_s_section {
    padding-bottom: 20px;
    float: left;
    width: 100%;
    margin: 0 0 4px
}

.btc_section .sub_s_section .nav-tabs {
    width: 450px
}

.btc_section .sub_s_section .tab-content {
    width: calc(100% - 480px)
}

.btc_section .sub_s_section .relative {
    padding-left: 0
}

.responsive-tabs iframe {
    width: 100%;
    border: none;
    height: 680px
}

.consult_carousel .img_block {
    text-align: center
}

.consult_carousel .img_block img {
    width: auto;
    height: 100%;
    display: inline-block
}

.ptestimonial_carousel .owl-nav {
    display: inline-block;
    width: 100%;
    text-align: center
}

.ptestimonial_carousel .owl-nav [class*=owl-] {
    position: static;
    display: inline-block;
    margin: 0 10px
}

.btc_section .sub_s_section .tab-content .tab-pane {
    max-height: 200px;
    overflow-y: auto
}

.under_hbanner p {
    text-align: left
}

@media (max-width: 1440px) {
    .consultant_section .inner {
        padding:0 60px
    }

    .cmp_section .inner {
        padding: 20px 60px
    }

    .cscdblog_section .inner {
        padding: 10px 60px 20px
    }

    .cscdblog_section .blog_item p {
        font-size: 16px
    }

    .csp_section .mid_img {
        width: 500px;
        margin-left: -250px
    }

    .csp_section .left_txt h2 {
        font-size: 28px
    }

    .right_txt {
        width: 250px;
        left: -300px;
        padding-bottom: 15px
    }

    .csp_section .right_txt ul li a {
        font-size: 13px;
        padding: 7px 15px
    }

    .body_list>li:hover .right_txt {
        left: -290px
    }

    .body_list.right .right_txt {
        right: -340px
    }

    .body_list.right>li:hover .right_txt {
        right: -330px
    }

    .csp_section .left_txt {
        padding-top: 10px
    }

    .cardiology_section h1,.cardiology_section h2,.clinical_sp_section .inner h2,.cmp_section .inner h2,.consultant_section .inner h2,.cscdblog_section .inner h2,.event_update_section .inner h2,.event_update_section h3,.under_hbanner h1 {
        font-size: 28px
    }

    .btc_btnnew>ul li,.btc_btns>ul li {
        padding: 0 10px
    }

    .faq_section .container {
        max-width: 1230px
    }

    .whyus_section ul li p {
        font-size: 14px;
        line-height: 20px
    }

    .cardiology_section h3 {
        font-size: 28px
    }

    .right_txt>ul {
        padding: 10px 0
    }

    .right_txt a.btn {
        margin-left: 15px
    }

    .kyc_section h2,.mmh_section h2,.ps_section h2 {
        font-size: 28px
    }

    .csp_section .left_txt .btn_list2 li a {
        min-width: 80px;
        line-height: 30px;
        padding: 0 10px!important
    }

    .csp_section .left_txt p {
        font-size: 13px
    }

    .csp_section .left_txt {
        padding-right: 20px
    }

    .consult_carousel .img_block {
        height: 210px
    }

    .consult_carousel .img_block img {
        width: auto;
        height: 100%
    }

    .ps_section .pt_block .user_block h4 {
        font-size: 16px;
        line-height: 16px
    }

    .ps_section .pt_block p {
        font-size: 16px;
        line-height: 22px
    }

    .csp_section .inner .col-md-3 {
        width: 28%;
        padding-right: 60px
    }

    .nav_lsit>li>.dropdown-menu {
        padding: 15px 30px 30px
    }

    .nav_lsit>li>.dropdown-menu .row {
        margin-left: -30px;
        margin-right: -30px
    }

    .nav_lsit>li>.dropdown-menu .row .col-xs-12 {
        padding-right: 30px;
        padding-left: 30px
    }

    .bottom_nnav .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 20px 30px
    }

    .navbar-default .navbar-nav>li>a {
        font-size: 13px
    }

    .pt_block p {
        font-size: 14px;
        line-height: 20px
    }

    .under_hbanner .inner {
        padding: 20px 30px 30px
    }

    .structure.male .body_list.left>li.lowerBackMpointer .right_txt {
        left: -305px
    }

    .structure.male .body_list.left>li.lowerBackMpointer:hover .right_txt {
        left: -315px
    }

    .structure.male .body_list.left>li.reproductiveMpointer .right_txt {
        left: -305px
    }

    .structure.male .body_list.left>li.reproductiveMpointer:hover .right_txt {
        left: -315px
    }

    .structure.female .body_list.left>li.lowerBackMpointer .right_txt {
        left: -305px
    }

    .structure.female .body_list.left>li.lowerBackMpointer:hover .right_txt {
        left: -315px
    }

    .structure.female .body_list.left>li.reproductiveMpointer .right_txt {
        left: -305px
    }

    .structure.female .body_list.left>li.reproductiveMpointer:hover .right_txt {
        left: -315px
    }

    .body_list>li:hover>a .txt,.body_list>li>a:hover .txt {
        -ms-transform: scale(1.2)!important;
        transform: scale(1.2)!important
    }
}

@media (max-width: 1389px) {
    .structure.male .body_list.left>li.lowerBackMpointer .right_txt {
        left:-290px
    }

    .structure.male .body_list.left>li.lowerBackMpointer:hover .right_txt {
        left: -300px
    }

    .structure.male .body_list.left>li.reproductiveMpointer .right_txt {
        left: -290px
    }

    .structure.male .body_list.left>li.reproductiveMpointer:hover .right_txt {
        left: -300px
    }

    .structure.female .body_list.left>li.lowerBackMpointer .right_txt {
        left: -290px
    }

    .structure.female .body_list.left>li.lowerBackMpointer:hover .right_txt {
        left: -300px
    }

    .structure.female .body_list.left>li.reproductiveMpointer .right_txt {
        left: -290px
    }

    .structure.female .body_list.left>li.reproductiveMpointer:hover .right_txt {
        left: -300px
    }
}

@media (max-width: 1280px) {
    .structure.male .body_list.left>li.lowerBackMpointer .right_txt {
        left:-290px
    }

    .structure.male .body_list.left>li.lowerBackMpointer:hover .right_txt {
        left: -300px
    }

    .structure.male .body_list.left>li.reproductiveMpointer .right_txt {
        left: -290px
    }

    .structure.male .body_list.left>li.reproductiveMpointer:hover .right_txt {
        left: -300px
    }

    .structure.female .body_list.left>li.lowerBackMpointer .right_txt {
        left: -290px
    }

    .structure.female .body_list.left>li.lowerBackMpointer:hover .right_txt {
        left: -300px
    }

    .structure.female .body_list.left>li.reproductiveMpointer .right_txt {
        left: -290px
    }

    .structure.female .body_list.left>li.reproductiveMpointer:hover .right_txt {
        left: -300px
    }

    .ohn_section .inner .block p br {
        display: none
    }

    .btc_btnnew>ul li,.btc_btns>ul li {
        padding: 0 5px
    }

    .csp_section .inner .col-md-3 {
        width: 100%;
        float: left;
        padding-right: 15px
    }

    .csp_section .inner .col-md-12 {
        width: 100%;
        text-align: center;
        float: left
    }

    .structure {
        display: inline-block;
        width: 100%
    }

    .csp_section .left_txt {
        padding-top: 20px
    }

    .consult_carousel .img_block {
        max-height: 230px
    }
}

@media (max-width: 1279px) {
    .ipslide_section .overlay h2 {
        font-size:30px;
        line-height: normal
    }

    .ipslide_section .overlay h3,.ipslide_section .overlay p {
        font-size: 18px
    }

    .ip_list ul li .inner h5 {
        font-size: 14px
    }

    .whyus_section h2 {
        font-size: 30px
    }

    .whyus_section ul li p {
        font-size: 14px;
        line-height: normal
    }

    .ohn_section .inner h2 {
        font-size: 30px
    }

    .ohn_section .container {
        padding: 0 15px
    }

    .ohn_section .inner {
        padding: 20px 0 0
    }

    .patientstory_section h2 {
        font-size: 30px
    }

    .patientstory_section p {
        font-size: 13px
    }

    .procedure_section .inner h2 {
        font-size: 30px
    }

    .procedure_section .inner {
        padding: 30px 15px
    }

    .procedure_section .container {
        padding: 0 15px
    }

    .procedure_carousel .item h4 {
        font-size: 14px
    }

    .free_form_section h2 {
        font-size: 30px
    }

    .free_form_section .container {
        padding: 0 15px
    }

    .free_form_section form ul li {
        width: 33.33%
    }

    .free_form_section form ul li:nth-last-child(2) {
        width: 50%
    }

    .foreplan_section .block {
        margin-bottom: 0;
        padding-bottom: 30px
    }

    .foreplan_section .inner .col-md-3 {
        width: 50%
    }

    .foreplan_section .heading h2 {
        font-size: 30px
    }

    .foreplan_section .heading {
        margin-top: -15px
    }

    .faq_section .container {
        padding: 0 15px
    }

    .faq_section h2 {
        font-size: 30px
    }

    .faq_section .panel-title>a {
        font-size: 14px;
        padding: 10px 40px 10px 15px;
        line-height: 20px
    }

    .faq_section .panel-default>.panel-heading+.panel-collapse>.panel-body {
        padding-left: 10px
    }

    .faq_section p {
        font-size: 13px;
        line-height: 18px
    }

    .consult_carousel .inner_item {
        background-color: #fff
    }

    .cmp_carousel .item p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: normal
    }

    .cmp_carousel .item h3 {
        font-size: 16px
    }

    .cscdblog_section .blog_item p {
        font-size: 14px;
        line-height: 20px
    }

    .under_hbanner .inner ul li {
        width: 100%;
        padding-right: 0;
        padding-bottom: 10px
    }

    .under_hbanner .inner ul li:nth-child(2) {
        width: 100%
    }

    .under_hbanner .inner {
        padding: 15px
    }

    .event_update_section .left {
        border-right: none;
        border-bottom: 3px solid #00a950;
        padding: 0 15px
    }

    .event_update_section .right {
        border-left: none;
        padding: 20px 15px 0
    }

    .event_update_section .inner {
        padding: 15px
    }

    .btc_btns>ul li {
        padding: 0 5px
    }

    .btc_btns>ul li a {
        font-size: 13px;
        line-height: 40px;
        min-width: inherit;
        padding: 0 20px
    }

    .btc_btnnew>ul li {
        padding: 14px 5px
    }

    .btc_btnnew>ul li a {
        font-size: 13px;
        line-height: 40px;
        min-width: inherit;
        padding: 0 20px
    }

    .get_estimate {
        display: none
    }

    .whyus_section ul {
        padding: 0
    }

    .free_form_section .inner {
        padding: 20px 0
    }

    .dr_block .dr_img {
        width: 100px;
        height: 100px
    }

    .dr_block {
        padding-left: 120px
    }

    .dr_block h1,.dr_block h2 {
        font-size: 22px
    }

    .designation>span {
        font-size: 16px
    }

    .designation {
        padding-left: 0;
        padding-top: 0
    }

    .designation h2 {
        font-size: 14px;
        line-height: 22px
    }

    .designation h2 span {
        font-size: 16px
    }

    .raa_btn {
        padding-top: 30px
    }

    .raa_header {
        min-height: 250px
    }

    .opd_schdule ul {
        margin: 0 -5px
    }

    .opd_schdule ul li {
        padding: 0 5px 10px
    }

    .opd_schdule {
        padding: 15px
    }

    .opd_schdule ul li h5 {
        font-size: 14px
    }

    .opd_schdule ul li p {
        font-size: 13px;
        line-height: 20px
    }

    .opd_schdule h4 {
        font-size: 20px
    }

    .doctors_profile h2 {
        font-size: 22px
    }

    .profile_inner {
        padding: 15px
    }

    .repertoire_section .inner_bg {
        padding: 30px
    }

    .repertoire_tabs .nav-tabs>li>a {
        font-size: 16px
    }

    .custom_scroll {
        height: auto
    }

    .raa_ps h2,.repertoire_section h2 {
        font-size: 22px
    }

    header.ip_menu {
        display: block;
        padding: 0
    }

    .navbar-default .navbar-nav>li>a {
        padding: 0 15px!important
    }

    .ip_menu .container {
        padding: 0 15px
    }

    .hb_carousel .item .banner_text h2 {
        font-size: 30px;
        line-height: normal
    }

    .hb_carousel .item .banner_text p {
        font-size: 18px
    }

    .mmh_section .inner {
        padding: 15px 15px 0
    }

    .kyc_section h2,.mmh_section h2,.ps_section h2 {
        font-size: 30px
    }

    .ps_section .inner {
        padding: 20px 15px
    }

    .nnm_section .left {
        border-bottom-color: #fff
    }

    .csp_section .left_txt .form-group {
        padding-right: 0
    }

    .body_list>li>a .txt,.body_list>li>a:before {
        display: none
    }

    .body_list>li>a .dot {
        height: 12px;
        width: 12px;
        background-color: #09b058;
        float: left;
        border-radius: 100%;
        border: 2px solid #fff
    }

    .structure {
        max-width: 280px
    }

    .structure>img {
        width: 280px
    }

    .csp_section .inner {
        padding: 15px
    }

    .body_list>li:first-child {
        top: 35px;
        left: 120px
    }

    .body_list>li:nth-child(2) {
        top: 85px;
        left: 125px
    }

    .body_list>li:nth-child(3) {
        top: 140px;
        left: 105px
    }

    .body_list>li:nth-child(4) {
        top: 165px;
        left: 120px
    }

    .body_list>li:nth-child(5) {
        top: 190px;
        left: 125px
    }

    .body_list>li:nth-child(6) {
        top: 240px;
        left: 70px
    }

    .body_list>li:nth-child(7) {
        top: 305px;
        left: 110px
    }

    .body_list>li:nth-child(8) {
        top: 400px;
        left: 110px
    }

    .body_list>li:nth-child(9) {
        top: 470px;
        left: 115px
    }

    .body_list.right>li:first-child {
        top: 30px;
        left: -140px
    }

    .body_list.right>li:nth-child(2) {
        top: 105px;
        left: -100px
    }

    .body_list.right>li:nth-child(3) {
        top: 120px;
        left: -125px
    }

    .body_list.right>li:nth-child(4) {
        top: 140px;
        left: -125px
    }

    .body_list.right>li:nth-child(5) {
        top: 165px;
        left: -95px
    }

    .body_list.right>li:nth-child(6) {
        top: 175px;
        left: -140px
    }

    .body_list.right>li:nth-child(7) {
        top: 235px;
        left: -105px
    }

    .body_list.right>li:nth-child(8) {
        top: 315px;
        left: -125px
    }

    .body_list.right>li:nth-child(9) {
        top: 365px;
        left: -125px
    }

    .body_list.right>li:nth-child(10) {
        top: 435px;
        left: -130px
    }

    .body_list.right>li:nth-child(11) {
        top: 475px;
        left: -135px
    }

    .body_list.left>li:first-child {
        top: 35px;
        left: 120px
    }

    .body_list.left>li:nth-child(2) {
        top: 65px;
        left: 120px
    }

    .body_list.left>li:nth-child(3) {
        top: 120px;
        left: 110px
    }

    .body_list.left>li:nth-child(4) {
        top: 145px;
        left: 125px
    }

    .body_list.left>li:nth-child(5) {
        top: 190px;
        left: 120px
    }

    .body_list.left>li:nth-child(6) {
        top: 215px;
        left: 60px
    }

    .body_list>li:nth-child(7) {
        top: 285px
    }

    .body_list>li:nth-child(8) {
        left: 115px
    }

    .body_list>li:nth-child(9) {
        top: 455px
    }

    .male .body_list.right>li:first-child {
        top: 25px
    }

    .male .body_list.right>li:nth-child(2) {
        top: 90px;
        left: -95px
    }

    .male .body_list.right>li:nth-child(3) {
        top: 115px
    }

    .male .body_list.right>li:nth-child(4) {
        top: 135px;
        left: -125px
    }

    .male .body_list.right li:nth-child(6) {
        top: 160px;
        left: -140px
    }

    .male .body_list.right li:nth-child(5) {
        top: 195px;
        left: -85px
    }

    .male .body_list.right li:nth-child(10) {
        top: 425px;
        left: -135px
    }

    .male .body_list.right li:nth-child(11) {
        top: 455px;
        left: -140px
    }

    .right_txt:before {
        display: none
    }

    .right_txt {
        left: 50%;
        margin-left: -125px;
        top: 40px
    }

    .body_list>li:hover .right_txt {
        top: 20px;
        left: 50%
    }

    .right_txt p {
        display: block
    }

    .body_list.right .right_txt {
        left: 50%;
        margin-left: -125px;
        top: 40px;
        right: auto
    }

    .body_list.right>li:hover .right_txt {
        right: auto;
        left: 50%
    }

    .body_list>li:hover>a .dot,.body_list>li>a:hover .dot {
        background-color: #f87a2f
    }

    .body_list>li>a .dot {
        width: 10px;
        height: 10px
    }

    .structure.male .body_list.left>li.eyeMpointer {
        left: 125px;
        top: 36px
    }

    .structure.male .body_list.left>li.earMPointer {
        left: 108px;
        top: 51px
    }

    .structure.male .body_list.left>li.teethMpointer {
        left: 130px;
        top: 58px
    }

    .structure.male .body_list.left>li.throatMpointer {
        left: 132px;
        top: 72px
    }

    .structure.male .body_list.left>li.liverMpointer {
        left: 120px;
        top: 135px
    }

    .structure.male .body_list.left>li.handMpointer {
        left: 60px;
        top: 165px
    }

    .structure.male .body_list.left>li.kidneysMpointer {
        left: 110px;
        top: 215px
    }

    .structure.male .body_list.left>li.lowerBackMpointer {
        left: 125px;
        top: 230px
    }

    .structure.male .body_list.left>li.reproductiveMpointer {
        left: 132px;
        top: 247px
    }

    .structure.male .body_list.left>li.thighMpointer {
        left: 110px;
        top: 300px
    }

    .structure.male .body_list.left>li.footMpointer {
        left: 115px;
        top: 452px
    }

    .structure.male .body_list.right>li.brainMpointer {
        left: -140px;
        top: 25px
    }

    .structure.male .body_list.right>li.noseMpointer {
        left: -142px;
        top: 50px
    }

    .structure.male .body_list.right>li.heartMpointer {
        left: -123px;
        top: 112px
    }

    .structure.male .body_list.right>li.lungMpointer {
        left: -122px;
        top: 137px
    }

    .structure.male .body_list.right>li.elbowMpointer {
        left: -87px;
        top: 170px
    }

    .structure.male .body_list.right>li.spineMpointer {
        left: -140px;
        top: 165px
    }

    .structure.male .body_list.right>li.stomachMpointer {
        left: -135px;
        top: 220px
    }

    .structure.male .body_list.right>li.hipMpointer {
        left: -100px;
        top: 260px
    }

    .structure.male .body_list.right>li.skinMpointer {
        left: -107px;
        top: 308px
    }

    .structure.male .body_list.right>li.kneeMpointer {
        left: -125px;
        top: 360px
    }

    .structure.male .body_list.right>li.ankleMpointer {
        left: -135px;
        top: 437px
    }

    .structure.male .body_list.left>li.lowerBackMpointer .right_txt,.structure.male .body_list.left>li.lowerBackMpointer:hover .right_txt,.structure.male .body_list.left>li.reproductiveMpointer .right_txt,.structure.male .body_list.left>li.reproductiveMpointer:hover .right_txt {
        left: auto
    }

    .structure.female .body_list.left>li.eyeMpointer {
        left: 125px;
        top: 45px
    }

    .structure.female .body_list.left>li.earMPointer {
        left: 105px;
        top: 55px
    }

    .structure.female .body_list.left>li.teethMpointer {
        left: 130px;
        top: 65px
    }

    .structure.female .body_list.left>li.throatMpointer {
        left: 129px;
        top: 82px
    }

    .structure.female .body_list.left>li.chestMpointer {
        left: 110px;
        top: 125px
    }

    .structure.female .body_list.left>li.liverMpointer {
        left: 120px;
        top: 150px
    }

    .structure.female .body_list.left>li.handMpointer {
        left: 70px;
        top: 175px
    }

    .structure.female .body_list.left>li.kidneysMpointer {
        left: 110px;
        top: 215px
    }

    .structure.female .body_list.left>li.lowerBackMpointer {
        left: 125px;
        top: 235px
    }

    .structure.female .body_list.left>li.reproductiveMpointer {
        left: 132px;
        top: 260px
    }

    .structure.female .body_list.left>li.thighMpointer {
        left: 105px;
        top: 300px
    }

    .structure.female .body_list.left>li.footMpointer {
        left: 110px;
        top: 470px
    }

    .structure.female .body_list.right>li.brainMpointer {
        left: -138px;
        top: 30px
    }

    .structure.female .body_list.right>li.noseMpointer {
        left: -142px;
        top: 55px
    }

    .structure.female .body_list.right>li.heartMpointer {
        left: -123px;
        top: 125px
    }

    .structure.female .body_list.right>li.lungMpointer {
        left: -128px;
        top: 152px
    }

    .structure.female .body_list.right>li.elbowMpointer {
        left: -87px;
        top: 175px
    }

    .structure.female .body_list.right>li.spineMpointer {
        left: -145px;
        top: 175px
    }

    .structure.female .body_list.right>li.stomachMpointer {
        left: -135px;
        top: 232px
    }

    .structure.female .body_list.right>li.hipMpointer {
        left: -100px;
        top: 265px
    }

    .structure.female .body_list.right>li.skinMpointer {
        left: -104px;
        top: 318px
    }

    .structure.female .body_list.right>li.kneeMpointer {
        left: -122px;
        top: 360px
    }

    .structure.female .body_list.right>li.ankleMpointer {
        left: -132px;
        top: 450px
    }

    .structure.female .body_list.left>li.lowerBackMpointer .right_txt,.structure.female .body_list.left>li.lowerBackMpointer:hover .right_txt,.structure.female .body_list.left>li.reproductiveMpointer .right_txt,.structure.female .body_list.left>li.reproductiveMpointer:hover .right_txt {
        left: auto
    }

    .multiFunctionMain {
        left: 22%;
        width: 325px
    }

    .multiFunctionMain span {
        top: 12px;
        right: 20px
    }

    .multiFunctionMain h2 {
        padding: 14px 20px
    }

    .multiFunctionMain ul {
        padding: 10px 15px
    }

    .multiFunctionMain li a {
        font-size: 14px;
        padding: 8px 0
    }

    .forOtherProTxt {
        font-size: 15px;
        bottom: 0
    }

    .right_txt .inner_dd>ul {
        padding: 10px 0
    }

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

    .bottom_nnav .navbar-default .navbar-nav>li>a {
        padding: 0 5px
    }

    .fixed_bottom {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99999
    }

    .fixed_bottom .bnav {
        float: left;
        width: 100%;
        position: relative;
        border-top: 1px solid #aaa;
        z-index: 10
    }

    .fixed_bottom .bnav li {
        float: left;
        width: 50%
    }

    .fixed_bottom .bnav li:first-child {
        border-right: 1px solid #aaa;
        width: 50%
    }

    .fixed_bottom .bnav li a {
        float: left;
        width: 100%;
        background-color: #fff;
        position: relative;
        padding: 10px 10px 10px 60px!important;
        min-height: 60px;
        font-family: FrutigerLTStd55Roman;
        color: #000;
        font-size: 16px;
        text-transform: capitalize;
        line-height: 20px
    }

    .fixed_bottom .bnav li a>img {
        position: absolute;
        left: 10px!important;
        top: 50%;
        width: 44px;
        margin-top: -22px
    }

    .fixed_bottom .bnav.active li a.drop {
        background-color: #aaa
    }

    .foot_drop {
        float: left;
        width: 100%;
        position: absolute;
        bottom: -20px;
        left: 0;
        box-shadow: 0 0 20px rgba(0,0,0,.4);
        z-index: 9;
        transition: all .25s ease-in 0s;
        -webkit-transition: all .25s ease-in 0s
    }

    .foot_drop li {
        float: left;
        width: 50%
    }

    .foot_drop li a {
        float: left;
        width: 100%;
        background-color: #fff;
        position: relative;
        padding: 10px 10px 10px 60px!important;
        min-height: 60px;
        font-family: FrutigerLTStd55Roman;
        color: #000;
        font-size: 15px!important;
        text-transform: capitalize;
        line-height: 20px
    }

    .foot_drop li a>img {
        position: absolute;
        left: 10px!important;
        top: 50%;
        width: 44px;
        margin-top: -22px
    }

    .foot_drop.active {
        margin-bottom: 0!important;
        bottom: 60px!important
    }

    footer {
        padding-bottom: 100px!important
    }
}

@media (max-width: 1023px) {
    .ipslide_section .overlay {
        position:static;
        margin-top: 0;
        background-color: #00a950;
        padding: 15px 0
    }

    .ipslide_section .overlay h2 {
        color: #fff;
        font-size: 24px;
        padding-bottom: 10px
    }

    .ipslide_section .overlay h2 br,.ipslide_section .overlay p br {
        display: none
    }

    .ipslide_section .overlay p {
        color: #fff;
        padding-bottom: 10px;
        font-size: 14px
    }

    .ipslide_section .overlay h3 {
        color: #fff;
        padding-left: 0;
        font-size: 16px
    }

    .ipslide_section .overlay h3 img {
        display: none
    }

    .ip_list {
        position: static;
        background-color: #024b59
    }

    .ip_list ul li .inner img {
        top: -8px
    }

    .ip_list ul li:nth-child(2) .inner h5,.ip_list ul li:nth-child(3) .inner h5 {
        padding-top: 12px
    }

    .whyus_section {
        padding-top: 20px;
        margin-bottom: 0
    }

    .whyus_section h2 {
        font-size: 24px
    }

    .whyus_section ul li p {
        font-size: 12px
    }

    .whyus_section ul li .icon {
        padding-bottom: 10px
    }

    .ohn_section .inner .block p {
        font-size: 13px
    }

    .ohn_section .inner h2 {
        font-size: 24px
    }

    .ohn_section .inner .block h3 {
        font-size: 16px
    }

    .patientstory_section h2 {
        font-size: 24px
    }

    .pslarge_slide .slides>li a .overlay .fa {
        font-size: 50px
    }

    .procedure_section .inner h2 {
        font-size: 24px
    }

    .procedure_section .inner h2 a {
        line-height: 30px;
        font-size: 12px;
        min-width: 100px
    }

    .procedure_carousel .item .icon {
        width: 70px
    }

    .procedure_carousel .item .icon>img {
        width: 100%
    }

    .free_form_section h2 {
        font-size: 24px
    }

    .free_form_section form ul li {
        width: 50%
    }

    .free_form_section form ul li:last-child,.free_form_section form ul li:nth-last-child(2) {
        width: 100%
    }

    .foreplan_section .heading h2 {
        font-size: 24px
    }

    .foreplan_section .inner .col-md-3 {
        float: left
    }

    .faq_section h2 {
        font-size: 24px
    }

    .foreplan_section {
        padding-bottom: 30px
    }

    .owl-carousel .owl-item img.mobile_banner {
        display: block
    }

    .owl-carousel .owl-item img.desktop_banner {
        display: none
    }

    .cardiology_section h1,.cardiology_section h2,.cmp_section .inner h2,.consultant_section .inner h2,.cscdblog_section .inner h2 {
        font-size: 22px
    }

    .blog_item {
        margin-bottom: 20px
    }

    .cscdblog_section .inner {
        padding: 15px 15px 0
    }

    .ip_list ul li {
        padding: 10px 10px 5px
    }

    .clinical_sp_section .inner h2,.event_update_section .inner h2,.event_update_section h3,.under_hbanner h1 {
        font-size: 22px
    }

    .under_hbanner .inner ul li,.under_hbanner .inner ul li a {
        font-size: 14px
    }

    .consultant_section .inner {
        padding: 0 40px
    }

    .pt_block p {
        font-size: 14px;
        line-height: 20px
    }

    .pt_block .user_block h4 {
        font-size: 18px
    }

    .btc_btns>ul li {
        width: 50%;
        padding-bottom: 10px
    }

    .btc_btns>ul li a {
        width: 100%
    }

    .btc_btns {
        padding: 15px 0 0
    }

    .btc_btnnew>ul li {
        width: 50%;
        padding-bottom: 10px
    }

    .btc_btnnew>ul li a {
        width: 100%
    }

    .btc_btnnew {
        padding: 15px 0 5px
    }

    .whyus_section ul li .icon>img {
        width: 50px
    }

    .request_app {
        display: none
    }

    .dr_block {
        padding-left: 0;
        text-align: center;
        width: 100%
    }

    .dr_block .dr_img {
        display: inline-block;
        position: static;
        margin-bottom: 10px
    }

    .designation {
        padding-left: 0
    }

    .designation>span {
        position: static
    }

    .raa_btn {
        width: 100%;
        padding: 20px 0;
        text-align: center
    }

    .opd_schdule ul li {
        width: 33.33%
    }

    .doctors_profile {
        margin-top: 0
    }

    .raa_header {
        padding-top: 0
    }

    .navbar-header {
        width: 100%
    }

    .navbar-default .navbar-toggle {
        display: block;
        margin: 12px 0 0;
        padding: 0;
        border: none;
        background-color: transparent!important
    }

    .navbar-nav {
        padding-top: 0;
        width: 250px;
        padding: 0;
        margin: 0
    }

    .navbar-default .navbar-nav>li {
        padding-left: 0;
        padding-bottom: 0;
        width: 100%;
        margin-left: 0
    }

    .navbar-default .navbar-nav>li>a {
        border-bottom: none;
        line-height: normal;
        padding: 8px 0;
        color: #030303;
        font-size: 14px
    }

    .navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover {
        color: #ed1c24;
        border-bottom: none
    }

    .navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover {
        color: #019f48;
        border-bottom: none
    }

    .navbar-default .navbar-collapse {
        position: absolute;
        right: 0;
        top: 60px;
        z-index: 99;
        border: none
    }

    .navbar-collapse.collapse {
        display: none!important
    }

    .navbar-collapse.collapse.in {
        display: block!important
    }

    header {
        padding: 5px 0
    }

    .navbar-brand li:last-child a img {
        height: 50px
    }

    .navbar-brand li {
        line-height: 50px
    }

    .navbar-brand li:before {
        height: 40px;
        margin-top: -20px
    }

    .navbar-default .navbar-nav>li>a:after {
        display: none
    }

    .navbar-brand>img {
        height: 40px
    }

    .navbar-default {
        padding: 10px 0
    }

    .search_block {
        width: 60px;
        line-height: 60px
    }

    .ip_menu .container {
        padding: 0 10px
    }

    .navbar-default .navbar-nav {
        text-align: left;
        background-color: #dfdfdf
    }

    .navbar-default .navbar-nav>li:before {
        display: none
    }

    .kyc_section .inner {
        padding: 15px
    }

    .hb_carousel .item .banner_text {
        padding-left: 15px
    }

    .cardiology_section h3 {
        font-size: 22px
    }

    ul.slides li iframe {
        height: 250px
    }

    .ip_carousel .owl-dots {
        bottom: 10px
    }

    .hb_consultant .inner h2 a {
        top: -5px
    }

    .multiFunctionMain {
        left: 30%
    }

    #scroll {
        bottom: -65px!important
    }
}

@media (max-width: 767px) {
    .faq_section h2,.foreplan_section .heading h2,.free_form_section h2,.ipslide_section .overlay h2,.ohn_section .inner h2,.procedure_section .inner h2,.whyus_section h2 {
        font-size:20px
    }

    .whyus_section ul li p {
        font-size: 13px;
        line-height: normal
    }

    .patientstory_section h2 {
        font-size: 20px
    }

    .foreplan_section .heading {
        margin-top: -10px
    }

    .foreplan_section .block p {
        font-size: 14px;
        line-height: normal
    }

    .psthumb_slide .slides>li {
        line-height: 50px
    }

    .psthumb_slide .flex-direction-nav li {
        top: -40px
    }

    .psthumb_slide .flex-viewport {
        padding: 0 30px
    }

    .pslarge_slide .slides>li a .overlay p,.psthumb_slide .slides>li {
        font-size: 14px
    }

    .cardiology_section .container,.cscd_section .container,.ipslide_section>.container {
        padding: 0
    }

    .cmp_section .container,.consultant_section .container,.cscdblog_section .container {
        padding: 0 15px
    }

    .cscd_section .overlay {
        position: static;
        background-color: #00a950
    }

    .cardiology_section h1,.cardiology_section h2,.cmp_section .inner h2,.consultant_section .inner h2,.cscdblog_section .inner h2 {
        font-size: 18px
    }

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

    .consultant_section .inner {
        padding: 20px 0 0
    }

    .cmp_carousel .owl-nav [class*=owl-] .fa,.consult_carousel .owl-nav [class*=owl-] .fa {
        font-size: 24px
    }

    .cmp_section .inner {
        padding: 15px
    }

    .cscdblog_section .row .col-xs-12 {
        width: 50%
    }

    .clinical_sp_section .inner h2,.clinicalsp_carousel .owl-nav [class*=owl-] .fa,.event_update_section .inner h2,.event_update_section h3,.under_hbanner h1 {
        font-size: 18px
    }

    .hb_section .ip_list {
        display: none
    }

    .btc_section .container {
        padding: 0 15px
    }

    .hb_section .container,.under_hbanner .container {
        padding: 0
    }

    .clinical_sp_section {
        padding: 20px 0
    }

    .clinical_sp_section .container,.event_update_section .container {
        padding: 0 15px
    }

    .consultant_section .inner .row {
        margin: 0
    }

    .clinical_sp_section .inner {
        padding: 15px
    }

    .update_list li .cont h4 {
        font-size: 16px
    }

    .event_update_section {
        padding-top: 15px
    }

    .btc_btnnew>ul li a,.btc_btns>ul li a {
        line-height: normal;
        padding: 10px
    }

    .procedure_carousel {
        padding: 0
    }

    .raa_ps .inner {
        padding: 20px
    }

    .raa_ps .pt_block p {
        font-size: 14px;
        line-height: 20px
    }

    .ps_section .pt_block .user_block h4 {
        font-size: 16px
    }

    .ps_section .pt_block .user_block h4 span {
        font-size: 13px
    }

    .opd_schdule h4 {
        font-size: 18px
    }

    .doctors_profile h2 {
        font-size: 18px;
        padding-bottom: 10px
    }

    .doctors_profile p {
        font-size: 13px
    }

    .dr_block h1,.dr_block h2,.raa_ps h2,.repertoire_section h2 {
        font-size: 18px
    }

    .designation h2 {
        font-size: 13px
    }

    .raa_btn {
        padding-top: 10px
    }

    .raa_btn .btn {
        line-height: 36px
    }

    .designation h3 span,.raa_btn .btn {
        font-size: 13px
    }

    .repertoire_section .inner_bg {
        padding: 15px
    }

    .repertoire_tabs {
        padding-left: 0
    }

    .repertoire_tabs .nav-tabs {
        position: static;
        width: 100%
    }

    .repertoire_tabs .nav-tabs>li {
        width: 100%;
        border-left: 0;
        border-bottom: 1px solid #fff
    }

    .repertoire_tabs .nav-tabs>li:nth-child(odd) {
        border-left: none
    }

    .repertoire_tabs .nav-tabs>li.active>a:after,.repertoire_tabs .nav-tabs>li>a img {
        display: none
    }

    .repertoire_tabs .nav-tabs>li>a {
        padding: 15px!important;
        font-size: 14px
    }

    .repertoire_tabs .tab-content {
        padding: 10px;
        width: 100%
    }

    .profile_inner {
        padding: 15px 0
    }

    .view_opd {
        padding: 0;
        margin-top: 20px;
        font-size: 16px
    }

    .kyc_section h2,.mmh_section h2,.ps_section h2 {
        font-size: 20px
    }

    .hb_carousel .item .banner_text h2 {
        font-size: 18px
    }

    .hb_carousel .item .banner_text p {
        font-size: 13px
    }

    .hb_carousel .item .banner_text {
        margin-top: -30px
    }

    .hb_carousel .owl-dots {
        position: static;
        background-color: #09b058
    }

    .hb_consultant .input-group-btn:last-child>.btn {
        font-size: 13px;
        line-height: 34px
    }

    .kyc_section .container,.mmh_section .container,.ps_section .container {
        padding: 0 15px
    }

    .cardiology_section h3 {
        font-size: 22px
    }

    .csp_section .container {
        padding: 0
    }

    .csp_section .left_txt h2 {
        font-size: 20px
    }

    .right_txt .inner_dd>ul {
        padding: 5px 0
    }

    .searchf_section .input-group-btn:last-child>.btn {
        font-size: 13px;
        line-height: 34px
    }

    .hb_carousel .owl-dots .owl-dot span,header.ip_menu .navbar-toggle.collapsed {
        width: 22px
    }

    .fixed_bottom {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99999
    }

    .fixed_bottom .bnav {
        float: left;
        width: 100%;
        position: relative;
        border-top: 1px solid #aaa;
        z-index: 10
    }

    .fixed_bottom .bnav li {
        float: left;
        width: 50%
    }

    .fixed_bottom .bnav li:first-child {
        border-right: 1px solid #aaa;
        width: 50%
    }

    .fixed_bottom .bnav li a {
        float: left;
        width: 100%;
        background-color: #fff;
        position: relative;
        padding: 10px 10px 10px 60px!important;
        min-height: 60px;
        font-family: FrutigerLTStd55Roman;
        color: #000;
        font-size: 16px;
        text-transform: capitalize;
        line-height: 20px
    }

    .fixed_bottom .bnav li a>img {
        position: absolute;
        left: 10px!important;
        top: 50%;
        width: 44px;
        margin-top: -22px
    }

    .fixed_bottom .bnav.active li a.drop {
        background-color: #aaa
    }

    .foot_drop {
        float: left;
        width: 100%;
        position: absolute;
        bottom: -20px;
        left: 0;
        box-shadow: 0 0 20px rgba(0,0,0,.4);
        z-index: 9;
        transition: all .25s ease-in 0s;
        -webkit-transition: all .25s ease-in 0s
    }

    .foot_drop li {
        float: left;
        width: 50%
    }

    .foot_drop li a {
        float: left;
        width: 100%;
        background-color: #fff;
        position: relative;
        padding: 10px 10px 10px 60px!important;
        min-height: 60px;
        font-family: FrutigerLTStd55Roman;
        color: #000;
        font-size: 15px!important;
        text-transform: capitalize;
        line-height: 20px
    }

    .foot_drop li a>img {
        position: absolute;
        left: 10px!important;
        top: 50%;
        width: 44px;
        margin-top: -22px
    }

    .foot_drop.active {
        margin-bottom: 0!important;
        bottom: 60px!important
    }

    footer {
        padding-bottom: 100px!important
    }

    .backToTop #scroll {
        bottom: 75px!important
    }

    .searchf_section {
        margin: 0 0 2px
    }

    .searchf_section .form-group {
        margin-bottom: 10px
    }

    .searchf_section .form-control {
        border: none;
        background-color: #009659;
        padding: 0 10px;
        border-radius: 3px;
        letter-spacing: normal;
        height: 40px;
        color: #044b29
    }

    .searchf_section .form-control::-moz-placeholder {
        opacity: 1;
        color: #044b29
    }

    .searchf_section .form-control::-webkit-input-placeholder {
        opacity: 1;
        color: #044b29
    }

    .searchf_section .input-group {
        display: inline-block;
        width: 100%;
        text-align: left
    }

    .searchf_section .input-group-btn:last-child>.btn {
        margin-left: 0;
        margin-top: 10px;
        text-transform: uppercase
    }

    .searchf_section .input-group-btn:last-child>.btn .fa {
        display: none
    }

    .searchf_section .inner {
        padding-top: 25px
    }

    .consultant_section .inner h2 span {
        display: block;
        margin-top: 10px
    }

    .hb_consultant .inner h2 a {
        top: auto
    }

    .clinical_sp_section .inner h2 span {
        display: block;
        margin-top: 10px
    }

    .clinical_sp_section .inner h2 a {
        margin-left: 0;
        top: auto
    }

    .cmp_section .inner h2 span {
        display: block;
        margin-top: 10px
    }

    .cmp_section .inner h2 a,.consultant_section .inner h2 a {
        margin-top: 0;
        margin-left: 0;
        top: auto
    }

    .nnm_section {
        padding-bottom: 25px
    }

    .cscd_section .overlay {
        padding: 25px 25px 15px
    }

    .cscd_section .overlay .form-group {
        margin-bottom: 10px
    }

    .cscd_section .form-control {
        border: none;
        background-color: #009659;
        padding: 0 10px;
        border-radius: 3px;
        letter-spacing: normal;
        height: 40px;
        color: #044b29
    }

    .cscd_section .form-control::-moz-placeholder {
        opacity: 1;
        color: #044b29
    }

    .cscd_section .form-control::-webkit-input-placeholder {
        opacity: 1;
        color: #044b29
    }

    .cscd_section .input-group {
        display: inline-block;
        width: 100%;
        text-align: left
    }

    .cscd_section .input-group-btn:last-child>.btn {
        margin-left: 0;
        margin-top: 10px;
        text-transform: uppercase
    }

    .cscd_section .input-group-btn:last-child>.btn .fa {
        display: none
    }

    .csp_section {
        margin-bottom: 15px
    }

    .mmh_block {
        padding-bottom: 10px
    }

    .mmh_section {
        padding: 15px 0;
        margin: 0 0 20px
    }

    .nnm_section,.ps_section {
        padding-top: 15px
    }

    footer .mch23-ftin p {
        font-size: 14px;
        line-height: 22px
    }

    .cmp_section {
        padding: 15px 0
    }

    .doctors_profile .container,.raa_header .container,.repertoire_section .container {
        padding: 0 15px
    }

    .mmh_block h3 {
        margin: 0 0 10px
    }

    .mmh_block h3,.mmh_block h4 {
        font-size: 16px
    }

    .sub_s_section .nav-tabs>li>a {
        background-color: transparent;
        border-bottom: 2px solid transparent;
        text-transform: uppercase
    }

    .sub_s_section .nav-tabs>li.active>a,.sub_s_section .nav-tabs>li.active>a:focus,.sub_s_section .nav-tabs>li.active>a:hover {
        background-color: transparent;
        border-bottom: 2px solid #00a950
    }

    .blog_carousel.owl-carousel .owl-dots {
        width: 100%;
        text-align: center;
        z-index: 100;
        padding: 0;
        margin: 10px 0
    }

    .blog_carousel.owl-carousel .owl-dots .owl-dot {
        padding: 0 3px;
        display: inline-block
    }

    .blog_carousel.owl-carousel .owl-dots .owl-dot span {
        margin: 0;
        border-radius: 100%;
        height: 10px;
        width: 10px;
        background-color: #f87a2f;
        float: left
    }

    .blog_carousel.owl-carousel .owl-dots .owl-dot.active span,.pspeak_carousel1 .owl-dots .owl-dot:hover span,.pspeak_carousel .owl-dots .owl-dot:hover span {
        background-color: #024b59
    }

    .cscdblog_section {
        padding-bottom: 20px
    }

    .scrollEffect {
        width: 100%;
        overflow: scroll
    }

    .scrollEffect ul {
        width: 970px!important
    }

    .procedure_section .inner {
        padding-top: 0;
        padding-bottom: 0
    }

    .foreplan_section .block .btn {
        width: 100%
    }

    .patientstory_section,.ps_section {
        padding-top: 0
    }

    .sub_s_section .tab-content {
        float: right;
        width: 100%
    }

    .body_list.left>li:first-child:hover .right_txt,.body_list.right>li:first-child .right_txt,.body_list>li:first-child .right_txt {
        left: auto;
        right: auto
    }

    .body_list>li:first-child:hover .right_txt {
        left: auto
    }

    .male .body_list.left>li:nth-child(9) {
        left: 120px;
        top: 445px
    }

    .forOtherProTxt {
        font-size: 14px;
        bottom: -5px
    }

    .multiFunctionMain {
        left: 30%;
        width: 300px
    }

    .multiFunctionMain h2 {
        font-size: 15px;
        padding-left: 15px;
        padding-right: 15px
    }

    .multiFunctionMain ul {
        padding: 10px 15px
    }

    .multiFunctionMain span {
        top: 10px;
        right: 15px
    }

    .multiFunctionMain li a {
        font-size: 13px;
        padding: 7px 0
    }

    .csp_section .right_txt ul li a {
        padding: 4px 10px;
        line-height: 15px
    }

    .right_txt p {
        font-size: 15px
    }
}

@media (max-width: 639px) {
    .ip_list {
        display:none;
        padding: 10px
    }

    .whyus_section ul li .icon {
        width: 40px;
        display: inline-block
    }

    .whyus_section ul li .icon>img {
        width: 100%
    }

    .free_form_section form ul li {
        width: 100%;
        padding: 0 0 10px
    }

    .free_form_section .inner p {
        padding-left: 0
    }

    .foreplan_section .inner .col-md-3 {
        width: 100%
    }

    .procedure_section .inner h2 a {
        display: block;
        margin-top: 15px
    }

    .clinical_sp_section .inner h2 a {
        margin-top: 0
    }

    .hb_consultant .inner h2 a {
        margin: 0;
        top: 0
    }

    .consultant_section .inner h2 {
        padding: 0 15px;
        display: inline-block;
        width: 100%;
        margin-bottom: 0
    }

    .update_list li {
        padding-left: 0;
        text-align: center
    }

    .update_list li .img_block {
        position: static;
        display: inline-block;
        margin-bottom: 10px
    }

    .event_update_section h3 {
        text-align: center
    }

    .event_update_section .inner h2 {
        border-bottom: 1px solid #aaa;
        padding-bottom: 10px;
        margin-bottom: 10px
    }

    .pt_block {
        padding: 10px;
        text-align: center;
        margin-bottom: 20px
    }

    .pt_block .user_block {
        display: inline-block;
        position: static;
        padding-left: 0
    }

    .pt_block:after,.pt_block:before {
        display: none
    }

    .ptestimonial_carousel .item {
        padding: 10px 0 0
    }

    .ptestimonial_carousel .owl-dots {
        bottom: -10px
    }

    .whyus_section ul li {
        width: 33.33%
    }

    .opd_schdule ul li {
        width: 50%
    }

    .raa_ps .pt_block {
        padding: 10px
    }

    .ps_section .pt_block .user_block {
        display: inline-block;
        position: static;
        padding: 0
    }

    .pspeak_carousel1 .item,.pspeak_carousel .item {
        padding: 0
    }

    .ps_section .pt_block {
        padding-left: 0
    }

    .ps_section .pt_block p {
        font-size: 13px;
        line-height: 20px
    }

    .nnm_section .update_list li {
        padding-left: 0
    }

    .repertoire_tabs .nav-tabs>li>a {
        padding: 25px 15px 10px 30px
    }

    .repertoire_tabs .nav-tabs>li:last-child>a {
        padding: 15px 15px 10px 30px
    }

    .blog_carousel.owl-theme .owl-dots {
        margin: 10px 0;
        display: inline-block;
        width: 100%;
        text-align: center
    }

    .blog_carousel.owl-theme .owl-dot {
        display: inline-block;
        padding: 0
    }

    .blog_carousel.owl-theme .owl-dot span {
        margin: 0 3px;
        float: left;
        width: 12px;
        height: 12px;
        background-color: #fff;
        border-radius: 100%;
        border: 1px solid #f87a2f
    }

    .blog_carousel.owl-theme .owl-dot.active span {
        background-color: #f87a2f
    }

    .consultant_section .consult_carousel {
        padding-top: 20px
    }

    .fixedinrpopup {
        top: -275%
    }

    .fixedinrpopup ul li {
        height: 100px
    }

    .fixedinrpopup ul li label {
        font-size: 12px
    }

    .fixedsidebar.active .fixedinrpopup {
        width: 280px
    }

    .multiFunctionMain {
        left: 35%
    }
}

@media (max-width: 479px) {
    .whyus_section ul li {
        width:50%
    }

    .pslarge_slide .slides>li a .overlay .fa {
        font-size: 30px
    }

    .pslarge_slide .slides>li a .overlay {
        margin-top: -35px
    }

    .cscdblog_section .row .col-xs-12,.faq_section h2,.search_box {
        width: 100%
    }

    .repertoire_tabs .nav-tabs>li>a {
        padding: 10px 5px!important;
        font-size: 12px;
        text-align: center
    }

    .opd_schdule h4 {
        font-size: 14px
    }

    .csp_section .right_txt ul li a {
        font-size: 12px
    }

    .right_txt {
        width: 200px;
        margin-left: -80px
    }

    .body_list.right .right_txt {
        width: 200px;
        margin-left: -100px
    }

    .btc_btns>ul li a {
        min-height: 56px
    }

    .btc_btns>ul li:last-child a,.btc_btns>ul li:nth-last-child(2) a {
        padding-top: 20px
    }

    .btc_btnnew>ul li a {
        min-height: 56px
    }

    .btc_btnnew>ul li:last-child a,.btc_btnnew>ul li:nth-last-child(2) a {
        padding-top: 20px
    }

    .nnm_section .update_list li {
        margin-bottom: 20px
    }

    .nnm_section .update_list li .img_block {
        width: 100%;
        height: auto
    }

    .nnm_section .update_list li .cont {
        text-align: left;
        width: 100%;
        height: auto
    }

    .multiFunctionMain {
        left: 50%;
        width: 260px
    }

    .navbar-brand>img {
        height: 70px
    }
}

@media (max-width: 359px) {
    .sub_s_section .nav-tabs>li>a {
        font-size:10px
    }

    .opd_schdule ul li p {
        font-size: 11px
    }

    .body_list.right .right_txt {
        width: 190px;
        margin-left: -95px
    }

    .fixed_bottom .bnav li {
        width: 56%
    }

    .fixed_bottom .bnav li:first-child {
        width: 44%
    }

    .foot_drop li a {
        font-size: 13px
    }

    .scrollEffect ul {
        width: 700px!important
    }

    .structure {
        width: 280px;
        max-width: inherit
    }
}

@media (max-width: 1279px) {
    .bottom_nnav .navbar-default .navbar-nav>li>a {
        padding:0 5px
    }

    .new_header .container {
        padding: 0 30px
    }

    .navbar-default .navbar-nav>li>a {
        font-size: 13px
    }
}

@media (max-width: 1199px) {
    .bannercontentbox {
        width:480px;
        padding: 15px;
        top: 25%
    }

    .bannercontentbox h1,.bannercontentbox h2 {
        font-size: 24px;
        color: #00a950;
        margin: 0;
        padding: 0 0 10px
    }

    .bannercontentbox p {
        font-size: 16px;
        line-height: 22px;
        color: #fff;
        margin: 0;
        padding: 0
    }

    .cscd_section .overlay {
        position: static
    }

    .row.clinical-speciality-desktop {
        background-color: #000;
        margin-left: -20px;
        margin-right: -20px
    }

    .bannercontentbox {
        left: 0;
        top: auto;
        bottom: 0;
        width: 100%
    }
}

@media (max-width: 1023px) {
    .cscd_section .overlay {
        width:92%;
        margin: 0 auto;
        position: static;
        background: #042028
    }

    .row.clinical-speciality-desktop {
        background-color: transparent;
        margin-left: -15px;
        margin-right: -15px
    }

    .navbar-brand>img {
        height: 70px
    }
}

@media (max-width: 767px) {
    .multi ul {
        display:block
    }

    .multi ul li {
        list-style: inherit
    }

    .nnm_section .video_block {
        position: relative;
        text-align: center
    }

    .mch23-ftin ul li {
        text-align: left!important
    }

    .nnm_section .update_list li {
        list-style-type: none
    }

    .bannercontentbox {
        text-align: center;
        position: relative;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #042028;
        padding: 10px 20px 15px
    }

    .bannercontentbox h1 {
        font-size: 21px;
        color: #00a950;
        margin: 0;
        padding: 0 0 10px
    }

    .bannercontentbox p {
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        margin: 0;
        padding: 0
    }
}

@media (max-width: 480px) {
    .desktop-second-form {
        display:none
    }

    .mobile-search-second,.mobile-search-third {
        display: block
    }

    .desktop-third-form {
        display: none
    }

    .clinical-speciality-mobile {
        display: block
    }

    .clinical-speciality-desktop,section.mobile-search-first .inner .form-group {
        display: none
    }

    section.mobile-search-first .inner .form-group:last-child {
        display: block
    }

    section.under_hbanner.mobile-search-first {
        display: inline-block;
        width: 100%;
        float: none
    }

    .mobile-search-second .form-group {
        display: none
    }

    .mobile-search-second .form-group:last-child {
        display: block
    }

    .mobile-search-third .form-group {
        display: none
    }

    .mobile-search-third .form-group:last-child {
        display: block
    }

    .clinical-speciality-mobile .form-group {
        display: none
    }

    .clinical-speciality-mobile .form-group:last-child {
        display: block
    }

    .kyc_section .img_block {
        margin: 0 auto 10px
    }

    header.ip_menu .navbar-toggle.collapsed {
        background: 0 0!important
    }

    header.ip_menu button.navbar-toggle.hamburger.open span {
        display: none
    }

    header.ip_menu .navbar-default .navbar-nav {
        padding: 10px
    }
}

@media (max-width: 1279px) {
    .top_nnav {
        display:none
    }

    .navbar>.container-fluid .navbar-brand {
        top: -5px
    }

    .navbar-default .navbar-toggle {
        margin-top: 22px
    }

    .bottom_nnav.affix {
        padding-bottom: 10px
    }

    .bottom_nnav.affix .navbar-brand {
        top: 2px
    }

    .mobSearch {
        display: block;
        right: 175px;
        top: 22px;
        position: absolute;
        color: #00a950
    }

    .mobSearch a {
        color: #00a950;
        font-size: 20px;
        font-weight: 500;
        background-size: 23px;
        padding-left: 35px;
        padding-top: 5px;
        padding-bottom: 5px
    }

    .mobAmbulance {
        display: block;
        right: 85px;
        top: 22px;
        position: absolute;
        color: #00a950
    }

    .container-fluid>.navbar-header {
        padding-top: 5px;
        padding-bottom: 5px
    }

    .bottom_nnav.affix .container-fluid>.navbar-header {
        padding-top: 0;
        padding-bottom: 0
    }

    .bottom_nnav.affix .navbar-default .navbar-toggle {
        margin-top: 15px
    }

    .navbar-default .navbar-collapse {
        width: 90%;
        top: 72px
    }

    .bottom_nnav.affix .navbar-default .navbar-collapse,.bottom_nnav .navbar-collapse.collapse.in,.bottom_nnav .navbar-default .navbar-collapse {
        display: none!important
    }

    .right_menu {
        position: fixed;
        background-color: #fff;
        width: 270px;
        height: 100%;
        right: -270px;
        top: 0;
        z-index: 98;
        display: inline-block;
        padding-top: 90px;
        overflow-y: auto;
        transition: all 1.5s ease-in-out 1s;
        -webkit-transition: all .5s ease-in-out 0s
    }

    .right_menu.active {
        right: 0
    }

    .rm_menu {
        display: inline-block;
        width: 100%;
        padding: 15px 0 20px
    }

    .rm_menu ul,.rm_menu ul li {
        float: left;
        width: 100%
    }

    .rm_menu ul li {
        position: relative
    }

    .rm_menu ul li a {
        width: 100%;
        line-height: 40px;
        padding: 0 34px 0 15px;
        font-size: 14px;
        text-transform: capitalize;
        color: #000;
        position: relative;
        font-family: FrutigerLTStd55Roman
    }

    .rm_menu ul li .plus-minus {
        position: absolute;
        right: 10px;
        top: 3px;
        height: 34px;
        width: 34px;
        text-align: center;
        line-height: 34px;
        color: #000;
        font-size: 14px;
        cursor: pointer;
        font-family: frutiger_ce_55_romanregular
    }

    .rm_menu ul li a:hover+.plus-minus {
        color: #000
    }

    .rm_menu ul li .right-dropdown {
        position: relative;
        background-color: #e4e4e4;
        padding: 15px 0 0;
        display: none
    }

    .rm_menu ul li .right-dropdown>li {
        padding: 0 34px 10px 15px
    }

    .rm_menu ul li .right-dropdown>li>a {
        line-height: 18px;
        font-size: 14px;
        color: #000;
        border-left: 3px solid #00a950;
        padding-left: 10px;
        width: auto;
        text-transform: none;
        padding-right: 0
    }

    .rm_menu ul li .right-dropdown>li>a:focus,.rm_menu ul li .right-dropdown>li>a:hover {
        background-color: transparent
    }

    .nav_two>li .sub_list {
        padding-bottom: 0;
        display: none
    }

    .nav_two>li .sub_list>li>a {
        padding: 0;
        text-transform: none;
        float: none
    }

    .nav_two>li .sub_list>li {
        padding-left: 13px
    }

    .rm_menu ul li .right-dropdown>li .plus-minus {
        line-height: normal;
        top: 0;
        height: auto
    }

    .navbar-header {
        width: 100%
    }

    .navbar-default .navbar-toggle {
        display: block;
        padding: 0;
        border: none;
        background-color: transparent!important
    }

    .navbar-nav {
        padding-top: 0;
        width: 250px;
        padding: 0;
        margin: 0
    }

    .navbar-default .navbar-nav>li {
        padding-left: 0;
        padding-bottom: 0;
        width: 100%;
        margin-left: 0
    }

    .navbar-default .navbar-nav>li>a {
        border-bottom: none;
        line-height: normal;
        padding: 8px 0;
        color: #030303;
        font-size: 14px
    }

    .navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover {
        color: #ed1c24;
        border-bottom: none
    }

    .navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover {
        color: #019f48;
        border-bottom: none
    }

    .navbar-default .navbar-collapse {
        position: absolute;
        right: 0;
        top: 60px;
        z-index: 99;
        border: none
    }

    .navbar-collapse.collapse {
        display: none!important
    }

    .navbar-collapse.collapse.in {
        display: block!important
    }

    .bottom_nnav .navbar-brand img {
        height: 50px
    }

    .hospcls {
        padding-left: 15px
    }

    .hospcls li a {
        color: #666!important;
        line-height: 18px!important
    }

    .hospcls li a:hover {
        color: #00a950!important
    }
}

@media (max-width: 1023px) {
    .btc_section .sub_s_section .nav-tabs,.btc_section .sub_s_section .tab-content {
        width:100%;
        float: left
    }

    .bottom_nnav.affix .navbar-nav>li.sticky_item input[type=search]:focus {
        width: 580px
    }

    .dropdown_search_mobile.open {
        display: block
    }

    .dropdown_search_mobile .input-group {
        width: 100%
    }

    .dropdown_search_mobile .input-group .form-control {
        height: 60px;
        border-radius: 3px;
        padding: 0 120px 0 10px;
        border: 1px solid #e1e1e1
    }

    .dropdown_search_mobile .input-group .btn {
        border-radius: 3px;
        position: absolute;
        right: 10px;
        top: 10px;
        line-height: 26px;
        z-index: 99
    }

    .right_txt {
        z-index: 90
    }

    .body_list.right>li:hover .right_txt,.body_list>li:hover .right_txt {
        opacity: 0;
        visibility: hidden
    }

    .body_list>li.active .right_txt {
        top: 20px;
        display: block;
        opacity: 1!important;
        visibility: visible!important
    }

    .cscdblog_section .inner h2 a {
        top: auto
    }
}

@media (max-width: 767px) {
    .new_header .container {
        padding:0 15px
    }

    .navbar>.container-fluid .navbar-brand {
        width: 110px
    }

    .navbar>.container-fluid .navbar-brand a img {
        width: 100%;
        height: auto
    }

    .container-fluid>.navbar-header {
        padding-top: 10px
    }

    .mobSearch {
        right: 125px
    }

    .mobSearch a {
        padding-left: 27px;
        font-size: 17px
    }

    .mobAmbulance {
        right: 68px
    }

    .bottom_nnav.affix .navbar-default .navbar-toggle,.navbar-default .navbar-toggle {
        margin-top: 20px
    }

    .fixed_bottom .bnav li a {
        padding-top: 16px
    }

    .fixed_bottom .bnav li a,.foot_drop li a {
        font-size: 15px;
        line-height: 16px;
        padding-bottom: 7px
    }

    .foot_drop li a {
        padding-top: 15px
    }

    .foot_drop.active {
        bottom: 61px
    }

    .bottom_nnav.affix .navbar-default .navbar-collapse,.navbar-default .navbar-collapse {
        top: 62px
    }

    .styled_select select option {
        background: #000
    }

    .repertoire_section {
        padding-bottom: 30px
    }

    .raa_ps {
        padding-bottom: 75px
    }

    .profile_inner {
        padding-bottom: 5px
    }

    .free_form_section {
        padding-bottom: 10px
    }

    .bannercontentbox {
        text-align: center;
        position: relative;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #042028;
        padding: 10px 20px 15px
    }

    .bannercontentbox h1,.bannercontentbox h2 {
        font-size: 21px;
        color: #00a950;
        margin: 0;
        padding: 0 0 10px
    }

    .bannercontentbox p {
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        margin: 0;
        padding: 0
    }

    .rm_menu {
        padding-bottom: 70px
    }

    .csp-popupcontent2 {
        min-height: inherit
    }

    .mch23-ftin {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        float: left
    }

    footer .mch23-ftin .col-xs-6 {
        margin-bottom: 15px
    }

    .social {
        margin: 5px 0
    }

    .social a {
        margin: 0 5px 0 0
    }

    .social a,.social a:hover {
        width: 30px;
        height: 30px;
        line-height: 30px;
        padding: 0;
        font-size: 13px;
        text-align: center
    }

    .btc_section .sub_s_section {
        padding: 10px
    }

    .sub_s_section .nav-tabs>li>a {
        font-size: 14px
    }

    .btc_section .sub_s_section .nav-tabs {
        padding-bottom: 10px
    }

    .sub_s_section p {
        font-size: 14px;
        line-height: 20px
    }

    .btc_section .sub_s_section .tab-content {
        padding-bottom: 10px
    }

    .header_text {
        position: relative;
        width: 100%;
        top: 0;
        left: 0
    }

    .bottom_nnav {
        margin-top: 0
    }

    .mobSearch {
        top: 55px
    }

    .mobAmbulance {
        top: 53px
    }

    .bottom_nnav.affix .mobSearch {
        top: 25px
    }

    .bottom_nnav.affix .mobAmbulance {
        top: 23px
    }

    .cscdblog_section .inner h2 span {
        display: block;
        padding-top: 10px
    }

    .new_header {
        min-height: 70px
    }

    .mobSearch {
        top: 25px
    }

    .mobAmbulance {
        top: 23px
    }
}

@media (max-width: 479px) {
    .bottom_nnav .navbar>.container-fluid .navbar-brand {
        width:95px
    }

    .mobSearch {
        right: 110px
    }

    .mobAmbulance {
        right: 60px
    }

    .social a {
        margin: 0 2px 0 0
    }

    .consult_carousel .inner_item p {
        min-height: inherit
    }

    .hosLocIcon {
        width: 100%
    }
}

body.pink-body .bottom_nnav .navbar-default .navbar-nav>li.ip_item a {
    background-color: #ec008c;
    border-color: #ec008c
}

body.pink-body .new_header {
    border-bottom: 5px solid #ec008c
}

body.pink-body .bottom_nnav.affix {
    border-bottom: 3px solid #ec008c
}

body.pink-body .under_hbanner .inner {
    background: #ec008c
}

body.pink-body .clinical_sp_section .inner h2 {
    color: #ec008c
}

body.pink-body .consultant_section .inner {
    background: #ec008c
}

body.pink-body #scroll,body.pink-body .btc_btns>ul li a {
    background-color: #ec008c
}

body.pink-body footer {
    border-top: 12px solid #ec008c
}

body.pink-body .fixedinrpopup {
    background: #ec008c
}

body.pink-body .followup-slide.feedbackbtn {
    background-color: #ec008c
}

body.pink-body .breadcrumb .active {
    color: #ec008c!important
}

body.pink-body footer .sp_btn_list li a {
    border: 1px solid #ec008c;
    color: #ec008c
}

body.pink-body footer .sp_btn_list li a:hover {
    background-color: #ec008c;
    color: #fff
}

body.pink-body .navbar-brand a {
    display: block
}

body.pink-body .navbar-brand a img {
    max-width: 74%
}

@media screen and (max-width: 1279px) {
    .right_menu.active {
        position:fixed;
        top: 0
    }

    .rm_menu {
        overflow-y: auto
    }
}

.fixedButton {
    position: fixed;
    z-index: 999;
    top: 69px
}

@media screen and (min-width: 768px) {
    .button_sticky_for_desktop {
        display:block
    }

    #button_sticky_for_mobile1 {
        display: none
    }
}

@media screen and (max-width: 768px) {
    .button_sticky_for_desktop {
        display:none
    }

    .button_sticky_for_mobile1 {
        -ms-transform: translateY(-12px);
        transform: translateY(-12px);
        z-index: -1
    }

    #button_sticky_for_mobile1 {
        width: 100%
    }

    .button_sticky_for_mobile2 {
        display: block;
        position: fixed;
        top: 69px;
        -ms-transform: translateY(0);
        transform: translateY(0);
        transition-duration: .2s;
        z-index: 999
    }

    #quick_inquiry_button {
        color: #fff;
        width: 100%
    }
}

#quick_inquiry_button {
    color: #fff;
    width: 100%;
    border-radius: 0;
    background-color: #00aa54
}

#quick_inquiry_button:focus {
    outline: none
}

#quick_inquiry_button:hover {
    background-color: #00aa54;
    color: #fff
}

.mega_menu_button {
    display: -ms-flexbox;
    display: flex;
    gap: 3px
}

.mega_menu_inner_button {
    position: relative;
    display: inline-block;
    padding: 0!important;
    text-align: center;
    background-color: #00aa54;
    border: none;
    border-radius: 0;
    color: #fff!important;
    cursor: pointer;
    font-size: 11px!important
}

@media (max-width: 500px) {
    .app_btn_wrapper {
        display:none
    }
}

/*# sourceMappingURL=main.0a118491.css.map*/
