@font-face {
    font-family: "EncodeSans";
    src: url("../fonts/EncodeSans.woff") format("woff");
}

@font-face {
    font-family: "EncodeSans-Regular";
    src: url("../fonts/EncodeSans-Regular.woff") format("woff");
}

@font-face {
    font-family: "EncodeSans-Bold";
    src: url("../fonts/EncodeSans-Bold.woff") format("woff");
}

body {
    background-color: #fff;
    background-image: url("../images/background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;

    font-family: "EncodeSans-Regular", sans-serif;
}

.hidden {
    display: none;
}

.full {
    height: 100vh;
}

.yellow path {
    fill: #e9e091 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
}

.orange path {
    fill: #ecc595 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
}

.red path {
    fill: #f7a697 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
}

.violete path {
    fill: #beb3d5 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
}

.green path {
    fill: #bfda87 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
}

/* ------------------------------------------------------------ */

.yellow path.selected {
    fill: #dbcc48 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
    animation: pulse 1s infinite;
}

.orange path.selected {
    fill: #e09f4e !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
    animation: pulse 1s infinite;
}

.red path.selected {
    fill: #f16a51 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
    animation: pulse 1s infinite;
}

.violete path.selected {
    fill: #9280b9 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
    animation: pulse 1s infinite;
}

.green path.selected {
    fill: #95c237 !important;
    transition: fill 1s;
    transition-timing-function: ease-in-out;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.country {
    position: relative;
}

.region {
    position: absolute;
    top: 0;
    left: 0;
}

.province {
    position: absolute;
    top: 0;
    left: 0;
}

.fill-color path {
    fill: aquamarine !important;
}

li {
    list-style: none;
}

.product {
    background-color: #fff;
    border: solid 1px #63a9c2;
    border-radius: 15px;
    margin-bottom: 0.5vw;
}

.product a {
    display: inline-block;
    text-decoration: none;
    width: 100%;
    font-size: 1vw;
    color: #000;
}

.product.selected {
    background: #63a9c2;
}

.product.selected a {
    color: #fff;
}

.product .icon {
    background-color: #63a9c2;
    height: 4vw;
    width: 4vw;
    margin-right: 1vw;
    display: inline-block;
    border-radius: 14px 0 0 14px;
}

.product img {
    padding: 0.5vw;
}

#index-modal .modal-content {
    border-radius: 2vw;
    padding: 5vw;
    text-align: center;
}

#index-modal .modal-content button {
    font-family: "EncodeSans-Bold", sans-serif;
    background-color: #60a8c1;
    padding: 2vw 5vw;
    border-radius: 1.3vw;
    font-size: 2vw;
    margin-top: 4vw;
}

#index-modal h1 {
    font-size: 4vw;
}

#index-modal .modal-dialog {
    max-width: 80vw;
}

#arrow-modal .modal-content {
    border-radius: 2vw;
    padding: 5vw;
    text-align: center;
}

#arrow-modal .modal-content button {
    font-family: "EncodeSans-Bold", sans-serif;
    background-color: #60a8c1;
    padding: 2vw 5vw;
    border-radius: 1.3vw;
    font-size: 2vw;
    margin-top: 4vw;
}

#arrow-modal .modal-body i {
    font-size: 10vw;
    display: block;
    color: #60a8c1;
    margin-top: 4vw;
}

#arrow-modal h1 {
    font-size: 4vw;
}

#arrow-modal .modal-dialog {
    max-width: 80vw;
}

.product-modal .modal-dialog {
    max-width: 92vw;
}

.product-modal .title {
    background-color: #63a9c2;
}

.product-modal .title img {
    width: 6vw;
    float: right;
}

.product-modal .title {
    padding: 3vw;
    display: inline-block;
}

.product-modal .modal-content {
    border-radius: 2vw;
}

.product-modal .product-img {
    border-radius: 2vw 2vw 0 0;
    width: 100%;
}

.product-modal .modal-body {
    padding: 0;
}

.product-modal h5 {
    color: #fff;
    font-family: "EncodeSans-Bold", sans-serif;
    font-size: 4vw;
    display: inline-block;
}

.product-modal h5 span {
    font-size: 2vw;
}

.product-modal li img {
    width: 12vw;
}

.product-modal .number {
    color: #000;
    font-family: "EncodeSans-Bold", sans-serif;
    font-size: 4vw;
    margin: 0;
}

