:root {
    --black-color: #000000;
    /** var(--black-color) **/
    --black-color1: #777777;
    /** var(--black-color) **/
    --white-color: #ffffff;
    /** var(--white-color) **/
    --primary-color: #A0652F;
    /** var(--primary-color) **/
    --secondary-color: #505050;
    /** var(--secondary-color) **/
    --dark-bg-color: #2F2E2E;
    --light-bg: #f4f4f4;
    /** var(--light-bg) **/
    --gray-color: #7B7979;
    /** var(--gray-color) **/
    --text-color: #797A80;
    /** var(--text-color) **/
    --bdr-color: #A6A7AB;
    /** var(--bdr-color) **/
    --bdr-color1: #D2D3D5;
    /** var(--bdr-color1) **/
    --light-blue-color: #EEF5FF;
    --light-color: #6B8080;
    --primary-font: "Mona Sans", serif;
    /**var(--primary-font) **/
    /**--primary-font:"Poppins", sans-serif;  var(--primary-font) **/

}

/*==================================:: WOW CSS Start ::==================================*/
.animated {
    animation-duration: 0.5s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    animation-duration: .75s
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

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

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

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

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, .95, 1)
    }

    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {

    0%,
    to {
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

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

    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {

    0%,
    11.1%,
    to {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

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

.bounceInDown {
    animation-name: bounceInDown
}

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

.bounceInLeft {
    animation-name: bounceInLeft
}

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

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes 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)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }

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

.bounceOut {
    animation-name: bounceOut
}

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

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

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

.bounceOutDown {
    animation-name: bounceOutDown
}

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

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

.bounceOutLeft {
    animation-name: bounceOutLeft
}

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

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

.bounceOutRight {
    animation-name: bounceOutRight
}

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

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

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

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -10%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 10%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-10%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(10%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -10%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    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)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX
}

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

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

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

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

    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInY
}

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

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

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

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

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

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

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

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(10%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(10%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

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

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-10%, 0, 0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(10%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

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

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

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

    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

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

    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(10%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 10%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

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

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

.slideOutDown {
    animation-name: slideOutDown
}

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

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

.slideOutLeft {
    animation-name: slideOutLeft
}

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

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

.slideOutRight {
    animation-name: slideOutRight
}

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

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

.slideOutUp {
    animation-name: slideOutUp
}

/*==================================:: WOW CSS End ::==================================*/

/* ===== RESET ================================================== */
html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

hr {
    display: block;
    height: 0.125rem;
    max-width: 100%;
    border: 0;
    border-top: 0.125rem solid var(--black-color);
    margin: 1.25rem 0;
    padding: 0;
    opacity: 1;
}

input,
select {
    vertical-align: middle;
    margin: 0;
}

ol,
ul,
li {
    list-style: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

blockquote {
    padding: 0 0 0 1.25rem;
    margin: 2.3rem 0;
    position: relative;
    border-left: 0.125rem solid var(--primary-color);
}

blockquote,
blockquote p {
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

/* ===== GLOBAL ================================================== */
body {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: var(--secondary-color);
    overflow-x: hidden;
    padding: 0;
    transition: all 0.4s ease;
    font-weight: 400;
}

:focus {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    outline: none;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

a:focus {
    outline: 0;
    outline: none;
}

strong {
    font-weight: bold;
}

figure {
    margin: 0;
}

/* Ul Li & Ol Li CSS */
ul,
ol {
    margin: 0;
    padding: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
    margin-top: 0.938rem;
}

ul li,
ol li {
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: var(--secondary-color);
    font-weight: 400;
}

li a {
    color: var(--black-color);
}

.entry-content li a {
    text-decoration: underline;
}

.entry-content li a:hover {
    text-decoration: none;
    color: var(--black-color);
}

.entry-content ul,
.entry-content ol {
    display: inline-block;
    padding: 0;
    margin: 0 0 1.8rem 0;
}

.entry-content ul ol,
.entry-content ol ul,
.entry-content ul ul,
.entry-content ol ol {
    display: block;
    margin-top: 0.5rem;
}

.entry-content ul li {
    list-style: none;
    padding: 0 0 0 1.313rem;
    margin: 0 0 0.625rem 0;
    position: relative;
}

.entry-content ul li:last-child {
    margin-bottom: 0;
}

.entry-content ul li:before {
    display: block;
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    background: var(--black-color);
    position: absolute;
    left: 0.313rem;
    top: 0.66rem;
    border-radius: 100%;
}

.entry-content ul li li:before {
    border: 0.063rem solid var(--black-color);
    background: var(--white-color);
    top: 0.75rem;
}

.entry-content ol {
    margin-left: 1.25rem;
}

.entry-content ol li {
    list-style-type: decimal;
    list-style-image: none;
    list-style-position: outside;
    margin: 0 0 0.375rem 0;
}

.entry-content ul,
.entry-content ol {
    display: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    color: var(--black-color);
    font-family: var(--secondary-font);
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 0.938rem;
}

.h1,
h1 {
    font-size: 3.75rem;
    line-height: 4rem;
    font-weight: bold;
}

.h2,
h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 600;
}

.h3,
h3 {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 600;
    ;
}

h4 {
    font-size: 1.875rem;
    font-weight: 500;
}

h5 {
    font-size: 1.375rem;
}

h6 {
    font-size: 1.25rem;
}

.font-16-reg {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.font-18-reg {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}

.font-20-reg {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.font-16-med {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.font-18-med {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

.font-20-med {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.font-16-semib {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.font-18-semib {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.font-20-semib {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

p {
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--black-color);
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 0 0.9rem;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
}

section *:last-child {
    margin-bottom: 0;
}

.wrapper {
    padding: 10.6rem 0 0 0;
}

.inr-wrapper {
    padding: 6.5rem 0 0 0;
}

/*.home .wrapper{padding:0;}*/
.container {
    max-width: 85.25rem;
    width: 100%;
    padding: 0 1.25rem;
}

.img-cover {
    width: 100%;
}

.img-cover iframe,
.img-cover video,
.img-cover img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease-in-out;
    display: block;
}

img.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
    max-width: 39.25rem;
    width: 100%;
    height: auto;
}

img.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
    max-width: 39.25rem;
    width: 100%;
    height: auto;
}

img.alignnone,
img.aligncenter {
    margin: 1.5rem auto;
    display: block;
}

.transition-all {
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

table tr th {
    font-weight: 500
}

table {
    border-bottom: 0.063rem solid var(--bdr-color1);
}

table tr td,
table tr th {
    font-size: 1.125rem;
    line-height: normal;
    padding: 0.72rem 0.438rem;
    border-top: 0.063rem solid var(--bdr-color1);
}

/*Form Input Field*/
input,
textarea,
select {
    background: var(--white-color);
    border: 0.063rem solid #E0E0E0 !important;
    width: 100%;
    text-align: left;
    padding: 1.25rem 0.938rem;
    margin: 0;
    font-size: 1rem;
    color: var(--black-color1);
    font-weight: 400;
    line-height: normal;
    font-family: var(--primary-font) !important;
    height: 2.75rem;
    outline: none;
    -webkit-border-radius: .375rem;
    -moz-border-radius: .375rem;
    border-radius: .375rem;
    box-shadow: none !important;
    outline: none;
    letter-spacing: 0;
    transition: all 0.4s ease;
}

input[type="button"],
input[type="submit"] {
    cursor: pointer;
    width: auto;
    height: auto;
}

input[type="checkbox"],
input[type="radio"] {
    border: none;
    width: auto;
    height: auto;
}

textarea {
    vertical-align: middle;
    resize: none;
    height: 6.25rem;
    padding: 1rem;
}

::-webkit-input-placeholder {
    color: var(--bdr-color);
    opacity: 1;
}

:-moz-placeholder {
    color: var(--bdr-color);
    opacity: 1;
}

/* Firefox 18- */
::-moz-placeholder {
    color: var(--bdr-color);
    opacity: 1;
}

/* Firefox 19+ */
:-ms-input-placeholder {
    color: var(--bdr-color);
    opacity: 1;
}

.select-box {
    display: block;
    width: 100%;
    background: #fff;
    border: 0;
    line-height: 2.5rem;
    position: relative;
    cursor: pointer;
}

.select-box:after {
    position: absolute;
    content: "";
    background: url(../images/dropdown-icon.svg) no-repeat center;
    right: 1.25rem;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
    width: 0.625rem;
    height: 0.375rem;
}

.select-box select {
    line-height: 2.375rem;
    display: block;
    width: 100%;
    padding: 0 2.5rem 0 1rem;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.select-box select optgroup,
.select-box select option {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 4px 10px;
}

.select-box select optgroup {
    color: rgb(166 167 171 / 50%);
    font-weight: 400;
}

body .field {
    margin-bottom: 2.188rem;
    display: block;
}

label {
    font-size: 1rem;
    line-height: 1.1rem;
    display: block;
    margin-bottom: 0.8rem;
    letter-spacing: 0rem;
    color: var(--black-color);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #777777;
}

.field .label {
    font-size: 0.875rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.438rem;
    letter-spacing: 0.063rem;
}

.field .label span {
    color: #FF2424;
}

.radio-btn {
    position: relative;
    line-height: 1;
}

.radio-btn+.radio-btn {
    margin-top: 1.875rem;
}

.radio-btn label {
    padding-left: 2.063rem;
    position: relative;
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: normal;
    cursor: pointer;
}

.radio-btn label a {
    text-decoration: underline;
}

.radio-btn label a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.radio-btn input {
    opacity: 0;
    position: absolute;
}

.radio-btn label:before {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    border: 0.063rem solid var(--bdr-color);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
    transition: all 0.4s ease;
}

.radio-btn label:after {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    left: 0.313rem;
    top: 0.313rem;
    border-radius: 100%;
    background: var(--black-color);
    transition: all 0.4s ease;
    opacity: 0;
    display: block;
    position: absolute;
}

.radio-btn input:checked+label:before {
    border-color: var(--black-color);
}

.radio-btn input:checked+label:after {
    opacity: 1;
}

.btn[disabled],
.button,
.btn {
    display: inline-block;
    padding: 0 1.5rem;
    background: var(--primary-color);
    border: 0;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 2.625rem;
    height: 2.625rem;
    font-weight: 400;
    font-family: var(--primary-font);
    cursor: pointer;
    letter-spacing: 0.01rem;
    text-align: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    box-shadow: none !important;
    position: relative;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn[disabled]:hover,
.btn[disabled]:focus,
.btn[disabled]:active,
.button:hover,
.btn:hover,
.button:focus,
.btn:focus,
.button:active,
.btn:active {
    color: var(--primary-color);
    background: var(--white-color);
}

.btn-white-outline {
    background: none;
    border: 0.125rem solid var(--white-color);
    line-height: 2.775rem;
    height: 3rem;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline:active {
    background: var(--white-color);
    color: var(--secondary-color);
}

.btn-white-outline svg {
    margin-left: 10px;
}

.btn-white-outline:hover svg path {
    fill: #0E8181;
}

.btn-primary,
.btn-primary:focus {
    background: var(--dark-bg-color);
    border: 0 solid var(--dark-bg-color);
    color: var(--white-color);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
    background: var(--primary-color);
    color: var(--white-color);
    outline: none;
}

.btn-sm.btn-primary {
    padding: 8px 20px;
    gap: 10px;
    height: 36px;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.btn-secondary,
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 8px 20px !important;
    ;
    gap: 10px;
    height: 36px !important;
    ;
    background: #A0652F !important;
    box-shadow: 0px 4px 4px rgba(160, 101, 47, 0.2) !important;
    border-radius: 6px;
    text-transform: capitalize;
    color: var(--white-color) !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus-visible {
    background: var(--dark-bg-color) !important;
    color: var(--white-color) !important;
    box-shadow: 0px 4px 4px rgba(80, 80, 80, 0.2) !important;
    outline: none;
}

.btn-grey,
.btn-grey:focus,
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
    background: #E4E4E4 !important;
    border: 1px solid #E2E2E2 !important;
    color: #929292 !important;
    padding: 8px 20px !important;
    gap: 10px;
    height: 36px !important;
    text-transform: capitalize;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0px 4px 4px rgba(197, 197, 197, 0.2) !important;
}

.btn-grey:hover,
.btn-grey:active,
.btn-grey:focus-visible {
    background: var(--dark-bg-color) !important;
    color: var(--white-color) !important;
    border: 1px solid var(--dark-bg-color) !important;
    outline: none;
}


.form-group label {
    margin-bottom: 0.5rem;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #D4D4D4 !important;
    opacity: 1 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #D4D4D4 !important;
    opacity: 1 !important;
}

input:-ms-input-placeholder,
textarea::-ms-input-placeholder {
    /* IE 10+ */
    color: #D4D4D4;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #D4D4D4 !important;
    opacity: 1 !important;
}

input::placeholder,
textarea:placeholder {
    /* Firefox 19+ */
    color: #D4D4D4 !important;
    opacity: 1 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s;
}

.text-danger.errors {
    color: #ff0000;
    font-size: 0.9rem;
}

.text-primary {
    color: var(--primary-color) !important;
    font-size: 0.9rem;
}

/*========= Mobile Menu STYLE End ===========*/
/*Mobile Menu Css Start*/
.mobi-iconbox {
    display: none;
    cursor: pointer;
    width: 20px;
    /*height:32px; position:fixed; right:15px; top:25px;*/
    z-index: 40;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.menuicon {
    display: block;
    width: 20px;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
    /* position:absolute; left:0; right:0; top:50%; -webkit-transform:translate(0,-50%); -moz-transform:translate(0,-50%); transform:translate(0,-50%);*/
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.opened .menuicon {
    width: 20px;
}

.menuicon .icon-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    position: relative;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.menuicon .icon-bar+.icon-bar {
    margin-top: 5px;
}

.opened .icon-bar {
    background: var(--primary-color);
}

.opened .top-icon-bar {
    transform-origin: 0 50% 0;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.opened .middle-icon-bar {
    opacity: 0;
}

.opened .bottom-icon-bar {
    transform-origin: 0 50% 0;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.opened.mobi-iconbox:after {
    color: #fff;
}


/** Header Start **/
.header {
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    padding: 1.25rem 0;
    height: 170px;
    background: #000;
    /* background: url(https://empirelandscapes.org/assets/images/header-bg.svg) repeat-x 0 bottom ; */
    background: url(../images/header-bg.webp) repeat-x 0 bottom #000;
    /* -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1); */
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.header .logo {
    width: auto;
    position: relative;
    z-index: 2;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.header .logo a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 425px;
    transition: all ease 0.5s;
}

.header .logo a span {
    display: block;
    width: 100%;
}

.header .logo a img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100px;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.navigation-wrapper,
.trn-wrapper {
    display: flex;
}

.header-top-menu ul li {
    line-height: 1;
}

.header-top-menu ul li+li {
    margin-left: 3.313rem;
}

.header-top-menu ul li a {
    font-size: 1rem;
    line-height: normal;
    font-weight: 500;
    font-family: var(--primary-font);
    color: var(--black-color);
    letter-spacing: 1px;
    position: relative;
    padding: 0rem;
    overflow: hidden;
    display: block;
    text-transform: none;
}

.single-commercial .header-top-menu ul li.project-menu>a,
.header-top-menu ul li.active>a,
.header-top-menu ul li:hover>a {
    color: var(--primary-color);
}

.header .navbar {
    padding: 1.875rem 1.5rem 0 1.5rem;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.header:after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;
    background: url(../images/header-nav-bg.webp) no-repeat 0 0;
    width: 1270px;
    height: 89px;
}

/*Header Fixed*/
.header-fixed .header {
    padding: 0.6rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    height: 90px;
}

.header-fixed .header .navbar {
    padding: 0.5rem 1.5rem 0 1.5rem;
}

.header-fixed .header .logo a {
    width: 100%;
}

.header-fixed .header .logo a img {
    height: 50px;
}

/*Header Fixed*/
.nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 5px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #2B2B2B;
    backdrop-filter: blur(2.5px);
    border-radius: 6px;
    height: 60px;
}

.nav-bar ul li ul.submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0rem;
    left: 0rem;
    min-width: 13rem;
    height: auto;
    padding: 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    margin: 51px 0 0 0;
    z-index: 9999;
    padding: 15px 16px;
    gap: 10px;
    background: #3D3D3D;
    border-radius: 7px;
}

.nav-bar ul {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

#menu {
    position: relative;
}

.menu-item {
    position: relative;
    display: inline-block;
}

.menu-item a.menu-link,
.menu-item.menu-dropdown a.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.438rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    color: var(--white-color);
    font-family: var(--primary-font);
    letter-spacing: 0.02em;
    padding: 10px 24px;
    border-radius: 6px;
}

.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}

.menu-item.menu-dropdown:hover a.menu-link,
.menu-item:hover a.menu-link {
    outline: none;
    color: var(--white-color);
    background: var(--primary-color);
}

/* .btn-item.menu-item {margin-right:0rem;} */
.btn-item.menu-item a {
    padding: 10px 22px !important;
    border: solid 1px var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 400;
    font-size: 1rem;
    line-height: 2rem;
    transition: all ease 0.5s !important;
    border-radius: 4px;
    letter-spacing: 1px;
}

.btn-item.menu-item a:hover {
    border-color: var(--primary-color);
    background: var(--white-color);
    color: var(--primary-color);
}

.nav-bar ul li ul.submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0rem;
    left: 0rem;
    min-width: 13rem;
    height: auto;
    padding: 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    margin: 43px 0 0 0;
    z-index: 9999;
    padding: 15px 16px;
    gap: 10px;
    background: #3D3D3D;
    border-radius: 7px;
    display: none;
}

.submenu-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 0px 8px;
    gap: 10px;
    border-bottom: 1px solid #666666;
}

.submenu-link {
    font-family: var(--primary-font);
    cursor: pointer;
    transition: all 0.35s ease;
    font-weight: 500;
    font-size: 0.938rem;
    line-height: 1.313rem;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white-color);
}

.submenu-link:hover {
    outline: none;
    color: #dd8b40;
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: var(--primary-color);
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

.menu-item.active a,
.menu-item.current a {
    color: var(--primary-color);
}

.btn-item.menu-item.active a {
    color: var(--white-color);
}

.btn-item.menu-item.active a:hover {
    color: var(--primary-color);
}

.menu-item.menu-dropdown a.menu-link {
    position: relative;
}

.menu-item.menu-dropdown a.menu-link span {
    display: none;
}

.nav-bar ul li ul.submenu.profile-menu {
    left: -9rem;
}

.menu-item.menu-dropdown a.menu-link.profile-name {
    color: var(--white-color);
    background: var(--primary-color);
    padding: 10px 16px;
    border-radius: 100px;
    width: 40px;
    height: 40px;
}

/* .menu-item.menu-dropdown a.menu-link::after {content: "";display: block;background: #505d68;position: absolute;display: block;height: 8px;width: 8px;border-bottom: 1px solid #333;border-left: 1px solid #333;position: absolute;-webkit-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);top:12px;right:-15px;cursor: pointer;background-color: transparent;-o-transition: .4s ease-in;-webkit-transition: .4s ease-in;transition: .4s ease-in;}
.menu-item.menu-dropdown.active a.menu-link::after {-webkit-transform: rotate(-224deg);-o-transform: rotate(-224deg);transform: rotate(-224deg);} */
/*
.submenu.services-menu{width:600px;left: -16rem;}
.submenu.services-menu .submenu-item{display: inline-block;width:280px;}
.submenu.about-menu{width:180px;left:0rem;}
.submenu.about-menu .submenu-item{display: inline-block;width: 180px;} */



/** Footer Section Start **/
footer.footer {
    background: url(../images/footer-bg.svg) repeat-x 0 0;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
}

.copyright-sec {
    padding: 15px 0;
}

.copyright-sec {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}


.ls-maincontainer {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    padding: 6.25rem 0;
}

.ls-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.ls-main form {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 10px;
    max-width: 582px;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.08);
    border-radius: 10px;

}

.form-container .form-group-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.form-container .form-group-main h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #505050;
    width: 100%;
    margin: 0;
}

.form-container .form-group-main .form-group label {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--black-color1);
}

.form-container .password-group {
    position: relative;
    width: 100%;
}

.form-container .password-group i {
    position: absolute;
    right: 10px;
    top: 7px;
    cursor: pointer;
}



.form-container .forgot-link {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 10px 0 0 0;
}

.form-container .forgot-link a {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--black-color1);
}

.main-container {
    display: flex;
    flex-direction: column;
    padding: 6.25rem 0;
}

.comman-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 30px 26px;
    gap: 20px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.common-table-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    height: 100%;
}

.cardheader {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
}

.cardheader .cardheading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 10px;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid #E7EBEE;

}

.cardheader .cardheading h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 30px;
    color: #505050;
    margin: 0;
}

.cardheader .cardfilter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 15px;
    width: 100%;
}

.cardheader .cardfilter .cardfilterLeft {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
}

.cardheader .cardfilter .cardfilterLeft select.form-select.pageno {
    min-width: 65px;
    position: relative;
    width: 65px;
}

.cardheader .cardfilter .cardfilterLeft select {
    min-width: 160px;
    min-height: 44px;
    padding: 6px 9px;
    /* background: #FAFAFA; */
    border: 1px solid #E7EBEE;
    border-radius: 4px;
}

.cardheader .cardheaderright {
    display: flex;
    gap: 10px;
}

.searchbox {
    position: relative;
    min-width: 245px;
}

.searchbox .search-icon {
    --search-img: url(../images/icon-search.svg);
    background-color: transparent;
    background-image: var(--search-img);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 24px 24px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

input:-internal-autofill-selected {
    background-color: var(--white) !important;
}

.pagination-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.show-info,
.dataTables_wrapper .dataTables_info {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #777777;
}

.table-responsive .table {
    margin-bottom: 1.25rem;
}

.table-responsive {
    width: 100%;
}

.table>:not(caption)>*>* {
    border: 0;
}

.table tr th,
table.dataTable thead th,
table.dataTable tfoot th {
    padding: 10px;
    background: rgba(160, 101, 47, 0.1);
    border: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #777777;
}

.table tr td {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #777777;
    border-bottom: 1px solid #E7EBEE;
    padding: 10px;
    vertical-align: middle;
}

.action-btn {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.action-btn a.btn,
.action-btn a.btn:focus {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 0px;
    width: 30px;
    height: 30px;
    background: #F3F3F3;
    border-radius: 100px;
}

.action-btn a.btn:hover,
.action-btn a.btn:focus-visible {
    background: #F3F3F3;
}

.t-address {
    width: 180px;
}

.badge {
    display: inline-block;
    padding: 5px 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 100px;
}


.badge-primary {
    color: var(--primary-color);
    background: #F1E0D0;
    filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.1));
    border-radius: 4px;
    padding: 5px 12px;
    min-width: 90px;
}

.badge-grey {
    color: #877C70;
    background: #E1E1E1;
    filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.1));
    border-radius: 4px;
    padding: 5px 12px;
    min-width: 90px;
}

.pagination-bar nav ul.pagination {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.pagination-bar nav ul.pagination li.page-item .page-link {
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #CCCCCC;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #CCCCCC !important;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #CCCCCC !important;
    /* width: 36px; */
    height: 36px;
    line-height: 33px;
    margin-left: 8px;
    padding: 0 6px;
    min-width: 40px;
}

.pagination-bar nav ul.pagination li.page-item .page-link:focus {
    box-shadow: none;
}

.pagination-bar nav ul.pagination li.page-item .page-link:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: #fff;
}

.pagination-bar nav ul.pagination li.page-item .page-link:hover img,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(8%) saturate(3785%) hue-rotate(347deg) brightness(96%) contrast(80%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    background: #fff !important;
}

.pagination-bar nav ul.pagination li.page-item.current .page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #B6B6B6 !important;
    color: #fff !important;
    border-color: #B6B6B6 !important;
}

.pagination-bar nav ul.pagination li.page-item.current .page-link:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    border: 1px solid #CCCCCC !important;
    color: #CCCCCC !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover img {
    filter: none;
}

table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>th.sorting_asc_disabled:before,
table.dataTable thead>tr>th.sorting_asc_disabled:after,
table.dataTable thead>tr>th.sorting_desc_disabled:before,
table.dataTable thead>tr>th.sorting_desc_disabled:after,
table.dataTable thead>tr>td.sorting:before,
table.dataTable thead>tr>td.sorting:after,
table.dataTable thead>tr>td.sorting_asc:before,
table.dataTable thead>tr>td.sorting_asc:after,
table.dataTable thead>tr>td.sorting_desc:before,
table.dataTable thead>tr>td.sorting_desc:after,
table.dataTable thead>tr>td.sorting_asc_disabled:before,
table.dataTable thead>tr>td.sorting_asc_disabled:after,
table.dataTable thead>tr>td.sorting_desc_disabled:before,
table.dataTable thead>tr>td.sorting_desc_disabled:after {
    opacity: 0.3;
}

table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>td.sorting_asc:before,
table.dataTable thead>tr>td.sorting_desc:after {
    opacity: 0.6;
}

.toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.toggle .toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle .toggle-label {
    position: relative;
}

.toggle-switch {
    display: inline-block;
    background: #E4E4E4;
    border-radius: 100px;
    width: 50px;
    height: 22px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

.toggle-switch:before,
.toggle-switch:after {
    content: "";
}

.toggle-switch:before {
    display: block;
    background: var(--white-color);
    border-radius: 50%;
    box-shadow: none;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
    background: var(--white-color);
    box-shadow: none;
}

.toggle-checkbox:checked+.toggle-switch {
    background: var(--primary-color);
}

.toggle-checkbox:checked+.toggle-switch:before {
    left: 29px;
}

.modal-content {
    padding: 30px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

.modal-header {
    padding: 0 0 10px 0;
    border-bottom: 1px solid #E7EBEE;
}

.modal-header .btn-close {
    margin: 0;
    padding: 0;
    --bs-btn-close-bg: inherit;
    opacity: 1;
    width: 24px;
    height: 24px;
    display: flex;
}

.btn-close:focus {
    box-shadow: none;
}

.btn-close:focus-visible {
    outline: none;
}

.modal-footer {
    padding: 10px 0 0;
    border-top: 1px solid #E7EBEE;
}

h3.modal-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 30px;
    display: flex;
    align-items: center;
    color: #505050;
}

.modal-dialog {
    max-width: 580px;
}

.add-big-modal.modal-dialog {
    max-width: 800px;
}

.modal-body.column-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.modal-body.column-body .form-group {
    width: 48.6%;
}

.modal-body.column-body .form-group.tarea {
    width: 100%;
}

.modal-body.column-body fieldset {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 0 0;
}

.modal-body.column-body .service-modal .form-group {
    width: 100%;
}

.modal-content .modal-body.column-body form {
    flex-direction: row;
    flex-wrap: wrap;
}

.modal-content .modal-body.column-body form .modal-footer {
    width: 100%;
}

.customer-modal .modal-body.column-body .form-group,
.emp-modal .modal-body.column-body .form-group {
    width: 48.6%;
}

.site-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 0px;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.site-main .box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: calc(33.3333333333% - 1.29rem);
    padding: 12px;
    gap: 8px;
    background: rgba(231, 214, 199, 0.2);
    border: 1px solid #F2E9E0;
    box-shadow: 0px 2px 20px rgba(160, 101, 47, 0.1);
    border-radius: 8px;
    position: relative;
}

.site-main .box .site-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 8px 0;
    gap: 15px;
    width: 100%;
    border-bottom: 1px solid #F2E9E0;
}

