/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 07-09-2019, 17:13:50
    Author     : razzt
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    font-weight: 200;
    line-height: 1.7em;
    color: #999;
}

.page-text{
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

.paint-square{
    /* height: 410px; */
    /*border: 5px solid rgb(255, 255, 255);*/
    box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px;
}

.paint-square img{
    width: 334px;
    height: 400px;
}

.table-sm tbody td{
    vertical-align: inherit !important;
}

.table-sm th{
    vertical-align: inherit !important;
}

.table-th-nowrap tbody tr th{
    white-space: nowrap;
}

.table-th-nowrap tbody tr th:after{
    content: "\00a0\00a0\00a0";
}

.table-th-nowrap tbody tr td{
    width: 100%;
}

.subMenu{
    display:none;
    width: 100%;
    background-color: white;
}

/* Bootstrap Progress Bar */
.progress-bar {
    -webkit-transition: none !important;
    transition: none !important;
}

/* Progress Bar */
.progressbar {
    margin: 0;
    padding: 0;
    counter-reset: step;
}
.progressbar li {
    list-style-type: none;
    width: 33%;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #7d7d7d;
}
.progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 15px;
    left: -50%;
    z-index: -1;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.actual-step {
    color: green;
}
.progressbar li.actual-step:before {
    border-color: #55b776;
}
.progressbar li.actual-step + li:after {
    background-color: #55b776;
}

/* Arrows */
.arrow-right{
    border-right: 10px solid;
    border-bottom: 10px solid;
    height: 1.8em;
    width: 1.8em;
    transform: rotate(-45deg);
    margin: 0 auto;
    margin-top: 4px !important;
    color: whitesmoke;
}
.full-round{
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.izq-round{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.der-round{
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

/* Utilities */
.fill-remaining{
    display: flex;
    flex-grow: 1;
}

.left-slashed {
    -webkit-clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.right-slashed {
    -webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.right-top-bottom-slashed{
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.left-right-slashed{
    -webkit-clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
}


/* Fieldsets
****************************************************************************** */
fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #000;
    box-shadow:  0px 0px 0px 0px #000;
}

legend.scheduler-border {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
    width:auto;
    padding:0 10px;
    border-bottom:none;
}


/* Squared Image
******************************************************************************* */
.squared-div{
    width: 100% !important;
    height: 100% !important;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}