.wdmp {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity .3s ease;
}
.wdmp.in {
    opacity: 1;
}


/* Misc 
------------------------------------------------------------ */

.wdmp .leaflet-bar a {
    color: #444
}
.wdmp .leaflet-bar a:hover {
    color: #222;
}
.wdmp .leaflet-touch .leaflet-bar a {
    width: 40px;
    height: 40px;
    background-color: #FFF;
    line-height: 40px;
    transition: none;
    border-bottom: 1px solid #EEE;
}
.wdmp .leaflet-touch .leaflet-bar a:hover {
    background-color: #f9f9f9;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.wdmp .leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.wdmp .leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.wdmp .leaflet-touch .leaflet-control-layers, 
.wdmp .leaflet-touch .leaflet-bar {
    border: none
}

.wdmp .beers-tooltip {
    min-width: 100px;
}

/* Popover 
------------------------------------------------------------ */

.wdmp .pvr {
    position: absolute;
    top: 40px;
    right: 40px;
    bottom: 40px;
    left: 40px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .3s ease, transform .3s ease;
}
.wdmp.in .pvr {
    opacity: 1;
    transform: translateY(0);
}

/* Popover > Inner */
.wdmp .pvr .pvi {
    display: flex;
    position: relative;
    align-items: stretch;
    width: 100%;
    height: 100%;
    background: #FFF;
    border-radius: 4px;
    border: 1px solid #666;
    overflow: hidden;
    z-index: 10;
}


/* Popover > Item
------------------------------------------------------------ */

.wdmp .pvr .wdmp-item {
    display: block;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.05);
}

/* Popover > Item > Main */
.wdmp .pvr .wdmp-item .mn {
    display: flex;
    padding: 12px;
}

/* Popover > Item > Main > Thumb */
.wdmp .pvr .wdmp-item .mn .tb {
    flex: 0 0 100px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity .9s ease;
}
.wdmp .pvr .wdmp-item .mn .tb.in {
    opacity: 1;
}
.wdmp .pvr .wdmp-item .mn .tb.ldng {
    -webkit-animation:wdmp-pulse 2s infinite;
    animation:wdmp-pulse 2s infinite;
    background-color: #f9f9f9;

}

/* Popover > Item > Main > Content */
.wdmp .pvr .wdmp-item .mn .cn {
    margin-left: 16px;
}
.wdmp .pvr .wdmp-item .mn .cn .cat {
    display: inline-block;
    color: #000;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 2px 4px;
    border-radius: 4px;
}

.wdmp .pvr .wdmp-item .mn .cn .tit {
    display: block;
    color: #dd463b;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    margin: 4px 0 0;
}
.wdmp .pvr .wdmp-item .mn .cn .des {
    display: block;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin: 10px 0 0;
}
.wdmp .pvr .wdmp-item .mn .cn .gt {
    display: block;
    color: #3e2b2f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    margin: 8px 0 0;
}

/* Popover > Item > Foot */
.wdmp .pvr .wdmp-item .ft {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 8px 0;
    border-radius: 0 0 4px 4px;

    color: #3e2b2f !important;
    font-size: 12px;

    border-top: 1px solid #DDD;
    background-color: #f9f9f9;
}
.wdmp .pvr .wdmp-item .ft > div {
    padding: 0 5px;
}
.wdmp .pvr .wdmp-item .ft > div + div {
    border-left: 1px solid #d9d9d9;
}
.wdmp .pvr .wdmp-item .ft .ico-percorso-tipo-bicicletta-strada,
.wdmp .pvr .wdmp-item .ft .ico-percorso-tipo-bicicletta-mtb,
.wdmp .pvr .wdmp-item .ft .ico-percorso-tipo-bicicletta-ebike,
.wdmp .pvr .wdmp-item .ft .ico-percorso-tipo-bicicletta-greve,
.wdmp .pvr .wdmp-item .ft .ico-percorso-tipo-bicicletta-trekk{
    height: 25px;
    width: 32px;
}


/* Popover > Inner > Filters 
------------------------------------------------------------ */