.site-main .box .site-heading h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #000000;
    margin: 0;
}

.site-main .box .site-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 15px;
    width: 100%;
}

.site-main .box .site-detail .pl-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
}

.site-main .box .site-detail .pl-content .pl-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 5px;
    width: 47%;
}

.site-main .box .site-detail .pl-content .pl-col span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #777777;
}

.site-main .box .site-detail .pl-content .pl-col span+span {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #505050;
}

.site-main .box .site-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0 0 0;
    gap: 5px;
    width: 100%;
    border-top: 1px solid #F2E9E0;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #A0652F;
    justify-content: center;
}

/* .site-main .box a{margin-bottom: -8px;} */
.site-main .box:hover .site-footer {
    text-decoration: underline;
    color: var(--black-color);
}

.site-main .box:hover .site-footer img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(7478%) hue-rotate(299deg) brightness(93%) contrast(107%);
}

.site-detail-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.site-detail-main .sd-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: calc(33.3333333333% - 0.9rem);
    padding: 0px 0px 10px;
    gap: 10px;
    border-bottom: 1px solid #E7EBEE;
}

.site-detail-main .sd-col.sdcolfull {
    max-width: 100%;
}

.site-detail-main .sd-col span {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #777777;
}

.site-detail-main .sd-col span+span {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #505050;
}
.site-detail-main .sd-col.sd-col-height span+span {
    min-height: 36px;
}

