/* dropzone START */

@-webkit-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-moz-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.dropzone, .dropzone * {
    box-sizing: border-box;
}

.dropzone {
    min-height: 150px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: white;
    padding: 54px 54px;
}

.dropzone.dz-clickable {
    cursor: pointer;
}

.dropzone.dz-clickable * {
    cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
    cursor: pointer;
}

.dropzone.dz-started .dz-message {
    display: none;
}

.dropzone.dz-drag-hover {
    border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5;
}

.dropzone .dz-message {
    text-align: center;
    margin: 2em 0;
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px;
}

.dropzone .dz-preview:hover {
    z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
    background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}

.dropzone .dz-preview .dz-image img {
    display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    -moz-transition: width 300ms ease-in-out;
    -ms-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: white;
}

.dropzone .dz-preview .dz-error-message:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626;
}

/* dropzone END */

/* library START */

.page_selector {
  width: 100%;
  margin-bottom: 20px;
}

.page_selector li {
  display: inline-block;
  margin: 0px 20px 0px 0px;
}

.page_selector li a {
  font-size: 1.3em;
}

.page_selector li a.active {
  color: rgba(221, 113, 62, 1.00);
  text-decoration: none;
}

table.library_table {
  width: 100%;
}

table.library_table {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

table.library_table td, table.library_table th {
    border: 1px solid #ddd;
    padding: 8px;
}

table.library_table tr:nth-child(even){background-color: #f2f2f2;}

table.library_table tr:hover {background-color: #ddd;}

table.library_table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: rgba(239, 80, 35, 1);
    color: white;
}

table.library_table td form {
  display: inline-block;
}

table.library_table td form input[type="submit"] {
  padding: 5px;
  background: rgba(239, 80, 35, 1);
  color: #FFF;
  cursor: pointer;
}

/*#global_page_library-index-index #global_content,
#global_page_library-create-index #global_content,
#global_page_library-my-index #global_content,*/
[id^="global_page_library"] #global_content {
  width: 1120px;
  margin: auto;
}

.libclear {
  clear: both;
}

.share_area {
  display: none;
}

.share_area textarea {
  width: 100%;
  border: 1px solid rgba(239, 80, 35, 1);
  border-radius: 10px;
  height: 70px;
}

.share_area input[type="submit"],
.comments input[type="submit"] {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FEFEFE !important;
  height: 33px;
  text-align: center;
  display: inline-block;
  line-height: 33px;
  padding: 0 20px;
  border: 1px solid #E33333;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: rgba(239, 80, 35, 1) !important;
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(239, 80, 35, 1)), color-stop(100%, #E33333)) !important;
  background: -webkit-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -o-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -ms-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: linear-gradient(to bottom, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#DF3E3C', endColorstr='#E33333', GradientType=0 ) !important;
  margin-bottom: 20px;
  cursor: pointer;
}

.share_area button {
  text-transform: none;
}

.library_new_button,
.share_project {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FEFEFE !important;
  height: 33px;
  text-align: center;
  display: inline-block;
  line-height: 33px;
  padding: 0 20px;
  border: 1px solid #E33333;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: rgba(239, 80, 35, 1) !important;
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(239, 80, 35, 1)), color-stop(100%, #E33333)) !important;
  background: -webkit-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -o-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -ms-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: linear-gradient(to bottom, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#DF3E3C', endColorstr='#E33333', GradientType=0 ) !important;
  margin-bottom: 20px;
  float: right;
}

.library_items {
  margin-top: 30px;
}

.library_items h1 {
  margin-bottom: 30px;
}

.library_items .sidebar {
  float: left;
  display: inline-block;
  width: 18%;
}

.sidebar .scontainer {
  padding: 15px;
  background: #F4F6F7;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.sidebar .scontainer h3 {
  text-decoration: uppercase;
  position: relative;
}

.sidebar .scontainer h3:before {
  bottom: 0;
  content: "";
  display: block;
  min-height: 2px;
  position: absolute;
  width: 78px;
  background: #FF8E6F;
}

.sidebar .scontainer a {
  font-size: 15px;
  font-weight: 200;
  display: block;
  padding-top: 6px;
  border-bottom: 1px solid #e2e4e6;
  margin-top: 0;
  padding: 6px 0px;
  font-weight: normal;
}

.sidebar .scontainer a.icon:before {
  font-family: fontawesome;
  margin-right: 6px;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  width: 16px;
}

.sidebar .scontainer a.edit:before { content: "\f040"; }
.sidebar .scontainer a.create:before { content: "\f0fe"; }
.sidebar .scontainer a.admin:before { content: "\f085"; }
.sidebar .scontainer a.list:before { content: "\f0ca"; }
.sidebar .scontainer a.cont:before { content: "\f0c0"; }
.sidebar .scontainer a.page:before { content: "\f15b"; }
.sidebar .scontainer a.home:before { content: "\f015"; }
.sidebar .scontainer a.bank:before { content: "\f0d6"; }

.sidebar > .scontainer > a:last-child {
  border-bottom: 0px;
}

.library_items .items {
  width: 80%;
  float: right;
  display: inline-block;
}

.library_content {
  width: 80%;
  float: right;
  display: inline-block;
}

.library_content a {
  text-decoration: underline;
  font-weight: bold;
}

.boldtext {
  font-weight: 700;
  border-bottom: 1px solid rgba(239, 80, 35, 1);
}

.boldtext span {
  color: #FFF;
  display: inline-block;
  background-color: rgba(239, 80, 35, 1);
  padding-left: 5px;
  padding-right: 5px;
}

.library_items .item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  float: left;
  display: inline-block;
  margin-right: 1%;
  margin-bottom: 20px;
  width: 48%;
  border: 1px solid red;
}

.library_items .supporter_status .bar {
  width: 200px;
  height: 20px;
  background: #ccc;
  margin-bottom: 10px;
  position: relative;
}

.library_items .supporter_status .bar .progress {
  height: 20px;
  background: #5FC554;
}

.library_items .supporter_status .bar .progress_text {
  width: 200px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  line-height: 20px;
}

.library_items .item .image {
  width: 48%;
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  float: left;
  display: inline-block;
  margin-right: 2%;
  border-right: 1px solid red;
}

.library_items .item .meta,
.library_items .item_small .meta {
  float: left;
  display: inline-block;
  width: 48%;
}

.library_items .item h3 {
  text-align: left;
  display: block !important;
  width: 200px;
  padding-bottom: 5px;
}

.library_items .item .item_actions {
  font-size: 11px;
}

.library_items .item_small {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  float: left;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  width: 367px;
  border: 1px solid red;
}

.library_items .item_small:nth-child(3n+1) {
  margin-right: 0px;
}

.library_items .item_small .image {
  width: 100px;
  height: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  float: left;
  display: inline-block;
  margin-right: 20px;
  border-right: 1px solid red;
}

.library_items .item h3 {
  text-align: left;
  display: block !important;
  background: #FFF;
  width: 200px;
  padding-bottom: 5px;
}

.project_view .body .text p {
  line-height: 1.5em;
  padding-bottom: 2em;
  text-align: justify;
}

.project_edit_view {
  width: 1180px;
  margin: 50px auto;
}

.project_view .header {
  margin: auto;
}

.project_view .header .media_container {
  width: 78%;
  display: inline-block;
  float: left;
}

.project_view .header .media_container .inslide {
  height: 100px;
  transition: all 0.5s ease;
}

.project_view .header .media_container .viewer {
  margin-bottom: 10px;
}

.project_view .header .media_container .viewer .media {
  display: none;
  width: 100%;
  height: 383px;
  background: #111;
}

.media_container .viewer .media iframe {
  height: 383px;
}

.project_view .header .media_container .viewer .media:first-child {
  display: block;
}

.project_view .header .media_container .viewer .media.image {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.project_view .header .media_container .thumbnails {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.project_view .header .media_container .thumbnails .nav_arrow {
  position: absolute;
  top: 20px;
  background: rgba(255,255,255,0.8);
  color: red;
  width: 30px;
  height: 50px;
  font-size: 20px;
  text-align: left;
  line-height: 50px;
  text-align: center;
}

.project_view .header .media_container .thumbnails .nav_arrow.nav_arrow_left {
  left: 0px;
  z-index: 50;
}

.project_view .header .media_container .thumbnails .nav_arrow.nav_arrow_right {
  right: 0px;
  z-index: 50;
}

.project_view .header .media_container .inslide {
  position: absolute;
  z-index: 40;
  left: 0px;
  top: 0px;
}

.project_view .header .media_container .inslide img {
  margin-right: 5px;
  padding: 0px;
  display: inline-block;
  float: left;
  cursor: pointer;
}

.project_view .header .supporter_status {
  width: 20%;
  float: right;
  display: inline-block;
  margin-top: -36px;
}

.project_view .header .supporter_status .image img {
  width: 200px;
  margin-bottom: 10px;
}

.project_view .header .supporter_status .bar {
  width: 200px;
  height: 20px;
  background: #ccc;
  margin-bottom: 10px;
  position: relative;
}

.project_view .header .supporter_status .bar .progress {
  height: 20px;
  background: #5FC554;
}

.project_view .header .supporter_status .bar .progress_text {
  width: 200px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  line-height: 20px;
}

.project_create input[type="submit"]:disabled,
.save_pictures input[type="submit"]:disabled {
  opacity: 0.5;
}

.project_status {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 1.2em;
  border-radius: 10px;
}

.project_status input[type="submit"] {
  width: 200px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border: 2px solid #ED692C;
  color: #111;
  background: #FFF;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.status_code_0 {
  background: orange;
  color: #111;
}

.status_code_1,
.status_code_2 {
  background: yellow;
  color: #111;
}

.status_code_3 {
  background: red;
  color: #111;
}

.status_code_4 {
  background: yellowgreen;
  color: #111;
}

.supporter_form h3 {
  display: inline-block;
}

.supporter_form input[type="number"] {
  width: 45px;
  background: #FFF;
  height: 30px;–
  border: 1px solid #ED692C;
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 10px;
  padding-left: 10px;
  display: inline-block;
}

.supporter_form label[for="suport_amount"] {
  color: #ED692C;
  font-size: 14px;
  display: inline-block !important;
}

.supporter_form input[type="submit"] {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border: 2px solid #ED692C;
  color: #FFF;
  background: #ED692C;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
}

.supporter_form {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ED692C;
}

.project_view .body {

  margin-top: 20px;
  margin-bottom: 50px;
}

.project_view .body .text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.2em;
  float: left;
  display: inline-block;
  width: 78%;
}

.project_view .body .aside {
  width: 20%;
  float: right;
  display: inline-block;
}

.library_form {
  padding-top: 30px;
  position: relative;
  width: 980px;
}

.reject_message_block {
  display: none;
  padding: 20px;
  border: 1px solid red;
  border-radius: 10px;
  background: #ccc;
  margin-bottom: 20px;
}

.reject_message_block textarea {
  width: 100%;
  height: 150px;
  display: block;
  margin-bottom: 10px;
  border-radius: 10px;
}

.reject_message_block input[type="submit"] {
  width: 200px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border: 2px solid #ED692C;
  color: #FFF;
  background: #ED692C;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
}


.library_form input[type="submit"] {
  position: absolute;
  top: 20px;
  right: 0px;
  width: 120px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border: 2px solid #ED692C;
  color: #ED692C;
  background: #FFF;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
}
.library_form input[type="submit"]:hover {
  color: #FFF;
  background: #ED692C;
}

.library_form_left {
  display: inline-block;
  float: left;
  width: 450px;
}

.library_form_right {
  display: inline-block;
  float: left;
  width: 500px;
  padding-left: 20px;
}

.library_form_right trix-editor {
  min-height: 600px;
  border: 2px solid #ED692C;
}

.library_form h1 {
  margin-bottom: 20px;
}

.library_form input[type="text"] {
  width: 400px;
  font-size: 18px;
  padding: 5px;
  border: 2px solid #ED692C;
  margin-bottom: 20px;
}

#textbox-label,
#detailbox-label {
  display: none;
}

#library_post_edit[name="library_post_edit"].global_form {
  margin: 0px 0px 50px 0px !important;
}

#library_post_edit.global_form > div {
  width: 920px;
  float: none !important;
  display: block !important;
  margin: 0px;
  overflow: visible !important;
}

