﻿@import url('https://fonts.googleapis.com/css?family=Noto+Sans&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Noto Sans", Tahoma, Verdana, sans-serif;
    overflow-y: scroll;
}

a {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    color: #d4a52a;
    margin: 0;
}

div {
    display: block;
}

form {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

fieldset {
    border: none;
    margin: 10px;
}

legend {
    color: #483d8b;
    font-size: 15pt;
    font-weight: bold;
    padding: 20px 0;
}

label.error, span.error {
    color: #cc3300;
    font-size: 9pt;
}

p.error {
    color: #cc3300;
    font-size: 14pt;
    margin: 20px;
    text-align: center;
}

input[type=text], input[type=password], input[type=email], select, textarea:not(.ckeditor):not([ckeditor]) {
    font-size: 11pt;
    line-height: 25px;
    padding: 3px 5px;
    border: 1px solid lightgrey;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

input[type=radio], input[type=checkbox] {
    transform: scale(1.5);
    margin: 2px 10px;
}

select {
    display: block;
    padding: 6px 5px;
}

    select:disabled option {
        background: #EBEBEB;
    }

textarea:not(.ckeditor):not([ckeditor]) {
    line-height: 20px
}

.BodyWrapper {
    width: 100%;
    height: 100%;
    background: #cecece; /* Old browsers */
    background: -moz-linear-gradient(top, #cecece 0%, #ffffff 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #cecece 0%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #cecece 0%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cecece', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.HeaderWrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 130px;
    background: #5b5b5b; /* Old browsers */
    background: -moz-linear-gradient(top, #5b5b5b 0%, #000000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #5b5b5b 0%, #000000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #5b5b5b 0%, #000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b5b5b', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}

.MainWrapper {
    position: relative;
    width: 90%;
    margin: 120px auto;
    z-index: 2;
    background: #ffffff;
    -webkit-box-shadow: 0px 10px 15px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px 10px 15px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 10px 15px 0px rgba(50, 50, 50, 0.75);
}

.FooterWrapper {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #696969;
    color: #ffffff;
    padding: 5px 0;
    z-index: 3;
    font-size: 10pt;
}

.HeaderLogo {
    position: absolute;
    top: 0; left: 0;
    margin: 15px;
    max-width: 25%;
}

    .HeaderLogo img {
        max-width: 100%;
        max-height: 100%;
    }

.HeaderMenu {
    float: right;
    color: #ffffff;
    text-shadow: 0 1px 0 #000;
    margin: 15px;
}

.HeaderLogin {
    float: right;
    color: #ffffff;
    margin: 15px;
}

.FooterRights {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

#LoginWrapper {
    display: block;
}

#LoginWrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .15;
    z-index: -1;
    background-image: url(Images/IMG_20180310_1057133-PANORAMA.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.RecoveryWrapper {
    display: block;
    margin: 20px;
    padding: 10px 0;
}

.ContentWrapper {
    margin: 20px;
    padding: 10px 20px 20px 0;
}

.Field {
    display: block;
    margin: 10px 10px;
}

    .Field input[type=checkbox] {
        margin-top: 9px;
    }

    .Field input[type=text], .Field input[type=password], .Field input[type=file], .Field input[type=email], .Field select, .Field textarea {
        display: block;
    }

    .Field input[readonly] {
        border: 1px solid transparent;
    }

.InLine label {
    float: left;
    margin-right: 10px;
}

.InLine div {
    display: inline-block;
}

.Button input {
    display: inline-block;
    margin: 10px 10px;
}

.Warning {
    display: block;
    margin: 10px 10px;
    color: #cc3300;
}

table.Profile {
    padding: 0 0 30px 10px;
}

table.Profile tr {
    vertical-align: top;
}

table.Profile td {
    padding: 2px 3px;
}

    table.Profile td:last-child {
        font-weight: bold;
    }

    table.Profile td > label {
        font-weight: normal;
    }

.field-validation-error, input.input-validation-error, span.valerror, span[id$="Validator"] {
    color: #cc3300;
    font-size: 9pt;
}

.email {
    width: 300px;
    max-width: 50%;
}

.Clear {
    clear: both;
    float: none;
}

.atLeft {
    float: left;
}

.atRight {
    float: right;
    max-width: 40%;
}

    .atRight p:first-child {
        font-weight: bold;
    }

.divTable {
    display: table;
    padding: 0 0 30px 10px;
}

.divRow {
    display: table-row;
    border-bottom: 1px solid lightgrey;
}

.divCell {
    display: inline-block;
}

.dont-break {
    white-space: nowrap;
}

.dont-break-out {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

img.Foto {
    -webkit-box-shadow: 2px 2px 2px #CCC;
    -moz-box-shadow: 2px 2px 2px #CCC;
    box-shadow: 2px 2px 2px #CCC
}

.Foto3x4 {
    background-color: White;
    border: 1px solid #dcdcdc;
    padding: 3px
}

img.Foto3x4 {
    -webkit-box-shadow: 2px 2px 2px #CCC;
    -moz-box-shadow: 2px 2px 2px #CCC;
    box-shadow: 2px 2px 2px #CCC
}

.Revista {
    width: 120px;
}

.DataList {
    border: none;
    margin-bottom: 20px;
    max-width: 95%;
}

    .DataList tr {
        vertical-align: top;
    }

        .DataList tr:not(.GridPager):hover {
            background-color: whitesmoke;
        }

    .DataList td {
        border: none;
        padding: 5px;
        vertical-align: top;
    }

.GridPager td {
    padding: 0 0 20px 20px;
}

.GridPager a,
.GridPager span {
    display: inline-block;
    padding: 0px 9px;
    margin-right: 4px;
    border-radius: 3px;
    border: solid 1px #c0c0c0;
    background: #e9e9e9;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: .875em;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
}

.GridPager a {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #cccccc;
}

.GridPager span {
    background: #fff;
    /*box-shadow: inset 0px 0px 8px rgba(0,0,0, .5), 0px 1px 0px rgba(255,255,255, .8);*/
    color: #003eff;
    /*text-shadow: 0px 0px 3px rgba(0,0,0, .5);*/
    border: 1px solid #003eff;
}

.Thumbnail {
    display: flex;
    float: left;
    margin: 0 20px 20px 0;
}

.Thumbnail img {
    max-width: 200px;
}

.HiddenDiv {
    display: none;
}

.TrashBin {
    float: right;
    margin: 2px 0;
}

.failureNotification {
    color: firebrick;
    font-size: 12pt;
    min-width: 0;
    width: auto
}

    .failureNotification li {
        margin-left: 10px
    }

.failureValidation {
    color: firebrick;
    font-size: 8pt;
    min-width: 0;
    width: auto
}

/* Responsive Web Design - Media Queries */

@media (max-width: 641px) {
    /* max-width: 320px /* smartphones, iPhone, portrait 480x320 phones */
    /* max-width: 481px /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
    /* max-width: 641px /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */

    .BodyWrapper {
        position: absolute;
        top: -15px;
    }

    .HeaderWrapper {
        position: static;
        top: unset;
        left: unset;
        display: block;
        padding: 10px 0;
        height: 110px;
    }

    .HeaderLogin {
        font-size: 9pt;
    }

    .HeaderMenu {
        font-size: 9pt;
    }

    .HeaderLogo img {
        clip-path: inset(0 82% 0 0);
        margin-top: 10px;
    }

    .MainWrapper {
        position: static;
        display: block;
        width: 100%;
        margin: -20px 0 0 0;
        z-index: auto;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .FooterWrapper {
        position: static;
        display: block;
        left: unset;
        bottom: unset;
        font-size: 9pt;
        z-index: auto;
    }
}

@media (max-width: 961px) {
    /* max-width: 961px /* tablet, landscape iPad, lo-res laptops ands desktops */
    .HeaderMenu {
        font-size: 10pt;
    }
    .MainWrapper {
        width: 95%;
    }
}

@media (max-width: 1025px) {
    /* max-width: 1025px /* big landscape tablets, laptops, and desktops */
}

@media (max-width: 1281px) {
    /* max-width: 1281pxx /* hi-res laptops and desktops */
}

/* Responsive Web Design - Media Queries */

@media (min-width: 320px) and (max-width: 481px) {
    /* Portrait smartphones and e-readers, and smaller tablets */
}

@media (max-width: 767px) {
    /* Extra small devices */
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Small devices Tablets */
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* Medium devices Desktops */
}

@media (min-width: 1200px) {
    /* Large devices Desktops */
}
