﻿@charset "utf-8";
/* fuentes */

:root{
    --main: #5aa4a5;
    --bckgr:#f9f9f9;
    --gray:#efefef;
    --tableLight:#efefef;
    --error: red;
    --errorBckgr: #fcd7d7;
    --lightGray: #d3d3d3;
    --accent: #ffce31;
}

body
{
    font-family: Arial;
    font-size: 20px;
    margin: 0;
    padding: 0;
    background-color: white;
    background-image: url('../img/fondo.png');
    height: 100%;
    color: #6c6c6c;
    font-weight: lighter;
}
.body.responsive
{
    font-size:80%;
}

a
{
    text-decoration: none;
    color: var(--main);
    border: none;
}


    a img
    {
        border: none;
    }

table
{
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.centertxt {
    text-align:center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

h1
{
    font-size: 160%;
    /*margin: 0 0 5px 0;*/
    color: #666666;
    font-weight: normal;
}
/*
    h1:after
    {
        background: #ffce09;
        content: "";
        height: 3px;
        left: 0;
        position: absolute;
        margin-top: 40px;
        width: 12%;
    }
    */
h2
{
    font-size: 110%;
    margin: 0 0 10px 0;
    font-weight: normal;
    color:#5aa4a5;
}

em {
    color: var(--main);
    font-style: normal;
    font-weight: bold;
}

h3
{
    font-size: 110%;
    margin: 0 0 5px 0;
    color: inherit;
    font-weight: normal;
}

p
{
    text-align: justify;
}
    p a
    {
        color: var(--main);
    }

ol li
{
    text-align: justify;
    margin: 10px;
}

ul
{
    padding-left: 20px;
}

    ul li
    {
        list-style: none;
    }

        ul li:before
        {
            background: #5aa4a5;
            content: "";
            height: 8px;
            left: 0px;
            margin-top: 9px;
            position: absolute;
            width: 8px;
        }
        .dark ul li:before
        {
            background: white;
        }
        ul li li:before
        {
            background: #5aa4a5;
            content: "";
            height: 8px;
            left: 20px;
            margin-top: 9px;
            position: absolute;
            width: 8px;
        }

b {
    font-weight: bold;
}

.error
{
    border: 1px solid red !important;
    background-color: #fcd7d7;
}

.yellowBgr
{
    background: #ffce09;
}

.grayBgr
{
    background: #f6f6f6;
}

/** Estructura **/
.holder
{
    max-width: 1200px;
    margin: auto;
    position: relative;
}
    .holder.addMargin
    {
        padding-top: 30px !important;
    }

    .holder h1
    {
        font-size: 31px;
        line-height: 31px;
        height: 41px;
    }
        .holder h1.responsive
        {
            height:auto;
        }

.header
{
    width: 100%;
    background-color: #fff;
    display: inline-block;
    line-height: 100px;
}
    
        .header img.logo
        {
            max-height: 50px;
            cursor:pointer;
            margin: 25px 0px;
            float:left;
        }
    .header.responsive img.logo {
        display:none;
    }

    .header .search input[type="text"]
    {
        margin: 0px !important;
        background-color: #2d2d2d !important;
        border-color: #2d2d2d !important;
        color: #868686 !important;
    }

.menu
{
    font-size: 18px;
    text-align:right;
    position: relative;
    z-index: 99;
}
    .menu.responsive
    {
        margin-top:0px;
        margin-bottom:0px;
        background:white;
        line-height: normal;
        padding: 1rem;
    }

    .menu .menuCtrl
    {
        display:none;
        width:100%;
    }
    .menu .menuCtrl.responsive
    {
        display:block;
        overflow:auto;
    }
        .menu .menuCtrl.responsive .menulogo
        {
            float:left;
            width:70%;
        }
        .menu .menuCtrl.responsive .menutap
        {
            float:right;
            max-width:10%;
            cursor:pointer;
        }

    .menu .holder
    {
        line-height: inherit;
        background-color: white;
    }
    .menu .holder.responsive
    {
        background-color:white;
    }

    .menu ul
    {
        margin: 0px 10px;
        padding: 0px;
        display: inline-block;
    }
        .menu ul.responsive
        {
            display:none;
        }

    .menu li
    {
        display: inline-block;
        padding: 0 20px;
        text-transform: capitalize;
        cursor:pointer;
    }
        .menu li::before
        {
            display:none;
        }
        .menu li.responsive
        {
            display:block;
            text-align:left;
            line-height: 50px;
        }

        .menu li.selected
        {
            color:white;
            background-color:var(--main);
        }
            .menu li.selected a {
                color:white;
            }

        .menu li.search
        {
            margin: 0px;
            padding: 0px;
            text-align: left;
        }

        .menu li .submenu
        {
            display:none;
            position:absolute;
            background: var(--main);
            border-top: 3px solid white;
        }
            .menu li .submenu.responsive
            {
                background:var(--main);
                border-top: 3px solid #666;
            }
            .menu li .submenu ul
            {
                margin:0px;
            }
            .menu li .submenu li
            {
                display:block;
                font-weight:normal;
                margin:0px;
                padding: 0px 15px;
                height:52px;
                line-height:52px;
                text-align:left;
            }
            .menu li .submenu li:hover, .menu li .submenu li:hover a
            {
                background-color:white;
                color: var(--main) !important;
            }
                .menu li .submenu li:before
                {
                    display:none;
                }
        .menu li a {
            color:#666666;
        }

.banner
{
    background-color: black;
    height: 420px;
}
    .banner.responsive
    {
        height:250px;
    }
    .banner.small
    {
        height:280px;
        overflow:hidden;
    }
    .banner.small.responsive
    {
        height:250px;
    }
    .banner.small .text
    {
        bottom: 0px;
        height: 70% !important;
    }
    .banner .holder
    {
        max-width: 1280px;
    }
    .banner .holder.small
    {
        margin-top:-140px;
    }
        .banner .holder.small.responsive
        {
            margin-top:0px;
        }
    

.container
{
    overflow: auto;
    padding-bottom: 40px;
    padding-top: 20px;
}
.container.dark{
    background-color: var(--main); 
    color:white;
}
.container.dark *{
    color:white;
}
.container.dark h2{
    color: white;
}
    .container.responsive
    {
        padding-right:10px;
        padding-left:10px;
    }

    .container .holder .sidebar
    {
        width: 300px;
        float: left;
        padding-bottom: 20px;
    }

        .container .holder .sidebar.responsive
        {
            display:none;
        }

        .container .holder .sidebar h2
        {
            color:#666;
            font-size:31px;
            padding: 20px 0px 20px 20px;
            margin: 0px;
        }

        .container .holder .sidebar .menu
        {
            line-height:normal;
        }
        .container .holder .sidebar ul.menu
        {
            margin: 0px;
            padding: 0px;
            border-left: 6px solid rgba(255, 206, 8, 0.4);
        }

            .container .holder .sidebar ul.menu li
            {
                color:#4d3e3e;
                margin: 0px 0px 0px -6px;
                padding: 0px;
                font-size: 130%;
                line-height: 30px;
                width:100%;
                text-transform: capitalize;
                list-style: none;
            }
            .container .holder .sidebar ul.menu li::before
            {
                display:none;
            }

                .container .holder .sidebar ul.menu li a
                {
                    background-repeat: no-repeat;
                    background-position: right center;
                    display: block;
                    padding: 20px 0px 20px 20px;
                    width: -moz-calc(100% - 20px);
                    width: -webkit-calc(100% - 20px);
                    width: -o-calc(100% - 20px);
                    width: calc(100% - 20px);
                }

                .container .holder .sidebar ul.menu li:hover:not(.selected)
                {
                    background-color: rgba(255, 206, 8, 0.1) !important;                  
                border-left: 6px solid #ffce09;  
                padding-left:-6px;
                }
                .container .holder .sidebar ul.menu li.selected
                {
                    background-color: rgba(255, 206, 8, 0.1);
                    border-left: 6px solid #ffce09;
                    padding-left:-6px;
                }
                .container .holder .sidebar ul.menu li.selected a
                {
                    background-repeat: no-repeat;
                    background-position: right center;
                    font-weight:normal;
                    padding: 20px 0px 20px 14px;
                    width: -moz-calc(100% - 14px);
                    width: -webkit-calc(100% - 14px);
                    width: -o-calc(100% - 14px);
                    width: calc(100% - 14px);
                }
                    .container .holder .sidebar ul.menu li a:hover:not(.selected)
                    {
                    padding: 20px 0px 20px 14px;
                    width: -moz-calc(100% - 14px);
                    width: -webkit-calc(100% - 14px);
                    width: -o-calc(100% - 14px);
                    width: calc(100% - 14px);
                    }

        .container .holder .sidebar ul.submenu
        {
            margin: 5px 0 5px 20px;
            padding: 0px 0 0px 10px;
            border-left: 5px solid #fed6fe;
        }

            .container .holder .sidebar ul.submenu li
            {
                background-image: none;
                font-size: 100%;
            }

                .container .holder .sidebar ul.submenu li a
                {
                    background-color: white !important;
                    background-image: none !important;
                    color: black !important;
                    font-family: titilliumRegular !important;
                }

                    .container .holder .sidebar ul.submenu li a:hover:not(.selected)
                    {
                        background-image: none !important;
                    }

                .container .holder .sidebar ul.submenu li.selected a
                {
                    background-color: #20a0da !important;
                    color: white !important;
                    font-family: titilliumBold !important;
                }
                .container .holder .sidebar ul.submenu li.selected a:hover
                {
                    color: var(--main) !important;
                }
    .container .holder img {
        max-height:400px;
        margin:10px;
        display:inline-block;
    }
    .container .holder img.responsive {
        display:block;
        margin:10px auto !important;
        max-width: -moz-calc(100% - 20px);
        max-width: -webkit-calc(100% - 20px);
        max-width: -o-calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .container .holder .content
    {
        float: right;
        width: -moz-calc(100% - 340px);
        width: -webkit-calc(100% - 340px);
        width: -o-calc(100% - 340px);
        width: calc(100% - 340px);
        padding: 20px 0px 0px 40px;
    }
    .container .holder .content.responsive
    {
        float:none;
        width:100%;
        padding:0px;
    }
    .container .holder .colHalf {
        display:inline-block;
        vertical-align:top;
        padding: 40px 0px;
        margin-top:20px;
        width: -moz-calc(50%);
        width: -webkit-calc(50%);
        width: -o-calc(50%);
        width: calc(50%);
    }
.colHalf li{
    list-style:disc;
    margin:20px 0px;
}
    .colHalf li:before {
        display:none;
    }
.colHalf.responsive {
        width: -moz-calc(100% - 20px) !important;
        width: -webkit-calc(100% - 20px) !important;
        width: -o-calc(100% - 20px) !important;
        width: calc(100% - 20px) !important;
        display:block;
        margin:10px auto !important;
}

.block
{
    width:100%;
    margin:10px 0px;
}
    .block h2
    {
        width: 100%;
        display: block;
        height: 52px;
        line-height: 52px;
        font-size: 21px;
        font-weight: 500;
        margin: 0px;
        color: #666666;
        cursor: pointer;
        padding-left: 20px;
        padding-right: 20px;
        background: #f5f5f5 url('../img/arrowDown.png') no-repeat center right;
        -moz-background-origin: content-box;
        -webkit-background-origin: content-box;
        background-origin: content-box;
    }
    .block h2.responsive
    {
        width:auto;
    }
    .block h2.up
    {
        background: #f5f5f5 url('../img/arrowUp.png') no-repeat center right;
        -moz-background-origin: content-box;
        -webkit-background-origin: content-box;
        background-origin: content-box;
    }
    .block .text
    {
        margin:50px 0px;
        padding:0px 20px;
        font-size:20px;
    }

.txtBox {
    text-align:center;
    background-color:#f6f6f6;
    border-top:2px solid #4d8dc4;
    padding:20px;
    display:inline-block;
    vertical-align:top;
    width: -moz-calc(100%/3 - 100px);
    width: -webkit-calc(100%/3 - 100px);
    width: -o-calc(100%/3 - 100px);
    width: calc(100%/3 - 100px);
    position:relative;
}
    .txtBox.responsive {
        display:block;
        margin:10px auto !important;
        min-height: fit-content;
        width: 100%;
    }
    .txtBox:nth-of-type(2n) {
        margin:0 20px;
    }
    .txtBox h1 {
        color:inherit;
        min-height:90px;
    }
    .txtBox a {
        visibility:hidden;
        text-align:center;
        padding:12px 0px;
        border-radius:3px;
        background-color:#ffffff;
        color: #5aa4a5;
        width:100px;
        position:absolute;
        bottom:20px;
        left:50%;
        margin-left:-50px;
        display:none;
    }
    .txtBox:hover {
        color:white !important;
        background-color: #4d8dc4;
    }
        .txtBox:hover a {
        visibility:visible;
        }


.testimonial
{
    display: inline-block;
    margin: 20px 20px 20px 0px;
    width: -moz-calc(50% - 20px);
    width: -webkit-calc(50% - 20px);
    width: -o-calc(50% - 20px);
    width: calc(50% - 20px);
}
    .testimonial.responsive
    {
        display:block;
        width: -moz-calc(100% - 20px);
        width: -webkit-calc(100% - 20px);
        width: -o-calc(100% - 20px);
        width: calc(100% - 20px);
        margin: 20px auto;
    }

    .testimonial:nth-child(2n)
    {
        margin: 20px 0px 20px 20px;
    }
    .testimonial.responsive:nth-child(2n)
    {
        margin: 20px auto;
    }

    .testimonial .text
    {
        padding: 40px 40px 100px 40px;
        background-color: white;
        text-align:justify;
    }
        .testimonial .text::after
        {
            color: #20a0da;
            content: "“";
            font-size:48px;
            float:right;
            margin-right: -25px;
        }
        .testimonial .text::before
        {
            color: #20a0da;
            content: "”";
            font-size:48px;
            float:left;
            margin-left: -25px;
        }

    .testimonial .img
    {
        background-color: #666666;
        width: 150px;
        height: 150px;
        margin:auto;
        margin-top:-75px;
        overflow:hidden;
        text-align:center;
        -moz-border-radius: 75px;
        -webkit-border-radius: 75px;
        border-radius: 75px;
    }
        .testimonial .img img
        {
            height:100%;
            position:relative;
        }
    .testimonial .data h2
    {
        text-align:center;
        color:#2a2a2a;
        font-size:20px;
        margin:0px;
        padding:0px;        
    }
    .testimonial .data h3
    {
        text-align:center;
        color:#2a2a2a;
        font-size:16px;
        margin:0px;
        padding:0px;        
    }




.container.admin .left
{
    float: left;
    width: 150px;
}
.container.admin
{
    margin-top:40px;
}

.container.admin .right
{
    float: right;
    width: -moz-calc(100% - 160px);
    width: -webkit-calc(100% - 160px);
    width: -o-calc(100% - 160px);
    width: calc(100% - 160px);
}

.paginate
{
    text-align: center;
}

    .paginate span
    {
        display: inline-block;
        text-align: center;
        color: gray;
        height: 30px;
        line-height: 30px;
        margin: 0 5px 10px 5px;
    }

        .paginate span.actual
        {
            border-bottom: 5px solid #ffce09;
        }

.navigator
{
    padding: 5px 0 20px 20px;
    border-bottom: 1px solid #20a0da;
    margin-bottom: 10px;
}

    .navigator span
    {
        display: inline-block;
        border-width: 1px 0px 1px 1px;
        border-style: solid;
        border-color: gray;
        padding: 0px 10px;
        height: 20px;
        line-height: 20px;
    }

        .navigator span:last-child
        {
            border-right-width: 1px;
            background-color: #ececec;
            color: gray;
            font-family: titilliumBold;
            text-transform: capitalize;
        }

.fotosCategoria
{
    text-align:center;
}

    .fotosCategoria img.responsive
    {
        margin:0px 20px 20px;
        width: -moz-calc(100% - 40px);
        width: -webkit-calc(100% - 40px);
        width: -o-calc(100% - 40px);
        width: calc(100% - 40px);
    }

.fotosCategoria img
{
    display:inline-block;
    max-height:300px;
    margin: 0px 20px 20px 0px;
}
   /* .fotosCategoria img:nth-child(2n)
    {
        margin-left:20px;
    }*/

.producto
{
    width: 410px;
    height: 210px;
    overflow: hidden;
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
    position:relative;
}
    .producto.responsive
    {
        display:block;
        width:100%;
        margin: 0px auto 30px !important;
    }
    .producto img
    {
        width: 100%;
        display: block;
        margin-bottom: 10px;

        top: 0;
        left: 0;
        position: absolute;
        z-index: 2;
    }

    .producto.highlight img
    {
        margin: 0px;
    }

    .producto .data
    {
        display: block;
        width: 370px;
        height: 170px;
        padding:20px;
        background-color: rgba(255, 206, 9, 0.8);
        opacity: 0;
        position: absolute;
        z-index: 3;
    }
        .producto .data.responsive
        {
            opacity:1;
            width: -moz-calc(100% - 40px);
            width: -webkit-calc(100% - 40px);
            width: -o-calc(100% - 40px);
            width: calc(100% - 40px);
        }
    .producto .data:hover
    {
        opacity:1;
    }
        .producto .data h2
        {
            color: #666;
            font-size: 120%;
        }
        .producto .data div
        {   
            font-size:80%;
             margin: 5px 0;
        }
    .producto:nth-child(2n-1)
    {
        margin-left: 35px;
    }

.productos h3
{
    display: block;
    line-height: 180%;
    width: -moz-calc( 100% - 5px);
    width: -webkit-calc(100% - 5px);
    width: -o-calc( 100% - 5px);
    width: calc( 100% - 5px);
    color: #666;
}

.ProductoIndex
{
    width: 80%;
    margin:auto;
}
.ProductoIndex.responsive
{
    width: 100%;
}
     .ProductoIndex h2
    {
        text-align:left;
        color:#666;
    }
    .ProductoIndex .img
    {
        width: 100%;
        margin: 40px auto;
    }
    .ProductoIndex .img.responsive
    {
        width: 100%;
        margin: 0px;
    }

        .ProductoIndex .img img
        {
            width: 410px;
            height: 210px;
            margin: auto;
            display: block;
        }

        .ProductoIndex .img img.responsive
        {
            max-width: 100%;
            max-height: 210px;
            margin: auto;
            display: block;
        }

    .ProductoIndex .campos
    {
        background-color: rgba(255, 206, 8, 0.1);
        font-size:90%;
        padding: 10px;

    }

        .ProductoIndex .campos .campo
        {
            padding: 10px;
            width: -moz-calc( 100% - 20px);
            width: -webkit-calc(100% - 20px);
            width: -o-calc( 100% - 20px);
            width: calc( 100% - 20px);
        }

            .ProductoIndex .campos .campo:nth-child(2n)
            {
                background: white;
            }

            .ProductoIndex .campos .campo span:first-child
            {
                vertical-align: top;
                display: inline-block;
                width: 30%;
            }

            .ProductoIndex .campos .campo span:last-child
            {
                vertical-align: top;
                display: inline-block;
                width: 70%;
            }

.contacto
{
    width:100%;
    overflow: auto;
    margin: auto;
}
    .contacto .left
    {
        width: 770px;
        padding-right:40px;
        background-color:white;
        float:left;
    }
        .contacto .left.responsive
        {
            width:100%;
            padding:0px;
        }
    .contacto .right
    {
        float:right;
        padding:10px;
        width: -moz-calc( 100% - 830px);
        width: -webkit-calc(100% - 830px);
        width: -o-calc( 100% - 830px);
        width: calc( 100% - 830px);
        color:white !important;
    }
        .contacto .right.responsive
        {
            display:none;
        }

.sliderBanner
{
    width: 100%;
    height: 420px;
    text-align: center;
    overflow: hidden;
}
.sliderBanner.responsive
{
    width: 100%;
    height: 250px;
    text-align: center;
    overflow: hidden;
}

    .sliderBanner .box
    {
        /* height:430px;  */
        /*background-color:lightgray;*/
        width: 100000px;
        position: relative;
    }

    .sliderBanner .scroller
    {
        position: relative;
        top: 0px;
        left: 0px;
        height: 420px;
        text-align: left;
    }
    .sliderBanner .scroller.responsive
    {
        height:200px;
    }

        .sliderBanner .scroller .item
        {
            display: inline-block;
            width: 1280px;
            vertical-align:top;
        }

            .sliderBanner .scroller .item img
            {
                max-width: 100%;
            }

            .sliderBanner .scroller .item .text
            {
                color: white;
                height: 100%;
                position: absolute;
                z-index: 98;
            }
                .sliderBanner .scroller .item .text div
                {            
                    padding-left:10%;
                    position: relative;
                    top: 50%;
                    -ms-transform: translateY(-50%);
                    -webkit-transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -o-transform: translateY(-50%);
                    transform: translateY(-50%);
                }
                    .sliderBanner .scroller .item .text div.responsive
                    {
                        padding-left:10px;
                    }
                    .sliderBanner .scroller .item .text div h2, .sliderBanner .scroller .item .text div h1
                    {
                        font-size:51px;
                        font-weight:bold;
                        color:white;
                        margin:0px;
                        padding:0px;
                        line-height: normal;
                        height: auto;
                    }
                    .sliderBanner .scroller .item .text div h2.responsive, .sliderBanner .scroller .item .text div h1.responsive
                    {
                        font-size:160%;
                        display:block;
                        width:350px;
                    }
                    .sliderBanner .scroller .item .text div h3
                    {
                        font-size:31px;
                        color:white;
                        margin:0px;
                        padding:0px;
                    }
                    .sliderBanner .scroller .item .text div h3.responsive
                    {
                        font-size:100%;
                        display:block;
                        width:350px;
                    }


    .sliderBanner .controls a
    {
        display: inline-block;
        width: 12px;
        height: 12px;
        border:1px solid white;         
        border-radius:9px;
    }

    .sliderBanner .controls
    {
        line-height: 54px;
        height: 54px;
        position: absolute;
        bottom: 0px;
        width: 100%;
        z-index: 99;
    }

        .sliderBanner .controls a:nth-child(2n+1)
        {
            margin: 0px 9px;
        }

        .sliderBanner .controls a.current
        {
            background-color: white;
        }




.footer
{
    color: white;
    background-color: #5aa4a5;
    text-align: center;
    line-height: 60px;
}

    .footer h2
    {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        font-size: 160%;
        font-weight: normal;
    }

    .footer .copyright
    {
        margin: 10px 0px;
        text-align: center;
    }


.authBox
{
    width: 80%;
    margin: auto;
}

.list .table span
{
    display: inline-block;
    height: 50px;
    line-height: 50px;
    vertical-align: top;
}

.list .table .titleRow
{
    border-bottom: 1px solid #0f567d;
}

    .list .table .titleRow span
    {
        height: auto;
        line-height: normal;
    }

.list .table .row
{
    border-bottom: 1px solid lightgray;
}

    .list .table .row:hover
    {
        background-color: #eaf8ff;
    }

.list .table span:last-of-type a
{
    display: inline-block;
    font-size: 80%;
    height: 50px;
    margin: 0 5px;
    text-align: center;
    width: 40px;
    line-height: normal;
    vertical-align: top;
    overflow: hidden;
    padding-top: 3px;
}

    .list .table span:last-of-type a img
    {
        height: 30px;
        max-width: 30px;
    }

.list div:not(.table):not(.row) span
{
    font-size: 150%;
}

/*Particulares*/
p.marcas
{
    text-align: center;
    line-height: 100px;
}

    p.marcas img
    {
        max-height: 100px !important;
        display: inline;
        vertical-align: middle;
        padding: 0px 20px 20px;
    }
    p.marcas img.responsive
    {
        display:block;
        margin:40px auto 0px;
        padding:0px;
    }


/* Admin Usuario */
.list.usuario .table span
{
    width: -moz-calc(40% - 14px);
    width: -webkit-calc(40% - 14px);
    width: -o-calc(40% - 14px);
    width: calc(40% - 14px);
}

    .list.usuario .table span:last-of-type, .list.blog .table .row span:last-of-type
    {
        width: -moz-calc(20% - 14px);
        width: -webkit-calc(20% - 14px);
        width: -o-calc(20% - 14px);
        width: calc(20% - 14px);
    }

.list.two .table span:first-child
{
    width: 20px;
}

.list.two .table span
{
    width: -moz-calc(70% - 34px);
    width: -webkit-calc(70% - 34px);
    width: -o-calc(70% - 34px);
    width: calc(70% - 34px);
}

    .list.two .table span:last-of-type, .list.blog .table .row span:last-of-type
    {
        width: 30%;
        /*  width: -moz-calc(30% - 34px);
    width: -webkit-calc(30% - 34px);
    width: -o-calc(30% - 34px);
    width: calc(30% - 34px);*/
    }

.paginacion
{
    text-align: center;
}

    .paginacion span
    {
        display: inline-block;
        margin: 5px;
    }

        .paginacion span.actual
        {
            color: #000;
        }


/*Formularios*/
input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]), select, textarea
{
    border: 1px solid lightgray;
    width: -moz-calc( 100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: -o-calc( 100% - 30px);
    width: calc( 100% - 30px);
    padding: 10px;
    margin: 20px auto 0px;
    display:block;
}

    input:focus, select:focus, textarea:focus
    {
        -moz-box-shadow: 0 0 5px #20a0da;
        -webkit-box-shadow: 0 0 5px #20a0da;
        box-shadow: 0 0 5px #20a0da;
    }

input[type="submit"]
{
    background: none repeat scroll 0 0 var(--accent);
    font-size: 15px;
    border: 1px solid var(--accent);
    color: gray;
    padding: 5px 0px;
    margin: 20px auto 0px;
    display: block;
    cursor: pointer;
    border-radius:5px;
    /*width: -moz-calc( 100% - 8px);
    width: -webkit-calc(100% - 8px);
    width: -o-calc( 100% - 8px);
    width: calc( 100% - 8px);*/
}

    input[type="submit"]:hover
    {
        color: gray;
        background: white;
    }

    input[type="submit"]:disabled
    {
        border: 2px solid gray;
        background: lightgray;
    }

form img
{
    max-height: 200px;
    margin: auto;
}

form p
{
    display: inline-block;
    width: 100px;
}

span.loading
{
    display: inline-block;
    min-height: 20px;
    min-width: 20px;
    width: 100%;
    clear: both;
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

span#err
{
    clear: both;
    width: 100%;
    text-align: right;
    display: block;
}

form[name="photoUpload"]
{
    display: inline-block;
    height: 130px;
    width: 247px;
    margin: 8px;
    border: 2px dashed white;
    background-image: url('../img/subirImg.png');
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

form[name="photoDel"]
{
    display: inline-block;
    height: 130px;
    width: 247px;
    margin: 8px;
    background-image: url('../img/eliminar.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    cursor: pointer;
}

form[name="photoUpload"].loading
{
    background-image: url('../img/loading.gif') !important;
}

form[name="photoUpload"] input
{
    position: absolute;
    top: 1000px;
}

.gallery img{
    max-height:250px !important;
  /*  max-width:300px !important;*/
}

.upload
{
    height: 150px;
    width: 267px;
    background: rgba(0,0,0,0.8);
    color: white;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 10px;
}

/*messagebox*/
.msgBox
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.4);
    z-index: 99;
}

    .msgBox .wrap
    {
        position: relative;
        top: -moz-calc( 50% - 210px);
        top: -webkit-calc(50% - 210px);
        top: -o-calc( 50% - 210px);
        top: calc( 50% - 210px);
        margin: auto;
        width: 400px;
        padding: 10px;
        background: rgba(0,0,0,0.6);
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
    }

        .msgBox .wrap .msg
        {
            min-height: 200px;
            width: 400px;
            background: white;
            -moz-border-radius: 10px;
            -webkit-border-radius: 10px;
            border-radius: 10px;
        }

            .msgBox .wrap .msg .msgIcon
            {
                display: inline-block;
                vertical-align: middle;
                height: 180px;
                width: 100px;
                margin: 10px auto;
                background-image: url('../img/favicon/mstile-150x150.png');
                background-repeat: no-repeat;
                background-position: center center;
                -moz-background-size: contain;
                -o-background-size: contain;
                background-size: contain;
            }

            .msgBox .wrap .msg .text
            {
                display: inline-block;
                vertical-align: middle;
                width: 290px;
                padding: 20px 0;
            }

            .msgBox .wrap .msg input[type="submit"]
            {
                float: right;
                margin: 0px 20px 0px 0px;
                padding: 5px 20px;
                position: relative;
                width:auto;
                top: -45px;
            }