.site-detail-main .sd-col.sdcolfull span+span {
    line-height: 24px;
}

.site-detail-main .sd-col:nth-child(29) span+span,
.site-detail-main .sd-col:nth-child(30) span+span,
.site-detail-main .sd-col:nth-child(31) span+span {
    height: 35px;
}

.comman-container.site-info-container {
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.add-site-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.add-site-form form {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
    height: 100%;
}

.add-site-form form .form-group {
    display: flex;
    flex-direction: column;
    width: 49%;
    gap: 10px;
    position: relative;
    z-index: 0;
}

.add-site-form form .form-group label {
    margin-bottom: 0;
}

.add-site-form form .form-group-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.add-site-form form .form-group-button button {
    max-width: 300px;
    width: 100%;
}

.add-site-form form .form-group.form-textarea {
    width: 100%;
}

.dataTables_wrapper table.table {
    width: 100% !important;
}

.dataTables_wrapper .row {
    margin: 0 !important;
    min-width: 1100px;
}

table.dataTable>thead>tr>th {
    border-bottom: 0px;
}

table.dataTable.no-footer {
    border-bottom: 0;
}

div:where(.swal2-icon).swal2-warning {
    border-color: #777777 !important;
    color: rgba(160, 101, 47, 0.5) !important;
}

.modal-dialog {
    max-width: 580px;
}

.add-big-modal.modal-dialog {
    max-width: 800px;
}

.modal-body.column-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.modal-body.column-body .form-group {
    width: 48.6%;
}

.modal-body.column-body .form-group.tarea {
    width: 100%;
}

.modal-body.column-body fieldset {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 0 0;
}

.modal-body.column-body .service-modal .form-group {
    width: 100%;
}

.modal-content .modal-body.column-body form {
    flex-direction: row;
    flex-wrap: wrap;
}

.modal-content .modal-body.column-body form .modal-footer {
    width: 100%;
}

.customer-modal .modal-body.column-body .form-group,
.emp-modal .modal-body.column-body .form-group {
    width: 48.6%;
}

.common-table-wrapper.site-main-wrapper ul.nav.nav-tabs {
    width: 100%;
    border-bottom: 0;
    gap: 10px;
}

.common-table-wrapper.site-main-wrapper ul.nav.nav-tabs li .nav-link {
    background: #e1dbd4;
    border-radius: 6px;
    color: #111;
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 400;
    padding: 10px 30px;
}

.common-table-wrapper.site-main-wrapper ul.nav.nav-tabs li .nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.sd-tab {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-tab-sec {
    display: flex;
    width: 100%;
}

.common-table-wrapper.site-main-wrapper .tab-content {
    width: 100%;
}

.site-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 0px;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.site-main .box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: calc(33.3333333333% - 1.29rem);
    padding: 12px;
    gap: 8px;
    background: rgba(231, 214, 199, 0.2);
    border: 1px solid #F2E9E0;
    box-shadow: 0px 2px 20px rgba(160, 101, 47, 0.1);
    border-radius: 8px;
    position: relative;
    height: 475px;
}

.site-main .box .site-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 8px 0;
    gap: 15px;
    width: 100%;
    border-bottom: 1px solid #F2E9E0;
}

