/* CSS Variables */
:root {
    --green: #29b529;
    --red: #e74f4f;
    --yellow: #e5db42;
    --orange: #FFA500;
    --blue: #689ae7;
}

/* Helpers */
.flex-center
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

.flex-column
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

.flex-column-left
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

.dont-wrap {
    white-space: nowrap;
}

/* Image Uploader */
.actions-holder
{
    display: flex;
}


.fileuploader-custom-action
{
	position: absolute;
	width: 30px;
	text-align: center;
	z-index: 9999;
	background: #ccc;
	color: #383838;
	font-size: 2rem;
	font-weight: 300;
}

.fileuploader-action-sort
{
    left: 0;
}

.fileuploader-action-remove
{
	right: 0;
}

.fileuploader-items .fileuploader-item .fileuploader-action, .fileuploader-items .fileuploader-item .progress-bar2 span
{
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.fileuploader-item a {
	height: 100%;
}

.fileuploader-item a{
	color: #383838 !important
}

.fileuploader-item a:hover {
	cursor: pointer
}


/* Upload file component  */
.upload-component-bigger {
	display: flex;
	align-items: center;
	height: 40px;
}


.upload-component-bigger .btn {
	padding: 10px 16px
}

.upload-component-bigger #text-file_id {
	font-size: 20px;
	font-weight: 300;
	margin-left: 10px;
}

/* // box */
.custom-box {
	padding: 15px !important;
}

.custom-show-sections h1, h2, h3 {
	margin: 0;
	margin-bottom: 10px
}

.custom-show-sections img {
	max-width: 100%;
	border-radius: 7px;
}

.relative {
	position: relative
}

.absolute-center-right {
	position: absolute;
	height: 100%;
	top: 0;
	right: 10px;
	display: flex;
	align-items: center;
}

.inline-inputs {
    /* display: inline; */
    display: flex;
    flex-grow: 1;
    /* flex-flow: row wrap;s */
    /* flex-direction: row; */
    /* align-items: center; */
}

.inline-inputs {
	justify-content: space-between;
    vertical-align: middle;
}

/* Centered Info Container  */

.centered-info-container {
    text-align: center
}


.centered-info-container .icon-wrapper .icon {
    padding: 14px 14px;
    font-size: 2rem;
    background-color: #ccc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #fff;
}

.centered-info-container .icon.approved {
    background-color: var(--green);
}

.centered-info-container .icon.pre-approved, .icon.review{
    background-color: var(--orange);
    padding: 14px 10px;
}

.centered-info-container .icon.rejected {
    background-color: var(--red);
}


/* Animations */
.pulse {
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
