/*El contenido de este archivo es propiedad de
Fogata Grupo Creativo S.A. www.fogatagroup.com
Todos los derechos reservados*/

tr{
    max-width: 500px;
}
input[type=text], textarea{
    width: 100%;
    background-color: #f1f1f1;
    font-size: 14px;
    line-height: 1.5;
    padding: 5px 10px;
    display: block;
    max-width: none;
    box-sizing: border-box;
}
input[type=text], textarea {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
}
input[type=text]:focus, textarea:focus {
    box-shadow: 0 0 5px rgba(146, 108, 222, 1);
    border: 1px solid rgba(146, 108, 222, 1);
}
.btn-primary, .button-primary {
    color: #fff;
    background-color: #926bde !important;
    background: #926bde !important;
    border-color: #704cb7 !important;
    box-shadow: 0 1px 0 #704cb7 !important;
    text-shadow: 0 -1px 1px #704cb7, 1px 0 1px #704cb7, 0 1px 1px #704cb7, -1px 0 1px #704cb7 !important;
}
.notice, div.error, div.updated {
    background: #f1f1f1;
}
.fogata-upload-container {
    position: relative;
    padding: 10px;
    min-height: 60px;
    border-radius: 3px;
    border: 1px solid #eee;
    border-top-color: #dedede;
    background-color: #f1f1f1;
    text-align: center;
}
select {
    margin: 0;
    padding: 0 14px;
    font-size: 14px;
    line-height: 1.5;
    padding: 5px 10px;
    height: 40px;
    width: 100%;
    box-shadow: none;
    border-radius: 3px;
    border: 1px solid #eee;
    border-top-color: #dedede;
    background-color: #f1f1f1;
}
.fogata-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: fixed;
    z-index: 13;
    top: 32px;
    left: 160px;
    right: 0;
    background-color: #32373c;
    color: #fff;
    padding-left: 20px;
    margin-bottom: 30px;
}
.fogata-upload-container img{
    max-width: 300px;
}
.fogata-upload-container > .fogata-preloader {
    opacity: 1;
}
.fogata-upload-container:hover .fogata-upload-controls {
    opacity: 1;
}
/* Preloader */
.fogata-preloader {
    display: inline-block;
    vertical-align: top;
    position: absolute !important;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    opacity: 0;
    transition: opacity 0.2s;
}
.fogata-preloader:before, .fogata-preloader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid;
}
.fogata-preloader:before {
    opacity: 0.33;
}
.fogata-preloader:after {
    border-color: transparent;
    border-top-color: inherit;
    -webkit-animation: rotation 1s infinite cubic-bezier(.6,.3,.3,.6);
    animation: rotation 1s infinite cubic-bezier(.6,.3,.3,.6);
}
.fogata-upload-controls {
    position: static;
    margin-top: 8px;
    opacity: 1;
}
.fogata-upload-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.2s;
}
.fogata-upload-container:hover .fogata-upload-controls {
    opacity: 1;
}
.fogata-button.type_change, .fogata-button.type_remove {
    margin: 4px;
    background-color: #aaa;
    color: #fff;
}
.fogata-button.type_change:hover, .fogata-button.type_remove:hover {
    background-color: #888;
}
.fogata-button span {
    transition: opacity 0.3s;
}
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.fogata-button {
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
    padding: 0 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    box-shadow: 0 -1px 0 rgba(0,0,0,0.08) inset;
    background-color: #f1f1f1;
    color: inherit;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}
.fogata-button:hover {
    background-color: #e5e5e5;
}
.fogata-button.type_save {
    box-shadow: none;
    min-width: 200px;
    background-color: #23ccaa;
    color: #fff;
}
.fogata-button.type_save:hover {
    background-color: #1eae91;
}
.fogata-button.type_change, .fogata-button.type_remove {
    margin: 4px;
    background-color: #aaa;
    color: #fff;
}
.fogata-button.type_change:hover, .fogata-button.type_remove:hover {
    background-color: #888;
}
.fogata-button span {
    transition: opacity 0.3s;
}
@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
   }
    100% {
        -webkit-transform: rotate(360deg);
   }
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
   }
    100% {
        transform: rotate(360deg);
   }
}
@media (max-width: 960px){
    .fogata-header {
        left: 36px;
   }
}
@media (max-width: 782px){
    .fogata-header {
        left: 0;
   }
}