.site-main .box .site-heading h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #000000;
    margin: 0;
}

.site-main .box .site-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 15;
    width: 100%;
}

.site-main .box .site-detail .pl-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
}

.site-main .box .site-detail .pl-content .pl-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 5px;
    width: 47%;
}

.site-main .box .site-detail .pl-content .pl-col span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #777777;
}

.site-main .box .site-detail .pl-content .pl-col span+span {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #505050;
}

.site-main .box .site-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0 0 0;
    gap: 5px;
    width: 100%;
    border-top: 1px solid #F2E9E0;
    justify-content: center;
}

.site-main .box .site-footer a {
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #A0652F;
}

.site-main .box:hover .site-footer {
    text-decoration: underline;
    color: var(--black-color);
}

.site-main .box:hover .site-footer img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(7478%) hue-rotate(299deg) brightness(93%) contrast(107%);
}

.site-action {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.site-action a {
    width: 20px;
    height: 21px;
}

.site-action a img {
    vertical-align: top;
}

.site-detail-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.site-detail-main .sd-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: calc(33.3333333333% - 0.9rem);
    padding: 0px 0px 10px;
    gap: 10px;
    border-bottom: 1px solid #E7EBEE;
}

.site-detail-main .sd-col.sdcolfull {
    max-width: 100%;
}

.site-detail-main .sd-col span {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #777777;
}

.site-detail-main .sd-col span+span {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #505050;
}

.site-detail-main .sd-col.sdcolfull span+span {
    line-height: 24px;
}

.site-detail-main .sd-col:nth-child(29) span+span,
.site-detail-main .sd-col:nth-child(30) span+span,
.site-detail-main .sd-col:nth-child(31) span+span {
    height: 35px;
}

.comman-container.site-info-container {
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
}

.add-site-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.add-site-form form {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

.add-site-form form .form-group {
    display: flex;
    flex-direction: column;
    width: 49%;
    gap: 10px;
}

.add-site-form form .form-group label {
    margin-bottom: 0;
}

.add-site-form form .form-group-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.add-site-form form .form-group-button button {
    max-width: 300px;
    width: 100%;
}

.add-site-form form .form-group.form-textarea {
    width: 100%;
}

.dataTables_wrapper table.table {
    width: 100% !important;
}

.dataTables_wrapper .row {
    margin: 0 !important;
    min-width: 1100px;
}

table.dataTable>thead>tr>th {
    border-bottom: 0px;
}

table.dataTable.no-footer {
    border-bottom: 0;
}

div:where(.swal2-icon).swal2-warning {
    border-color: #777777 !important;
    color: rgba(160, 101, 47, 0.5) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f1f1f0;
    border: 1px solid #f1f1f0;
    line-height: 1.2rem;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.select2-selection__choice__display {
    font-size: 0.9rem;
    color: #111;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #111;
    line-height: 1.3rem;
    font-weight: 500;
    border-right: 1px solid #c9c9c6;
    padding: 1px 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    line-height: 1.3rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: transparent;
    color: #111;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 8px;
    line-height: 1.4rem;
}


.select2-container {
    width: 100% !important;
}

.select2-results__option {
    padding-right: 20px;
    vertical-align: middle;
}

.select2-container--default .select2-search--inline .select2-search__field {
    height: 28px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: transparent !important;
    border: none !important;
    outline: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eaeaeb;
    color: #272727;
}

.select2-container--default .select2-selection--multiple {
    margin-bottom: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 0.063rem solid #E0E0E0 !important;
    padding-right: 10px;
}

.select2-container--default .select2-selection--multiple {
    border: 0.063rem solid #E0E0E0 !important;
    border-radius: .375rem;
    min-height: 40px;
    margin-bottom: 0;
}




.site-import-data {
    max-width: 500px;
    display: flex;
    flex-direction: row;
}

.site-import-data form {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.site-import-data form input[type="file"] {
    max-width: 250px;
    padding: 0rem .75rem;
    line-height: 2.6rem;
}

.sid-m {
    display: flex;
    flex-direction: column;
}

.site-import-data .btn-secondary {
    height: 43px !important;
}

.select2-container--default .select2-selection--single {
    border: 0px;
    height: 42px;
    border: 0.063rem solid #E0E0E0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    font-size: 1rem;
    font-weight: 400;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
}

.select2-search--dropdown .select2-search__field {
    height: 36px !important;
}

.select2-container--default .select2-results__option--disabled {
    font-size: 1rem;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #414141;
    color: white;
}

.select2-dropdown {
    border: 1px solid #e0e0e0;
}

.project-request .table tr td.desc div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.project-request .table tr td.desc .form-control {
    width: 200px;
    height: 2.1rem;
}

.mob-profile {
    display: none;
}

.alert-success.alert-block {
    max-width: 1320px;
    margin: 0 auto 20px;
    width: 100%;
    padding: 10px 10px;
}

.alert-success.alert-block .close {
    border: 0;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    background: #fff;
    line-height: 10px;
    margin: 0 10px 0 0;
}

.pr-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0px;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.pr-main .pr-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: calc(33.3333333333% - 1.29rem);
    padding: 12px;
    gap: 8px;
    background: rgba(231, 214, 199, 0.2);
    border: 1px solid #F2E9E0;
    box-shadow: 0px 2px 20px rgba(160, 101, 47, 0.1);
    border-radius: 8px;
    position: relative;
}

.pr-main .pr-box .pr-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 8px 0;
    gap: 15px;
    width: 100%;
    border-bottom: 1px solid #F2E9E0;
}

.pr-main .pr-box .pr-heading h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #000000;
    margin: 0;
}

.pr-main .pr-box .pr-detail {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 15px;
    width: 100%;
    margin: 0 0 5px;
}

.pr-main .pr-box .pr-detail .pr-img {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

.pr-main .pr-box .pr-detail .pr-img img {
    border-radius: 6px;
}

.pr-main .pr-box .pr-detail .pr-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 15px;
    width: 63%;
    flex-wrap: wrap;
}

.pr-main .pr-box .pr-detail .pr-content .pr-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 5px;
    width: 100%;
}

.pr-main .pr-box .pr-detail .pr-content .pr-col span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #777777;
}

.pr-main .pr-box .pr-detail .pr-content .pr-col span+span {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #505050;
}

.pr-main .pr-box .pr-des {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 5px;
    width: 100%;
}

.pr-main .pr-box .pr-des span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #777777;
}

.pr-main .pr-box .pr-des span+span {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #505050;
}

.pr-main .pr-box .pr-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0 0 0;
    gap: 5px;
    width: 100%;
    border-top: 1px solid #F2E9E0;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #A0652F;
    justify-content: space-between;
}

.pr-main .pr-box .pr-footer span {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #000000;
}


.site-detail-main .sd-col span.badge-pending,
.site-main .box .site-detail .pl-content .pl-col .badge-pending {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #A0652F;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.site-detail-main .sd-col span.badge-work,
.site-main .box .site-detail .pl-content .pl-col .badge-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #3850c7;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.site-detail-main .sd-col span.badge-complete,
.site-main .box .site-detail .pl-content .pl-col .badge-complete {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #0d7903;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-main .pr-box .pr-footer span.badge-pending {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #A0652F;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-main .pr-box .pr-footer span.badge-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #3850c7;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-main .pr-box .pr-footer span.badge-complete {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #0d7903;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-main .pr-box .pr-footer span.decline-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #b11111;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-main .pr-box .pr-footer span.pending-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #A0652F;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-main .pr-box .pr-footer span.approved-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #038f83;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-main .pr-box .pr-footer span.in-progress-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #e16b16;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-main .pr-box .pr-footer span.completed-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    background: #0d7903;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.pr-site-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0 0 0;
    gap: 5px;
    width: 100%;
    border-top: 1px solid #F2E9E0;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #A0652F;
    justify-content: center;
}

/* .site-main .box a{margin-bottom: -8px;} */
.pr-main .pr-box:hover .pr-site-footer {
    text-decoration: underline;
    color: var(--black-color);
}

.pr-main .pr-box:hover .pr-site-footer img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(7478%) hue-rotate(299deg) brightness(93%) contrast(107%);
}

.pr-main .pr-box .pr-site-footer a {
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #A0652F;
}


.pr-tab .tab-content {
    width: 100%;
}

.siteinfo ul.nav.nav-tabs {
    width: 100%;
    border-bottom: 0;
    gap: 10px;
}

.siteinfo ul.nav.nav-tabs li .nav-link {
    background: #e1dbd4;
    border-radius: 6px;
    color: #111;
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 400;
    padding: 10px 30px;
}

.siteinfo ul.nav.nav-tabs li .nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.comman-container.quote-info-container {
    max-width: 1050px;
    margin: 0 auto;
}

.add-quote-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.add-quote-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
}

