body {
    color: #F2F2F2;
    line-height: 1.5;
    background-color: #333333;
    font-size: 16px;
    font-family: 'Roboto', sans-serif, 'Righteous', cursive;
}

* {
    box-sizing: border-box;
    outline: none;
}

.c-head {}

.c-head .c-head__image {
    max-width: 100%;
    height: 100%;
}

.c-head img {
    width: 100%;
}

.c-head .c-head__image__logo {
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.c-head__cont-button {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
}

.c-head__cont-button .c-inputtext {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.c-head__cont-button .c-icon-input {
    position: absolute;
    font-size: 30px;
    color: #e81938;
    pointer-events: none;
}

.c-head .c-head__cont-name {
    color: #93c971;
    font-size: 16px;
    margin-right: 1em;
}

.e-page-container {
    position: relative;
    min-height: 100vh;
}

.e-content-wrap {
    padding-bottom: 100px;
    /* Footer height */
}

.e-title {
    font-family: 'Righteous';
    font-size: 40px;
    line-height: 1;
}

.e-title span {
    color: #d70505;
}

.e-cover {
    display: flex;
    position: relative;
}

.e-cover img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.e-cover__title {
    position: absolute;
    top: 0px;
    left: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    font-family: 'Righteous';
    font-size: 60px;
    line-height: 1;
    z-index: 1;
}

.e-cover__title-span-red {
    color: #e81938;
    font-size: 40px;
}

.e-cover__title__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.c-card-option {}

.c-card-option__box {
    height: 100%;
    background-color: #d70505;
}

.c-card-option__box img {
    max-width: 100%;
    max-height: 100%;
}

.c-card-option__box-title {
    display: block;
    padding: 0 16px;
    font-size: 26px;
    font-weight: bold;
    font-family: 'Righteous';
    background-color: #d70505;
}

.c-card-option__box-title--color-green {
    color: #93c971;
}

.c-card-option__box-subtitle {
    display: block;
    font-weight: bold;
    font-size: 1.5em;
}

.c-card-option__box-content {
    display: block;
    padding: 8px 16px;
}

.c-card-option__box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #93c971;
    font-size: 100px;
}

.c-card-option__box-image {
    display: block;
    max-width: 100%;
}

.c-card-request {}

.c-card-request__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #fff;
}

.c-card-request --received {
    background: #2087c8;
}

.c-card-request --inprogress {
    background: #FF9010;
}

.c-card-request --finished {
    background: #50892E;
}

.c-icon-status {
    font-size: 30px;
}

.c-icon-status__received {
    color: #fff;
}

.c-icon-status__inprogress {
    color: #fff;
}

.c-icon-status__finished {
    color: #fff;
}

.c-card-request__content {
    background: #F2F2F2;
}

