@font-face {
  font-family: Pompiere;
  src: url(../fonts/pompiere-regular-hu.woff);
}

#personal_history_container{
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
}

#personal_history_container a{
    text-decoration: none;
}

#personal_history_container #ph_header {
    width: 100%;
}

#personal_history_container #ph_header a, #personal_history_container #ph_header #personal_history_off {
    color: #000000;
    font-weight: normal;
    font-size: 20px;
    font-family: 'Pompiere', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

#personal_history_container #personal_history_off {
    float: right;
    cursor: pointer;
}

#personal_history_container #ph_body{
    padding: 10px 0px 10px 0px;
    width: 100%;
}

#personal_history_container #ph_body .ph_product {
    margin: 5%;
    padding: 2%;
    border: 1px solid #dddddd;
    box-sizing: border-box;
}

#personal_history_container #ph_body .ph_product-container{
    float: left;
}

#personal_history_container #ph_body .ph_product-container.md{
    width: 12.5%;
}

@media(max-width:991px) {
    #personal_history_container #ph_body .ph_product-container.sm {
        width: 16.6%;
    }
}

@media(max-width:767px) {
    #personal_history_container #ph_body .ph_product-container.xs {
        width: 25%;
    }
}

#personal_history_container #ph_body .ph_product a img{
    width: 100%;
}

#personal_history_container #ph_body .ph_product .ph_product_name {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#personal_history_container #ph_body .ph_product .ph_product_name:after {
    clear: both;
}

#personal_history_container #ph_body .ph_product .ph_product_name a{
    font-size: 16px;
    color: #000000;
    font-family: 'Open Sans Condensed', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#personal_history_container #ph_body .ph_product .ph_product_name a span{
    float: none !important;
}
#personal_history_container #ph_body .ph_product .ph_product_name a span.jury{
    vertical-align: super;
    font-size: 12px;
}

#personal_history_container #ph_body .ph_product .ph_product_maker{
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#personal_history_container #ph_body .ph_product .ph_product_maker a{
    font-size: 12px;
    color: #a0a0a0;
    font-family: 'Open Sans Condensed', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}


#personal_history_container #ph_body .ph_product .hover-icon{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

#personal_history_container #ph_body .ph_product .hover-icon.delete-history{
    color: red;
    right: 10px;
    top: 10px;
}

#personal_history_container #ph_body .ph_product:hover .hover-icon{
    visibility: visible;
    opacity: 1;
}
.ph_visible_lg {
    display: none !important;
}
@media (min-width: 1200px) {
    .ph_visible_lg {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .ph_hidden_xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .ph_hidden_sm {
        display: none !important;
    }
}