.addquote-group {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.add-quote-form form .addquote-group .form-group {
    display: flex;
    flex-direction: column;
    width: 49%;
    gap: 10px;
}

.add-quote-form form .addquote-group .form-group.form-textarea {
    width: 100%;
}

.additem-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.additem-group .heading {
    width: 100%;
}

.add-quote-form form .additem-group .form-group {
    display: flex;
    flex-direction: column;
    width: 49%;
    gap: 10px;
}

.add-quote-form form .additem-group .form-group.form-textarea {
    width: 100%;
}

.add-quote-form form .additem-group .form-group-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.add-quote-form form .form-group-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.rbfilter-right {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.form-group.fg-country {
    min-width: 200px;
    display: flex;
}

.form-group.fg-state {
    min-width: 200px;
    display: flex;
}

.form-group.fg-city {
    min-width: 200px;
    display: flex;
}

.select2-results__option {
    font-size: 1rem;
    line-height: 1.3rem;
}

.image-type table.dataTable>thead>tr>th:nth-child(2),
.service-cate table.dataTable>thead>tr>th:nth-child(2) {
    width: 800px !important;
}

.manage-priority table.dataTable>thead>tr>th:nth-child(4) {
    width: 100px !important;
}

.manage-priority table.dataTable>thead>tr>th:nth-child(3) {
    width: 100px !important;
}

.manage-priority table.dataTable>thead>tr>th:nth-child(6) {
    width: 400px !important;
}

.route-builder table.dataTable>thead>tr>th:nth-child(4) {
    width: 100px !important;
}

.route-builder table.dataTable>thead>tr>th:nth-child(5) {
    width: 100px !important;
}

.route-builder table.dataTable>thead>tr>th:nth-child(6) {
    width: 190px !important;
}

.state-listing table.dataTable>thead>tr>th:nth-child(2) {
    width: 600px !important;
}

.modal-backdrop {
    z-index: 1040;
}

.modal {
    z-index: 99999;
}

.city-droup .dataTables_wrapper .dataTables_paginate .paginate_button {
    width: 62px;
}

.city-droup table.dataTable>thead>tr>th:nth-child(2) {
    width: 500px !important;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
    padding: 0 0.5em;
}

.dataTables_wrapper .dataTables_paginate .ellipsis+.paginate_button {
    margin-left: 0px;
}

.checkbox-btn {
    position: relative;
}

.checkbox-btn label {
    margin-bottom: 0;
}

.checkbox-btn input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkbox-btn label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.checkbox-btn label:before {
    content: '';
    appearance: none;
    background-color: transparent;
    border: 1px solid #AFB4C9;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 0px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.checkbox-btn input:checked+label:before {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.checkbox-btn input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    left: 6px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.select2-container.select2-container--default.select2-container--open {
    z-index: 9999;
}

.login .alert.alert-success {
    width: 100%;
    padding: 6px 15px;
    font-size: 18px;
}

.siteinfo-tab {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.siteinfo-tab .btn-sm.btn-primary {
    width: 140px;
    background: #e1dbd4;
    color: var(--black-color)
}

.assign-btn {
    gap: 10px;
}

.toggle.big-toggle {
    margin: 0;
}

.cardheader .cardfilterLeft.toggle-filter {
    align-items: center;
}

.toggle.big-toggle .toggle-switch {
    width: 60px;
    height: 30px;
}

.toggle.big-toggle .toggle-switch:before {
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
}

.toggle.big-toggle .toggle-checkbox:checked+.toggle-switch:before {
    left: 35px;
}

.cardheader.quote-header {
    align-items: flex-end;
}

.shimage-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 30px 26px;
    gap: 35px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin: 20px 0 0 0;
}

.shimage-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.shimage-container h4 {
    border-bottom: 1px solid #E7EBEE;
    padding: 0 0 10px;
    margin: 0 0 15px;
    font-size: 1rem;
    line-height: 1.5rem;
    width: 100%;
    font-weight: 400;
    color: #777777;
    word-wrap: break-word;
}

.shimage-container h5 {
    border-bottom: 1px solid #E7EBEE;
    padding: 0 0 10px;
    margin: 0 0 15px;
    font-size: 1.4rem;
    line-height: 1.5rem;
    width: 100%;
    font-weight: 500;
    color: #111;
}

.img-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.img-list .imglist-img {
    width: 100%;
    /* height: 140px; */
    max-width: calc(20% - 0.8rem);
    padding: 0;
    background: #f1f1f1;
    border: 1px solid #b5b5b5;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    position: relative;
}

/* .sd-img.img-list .imglist-img a{
    height: 140px;display: inline-flex;width: 100%;
} */

.sd-img.img-list .imglist-img a {
    height: 140px;
    display: inline-flex;
    width: 100%;
}

.img-list .imglist-img img {
    border-radius: 8px;
    object-fit: contain;
    padding: 10px 0;
}

.shimage-container .img-list h6 {
    margin: 0;
}

.form-btn {
    display: flex;
    align-items: center;
    height: 41px;
}

.mfp-figure {
    background: #fff;
    padding: 30px 10px 10px;
    border-radius: 10px;
    max-width: 1000px;
    max-height: 650px;
}

.mfp-image-holder .mfp-close {
    color: #000000;
    right: 0;
    text-align: right;
    padding-right: 10px;
    width: 100%;
    height: 24px;
    line-height: 24px;
    top: 5px;
}

img.mfp-img {
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer;
}

.mfp-figure figure {
    width: 100%;
    height: 600px;
}

.mfp-bg {
    z-index: 999998;
    background: rgba(0, 0, 0, 0.6);
}

.mfp-wrap {
    z-index: 999999;
}

ul.table-list {
    margin-top: 5px;
}

ul.table-list li {
    font-size: 15px;
}

.table tr td.material-unitprice {
    vertical-align: top;
}

.text-danger.service-note {
    font-size: 14px;
}

.genppt-btn {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 15px;
}

.spr-status {
    display: inline-flex;
    gap: 15px;
    align-items: center;
}

.spr-status .quote-status {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.spr-status .quote-status span {
    font-size: 0.8rem;
    line-height: 0.8rem;
}

.spr-status .quote-status div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
    height: 26px;
    width: 100%;
}

.spr-status .btn-sm.btn-primary {
    height: 43px;
}

.spr-status .quote-status div span.pending-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 22px;
    gap: 10px;
    height: 43px;
    background: #A0652F;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #FFFFFF;
}

.spr-status .quote-status div span.approved-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 22px;
    gap: 10px;
    height: 43px;
    background: #038f83;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #FFFFFF;
}

.spr-status .quote-status div span.decline-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 22px;
    gap: 10px;
    height: 43px;
    background: #b11111;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #FFFFFF;
}

.spr-status .quote-status div span.in-progress-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 22px;
    gap: 10px;
    height: 43px;
    background: #e16b16;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #FFFFFF;
}

.spr-status .quote-status div span.completed-work {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 22px;
    gap: 10px;
    height: 43px;
    background: #0d7903;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    color: #FFFFFF;
}

.add-site-form.photo-grid-main .photo-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.add-site-form.photo-grid-main .photo-grid .form-group {
    width: 23.5%;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 10px;
}

.add-site-form.photo-grid-main .photo-grid .form-group label {
    align-items: flex-start;
}

.add-site-form.photo-grid-main .photo-grid .form-group label .img-cover {
    width: 89%;
    height: 160px;
}

.add-site-form.photo-grid-main .photo-grid .form-group label .img-cover img {
    border-radius: 6px;
}

.photo-grid-button {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin: 20px 0 0 0;
}

.custom-file {
    width: 100%;
}