.wdmp .pvr .pvi .flt {
    flex: 0 0 304px;
    width: 304px;
    padding: 8px 8px 120px;
    border-right: 1px solid #DDD;
    background-color: #f9f9f9;
    overflow: auto;
}
.wdmp .pvr .pvi .flt .flth {
    display: none;
    position: absolute;
    bottom: 8px;
    left: 50%;
    height: 24px;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    padding: 0 16px;
    border: none;
    border-radius: 4px;
    background-color: #efefef;
    z-index: 20;
    cursor: pointer;
    color: #444;
    transform: translateX(-50%);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.wdmp .pvr .pvi .flt .flth:hover {
    color: #222;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

/* Popover > Inner > Filters > Group */
.wdmp .pvr .pvi .flt .group {
    border: 1px solid #DDD;
    padding: 12px;
    background-color: #FFF;
    border-radius: 4px;
}
.wdmp .pvr .pvi .flt .group + .group {
    margin-top: 8px;
}

.wdmp .pvr .pvi .flt .group .name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color:  #dd463b;
    margin: 0 0 8px;
}

/* Popover > Inner > Filters > Group > Outdoor form */
.wdmp .pvr .pvi .flt .group .item {
    margin: 8px 0 0;
}
.wdmp .pvr .pvi .flt .group .item > label {
    display: block;
    color: #3e2b2f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1,2;
    margin: 0 0 4px;
}
.wdmp .pvr .pvi .flt .group .item .input-container {
    width: 100%;
}
.wdmp .pvr .pvi .flt .group .item input[type="text"] {
    height: 40px;
    line-height: 40px;
    color: #3e2b2f;
    background: #FFF;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 14px;
}
.wdmp .pvr .pvi .flt .group .item .checkbox-ui {
    margin-left: -2px;
    margin-right: -2px;
}
.wdmp .pvr .pvi .flt .group .item .checkbox-ui label {
    line-height: 25px;
    margin: 2px;  
    padding: 4px 2px;
    border: 1px solid #CCC;
    border-radius: 4px;
}
.wdmp .pvr .pvi .flt .group .item .checkbox-ui label::after {
    content: none;
}
.wdmp .pvr .pvi .flt .group .item .checkbox-ui label:hover:not(.active){
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}
.wdmp .pvr .pvi .flt .group .item .checkbox-ui label.active{
    background-color: #3e2b2f;
    border-color: #3e2b2f;
}
.wdmp .pvr .pvi .flt .group .item .checkbox-ui label.active i{
    background-image: url(../images/skin/icon-percorso-sprite-black.png);
}
.wdmp .pvr .pvi .flt .group .item .ico-percorso-tipo-bicicletta-strada,
.wdmp .pvr .pvi .flt .group .item .ico-percorso-tipo-bicicletta-mtb,
.wdmp .pvr .pvi .flt .group .item .ico-percorso-tipo-bicicletta-ebike,
.wdmp .pvr .pvi .flt .group .item .ico-percorso-tipo-bicicletta-greve,
.wdmp .pvr .pvi .flt .group .item .ico-percorso-tipo-bicicletta-trekk{
    height: 25px;
    width: 40px;
}

/* Popover > Inner > Filters > Chosen */
.wdmp .pvr .pvi .flt .group .chosen-container {
    display: block;
    width: 100%;
    min-width: 1px;
}
.wdmp .pvr .pvi .flt .group .chosen-container .chosen-single {
    height: 40px;
    line-height: 40px;
    color: #3e2b2f;
    background: #FFF;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 14px;
}
.wdmp .pvr .pvi .flt .group .chosen-container .chosen-results li {
    font-size: 14px;
    line-height: 1.4;
}

/* Popover > Inner > Filters > Group > Control > Select */
.wdmp .pvr .pvi .flt .group .control.slct {
    margin: 8px 0 0;
}

/* Popover > Inner > Filters > Group > Control > Checkbox */
.wdmp .pvr .pvi .flt .group .control.chbx {
    display: block;
    font-weight: 400;
    margin: 4px 0 0;
    cursor: pointer;
}
.wdmp .pvr .pvi .flt .group .control.chbx span {
    font-size: 12px;
    line-height: 1.2;
}


/* Popover > Inner > Loader 
------------------------------------------------------------ */

.wdmp-ldr {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 999999;
}
.wdmp-ldr.in {
    opacity: 1;
}
.wdmp-ldr .ldr {
    font-size: 14px;
    color: #3e2b2f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    border: 1px solid #DDD;
    border-bottom: 2px solid #DDD;
    padding: 12px;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.05);
    z-index: 40;
}

