﻿.modal-body img{width:100%;}
/*SOPORTE TOTAL*/
.content-imgagen {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.content-imgagen img.imgPrincipal {width: 100%;}
/*Links en imagen principal*/
.links-imagen-principal{position:absolute;cursor:pointer;}
.links-imagen-principal#modal-01{width: 21%;height: 15%;top: 21%;left: 2.6%;}
.links-imagen-principal#modal-02{width: 21%;height: 12%;top: 26%;left: 26%;}
.links-imagen-principal#modal-03 {width: 23%;height: 15%;top: 37%;left: 1.5%;}
.links-imagen-principal#modal-04 {width: 22%;height: 15%;top: 52.5%;left: 2%;}
.links-imagen-principal#modal-05 {width: 21%;height: 17%;top: 63%;left: 26%;}
.links-imagen-principal#modal-06 {width: 26%;height: 13%;top: 81%;left: 25%;}
.links-imagen-principal#modal-07 {width: 26%;height: 13%;top: 4%;left: 55%;}
.links-imagen-principal#modal-08 {width: 25%;height: 14%;top: 18%;left: 60%;}
.links-imagen-principal#modal-09 {width: 23%;height: 12%;top: 54%;left: 73%;}
.links-imagen-principal#modal-10 {width: 23%;height: 15%;top: 68%;left: 75%;}

/*Fin Links en imagen principal*/
.fondo {
    background-color: #f9f9f9;
}

.begin-space {
    margin-top: 55px;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.btn-red-a {
    cursor: pointer;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    background: red;
    position: relative;
    border: 2px solid red;
    outline: 1px solid;
    padding: 0.5em 1.2em;
    outline-color: var(--red-color-rgb);
}

    .btn-red-a:hover {
        text-decoration: none;
        box-shadow: inset 0 0 20px red, 0 0 20px red;
        outline-color: rgba(228,0,32,0);
        outline-offset: 80px;
        text-shadow: 1px 1px 6px #fff;
    }

.blue-button {
    cursor: pointer;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    padding: 0.5em 1.2em;
    background: #03243F;
    position: relative;
    border: 2px solid #03243F;
    outline: 1px solid;
    outline-color: #03243F;
}

    .blue-button:hover {
        box-shadow: inset 0 0 20px #03243f, 0 0 20px #03243f;
        outline-color: rgba(3, 36, 63, 0);
        outline-offset: 80px;
        text-shadow: 1px 1px 6px #fff;
        text-decoration: none;
    }

.soporte {
    display: none;
}

.rompecabezas img {
    width: 100%;
}

.pieza {
    display: inline-block;
    width: 180px;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.fade.show {
    opacity: 1;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.fade {
    opacity: 0;
    transition: opacity .15s linear;
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-25%);
    transform: translate(0,-25%);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    border: 1px solid transparent;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.subtitSop {
    color: #eb0029;
    font-weight: 600;
    font-size:12px;
}
@media screen and (min-width: 360px) and (max-width: 920px) {
    .pieza {
        width: 92px;
    }
}

@media screen and (min-width: 320px) and (max-width: 500px) {
    .pieza {
        width: 60px;
    }
}

@media (min-width: 920px) {
    .soporte {
        display: block;
        color: #eb0029;
        font-weight: 600;
    }
}

@media (min-width: 576px) {
    .modal-dialog.modal-peq {max-width: 500px;margin: 1.75rem auto;}
    .modal-dialog.modal-gde {max-width: 800px;margin: 1.75rem auto;}
}

@media (max-width: 690px) {
    .botones {
        margin-top: -35px;
    }
}
@media (max-width: 1200px) {
    .content-imgagen {width: 100%;}
}
@media (max-width: 500px) {
    .modal-content {
        margin-top: 110px !important;
    }
}