.custom-file-input:focus~.custom-file-label {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.custom-file-label {
    text-align: left;
}

.custom-file-label:after {
    float: left;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 1.3rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 1.3rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-file-input:focus~.custom-file-label {
    border-color: #3e57da;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-file-input[disabled]~.custom-file-label,
.custom-file-input:disabled~.custom-file-label {
    background-color: #F3F6F9;
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse";
}

.custom-file-input~.custom-file-label[data-browse]::after {
    content: attr(data-browse);
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    padding: 0.65rem 1rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #3F4254;
    background-color: #ffffff;
    border: 1px solid #E4E6EF;
    border-radius: 0.42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 40px;
    padding: 0.65rem 1rem;
    line-height: 20px;
    color: #000;
    content: "Browse";
    background-color: #d7d7d7;
    border-left: inherit;
    border-radius: 0 0.42rem 0.42rem 0;
}

.prview-section img {
    border-radius: 10px;
}

.custom-file-input:focus~.custom-file-label {
    border: 0.063rem solid #E0E0E0 !important;
}

.prview-section.prview-height {
    height: 200px;
}

.prview-section.prview-height img {
    height: 200px;
}

.uploaded-by {
    margin: 5px;
    height: 20px;
}

.uploaded-by {
    font-size: 0.9rem;
}

.project-request-date {
    font-size: 0.9rem;
    width: 93%;
    text-align: left;
}

.pr-img .img-list .imglist-img {
    width: 100%;
    height: 205px;
    max-width: calc(20% - 0.8rem);
    padding: 0 0 10px;
    background: #fff;
    border: 1px solid #b5b5b5;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    position: relative;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pr-img .img-list .imglist-img a.delete-img {
    width: 20px;
    height: 21px;
    display: inline-block;
    margin: 5px;
}

.pr-img .img-list .imglist-img a.delete-img img {
    border-radius: 0;
    object-fit: inherit;
    padding: 0;
}

.pr-img .img-list .imglist-img a.gallery-img {
    width: 96%;
    height: 140px;
    display: inline-block;
    margin: 0 auto;
}

.pr-img .img-list .imglist-img a.gallery-img img {
    border-radius: 0px;
}

.only-back-button {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    gap: 10px;

}

.only-back-button .btn-sm.btn-secondary {
    height: 42px;
    width: 150px;
}

.obbc {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    gap: 10px;
}

.only-back-button .line {
    border-bottom: 1px solid #E7EBEE;
    padding: 0;
    width: 100%;
    display: block;
}

.nrf-sec {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.obbc1 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    gap: 10px;
}

.date {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #000000;

}

.site-date {
    width: 100%;
}

.data-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #777777;
}

.cardfilterLeft.reports {
    flex-wrap: wrap;
}

.reports .form-group {
    display: flex;

    gap: 10px;
    align-items: center;
}

.reports .form-group .form-control {
    width: 200px;
}

.reports .year-report-filter {
    width: 200px;
}

.reports .year-report-filter.form-group .form-control {
    width: 145px;
}

.reports .form-group .select2-container {
    width: 200px !important;
}

.reports .form-group label {
    margin-bottom: 0rem;
}

.a-link.active,
.a-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.reports-table table.dataTable>thead>tr>th:nth-child(2) {
    width: 120px !important;
}

.reports-table table.dataTable>thead>tr>th:nth-child(8) {
    width: 100px !important;
}

.reports-table table.dataTable>thead>tr>th:nth-child(9) {
    width: 100px !important;
}

.reports-table table.dataTable>thead>tr>th:nth-child(6) {
    width: 300px !important;
}

.reports-table table.dataTable>thead>tr>th:nth-child(3) {
    width: 200px !important;
}

.reports-table table.dataTable>thead>tr>th:nth-child(4),
.reports-table table.dataTable>thead>tr>th:nth-child(5) {
    width: 300px !important;
}

.reports-table table.dataTable>thead>tr>th:nth-child(7) {
    width: 150px !important;
}

.spring-reports-table table.dataTable>thead>tr>th:nth-child(3) {
    width: 180px !important;
}

.spring-reports-table table.dataTable>thead>tr>th:nth-child(4) {
    width: 250px !important;
}

.spring-reports-table table.dataTable>thead>tr>th:nth-child(5) {
    width: 352px !important;
}

.spring-reports-table table.dataTable>thead>tr>th:nth-child(2) {
    width: 107px !important;
}

.spring-reports-table table.dataTable>thead>tr>th:nth-child(6) {
    width: 450px !important;
}

.spring-reports-table table.dataTable>thead>tr>th:nth-child(8) {
    width: 100px !important;
}

.spring-reports-table table.dataTable>thead>tr>th:nth-child(7) {
    width: 100px !important;
}

.constrution-reports-table table.dataTable>thead>tr>th:nth-child(3) {
    width: 150px !important;
}

.constrution-reports-table table.dataTable>thead>tr>th:nth-child(5) {
    width: 190px !important;
}

.constrution-reports-table table.dataTable>thead>tr>th:nth-child(4) {
    width: 150px !important;
}

.constrution-reports-table table.dataTable>thead>tr>th:nth-child(6) {
    width: 150px !important;
}

.constrution-reports-table table.dataTable>thead>tr>th:nth-child(8) {
    width: 150px !important;
}

.constrution-reports-table table.dataTable>thead>tr>th:nth-child(9) {
    width: 150px !important;
}

.constrution-reports-table table.dataTable>thead>tr>th:nth-child(10) {
    width: 150px !important;
}

.top-ten-sec .table-responsive .table thead>tr>th:nth-child(1) {
    width: 150px !important;
}

.top-ten-sec .table-responsive .table thead>tr>th:nth-child(4) {
    width: 200px !important;
}


.form-group.state-report {
    width: 200px;
}

.form-group.year-report {
    width: 150px;
}

.spring-reports-table .cardheader .cardfilter .cardfilterLeft {
    align-items: flex-end;
}

.spring-reports-table .form-btn {
    display: flex;
    gap: 10px;
}

.reports-table .form-btn {
    display: flex;
    gap: 10px;
}

.spring-reports-table .form-btn .button.btn-secondary,
.spring-reports-table .form-btn .btn.btn-primary {
    height: 41px !important;
}

.h-43 {
    height: 43px !important;
}


.comming-container {
    height: 650px;
}

.waviy-box {
    /* background: linear-gradient(90deg, #A0652F 0%, #d59a65 50%, #A0652F 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.waviy {
    position: relative;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.01));
    font-size: 60px;
    line-height: 60px;
    margin: auto;

}

.waviy span {
    position: relative;
    display: inline-block;
    color: #000;
    text-transform: uppercase;
    animation: waviy 2.5s infinite;
    animation-delay: calc(.2s * var(--i));

}

@keyframes waviy {

    0%,
    40%,
    100% {
        transform: translateY(0)
    }

    20% {
        transform: translateY(-20px)
    }
}

.privacy-policy-form {
    width: 100%;
}

.note-btn-group .note-btn {
    padding: 0 1rem;
}

.privacy-pilocy-container {
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    width: 100%;
    word-wrap: break-word;
    word-break: break-all;
}

.apexcharts-menu-icon {
    display: none;
}

.note-editor .modal-content input[type="checkbox"] {
    width: 16px;
    height: 16px;
    appearance: auto;
    border: 2px solid #ccc;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    margin: 0 15px 0 0;
}

.note-editor .modal-content .form-group label {
    margin: 0;
}

.note-editor .modal-body {
    padding: 20px 0;
}

.note-editor ul,
.note-editor ul li {
    list-style-type: disc;

}

.note-editor ul {
    margin: 0 0 0 30px;
}

.note-editor ol {
    margin: 0 0 0 30px;
}

.note-editor ol li {
    list-style: decimal;
}

.note-editor ol li::marker {
    display: none;
}

.profile-image {
    object-fit: cover;
    width: 85px;
    height: 80px;
}

/* .note-editor ol {
    counter-reset: list-counter;
}
.note-editor ol li{
    position: relative;
    padding: 0 0 0 15px;
    counter-increment: list-counter;
}
.note-editor ol li:before {
    position: absolute;
    top: 0px;
    left: 0px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    content: counter(list-counter);

} */


.dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 30px 26px;
    gap: 20px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.db-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.dbcard {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    transition: transform 0.2s;
    width: 100%;
    max-width: calc(100% / 3 - 1rem);
    padding: 10px 30px;
    gap: 0;
    box-shadow: 0px 4px 8px rgba(64, 106, 114, 0.08);
    height: 140px;
    position: relative;
    overflow: hidden;
}

.dbcard:hover {
    transform: translateY(-5px);
}

.dbcard h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.dbcard span {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    color: #505050;
    position: relative;
    z-index: 1;
}

.dbcard.first h2 {
    color: #D6A74A;
}

.dbcard.second h2 {
    color: #B293EE;
}

.dbcard.third h2 {
    color: #F19758;
}

.dbcard.first {
    background: #FFF4DE;
}

.dbcard.second {
    background: #F5EFFF;
}

.dbcard.third {
    background: #FBEFE7;
}

.dbcard::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    border-radius: 0 12px 12px 0;
}

.dbcard.first::after {
    background: url(../images/spring-bg.png) no-repeat right 0;
    width: 166px;
    height: 140px;

}

.dbcard.second::after {
    background: url(../images/fallsite-bg.png) no-repeat right 0;
    width: 154px;
    height: 140px;
}

.dbcard.third::after {
    background: url(../images/ac-bg.png) no-repeat right 0;
    width: 170px;
    height: 140px;
}

.pr-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.prheading {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 10px;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid #E7EBEE;
}

.prheading h2 {
    font-weight: 600;
    font-size: 25px;
    line-height: 25px;
    color: #505050;
    margin: 0;
}

.pr-mid-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
}

.prcard {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 12px;
    transition: transform 0.2s;
    width: 100%;
    max-width: calc(100% / 4 - 1rem);
    padding: 10px 30px;
    gap: 0;
    box-shadow: 0px 4px 8px rgba(64, 106, 114, 0.08);
    height: 140px;
}


.prcard h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}

.prcard span {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    color: #505050;
}

.prcard.first h3 {
    color: #56BEC2;
}

.prcard.second h3 {
    color: #93C7A5;
}

.prcard.third h3 {
    color: #8F9AD4;
}

.prcard.forth h3 {
    color: #A4AEC0;
}

.prcard.first {
    background: #E4FEFF;

}

.prcard.second {
    background: #E5FFEE;

}

.prcard.third {
    background: #F1F3FE;

}

.prcard.forth {
    background: #F6F7F9;
}

.icon-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    margin: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;

}

.prcard.first .icon-box {
    background: #CDF1F2;
}

.prcard.second .icon-box {
    background: #CAF5D9;
}

.prcard.third .icon-box {
    background: #E0E4FA;
}

.prcard.forth .icon-box {
    background: #E9EBF0;
}

.dashboard-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.chart-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    width: 30%;
    height: 100%;
    min-height: 447px;
}

.chart-left h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #505050;
    padding: 0px 0px 10px;
    border-bottom: 1px solid #E7EBEE;
    width: 100%;
}

.top-ten-sec {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 6px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    border-radius: 9px;
}

.top-ten-sec .table-responsive .table {
    margin: 0;
}

.pcchart {
    margin: 0 auto;
}

.sibs-btn {
    min-width: 125px;
}

.common-table-wrapper.customer-dash .dbcard {
    max-width: calc(100% / 2 - 1rem);
    padding: 10px 60px;
}

.common-table-wrapper.customer-dash .dbcard h2 {
    font-size: 28px;
    line-height: 35px;
}

.mfp-figure img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease-in-out;
    display: block;
}

.top-ten-sec h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #505050;
    padding: 0px 0px 10px;
    border-bottom: 1px solid #E7EBEE;
    width: 100%;
}

.cmf-btn {
    display: flex;
    gap: 10px;
}

.cardheader .cardfilter .cardfilterLeft select.form-select.pageno.route-builder-length {
    width: 75px;
}

.rbd-tab-con .form-group.fg-route-name {
    min-width: 180px;
    display: flex;
}