.c-card-request__footer {
    display: flex;
    justify-content: space-between;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.c-card-request__footer--received {
    background: #2087c8;
}

.c-card-request__footer--inprogress {
    background: #FF9010;
}

.c-card-request__footer--finished {
    background: #50892E;
}

.c-card-request__footer-button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.c-carousel {}

.c-carousel .ui-carousel-content {
    padding: 0;
}

.c-carousel .ui-carousel-container {
    padding: 0;
}

.c-carousel .ui-carousel-item {}

.c-carousel .carousel-item {
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.c-carousel .c-carousel__data {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-carousel .c-carousel__data-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.c-carousel .c-carousel__data-bg:before {
    content: "";
    background-color: rgba(215, 5, 5, .8);
    width: 100%;
    top: -120px;
    height: 130%;
    right: -40%;
    position: absolute;
    transform: rotate(45deg);
}

.c-carousel .c-carousel__data-text {
    position: absolute;
    display: flex;
    align-items: center;
    text-align: right;
    width: 40%;
    height: 100%;
    top: 0;
    right: 10px;
    color: #fff;
    font-family: 'Righteous';
    font-size: 50px;
    z-index: 1;
}

.c-carousel .c-carousel__data-text p {
    width: 100%;
}

.c-carousel .ui-button {
    display: none;
    width: 1em;
    color: #93c971;
    font-size: 30px;
    border: none;
    background: none;
}

.c-carousel .ui-button.ui-state-disabled {
    color: #d9d9d9;
}

.c-carousel .ui-carousel-dots-container {
    display: none;
}

.c-carousel .c-carousel__data {
    overflow: hidden;
}

.c-carousel .c-carousel__data img, .c-carousel .c-carousel__data video {
    max-width: 100%;
    max-height: 100%;
}

.c-footer {
    display: flex;
    align-items: center;
    text-align: center;
    bottom: 0;
    height: 80px;
    background-color: #d70505;
}

.c-footer a {
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.c-footer p {
    width: 100%;
}

.u-text-align-right {
    text-align: right;
}

.u-no-pad {
    padding: 0;
}

.u-justify-center-align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.u-justify-start-align-center {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.u-justify-end-align-center {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.u-text-align-left {
    text-align: left;
}

.u-text-align-right {
    text-align: right;
}

.u-text-align-center {
    text-align: center;
}

.u-pos-rel {
    position: relative;
}

.u-pos-ab {
    position: absolute;
}

.u-z-indexd-1 {
    z-index: 1;
}

.u-z-indexd--1 {
    z-index: -1;
}

.u-cursor-pointer {
    cursor: pointer;
}

.u-opacity-0 {
    opacity: 0;
}

.u-border-bottom {
    border-bottom: 2px solid #d9d9d9;
}

.u-line-height-0 {
    line-height: 0;
}

.u-line-height-2 {
    line-height: 2;
}

.u-margin-t-4 {
    margin-top: 4px;
}

.u-margin-t-5 {
    margin-top: 5px;
}

.u-margin-t-6 {
    margin-top: 6px;
}

.u-margin-b-6 {
    margin-bottom: 6px;
}

.u-margin-t-b-4 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.u-margin-t-b-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.u-margin-t-b-6 {
    margin-top: 6px;
    margin-bottom: 6px;
}

.u-margin-t-b-9 {
    margin-top: 9px;
    margin-bottom: 9px;
}

.u-margin-l-r-2 {
    margin-left: 2px;
    margin-right: 2px;
}

.u-padding-l-r-2 {
    padding-left: 2px;
    padding-right: 2px;
}

.u-padding-l-r-4 {
    padding-left: 4px;
    padding-right: 4px;
}

.u-bg-white-light {
    background-color: #F1F1F1;
}

.u-img {
    max-width: 100%;
    max-height: 100%;
}

.u-bg-received {
    background: #2087c8;
}

.u-bg-inprogress {
    background: #FF9010;
}

.u-bg-finished {
    background: #50892E;
}

.u-bg-received:hover, .u-bg-inprogress:hover, .u-bg-finished:hover {
    background: #93c971;
}

.u-field-form-pad-left {
    padding-left: 3em;
}

.u-field-form-pad-right {
    padding-right: 3em;
}

.u-display-none {
    display: none;
}

.u-maxw-maxh {
    max-width: 100%;
    max-height: 100%;
}

.u-clearfix {}

.u-clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* Animaciones */

.u-animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.u-animated-fast {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@media (min-width: 0px) and (max-width: 1024px) {
    .c-carousel .c-carousel__data-text {
        font-size: 30px;
    }
    .c-carousel .c-carousel__data-bg:before {
        width: 42%;
        top: -0px;
        height: 100%;
        right: 0%;
        transform: none;
    }
    .c-card-option__box-title{
        font-size: 22px;
    }
}

@media (min-width: 0px) and (max-width: 767px) {
    .c-head .c-head__image {
        height: 80px;
    }
    .c-head img {
        width: 160%;
        position: absolute;
        top: 0;
        left: -13px;
    }
    .e-title {
        font-size: 32px;
        line-height: 1;
    }
    .c-carousel .c-carousel__data-text {
        font-size: 20px;
    }
    .u-field-form-pad-left {
        padding-left: 0.5em;
    }
    .u-field-form-pad-right {
        padding-right: 0.5em;
    }
}

@media (min-width: 0px) and (max-width: 500px) {
    .u-display-none {
        display: none;
    }
}

@media (min-width: 0px) and (max-width: 375px) {
    .c-carousel .c-carousel__data-text {
        font-size: 16px;
    }
}