/*-------------------------
    Simple reset
--------------------------*/


*{
    margin:0;
    padding:0;
}


/*-------------------------
    General Styles
--------------------------*/


html{
    background: linear-gradient(180deg, #f6f8fb 0%, #eef1f5 100%);
    min-height:900px;
}

body{
    font:15px/1.5 'PT Sans Narrow', Arial, sans-serif;
    color: #3f444a;
    background-color: transparent !important;
}

a, a:visited {
    outline:none;
    color:#9F2914;
}

a:hover{
    text-decoration:none;
}

section, footer, header, aside{
    display: block;
}


/*----------------------------
    The file upload form
-----------------------------*/

#logo {
    display: block;
    width: 260px;
    max-width: 100%;
    margin: 0 0 15px 0;
}

#upload{
    font-family:'PT Sans Narrow', sans-serif;
    background-color:#ffffff;
    width:940px;
    min-height: 760px;
    padding:32px;
    border-radius:12px;

    margin:80px auto 100px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.203);

    box-sizing: unset !important;
}

.intro-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.intro-copy {
    flex: 0 0 280px;
    color: #3f444a;
    text-align: left;
}

.deadline-label {
    color: #9F2914;
    font-weight: bold;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heading {
    font-size: 26px;
    margin-bottom: 10px;
    color: #3f444a;
}

.desc {
    font-size: 14px;
    color: #5a6068;
    line-height: 26px;
}

.desc ul {
    padding-left: 20px;
    margin-top: 8px;
}
.desc li {
    margin-bottom: 4px;
}

.info-card {
    background-color: #f9fafb;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.logo-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.logo-slot {
    background-color: #ffffff;
    border: 2px dashed #ffffff;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f444a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 8px;
}

.logo-slot.optional {
    opacity: 0.85;
}

.logo-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.full-copy {
    margin: 6px 0 10px 0;
}

.upload-sections {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 12px;
}

.section-heading {
    font-size: 16px;
    font-weight: bold;
    color: #3f444a;
    margin-bottom: 6px;
    grid-column: 1 / -1;
}

.slot-group {
    margin-bottom: 0;
    background-color: #f9fafb;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.03);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.slot-group:first-child {
    grid-column: 1 / -1;
}

.slot-group.step-1 {
    grid-column: 1 / -1;
}

.slot-group.step-2 {
    grid-column: 1 / -1;
}

.slot-group.step {
    opacity: 0.72;
}

.slot-group.active {
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.slot-group.inactive .slot-title,
.slot-group.inactive .slot-label,
.slot-group.inactive .slot-hint {
    color: #8a9096;
}

.slot-group.inactive .upload-slot {
    background-color: #eef1f5;
    border-color: #d7dce4;
    color: #8a9096;
    cursor: not-allowed;
    pointer-events: none;
}

.slot-group.inactive .slot-button {
    background-color: #c8cfd7;
    color: #5a6068;
}

.slot-title {
    font-size: 14px;
    font-weight: bold;
    color: #3f444a;
    margin-bottom: 6px;
}

.required {
    color: #9F2914;
}

.slot-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.upload-slot {
    background-color: #f5f7fb;
    border: 1px dashed #3f444a;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #3f444a;
    cursor: pointer;
}

.upload-slot.required {
    border-color: #9F2914;
}

.slot-label {
    font-weight: bold;
    margin-bottom: 4px;
}

.slot-hint {
    font-size: 12px;
    color: #6c737a;
    margin-bottom: 8px;
}

.slot-file {
    font-size: 12px;
    color: #3f444a;
    background: #eef1f5;
    border: 1px solid #d7dce4;
    border-radius: 6px;
    padding: 6px 8px;
    min-height: 30px;
    display: block;
}

.slot-link {
    color: #9F2914;
    font-weight: bold;
}

.slot-button {
    display: inline-block;
    background-color:#9F2914;
    color:#fff;
    padding:10px 16px;
    border-radius:6px;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.upload-slot input[type=file] {
    display: none;
}

.confirm-row {
    margin: 16px 0 10px 0;
    color: #3f444a;
}

.checkbox-inline {
    font-size: 14px;
}

.checkbox-inline input[type=checkbox] {
    margin-right: 8px;
}

.submit-row {
    margin: 10px 0 20px 0;
}

.submit-btn {
    background-color: #9F2914;
    border-color: #9F2914;
    padding: 12px 24px;
    border-radius: 6px;
    letter-spacing: 0.4px;
}

.submit-btn:hover,
.submit-btn:focus {
    background-color: #872212;
    border-color: #872212;
}

.submit-success {
    margin: -8px 0 16px 0;
    color: #3f444a;
    font-size: 14px;
    line-height: 22px;
    display: none;
}

.submit-success.is-visible {
    display: block;
}

.organization_name {
    color: #3f444a !important;
}

#drop input{
    display:none;
}

hr {
    border-top: 1px solid #e4e7ec;
    border-bottom: 0;
}

input[type=text] {
    border: 1px solid #d7dce4;
    background-color: #f9fafb;
    color: #3f444a;
    padding: 12px 16px;
    border-radius: 6px;
}

#upload ul{
    list-style:none;
    margin:10px 0 0 0;
    border-bottom:1px solid #e4e7ec;
    display: none;
}

#upload ul li{

    padding:3px;
    position: relative;
    box-sizing: unset !important;
}