.comman-container.vcm-container .card-filter {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.comman-container.vcm-container .card-filter .form-btn {
    width: 100px;
}

.comman-container.vcm-container .card-filter .form-btn .btn {
    height: 43px !important;
}

.comman-container.vcm-container.constmap-container .form-group.state-report {
    width: 207px;
}
.comman-container.vcm-container.constmap-container .card-filter .form-btn{margin: 0 0 0 auto;}

.sites-his-tab {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wo-group-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.wo-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.wo-group .form-group {
    width: 24.4%;
}

.upload-file-wrap {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.uf-list input[type="file"] {
    max-width: 100%;
    padding: 0rem .75rem;
    line-height: 2.6rem;
}

.uf-title {
    width: 100%;
    flex-direction: row;
    margin: 8px 0 0 0;
}

.uf-list {
    display: flex;
    flex-direction: row;
    width: 24.4%;
}

.wo-btn-sec {
    margin: 20px 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
}



.pp-tabsec ul.nav.nav-tabs {
    width: 100%;
    border-bottom: 0;
    gap: 10px;
    margin: 0 0 20px;
}

.pp-tabsec ul.nav.nav-tabs li .nav-link {
    background: #e1dbd4;
    border-radius: 6px;
    color: #111;
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 400;
    padding: 10px 30px;
}

.pp-tabsec ul.nav.nav-tabs li .nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.map-popup-btn .btn{
font-size: 0.8rem;
}

.img-w-date{width: 89%;display:flex;flex-direction: column;}
.add-site-form.photo-grid-main .photo-grid .form-group label .img-w-date .img-cover{width: 100%;margin: 0 0 10px;}
.img-w-date p{ text-transform: none;}
.pr-img .img-list .imglist-img.pr-img-sec{height: 240px;}

/*======================================================================
=============================:: MEDIA CSS ::============================
=======================================================================*/

@media screen and (max-width:1830px) {}

@media screen and (max-width:1700px) {
    .header .logo a {
        max-width: 380px;
    }

    .menu-item a.menu-link,
    .menu-item.menu-dropdown a.menu-link {
        font-size: 0.9rem;
    }


}

@media screen and (max-width:1600px) {
    .header .logo a {
        max-width: 350px;
    }

    .menu-item a.menu-link,
    .menu-item.menu-dropdown a.menu-link {
        padding: 10px 20px;
    }

}

@media screen and (max-width:1500px) {
    .header .logo a {
        max-width: 330px;
    }

    .menu-item a.menu-link,
    .menu-item.menu-dropdown a.menu-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .site-main .box .site-detail .pl-content .pl-col {
        width: 47%;
    }
}

@media screen and (max-width:1399px) {
    .header .logo a {
        max-width: 300px;
    }

    .menu-item a.menu-link,
    .menu-item.menu-dropdown a.menu-link {
        font-size: 0.8rem;
        padding: 10px 10px;
    }

    .nav-bar {
        padding: 10px 15px;
    }

    .table-responsive .table {
        min-width: 1100px;
    }

    .pagination-bar {
        min-width: 1100px;
    }

    .common-table-wrapper.site-main-wrapper .pagination-bar {
        min-width: inherit;
    }

    .common-table-wrapper.pr-main-wrapper .pagination-bar {
        min-width: inherit;
    }

    .top-ten-sec .table-responsive .table {
        min-width: 850px;
    }

    .prcard h3 {
        font-size: 19px;
        line-height: 30px;
    }

    .prcard span {
        font-size: 36px;
        line-height: 45px;
    }

    .prcard h3 {
        font-size: 19px;
        line-height: 30px;
    }

    .prcard span {
        font-size: 36px;
        line-height: 45px;
    }

    .route-search.searchbox {
        min-width: 190px;
        width: 190px;
    }

    .rbd-tab-con .form-group.fg-route-name {
        min-width: 175px;
    }

    .rbd-tab-con .form-group.fg-state {
        min-width: 170px;
    }

    .rbd-tab-con .form-group.fg-city {
        min-width: 170px;
    }

    .wo-group .form-group {
        width: 24.3%;
    }

    .uf-list {
        width: 24.3%;
    }
    .comman-container.vcm-container.constmap-container .form-group.state-report {
    width:208px;
    }
    .comman-container.vcm-container.constmap-container .card-filter .form-btn {
    margin: 0 ;
}

}



@media (max-width:1199px) {
    .wrapper {
        padding: 8.1rem 0 0 0;
    }

    .header {
        height: 130px;
        background-position: 0 bottom;
    }

    .header .logo a {
        max-width: 200px;
    }

    .header .logo a img {
        height: 70px;
    }

    .menu-item a.menu-link,
    .menu-item.menu-dropdown a.menu-link {
        font-size: 0.7rem;
        padding: 10px 10px;
    }

    .header .navbar {
        padding: 1.875rem 0 0 0;
    }

    .header-fixed .header .navbar {
        padding: 0.5rem 0 0 0;
    }

    .ls-maincontainer {
        padding: 5.25rem 0;
    }

    .form-container .form-group-main h2 {
        font-size: 28px;
        line-height: 28px;
    }

    .main-container {
        padding: 5.25rem 0;
    }

    .site-main {
        gap: 20px;
    }

    .site-main .box {
        max-width: calc(33.3333333333% - 0.9rem);
    }

    h3.modal-title {
        font-size: 26px;
        line-height: 28px;
    }

    .cardfilter.rb-page-filter .form-group.fg-country {
        min-width: 180px;
    }

    .cardfilter.rb-page-filter .form-group.fg-state {
        min-width: 170px;
    }

    .cardfilter.rb-page-filter .form-group.fg-city {
        min-width: 170px;
    }

    .container.ppc {
        width: 95%;
        max-width: 100%;
    }

    .dbcard h2 {
        font-size: 18px;
        line-height: 22px;
    }

    .dbcard span {
        font-size: 34px;
        line-height: 40px
    }

    .pr-mid-container {
        gap: 20px;
    }

    .prcard {
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 10px;
    }

    .prcard h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .prcard span {
        font-size: 34px;
        line-height: 40px;
    }

    .prcard h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .prcard span {
        font-size: 34px;
        line-height: 40px;
    }

    .chart-left {
        width: 40%;
    }

    .top-ten-sec {
        width: 60%;
    }

    .img-list.sd-img .imglist-img {
        max-width: calc(25% - 0.8rem);
    }

    .pr-main {
        gap: 20px;
    }

    .pr-main .pr-box {
        max-width: calc(33.3333333333% - 0.9rem);
    }

    .pr-main .pr-box .pr-detail .pr-img {
        width: 120px;
        height: 100px;
    }

    .common-table-wrapper.customer-dash .dbcard {
        padding: 10px 50px;
    }

    .rbd-tab-con .cardheader .cardfilter .cardfilterLeft {
        flex-wrap: wrap;
    }

    .comman-container.vcm-container .card-filter .form-group.state-report {
        width: 183px;
    }

    .wo-group .form-group {
        width: 24.1%;
    }

    .uf-list {
        width: 24.1%;
    }
    .comman-container.vcm-container .card-filter .form-group.state-report {
        width: 210px;
    }
}


@media only screen and (min-width: 991px) {
    .menu-dropdown:hover>.submenu {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


@media (max-width:991px) {

    .menu-item.menu-dropdown.desk-profile,
    .menu-item.desk-profile {
        display: none;
    }

    .mob-profile {
        display: flex;
    }

    .mobile-nav-btn {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }

    .mob-profile .menu-item.menu-dropdown {
        border: 0;
    }

    .mob-profile .menu-item.menu-dropdown a.menu-link.profile-name {
        width: 70px;
        height: 30px;
    }

    .mob-profile .menu-item.menu-dropdown ul.submenu.profile-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0rem;
        right: 0rem;
        min-width: 13rem;
        height: auto;
        padding: 1rem 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(1rem);
        border: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease-in-out;
        margin: 30px 0 0 0;
        z-index: 9999;
        padding: 15px 16px;
        gap: 10px;
        background: #3D3D3D;
        border-radius: 7px;
    }

    .mob-profile .menu-item.menu-dropdown:hover>.submenu.profile-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mob-profile .submenu-link {
        font-family: var(--primary-font);
        cursor: pointer;
        transition: all 0.35s ease;
        font-weight: 500;
        font-size: 0.938rem;
        line-height: 1.313rem;
        display: flex;
        align-items: center;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--white-color);
    }

    .mob-profile .menu-item.menu-dropdown:hover a.menu-link,
    .mob-profile .menu-item:hover a.menu-link {
        background: var(--primary-color);
        color: var(--white-color);
    }

    .mob-profile .menu-item.menu-dropdown a.menu-link:hover span svg path,
    .mob-profile .menu-item.menu-dropdown a.menu-link span svg path {
        stroke: var(--white-color)
    }

    .mob-profile .menu-item {
        border: 0;
    }

    .mob-profile .menu-item a.menu-link {
        color: #fff;
        font-size: 0.8rem;
        background: var(--primary-color);
        height: 30px;
        width: 80px;
        text-align: center;
        justify-content: center;
    }

    .mob-profile .menu-item .submenu-item {
        padding: 0 0 10px 0px;
        border-bottom: 1px solid #666666;
    }

    .wrapper {
        padding: 6.2rem 0 0 0;
    }

    .header {
        height: 100px;
        background-position: 0 center;
        padding: 1rem 0;
    }

    .header .navbar {
        padding: 1rem 1.5rem 0 1.5rem;
    }

    .header .logo a img {
        height: 58px;
    }

    .header .navbar {
        align-items: center;
    }

    .header-fixed .header .navbar {
        padding: 1rem 1.5rem 0 1.5rem;
    }

    .mobi-iconbox {
        display: flex;
    }

    .nav-bar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        background-color: white;
        transition: all 0.5s ease;
        padding: 20px;
        flex-direction: column;
        border-radius: 0;
        align-items: flex-start;
        justify-content: flex-start;
        border: 0;
    }

    .nav-bar ul {
        flex-direction: column;
    }

    .nav-bar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }

    .menu-item a.menu-link,
    .menu-item.menu-dropdown a.menu-link {
        color: #000;
        align-items: center;
        justify-content: space-between;
        font-size: 0.9rem;
    }

    .menu-item.menu-dropdown:hover a.menu-link,
    .menu-item:hover a.menu-link {
        background: transparent;
        color: var(--primary-color);
    }

    .menu-item.menu-dropdown a.menu-link span {
        display: inline-flex;
    }

    .menu-item.menu-dropdown a.menu-link:hover span svg path {
        stroke: var(--primary-color)
    }

    .menu-item {
        border-bottom: 1px solid #ccc;
    }

    .submenu-item {
        border-bottom: 1px solid #ccc;
        padding: 10px 0px;
    }

    .menu {
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }

    .menu-item {
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    .menu-link {
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
    }

    .nav-bar ul li ul.submenu {
        position: relative;
        top: 0rem;
        left: 2rem;
        width: 80%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
        display: none;
        margin: 0px 0 0 0;
        border-radius: 0;
        margin-bottom: 10px;
    }

    .menu-dropdown.active .submenu {
        display: block;
    }

    .menu-item.active ul.submenu li a {
        color: #000;
    }

    .menu-item.active ul.submenu li a:hover {
        color: var(--primary-color);
    }

    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
        margin: 0;
    }

    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .menu-item.menu-dropdown a.menu-link::after {
        top: 18px;
        right: 12px;
    }

    .nav-bar ul li ul.submenu.profile-menu {
        left: 2rem;
    }

    .ls-maincontainer {
        padding: 4.25rem 0;
    }

    .form-container .form-group-main h2 {
        font-size: 26px;
        line-height: 26px;
    }

    .main-container {
        padding: 4.25rem 0;
    }

    .site-main .box .site-detail .pl-content {
        gap: 10px;
    }

    .site-main .box {
        max-width: calc(49% - 0.3rem);
    }

    .site-detail-main .sd-col {
        max-width: calc(49% - 0.3rem);
    }

    .site-detail-main .sd-col:nth-child(28) span+span,
    .site-detail-main .sd-col:nth-child(29) span+span {
        height: 35px;
    }

    .site-detail-main .sd-col:nth-child(30) span+span,
    .site-detail-main .sd-col:nth-child(31) span+span {
        height: auto;
    }

    .add-big-modal.modal-dialog {
        max-width: 740px;
    }

    .modal-body.column-body .form-group {
        width: 48.5%;
    }

    h3.modal-title {
        font-size: 24px;
        line-height: 26px;
    }

    .add-site-form form .form-group {
        width: 48.8%;
    }

    .cardfilter.rb-page-filter .cardfilterLeft {
        flex-wrap: wrap;
    }

    .cardheader .cardfilter.rb-page-filter .cardfilterLeft select.form-select.pageno {
        width: 65px;
    }

    .dbcard::after {
        opacity: 0.5;
    }

    .prcard {
        padding: 15px 20px;
    }

    .chart-left {
        width: 45%;
    }

    .top-ten-sec {
        width: 55%;
    }

    .sd-tab.sd-tab-main .cardfilter .searchbox {
        min-width: 180px;
    }

    .sd-tab.sd-tab-main .cardfilter .form-group.year-report {
        width: 90px;
    }

    .sd-tab.sd-tab-main .cardfilter .site-import-data form input[type="file"] {
        font-size: 0.8rem;
        padding: 0rem .5rem;
    }

    .common-table-wrapper.site-main-wrapper .siteinfo-tab.sdinfo-tab ul.nav.nav-tabs li .nav-link {
        padding: 10px 20px;
        font-size: 0.9rem;
        line-height: 1rem;
    }

    .siteinfo-tab.sdinfo-tab .btn-sm.btn-primary {
        font-size: 0.9rem;
        line-height: 1rem;
        width: 125px;
    }

    .img-list.sd-img .imglist-img {
        max-width: calc(33% - 0.8rem);
    }

    .uploaded-by {
        font-size: 0.8rem;
    }

    .pr-main .pr-box {
        max-width: calc(49% - 0.3rem);
    }

    .common-table-wrapper.customer-dash .dbcard h2 {
        font-size: 25px;
        line-height: 30px;
    }

    .common-table-wrapper.customer-dash .dbcard {
        padding: 10px 40px;
    }

    .comman-container.cmf-container .cardheader .cardheading {
        flex-direction: column;
        align-items: flex-start;
    }

    .comman-container.vcm-container .card-filter {
        gap: 10px;
    }

    .comman-container.vcm-container .card-filter .form-group.state-report {
        width: 23.8%;
    }

    .comman-container.vcm-container .card-filter .form-group.state-report label {
        font-size: 0.9rem;
    }

    .wo-group {
        gap: 15px;
    }

    .wo-group .form-group {
        width: 48.8%;
    }

    .upload-file-wrap {
        gap: 15px;
    }

    .uf-list {
        width: 48.8%;
    }

.site-detail-main .sd-col.sd-col-height1 span+span {
    min-height: 36px;
}
}

@media (max-width:767px) {
    footer.footer {
        background: url(../images/footer-bg.svg) repeat-x center 0;
    }

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

    .ls-maincontainer {
        padding: 3.25rem 0;
        min-height: inherit;
    }

    .form-container .form-group-main h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .main-container {
        padding: 3.25rem 0;
    }


    .header .navbar {
        padding: 1rem 0 0 0;
    }

    .header-fixed .header .navbar {
        padding: 1rem 0 0 0;
    }

    .add-big-modal.modal-dialog {
        max-width: 645px;
    }

    .modal-body.column-body .form-group {
        width: 48.2%;
    }

    h3.modal-title {
        font-size: 22px;
        line-height: 24px;
    }

    .add-site-form form .form-group {
        width: 48.4%;
    }

    .sd-tab.sd-tab-main .cardfilter {
        flex-direction: column;
        align-items: flex-start;
    }

    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        text-align: left;
    }

    .dbcard {
        max-width: calc(100% / 1 - 0rem);
        height: auto;
    }

    .pr-mid-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .prcard {
        max-width: calc(100% / 2 - 1rem);
    }

    .dbcard span {
        font-size: 25px;
        line-height: 30px;
    }

    .dbcard h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .prcard h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .prcard span {
        font-size: 25px;
        line-height: 30px;
    }

    .prcard h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .prcard span {
        font-size: 25px;
        line-height: 30px;
    }

    .prheading h2 {
        font-size: 22px;
        line-height: 24px;
    }

    .dashboard-bottom {
        flex-direction: column;
    }

    .chart-left {
        width: 100%;
    }

    .top-ten-sec {
        width: 100%;
    }

    .img-list.sd-img .imglist-img {
        max-width: calc(49% - 0.8rem);
    }

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

    .cardfilterLeft.toggle-filter {
        flex-wrap: wrap;
    }

    .common-table-wrapper.customer-dash .dbcard h2 {
        font-size: 20px;
        line-height: 25px;
    }

    .common-table-wrapper.customer-dash .dbcard {
        padding: 10px 30px;
        height: 100px;
    }

    .comman-container.subjob-category .cardheader .cardfilter {
        flex-direction: column;
        align-items: flex-start;
    }

    .comman-container.vcm-container .card-filter .form-group.state-report {
        width: 49%;
    }

    .site-main .box {
        height: auto;
    }

    .wo-group .form-group {
        width: 48.4%;
    }

    .uf-list {
        width: 48.4%;
    }

}

