/* iconos */
@font-face {
    font-family: 'fontello';
    src: url('../font/fontello.eot?21492060');
    src: url('../font/fontello.eot?21492060#iefix') format('embedded-opentype'),
         url('../font/fontello.woff2?21492060') format('woff2'),
         url('../font/fontello.woff?21492060') format('woff'),
         url('../font/fontello.ttf?21492060') format('truetype'),
         url('../font/fontello.svg?21492060#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
  /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
  /*
  @media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
      font-family: 'fontello';
      src: url('../font/fontello.svg?21492060#fontello') format('svg');
    }
  }
  */

   [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: never;

    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;

    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */

    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  }

  .icon-left-open:before { content: '\e801'; } /* '' */
  .icon-right-circle:before { content: '\e803'; } /* '' */
  .icon-cancel-circle:before { content: '\e804'; } /* '' */
  .icon-ok-circle:before { content: '\e805'; } /* '' */
  .icon-menu-1:before { content: '\f008'; } /* '' */
  .icon-menu-2:before { content: '\f0c9'; } /* '' */
  .icon-plus:before { content: '\e802'; } /* '' */

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background: #efefef;
}

li {
    list-style: none;
}

a,
a:hover,
i::before {
    text-decoration: none;
    transition: all 0.3s linear;
}

/*home*/
.home {
    background: url('../img/bg.jpg');
    height: 100vh;
    background-size: cover;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 -15px
}

.home h1 {
    font-weight: 700;
    color: #000;
    padding-bottom: 20px;
}

.home .btn {
    background-color: #202020;
    width: 60%;
    color: #fff;
    font-weight: bold;
    border: none;
}

.home .btn:active {
    background-color: #393939!important;
}

.home input {
    border-radius: 5px;
    border: 1px solid #DDDDDD;
    margin: 5px 0 10px 0;
    height: 45px;
    width: 80%;
    padding: 0 10px;
    color: #656565;
    font-size: 20px;
}

.home input:nth-child(2) {
    margin-bottom: 20px;
}

/* pantalla 2  */
.screen2 {
   /* background: #E5E5E5;    */
}

.icon-menu-2 {
    background-color: #00599A;
    padding: 12px;
    color: #fff;
    font-size: 19px;
    margin: 0;
    margin-top: -1px;
    cursor: pointer;
}

.menu-hidden {
    display: none;
    position: absolute;
    top: 50px;
    background: #00599A;
    height: calc(100vh - 51px);
    width: 60%;
    z-index: 5;
    padding-top: 30px;
    animation: mymove 500ms;
}

.menu-hidden a {
    color: #fff;
}

.icon-close::before {
    content: '\e802';
    transform: rotate(45deg);
}

.menu-active {
    display: block;
}

@keyframes mymove {
    0%   {
        transform: translateX(-320px);
        }
    100% {
        transform: translateX(0px);
        }
}

.icon-plus {
    color: #fff;
    background-color: #267800;
    padding: 9px 8px;
    border-radius: 50%;
    font-size: 10px;
    margin-right: 10px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom:  1px solid #D5D5D5;
    border-top:  1px solid #D5D5D5;
    line-height: 0;
    background: #fff;
    position: relative;
}

.header h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.component-screen2 {
    border: 1px solid #E1E1E1;
    padding: 7px;
    margin-top: 8px;
    background: #fff;
    cursor: pointer;
}

.component-screen2 a {
    display: block;
}

.component-screen2 h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: arial, sans-serif;
    color: #000;
}

.component-screen2 .component-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.component-screen2 p {
    font-size: 15px;
    font-family: arial, sans-serif;
    color: #787878;
}

.component-screen2 span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #282828;
}

.component-screen2 .date {
    font-size: 11px;
    color: #959595;
}

.btn-orange {
    background: #F37500;
    border: 1px solid #F37500;
}

.btn-orange:hover {
    background: #F37500;
    border: 1px solid #F37500;
}

.btn-orange:focus {
    background: #F37500;
    border: 1px solid #F37500;
    box-shadow: none;
}

.btn-orange:active {
    background: #F37500!important;
    border: 1px solid #F37500!important;
    box-shadow: none!important;
}

/*btn red*/
.btn-red {
    background: #C82C2C;
    border: 1px solid #C82C2C;
}

.btn-red:hover {
    background: #C82C2C;
    border: 1px solid #C82C2C;
}

.btn-red:focus {
    background: #C82C2C;
    border: 1px solid #C82C2C;
    box-shadow: none;
}

.btn-red:active {
    background: #C82C2C!important;
    border: 1px solid #C82C2C!important;
    box-shadow: none!important;
}

/* btn green*/
.btn-green {
    background: #019934;
    border: 1px solid #019934;
}

.btn-green:hover {
    background: #019934;
    border: 1px solid #019934;
}

.btn-green:focus {
    background: #019934;
    border: 1px solid #019934;
    box-shadow: none;
}

.btn-green:active {
    background: #019934!important;
    border: 1px solid #019934!important;
    box-shadow: none!important;
}
