.cazadores_cont {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}



.cazadores_col_a {
    display: block;
    position: relative;
    margin: 0px;
    padding: 0px;
    border-radius: 5px;
    overflow: hidden;

    transition: box-shadow 0.3s, transform 0.3s, -moz-transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition: box-shadow 0.3s, transform 0.3s, -moz-transform 0.3s, -webkit-transform 0.3s;
}

.cazadores_col_a > p {
    display: table-cell;
    vertical-align: middle;
    width: 280px;
    height: 40px;
    position: relative;
    margin: 0px;
    padding: 0px 10px;
    background-color: #0033A0;

    font-family: 'SuraSans-Regular';
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    line-height: normal;
    font-weight: normal;
}

.cazadores_col_a > img {
    display: block;
    margin: 0px auto;
    width: 280px;
    height: 173px;

    transition: opacity 0.3s, filter 0.3s, -moz-filter 0.3s, -webkit-filter 0.3s;
    -webkit-transition: opacity 0.3s, filter 0.3s, -moz-filter 0.3s, -webkit-filter 0.3s;
}

.jugar_btn {
    position: absolute;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    opacity: 0;

    border-radius: 25px;
    background-color: #E3E829;
    
    top: 50%;
    top: calc((173px / 2) - 40px);
    top: -moz-calc((173px / 2) - 40px);
    left: 50%;
    left: calc(50% - 60px);
    left: -moz-calc(50% - 60px);
    
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);

    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-image: url(/images/cazadores/gamepad-solid.svg);

    transition: top 0.3s, opacity 0.3s;
    -webkit-transition: top 0.3s, opacity 0.3s;
}

.jugar_btn p {
    display: block;
    width: 100%;
    padding: 0px;
    margin: 0px;
    font-family: 'SuraSans-Regular';
    font-size: 18px;
    color: #0033A0;
    text-align: left;
    padding-left: 50px;
}

.cazadores_col a {
    text-decoration: none !important;
}

.cazadores_col_a:hover {
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.2);
}

.cazadores_col_a:hover .jugar_btn {
    top: 50%;
    top: calc((173px / 2) - 20px);
    top: -moz-calc((173px / 2) - 20px);
    opacity: 1;
}

.cazadores_col_a:hover img {
    opacity: 0.3;
    filter: grayscale(50%);
    -moz-filter: grayscale(50%);
    -webkit-filter: grayscale(50%);
}

.cazadores_no_juego .cazadores_col_a:hover{
    cursor: default !important;
    transform: initial !important;
    -moz-transform: initial !important;
    -webkit-transform: initial !important;
    box-shadow: initial !important;
}
.cazadores_no_juego .cazadores_col_a:hover img {
    opacity: initial !important;
    filter: initial !important;
    -moz-filter: initial !important;
    -webkit-filter: initial !important;
}


.btn_cazador_descargar {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    margin: 0px auto;
    margin-top: 10px;
    padding: 0px;
    width: 200px;
    height: 40px;

    border-radius: 5px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;

    background-color: #78be20;
    border: #78be20 solid 1px;

    font-family: 'SuraSans-Regular';
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: uppercase;
    padding-left: 30px;

    background-size: 20px 20px;
    background-position: 10px 9px;
    background-repeat: no-repeat;
    background-image: url(/images/iconos-home/file-download-solid.svg);

    transition: box-shadow 0.3s, -ms-box-shadow 0.3s, -moz-box-shadow 0.3s, -webkit-box-shadow 0.3s, -o-box-shadow 0.3s, background-color 0.3s;
    -webkit-transition: box-shadow 0.3s, -ms-box-shadow 0.3s, -moz-box-shadow 0.3s, -webkit-box-shadow 0.3s, -o-box-shadow 0.3s, background-color 0.3s;
}

.btn_cazador_descargar:hover {
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
    background-color: #94d63f;
}

.cazadores_title {
    font-family: 'SuraSans-Negrita';
    font-size: 24px;
    color: #79b829;
    text-align: left;
    font-weight: normal;
    line-height: normal;
    margin: 0px;
    padding: 0px;
    border: none;
    padding-bottom: 10px;
    margin-top: -20px;
    border-bottom: #dbdbdb solid 1px;
}