@media (max-width:670px) {
    .copyright-sec {
        font-size: 14px;
    }

    .ls-maincontainer {
        padding: 2.25rem 0;
        min-height: inherit;
    }

    .main-container {
        padding: 2.25rem 0;
    }

    .form-container {
        width: 90%;
    }

    .form-container .form-group-main h2 {
        text-align: center;
        justify-content: center;
    }

    .form-container .form-group-main {
        text-align: center;
    }

    .common-table-wrapper.site-main-wrapper .pagination-bar {
        flex-direction: column;
        gap: 10px;
    }

    .cardheader .cardheading h1 {
        font-size: 24px;
    }

    .comman-container {
        padding: 20px;
    }

    .site-main .box {
        max-width: 100%;
    }

    .site-detail-main .sd-col {
        max-width: calc(48% - 0.1rem);
    }

    .site-detail-main .sd-col:nth-child(28) span+span,
    .site-detail-main .sd-col:nth-child(29) span+span {
        height: 55px;
    }

    .add-big-modal.modal-dialog {
        max-width: 555px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-body.column-body .form-group {
        width: 48%;
    }

    .site-detail-main .sd-col span+span {
        font-size: 15px;
    }


    .dashboard-container {
        padding: 20px;
    }

    .common-table-wrapper.site-main-wrapper .pagination-bar,
    .common-table-wrapper.pr-main-wrapper .pagination-bar {
        flex-direction: column;
        gap: 10px;
    }

    .pr-main .pr-box {
        max-width: 100%;
    }

    .common-table-wrapper.customer-dash .dbcard {
        padding: 10px 30px;
        height: 100px;
        max-width: calc(100% / 1 - 1rem);
    }

    .comman-container.subjob-category .cardheader .cardheading {
        flex-direction: column;
        align-items: flex-start;
    }

    .comman-container.vcm-container .card-filter .form-group.year-report {
    width: 49%;
}
.comman-container.vcm-container.constmap-container .card-filter .form-btn {
        margin: 0 0 0 auto;
    }

}

@media (max-width:575px) {

    .cardheader .cardheading {
        justify-content: space-between;
    }

    .searchbox {
        min-width: 210px;
    }

    .site-detail-main .sd-col {
        max-width: 100%;
    }

    .site-detail-main .sd-col:nth-child(28) span+span,
    .site-detail-main .sd-col:nth-child(29) span+span {
        height: auto;
    }

    .comman-container.cmf-container .cardheader .cardheading {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-body.column-body .form-group {
        width: 100%;
    }

    .add-site-form form .form-group {
        width: 100%;
    }

    .cardheader .cardfilter.rb-page-filter .cardfilterLeft .searchbox {
        width: 74%;
    }

    .cardfilter.rb-page-filter .form-group.fg-country {
        min-width: inherit;
        width: 48%;
    }

    .cardfilter.rb-page-filter .form-group.fg-state {
        min-width: inherit;
        width: 48%;
    }

    .sd-tab.sd-tab-main .cardheader .cardfilter .cardfilterLeft {
        flex-wrap: wrap;
    }

    .img-list.sd-img .imglist-img {
        max-width: calc(100% - 0rem);
    }

    .reports .form-group .form-control {
        width: 180px;
    }

    .reports .form-group label {
        font-size: 0.8rem;
    }

    .cardfilterLeft.report-sb {
        flex-wrap: wrap;
    }

    .genppt-btn {
        flex-direction: column;
    }

    .comman-container.cmf-container .cardheader .cardheading .cmf-btn {
        flex-direction: column;
        width: 100%;
    }

    .comman-container.subjob-category .cardheader .cardheading .button {
        width: 100%;
    }

    .comman-container.subjob-category .cardheader .cardfilter .button {
        width: 100%;
    }

    .common-table-wrapper.site-main-wrapper .siteinfo-tab.rbl-db-tab ul.nav.nav-tabs li.nav-item,
    .common-table-wrapper.site-main-wrapper .siteinfo-tab.rbl-db-tab ul.nav.nav-tabs li.nav-item button {
        width: 100%;
        text-align: center;
    }

    .comman-container.vcm-container .card-filter .form-group.state-report {
        width: 48%;
    }

    .wo-group .form-group {
        width: 100%;
    }

    .uf-list {
        width: 100%;
    }
}

@media (max-width:450px) {
    .cardheader .cardheading {
        flex-direction: column;
        align-items: flex-start;
    }

    .prcard {
        max-width: calc(100% / 1 - 0rem);
        flex-direction: row;
        align-items: center;
    }

    .chart-left {
        overflow-x: scroll;
    }

    .common-table-wrapper.site-main-wrapper .siteinfo-tab.ssm-fsm-tab ul.nav.nav-tabs li.nav-item {
        width: 100%;
        text-align: center;
    }

    .common-table-wrapper.site-main-wrapper .siteinfo-tab.rbl-db-tab ul.nav.nav-tabs li.nav-item {
        width: 100%;
        text-align: center;
    }

    .common-table-wrapper.site-main-wrapper .siteinfo-tab.rbl-db-tab ul.nav.nav-tabs li .nav-link {
        width: 100%;
    }

    .comman-container.cmf-container .cardheader .cardheading .cmf-btn a.btn-secondary {
        padding: 8px 10px !important;
    }

    .rbd-tab-con .form-group.fg-route-name {
        min-width: 100%;
        width: 100%;
    }

    .rbd-tab-con .form-group.fg-state,
    .rbd-tab-con .cardfilter.rb-page-filter .form-group.fg-state {
        min-width: 100%;
        width: 100%;
    }

    .rbd-tab-con .form-group.fg-city {
        min-width: 100%;
        width: 100%;
    }

    .rbd-tab-con .form-group.fg-state {
        min-width: 100%;
        width: 100%;
    }

    .comman-container.vcm-container .card-filter .form-group.state-report {
        width: 100%;
    }

    .comman-container.vcm-container .card-filter .form-btn,
    .comman-container.vcm-container .card-filter .form-btn .btn {
        width: 100%;
    }
    .comman-container.vcm-container .card-filter .form-group.year-report {
        width: 100%;
    }

}