#upload ul li input{
    display: none;
}

#upload ul li p{
    width: 144px;
    overflow: hidden;
    white-space: nowrap;
    color: #3f444a;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 100px;
}

#upload ul li i{
    font-weight: normal;
    font-style:normal;
    color:#6c737a;
    display:block;
}

#upload ul li canvas{
    top: 15px;
    left: 32px;
    position: absolute;
}

#upload ul li span{
    width: 15px;
    height: 12px;
    background: url('../img/icons.png') no-repeat;
    position: absolute;
    top: 34px;
    right: 33px;
    cursor:pointer;
}

#upload ul li.working span{
    height: 16px;
    background-position: 0 -12px;
}

#upload ul li.error p{
    color:red;
}

/* #upload #upload-list{
    list-style: none;
    margin: 10px 0 0 0;
    border-bottom: 1px solid #e4e7ec;
    display: none;
} */


/*----------------------------
    The Demo Footer
-----------------------------*/


footer{
    background-color: #9f291426;
    bottom: 0;
    /*box-shadow: 0 -1px 2px rgba(0,0,0,0.4);*/
    height: 4px;
    left: 0;
    width: 100%;
    z-index: 100000;
}

footer h2{
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    top:0;
    left: 50%;
    bottom:0;
    margin-left: -420px;
    padding:13px 20px 0;
    border:1px solid #000;
    border-width:0 1px;
    background-color:rgba(0,0,0,0.6);
    box-shadow:0 0 5px #000 inset;
    line-height: 1;
    margin-top: 0;
}

footer h2 a{
    color: #EEEEEE !important;
    text-decoration:none !important;
}

footer h2 i{
    font-style:normal;
    color:#888;
}

#tzine-download{
    opacity:0.9;
    background-color:#872212;
    font-size:11px;
    text-align:center;
    text-transform:uppercase;
    width:150px;
    height:28px;
    line-height:28px;
    text-decoration:none !important;

    display: inline-block;
    border-radius: 2px;
    color: #fff !Important;
    font-weight: bold;
    box-shadow: 0 -1px 2px #66180f inset;

    border-top:1px solid #9F2914;

    text-shadow:1px 1px 1px #66180f;
    margin-top:6px;
}

#tzine-download:hover{
    opacity:1;
}

#tzine-actions{
    position:absolute;
    top:0;
    width:500px;
    right:50%;
    margin-right:-420px;
    text-align:right;
}

#tzine-actions iframe{
    display: inline-block;
    height: 21px;
    width: 95px;
    position: relative;
    float: left;
    margin-top: 11px;
}

@media (max-width: 920px) {
    #upload {
        width: 95%;
        margin: 60px auto;
    }

    .intro-row {
        flex-direction: column;
    }

    #logo {
        margin: 0 auto 15px;
    }

    .logo-grid {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}


.lower-part {
    margin-top: 50px;
    margin-bottom: 20px;
    border-top: 1px solid #e4e7ec;
    padding-top: 12px;
}