.wdmp .pvr .ldr {
    display: none;
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    font-size: 14px;
    color: #3e2b2f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    border: 1px solid #DDD;
    border-bottom: 2px solid #DDD;
    padding: 12px;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.05);
    transform: translateY(25px);
    transition: opacity .3s ease, transform .3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 40;
}
.wdmp.ldng .pvr .ldr {
    opacity: 1;
    transform: translateY(0);
}
.wdmp .pvr .ldr .rn,
.wdmp-ldr .ldr .rn {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    margin: auto;
}
.wdmp .pvr .ldr .rn div,
.wdmp-ldr .ldr .rn div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 4px;
    border: 4px solid #3e2b2f;
    border-radius: 50%;
    animation: wdmp-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #3e2b2f transparent transparent transparent;
}
.wdmp .pvr .ldr .rn div:nth-child(1),
.wdmp-ldr .ldr .rn div:nth-child(1) {
    animation-delay: -0.45s;
}
.wdmp .pvr .ldr .rn div:nth-child(2),
.wdmp-ldr .ldr .rn div:nth-child(2) {
    animation-delay: -0.3s;
}
.wdmp .pvr .ldr .rn div:nth-child(3),
.wdmp-ldr .ldr .rn div:nth-child(3) {
    animation-delay: -0.15s;
}
.wdmp .pvr .ldr span,
.wdmp-ldr .ldr span {
    display: block;
    position: relative;
    margin: 10px auto 0;
}


/* Popover > Inner > Results 
------------------------------------------------------------ */

.wdmp .pvr .pvi .rsl {
    position: relative;
    flex: 0 0 360px;
    width: 360px;
    border-right: 1px solid #DDD;
    background-color: #f9f9f9;
    box-shadow: inset 4px 0 6px rgba(0,0,0,0.05);
}

/* Popover > Inner > Results > Inner */
.wdmp .pvr .pvi .rsl .rsi {
    padding: 16px 8px;
    height: 100%;
    overflow: auto;
    transition: opacity .3s ease;
}
.wdmp.ldng .pvr .pvi .rsl .rsi {
    opacity: .3;
}

/* Popover > Inner > Results > Inner > No results */
.wdmp .pvr .pvi .rsl .rsi .none {
    display: block;
    margin: 16px 16px 0;
    font-size: 14px;
    color: #3e2b2f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

/* Popover > Inner > Results > Inner > Item */
.wdmp .pvr .pvi .rsl .rsi .wdmp-item {
    border: 1px solid #DDD;
    border-bottom: 2px solid #DDD;
    transition: none;
    transform: translateX(-25px);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
}
.wdmp .pvr .pvi .rsl .rsi .wdmp-item.in {
    opacity: 1;
    transform: translateX(0);
}
.wdmp .pvr .pvi .rsl .rsi .wdmp-item:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    border-color: #dfc9c7;
    background-color: #FFF8F8;
}
.wdmp .pvr .pvi .rsl .rsi .wdmp-item + .wdmp-item {
    margin-top: 12px;
}
.wdmp .pvr .pvi .rsl .rsi .wdmp-item .mn .cn .tit {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 54px;
    overflow: hidden;
}
.wdmp .pvr .pvi .rsl .rsi .wdmp-item:hover .ft {
    border-color: #dfc9c7;
    background-color: #F9EEEE;
}


/* Popover > Inner > Map
------------------------------------------------------------ */

.wdmp .pvr .pvi .map {
    flex: 1 1 auto;
}