#library_post_edit.global_form > div > div {
  width: 100%;
}

#textbox-wrapper {
  /*float: left !important;
  display: inline-block !important;
  width: 430px;*/
}

#detailbox-wrapper {
  /*float: right;
  width: 600px;
  display: inline-block;*/
}

#library_post_edit.global_form div.form-wrapper {
  clear: none;
}

#library_post_edit.global_form div.form-wrapper#buttons-wrapper {
  clear: both;
}

#library_post_edit.global_form div.form-label {
  width: 110px;
}

#library_post_edit.global_form input[type=text],
#library_post_edit.global_form input[type=email],
#library_post_edit.global_form input[type=password] {
  width: 300px;
}

.craetion_media_div {
  margin-top: 50px !important;
  padding-top: 20px;
}

.craetion_media_div h1 {
  display: block;
  height: 40px;
  line-height: 1em;
}

.craetion_media_div p {
  display: block;
  height: 20px;
  line-height: 1em;
}

.save_pictures input[type="submit"] {
  width: 100%;
  height: 40px;
  border: 2px solid #ED692C;
  color: #FFF;
  background: #ED692C;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.library_posts {
  margin-top: 10px;
  border-top: 1px solid #ED692C;
  padding-top: 10px;
}

.library_posts form {
  width: 100%;
}