/********************MODAL DEFAULT********************/
#modal-parent {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 100000;

    visibility: hidden;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s, visibility 0.3s;
    -webkit-transition: background-color 0.3s, visibility 0.3s;
}

.modal-parent-in {
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    transition: background-color 0.3s, visibility 0s !important;
    -webkit-transition: background-color 0.3s, visibility 0s !important;
}

.modal.fade {
    -webkit-transition: opacity .3s linear, top .3s ease-out;
    -moz-transition: opacity .3s linear, top .3s ease-out;
    -o-transition: opacity .3s linear, top .3s ease-out;
    transition: opacity .3s linear, top .3s ease-out;
    top: -35%;
}

.modal {
    position: fixed;
    top: 10%;
    left: 50%;
    z-index: 1050;
    width: 580px;
    margin-left: -280px;
    background-color: #fff;
    border: 1px solid #999;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    outline: none;
}

/*.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
    margin-top: -300px;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -moz-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}*/

/*****************MODAL******************/
.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
    margin-top: -300px;
}

.modal.fade.in {
    top: 10% !important;
}

.fade.in {
    opacity: 1;
    margin-top: 0px;
}

.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform .3s ease-out;
    -moz-transition: -moz-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    height: 500px;
}

#myModal {
    width: 700px;
    margin-left: -350px;
}

#iframe_downloads {
    border: none;
    width: 100%;
    height: 500px;
    margin: 0px;
    padding: 0px;
}

.modal-body {
    padding: 0px;
    overflow: hidden;
    height: 500px;
    max-height: 500px;
}

.modal-close-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/media/system/images/modal/closebox.png);
    top: -25px;
    left: 100%;
    left: calc(100% - 5px);
    left: -moz-calc(100% - 5px);
    cursor: pointer;
}
/*********************************/
@media (min-width: 768px) and (max-width: 959px){
    .cazadores_col{
        margin-left: 10px;
        margin-left: calc((100% - (280px * 2)) / 4);
        margin-left: -moz-calc((100% - (280px * 2)) / 4);
        margin-right: 10px;
        margin-right: calc((100% - (280px * 2)) / 4);
        margin-right: -moz-calc((100% - (280px * 2)) / 4);
    }
}

@media (min-width: 560px) and (max-width: 767px){
    .cazadores_col{
        width: 250px;
        margin-left: 10px;
        margin-left: calc((100% - (250px * 2)) / 4);
        margin-left: -moz-calc((100% - (250px * 2)) / 4);
        margin-right: 10px;
        margin-right: calc((100% - (250px * 2)) / 4);
        margin-right: -moz-calc((100% - (250px * 2)) / 4);
    }
    .cazadores_col_a > p{
        width: 250px;
    }
    .cazadores_col_a > img{
        width: 250px;
        height: 155px;
    }
    .cazadores_col_a:hover .jugar_btn{
        top: 50% !important;
        top: calc((155px / 2) - 20px) !important;
        top: -moz-calc((155px / 2) - 20px) !important;
    }
    .jugar_btn{
        top: 50%;
        top: calc((155px / 2) - 40px);
        top: -moz-calc((155px / 2) - 40px);
    }
    
    /**********MODAL*********/
    div.modal.fade.in {
        top: 10% !important;
    }
    .modal-dialog{
        margin:10px !important;
    }
    .modal-body{
        padding: 0px;
    }
    #myModal{
        width: 540px;
        margin-left: -270px;
    }

}

@media (min-width: 230px) and (max-width: 559px){
    .cazadores_col{
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    /***********MODAL***********/
    div.modal.fade.in {
        top: 5% !important;
    }
    .modal-dialog{
        margin:10px !important;
    }
    .modal-body{
        padding: 0px;
    }
    #iframe_downloads{
        height: 500px;
    }
    #myModal{
        width: 90%;
        margin-left: -45%;
    }
}

@media (min-width: 230px) and (max-width: 459px){
    div.modal.fade.in {
        top: 20px !important;
    }
    .modal-dialog{
        margin:10px !important;
    }
    .modal-body{
        padding: 0px;
    }
    #myModal{
        width: 280px;
        margin-left: -140px;
        position: absolute !important;
    }
}

@media (min-width: 230px) and (max-width: 359px){}