/* my_toogle (from ddp_css.css L318-L363) */
.my_toogle{
    height: 180px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    border: 1px solid rgba(190,190,190,0.21);

}

.my_toogle.t_map {
    height: 120px;
}


.toogle_link {
    font-size: 1.4em;
    font-weight: bolder;
    color: #ba2d26;
    left: 0;
    display: block;
    width: 100%;
    height: 64px;
    background: linear-gradient(to bottom, transparent, #b6b6b6);
    text-align: center;
    padding-top: 20px;
    bottom: 0px;
    position:absolute;
    cursor: pointer;
    border-radius: 4px;
    z-index: 5;
}
.toogle_link:hover {
    background: linear-gradient(to bottom, transparent, #c4c4c4);
    color: #db645f;
}

.toogle_link:before, .toogle_link:after  {
    border-radius: 4px;
    padding: 4px;
    margin: 8px;
    font-weight: bolder;
    color: #008cb2;
    font-size: 1.6em;
    content:'\21E9';

}