/* Popover > Inner > Map > Marker*/
.wdmp .pvr .pvi .map .wdmp-marker span {
    display: block;
    position: absolute;
    width: 36px;
    height: 46px;
    left: -12px;
    bottom: 0;
    border-radius: 50%;
    background-image: url(../images/icona_tappa_list.svg);
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: center bottom;

}
.wdmp .pvr .pvi .map .wdmp-marker i {
    display: block;
    position: absolute;
    width: 14px;
    height: 4px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    left: -1px;
    bottom: -2px;
}
.wdmp .pvr .pvi .map .wdmp-marker.cicloturismo span { background-image: url(../images/map/map-marker-cicloturismo.svg)} /* Cicloturismo */ 
.wdmp .pvr .pvi .map .wdmp-marker.mezzi_motore span { background-image: url(../images/map/map-marker-mezzi_motore.svg)} /* mezzi_motore */ 
.wdmp .pvr .pvi .map .wdmp-marker.escursionismo span { background-image: url(../images/map/map-marker-escursionismo.svg)} /* Escursionismo */
.wdmp .pvr .pvi .map .wdmp-marker.tvt span { background-image: url(../images/map/map-marker-attivita-montagna.svg)} /* Attività montagna */
.wdmp .pvr .pvi .map .wdmp-marker.prp span { background-image: url(../images/map/map-marker-proposta.svg)} /* Proposta turistica */
.wdmp .pvr .pvi .map .wdmp-marker.rsr span { background-image: url(../images/map/map-marker-risorsa.svg)} /* Ospitalità e servizi */

.wdmp .pvr .pvi .map .wdmp-marker.active span {
    filter: brightness(1.4);
}
.wdmp .pvr .pvi .map .wdmp-marker.escursionismo.active span {
    filter: brightness(1.2);
}
.wdmp .pvr .pvi .map .wdmp-marker.on {
    z-index: 9999 !important;
}
.wdmp .pvr .pvi .map .wdmp-marker.on span {
    transform: scale(1.2);
}
.wdmp .pvr .pvi .map .wdmp-marker.bounce {
    z-index: 9998 !important;
}
.wdmp .pvr .pvi .map .wdmp-marker.bounce span {
    filter: brightness(1.4);
    animation:wdmp-bounce .4s ease infinite alternate;
}

/* Popover > Inner > Map > Popup */
.wdmp .pvr .pvi .map .leaflet-popup {
    top: 15px;
    bottom: initial !important;   
}
.wdmp .pvr .pvi .map .leaflet-popup .leaflet-popup-content-wrapper {
    border: none;
    background: none;
    padding: 0;
}
.wdmp .pvr .pvi .map .leaflet-popup .leaflet-popup-tip-container {
    display: none !important;
}
.wdmp .pvr .pvi .map .leaflet-popup .leaflet-popup-content {
    margin: 0;
}
.wdmp .pvr .pvi .map .wdmp-item .mn .cn .tit {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 54px;
    overflow: hidden;
}


/* Popover > Closer
------------------------------------------------------------ */

.wdmp .pvr .cls {
    display: block;
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    line-height: 0;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    background-color: #FFF;
    border: 1px solid #EEE;
    z-index: 20;
    cursor: pointer;
}
.wdmp .pvr .cls:hover {
    background-color: #f9f9f9;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.wdmp .pvr .cls span {  
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}
.wdmp .pvr .cls span:after,
.wdmp .pvr .cls span:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #444;
}
.wdmp .pvr .cls:hover span:after,
.wdmp .pvr .cls:hover span:before {
    background-color: #222;
}
.wdmp .pvr .cls span:before {
    transform: rotate(-45deg);
}
.wdmp .pvr .cls span:after {
    transform: rotate(45deg);
}


/* Popover > Show Filters (Mobile)
------------------------------------------------------------ */

