.popup-slider {
    width: 102%;
    height: 180px;
    left: -1%;
    top: -1px;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.popup-slider-wrapper-slide {
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0%;
    top: -100%;
    z-index: 1; 

    overflow: hidden;
}

.popup-slider img {
    width: auto !important;
    margin: 0 auto;
    height: 100%;
    max-width: unset;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.popup-slider-wrapper-slide.active {
    top: 0;
}
.go-left {
    transition: left 0.6s ease;
    top: 0;
    left: -100%;
}
.go-right {
    transition: left 0.6s ease;
    top: 0;
    left: 100%;
}
.from-right {
    top: 0;
    transform: translateX(100%);
}
.from-left {
    top: 0;
    transform: translateX(-100%);
}

.popup-slider .btn-left, .popup-slider .btn-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #199dd7;
    background: #f0f3f5;
    border-radius: 0.3125rem;
    z-index: 10;
    font-size: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 30px;
    width: 30px;
    cursor: pointer;
}
.popup-slider .btn-left:hover, .popup-slider .btn-right:hover {
    color: #ffffff;
    background-color: #00468b;
}
.popup-slider .btn-left {
    left: 10px;
}
.popup-slider .btn-right {
    right: 10px;
}

.popup-body {
    padding: 20px;
}

.popup-body p {
    margin: 0;
    line-height: 20px;
    display: flex;
}

.popup-body p span {
    font-size: 0.8rem;
}

.popup-body p span.popup-body-value {
    margin-left: auto;
    text-align: center;
    width: 74%;
    color: #000;
    font-weight: 400;

}
.popup-body p span {
    margin-left: auto;
    width: 26%;
    color: #199dd7;
    font-weight: 600;
}
