.pd_dropdown {
    border-bottom: 3px solid #245959;
    margin-left: 20px;
}

.pd_img_shortcode {
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    background-position: center;
}


.pd-leilao-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.pd-leilao-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pd-leilao-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.pd-leilao-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .pd-leilao-slider {
    background-color: #2196F3;
}

input:focus + .pd-leilao-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .pd-leilao-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}




.pd_input_bid_value{
    border-bottom: 4px solid #4F5254 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    background-color: transparent !important;
    color: #4F5254;
}



        .pd_dropdown_bid {
            position: relative;
            display: inline-block;
            width: 200px;
            cursor:pointer;
        }

        .pd_dropdown_bid_current {
            padding: 10px;
            border-bottom: 4px solid #4F5254;
            border-top: none;
            border-left: none;
            border-right: none;
            background-color: transparent;
            color: #4F5254;
        }

        .pd_dropdown_bid_list {
            display: none;
            position: absolute;
            width: 100%;
            border: 1px solid #4F5254;
            background-color: #fff;
            z-index: 1;
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 250px;
            overflow-y: auto;
        }

        .pd_dropdown_bid_list li {
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #4F5254;
        }

        .pd_dropdown_bid_list li:hover {
            background-color: #f1f1f1;
        }

        .pd_dropdown_icon {
            position: absolute;
            right: 10px;
            top: 14px;
            pointer-events: none;
        }