.product-modal .description {
    color: #63a9c2;
    font-size: 2vw;
}

.product-modal ul {
    text-align: center;
    margin-top: 5vw;
}

.product-modal .map-img {
    width: 47vw;
    margin-left: 6vw;
}

.product-modal .btn {
    background-color: #63a9c2;
    position: fixed;
    top: 2vw;
    right: 4vw;
    padding: 1vw 4vw;
    border-radius: 1vw;
    font-size: 3vw;
}

.product-modal .modal-footer .btn {
    position: absolute;
    bottom: 4vw;
    top: unset;
}

.modal-footer {
    border-top: none;
}

/* -------------------------------- */

.certifications {
    background-image: url("../images/certificaciones/background.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.certifications .certifications-modal .modal-dialog {
    max-width: 76vw;
}

.certifications #index-modal .modal-content button {
    background-color: #78bd20;
}

.certifications .modal-header {
    border-radius: 2vw 2vw 0 0;
    background-color: #78bd20;
}

.certifications .modal-footer {
    border-radius: 0 0 2vw 2vw;
    background-color: #78bd20;
    min-height: 2vw;
}

.certifications .modal-content {
    border-radius: 2vw;
    border: 1px solid #78bd20;
}

.certifications .certifications-modal .modal-body {
    padding: 1vw 4vw 4vw 4vw;
}

.certifications .certifications-modal .back-btn {
    background-color: #78bd20;
    position: fixed;
    top: 2vw;
    right: 12vw;
    padding: 1vw 4vw;
    border-radius: 1vw;
    font-size: 3vw;
    color: #fff;
}

.certifications .certifications-modal .home-btn {
    background-color: #78bd20;
    position: fixed;
    top: 2vw;
    left: 12vw;
    padding: 1vw 4vw;
    border-radius: 1vw;
    font-size: 3vw;
    color: #fff;
}

.certifications .logo-box {
    margin: 2vw;
    padding: 0;
}

.certifications .logo-box {
    background-color: #fff;
    border-radius: 2vw;
    border: 1px solid #78bd20;
    box-shadow: 0px 15px 5px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 15px 5px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 15px 5px 0px rgba(0, 0, 0, 0.16);
    padding: 6vw;
    margin-bottom: 6vw;
}

.certifications .instructions {
    background-color: #fff;
    text-align: center;
    border-radius: 1vw;
    text-decoration: none;
    padding: 2vw;
    color: #000;
    font-size: 2vw;
    width: 70%;
    display: block;
    margin: 0 auto;
    margin-bottom: 6vw;
}

.certifications .senasa {
    margin: 5vw 0;
}

.certifications #modal-magyp .modal-body {
    padding: 1rem;
}

.certifications .modal .logo-box {
    padding: 0;
}

.certifications .modal .magyp {
    width: 35vw;
    display: block;
    margin: 2vw auto;
}

.certifications .modal .senasa {
    width: 30vw;
    display: block;
    margin: 4vw auto;
}

.certifications .modal .badge-logo {
    width: 20vw;
    margin: 0 auto;
    display: block;
}

.certifications .modal h1 {
    font-family: "EncodeSans-Bold", sans-serif;
    color: #78bd20;
    text-align: center;
    margin-bottom: 2vw;
    font-size: 4vw;
}

.certifications .modal h2 {
    font-family: "EncodeSans-Bold", sans-serif;
    color: #78bd20;
    text-align: center;
    font-size: 2vw;
}

.certifications .modal p {
    text-align: justify;
    font-size: 1.7vw;
}

.certifications .modal span {
    text-align: center;
    display: block;
}

.certifications .modal p b {
    font-family: "EncodeSans-Bold", sans-serif;
    text-align: center;
    display: block;
}

.certifications .modal .photo {
    padding: 2vw 4vw 2vw 0;
}

.certifications .modal .qr {
    width: 15vw;
    margin: 0 auto;
    display: block;
}

.certifications .modal .modal-footer {
    justify-content: space-between;
}

.certifications .modal .modal-footer p {
    font-family: "EncodeSans-Bold", sans-serif;
    color: #fff;
    display: block;
}

.certifications .modal .modal-footer span {
    font-family: "EncodeSans-Regular", sans-serif;
    display: inline;
}

.certifications .modal .modal-footer a {
    color: #fff;
}