.library_posts form div {
  margin-bottom: 10px;
}

.library_posts form div lable {
  width: 20%;
  float: left;
  display: inline-block;
}

.library_posts form div input,
.library_posts form div textarea {
  width: 75%;
  float: right;
  display: inline-block;
}

.library_posts form div textarea {
  height: 100px;
}

.library_posts form div input[type="submit"] {
  background: #ED692C;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  height: 30px;
}

.edit_image_item {
  float: left;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.edit_image_holder {
  width: 170px;
  height: 170px;
  background-color: #000;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.project_div {
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #DCDCDC;
  border-radius: 5px;
  width: 90%;
  margin-bottom: 50px;
  line-height: 0px;
}

form.project_control input[type="submit"] {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FEFEFE !important;
  height: 33px;
  text-align: center;
  display: inline-block;
  line-height: 33px;
  padding: 0 20px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}

form.project_start {
  float: left;
  display: inline-block;
  width: 300px;
  text-align: left;
}

form.project_start input[type="submit"] {
  background: #5FC554; !important;
  border: 1px solid #ccc;
}

form.project_start input[type="submit"]:disabled {
  background: #CCC; !important;
  border: 1px solid #ccc;
  cursor: default;
}

form.project_remove {
  float: right;
  display: inline-block;
  width: 300px;
  text-align: right;
}

form.project_remove input[type="submit"] {
  background: rgba(239, 80, 35, 1) !important;
  border: 1px solid #E33333;
}


.library_new_button {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FEFEFE !important;
  height: 33px;
  text-align: center;
  display: inline-block;
  line-height: 33px;
  padding: 0 20px;
  border: 1px solid #E33333;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: rgba(239, 80, 35, 1) !important;
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(239, 80, 35, 1)), color-stop(100%, #E33333)) !important;
  background: -webkit-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -o-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: -ms-linear-gradient(top, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  background: linear-gradient(to bottom, rgba(239, 80, 35, 1) 0%, rgba(239, 80, 35, 1) 100%) !important;
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#DF3E3C', endColorstr='#E33333', GradientType=0 ) !important;
  margin-bottom: 20px;
  float: right;
  margin-left: 20px;
}

.project_post p {
  padding-bottom: 10px;
}

.project_post .comments {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 40px !important;
}

img.comment_photo.item_photo_user {
  width: 40px !important;
}

.user_comment .user_image {
  display: inline-block;
  width: 40px;
  height: 100px;
  text-align: center;
}

.user_comment .user_comment_body {
  display: inline-block;
  float: right;
  width: 395px;
}



#detailbox-wrapper .mce-container-body {
  /*height: 600px;*/
}

.basic_form {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px;
  border: 1px solid #CCC;
  border-radius: 10px;
}

.basic_form h2 {
  float: left;
  display: inline-block;
  font-size: 20px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 2px solid #CCC;
}

.basic_form input,
.basic_form select {
  margin-right: 10px;
}

.basic_form input[type="submit"] {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FEFEFE !important;
  height: 33px;
  text-align: center;
  display: inline-block;
  line-height: 33px;
  padding: 0 20px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}

.area_left {
  width: 30%;
  float: left;
  display: inline-block;
}

.area_right {
  width: 68%;
  float: right;
  display: inline-block;
}

.area_left .input_block {
  display: block;
  margin-bottom: 20px;
}

.area_right label,
.area_left .input_block label {
  width: 99%;
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.area_left .input_block input {
  width: 99%;
  display: block;
}

.area_left .input_block input[type="text"],
.area_left .input_block input[type="number"],
.area_left .input_block input[type="url"],
.area_left .input_block input[type="email"],
.area_left .input_block select {
  border: 1px solid #ccc;  /*rgba(219, 49, 25, 1.00);*/
  padding: 10px 5px;
  width: 98%;
  font-size: 15px;
}

.area_left .input_block span {
  display: inline-block;
  font-size: 20px;
  margin-left: 10px;
  line-height: 1.5em;
}

.area_left .input_block input[type="number"] {
  width: 85%;
  display: block;
  vertical-align: baseline;
  float: left;
}

.project_create input[type="submit"] {
  background: #ED692C;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 40px;
  line-height: 1.5em;
}

.area_left .input_block select {
  width: 100%;
  display: block;
}

.area_right textarea {
  width: 100%;
  height: 300px;
}


/*#detailbox-wrapper div.mce-edit-area {
  height: 500px;
}
#detailbox-wrapper iframe#body_ifr {
  height: 500px !important;
}*/

.about_content p {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 20px;
}

label[for="lb_campaign_length "] span {
  float: none !important;
}

.brick_widget #project_slider_1 {
  height: 350px;
}


.brick_widget .project_slide {
  width: 100%;
  height: 300px;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: none;
}

.brick_widget_big .project_slide {
  height: 450px;
}

.brick_widget .project_slide h2 {
  position: absolute;
  bottom: 2%;
  left: 2%;
  padding: 10px;
  background: rgba(255,255,255,0.9);
  margin: 0px;
  display: inline-block;
  min-width: 30%;
  max-width: 40%;
}

.project_slide .full_link {
  display: block;
  width: 100%;
  height: 100%;
}

.project_slide .meta {
  position: absolute;
  bottom: 2%;
  right: 2%;
  background: rgba(255,255,255,0.9);
  padding: 15px;
}

.project_slide .meta .supporter_status p {
  margin-bottom: 10px;
  font-weight: bold;
}

.project_slide .meta p span {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.5em;
  display: inline-block;
  margin-left: 10px;
}

.brick_widget .project_stepper {
  width: 100%;
  list-style-type: none;
  text-align: center;
  margin-top: 10px;
}

.brick_widget .project_stepper li {
  display: inline-block;
  list-style-type: none;

}

.brick_widget .project_stepper li a {
  background: #ED692C;
  display: block;
  width: 23px;
  height: 23px;
  border: 2px solid #ED692C;
  border-radius: 5px;
}

.brick_widget .project_stepper li a.active {
  background: #F4F6F7;
}

.price_container {
  border: 1px solid #ED692C;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.price_container label {
  display: inline-block;
  padding-left: 20px;
  padding-right: 10px;
  background: #ED692C;
  height: 100%;
  padding-top: 5px;
  padding-bottom: 6px;
  color: #FFF;
}

.price_container input {
  border-radius: 0 !important;
  margin: 0px !important;
  width: 40% !important;
}

#paybutton,
#supportbutton {
  margin-top: 2px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.about_content ul {
  list-style-type: disc;
  padding-left: 40px;
}

.about_content ul li {
  margin-bottom: 20px;
}

.page_block_set {
  margin-bottom: 20px;
}

.page_block_set .image {
  width: 20%;
  display: inline-block;
  vertical-align: top;
}

.page_block_set .image img {
  width: 100%;
}

.page_block_set .text {
  width: 65%;
  display: inline-block;
  margin-left: 2%;
  vertical-align: top;
}

.page_block_set .text h3 {
  font-size: 1.8em;
}

.page_block_set .text p {
  font-size: 1.3em;
}


@media only all and (min-width : 320px) and (max-width : 534px) {
  .library_items .sidebar {
    display: none !important;
  }
  .library_content {
    width: 100% !important;
    float: none;
    display: block;
  }
  .brick_widget_big .project_slide {
    height: 150px !important;
  }
  .brick_widget .project_slide h2 {
    font-size: 16px;
  }
  .library_items .item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    float: none !important;
    display: inline-block;
    margin-right: 1%;
    margin-bottom: 20px;
    width: 100% !important;
    border: 0px solid red;
  }
  .library_items .item .image {
    width: 100%;
    float: none !important;
    border: 0px;
    border-bottom: 1px solid #ED692C;
  }
  .library_items .item .meta, 
  .library_items .item_small .meta {
    width: 100%;
    float: none !important;
  }
  .project_view .header .media_container {
    width: 100%;
    float: none;
  }
  .project_view .header .supporter_status {
    width: 100%;
    float: none;
    margin-top: 0px;
  }
  .project_view .header .media_container .viewer .media,
  .project_view .header .media_container .viewer .media iframe {
    height: 200px;
    width: 100%;
  }
  .owner_support_data {
    display: none;
  }
  .project_view .header .supporter_status .bar,
  .project_view .header .supporter_status .bar .progress_text {
    width: 100%;
  }
  .owner_support_data h3 {
    font-size: 12px;
  }
  .project_support_data h3 {
    font-size: 12px;
  }
  .project_view .header .supporter_status .image img {
    width: 50px;
    display: inline;
  }
}