.wdmp .pvr .flts {
    display: none;
    position: absolute;
    top: 10px;
    right: 58px;
    height: 40px;
    font-size: 12px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    padding: 0 24px;
    border: none;
    border-radius: 4px;
    background-color: #FFF;
    z-index: 20;
    cursor: pointer;
    color: #444;
}
.wdmp .pvr .flts:hover {
    color: #222;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}


/* Popover > Details
------------------------------------------------------------ */

.wdmp .pvr .dtl {
    display: none;
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 30;
    opacity: 0;
    transform: translateX(25px);
    transition: opacity .3s ease, transform .3s ease;
}
.wdmp .pvr .dtl.in {
    opacity: 1;
    transform: translateX(0);
}

/* Closer */
.wdmp .pvr .dtl .dtl-cls {  
    display: block;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    z-index: 10;
    background: none !important;
    border: none !important;
    cursor: pointer;
}
.wdmp .pvr .dtl .dtl-cls:after,
.wdmp .pvr .dtl .dtl-cls:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #444;
}
.wdmp .pvr .dtl .dtl-cls:hover:after,
.wdmp .pvr .dtl .dtl-cls:hover:before {
    background-color: #222;
}
.wdmp .pvr .dtl .dtl-cls:before {
    transform: rotate(-45deg);
}
.wdmp .pvr .dtl .dtl-cls:after {
    transform: rotate(45deg);
}

/* Item */
.wdmp .pvr .dtl .wdmp-item {
    position: relative;
    min-width: 320px;
    max-width: 400px;
    z-index: 1;
}
.wdmp .pvr .dtl .wdmp-item .mn .cn .tit {
    color: #3e2b2f;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}


/* Tpl 
------------------------------------------------------------ */

.wdmp .tpl {
    display: none;
}


/* Animations 
------------------------------------------------------------ */

@-webkit-keyframes wdmp-pulse {
	  0% { transform: scale(0.95); opacity: 1 }
	 70% { transform: scale(1); opacity: .3 }
	100% { transform: scale(0.95); opacity: 1 }
}
@keyframes wdmp-pulse {
	  0% { transform: scale(0.95); opacity: 1 }
	 70% { transform: scale(1); opacity: .3 }
	100% { transform: scale(0.95); opacity: 1 }
}
@-webkit-keyframes wdmp-bounce {
      0% { transform:translateY(0px) scale(1.5) }
    100% { transform:translateY(-20px) scale(1.5) }
}
@keyframes wdmp-bounce {
      0% { transform:translateY(0px) scale(1.5) }
    100% { transform:translateY(-20px) scale(1.5) }
}
@keyframes wdmp-ring {
      0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}


/* Responsive
------------------------------------------------------------ */

@media (max-width: 1099px) {
    .wdmp .pvr .pvi .rsl {
        display: none;
    }
}

@media (min-width: 767px) {
    .wdmp.ldng .pvr .pvi > .ldr {
        display: none !important;
    }
}

@media (max-width: 766px) {
    .wdmp {
        background: transparent;
    }
    .wdmp .pvr {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .wdmp .pvr .pvi {
        display: block;
        position: initial;
        border: none;
        border-radius: none;
    }
    .wdmp .pvr .pvi .flt {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        width: auto;
        max-width: 100%;
        padding: 10px 10px 40px;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.15);
        z-index: 40;
        overflow: visible;
        opacity: 0;
        transform: translateY(-25px);
        transition: transform .3s ease, opacity .3s ease;
    }
    .wdmp .pvr .pvi .flt.in {
        opacity: 1;
        transform: translateY(0);
    }
    .wdmp .pvr .pvi .flt .fltn {
        max-height: 55vh;
        overflow: auto;
        overflow-x: hidden;
    }
    .wdmp .pvr .ldr,
    .wdmp .pvr .flts,
    .wdmp .pvr .pvi .flt .flth {
        display: block;
    }
    .wdmp .pvr .pvi .rsl {
        display: none;
    }
    .wdmp .pvr .pvi .map {
        display: block;
        width: 100%;
        height: 100%;
        z-index: 10;
    }
    .wdmp .pvr .cls {
        top: 10px;
        right: 10px;
        border: none;
        border-radius: 4px;
    }
    .wdmp .pvr .cls span::after, 
    .wdmp .pvr .cls span::before {
        height: 2px;
    }
    .wdmp .pvr .dtl {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }
    .wdmp .pvr .dtl .wdmp-item {
        width: 100%;
        min-width: 1px;
        max-width: 100%;
    }
}