@import '../../bootstrap/css/bootstrap.min.css';
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito:400,600,700,800,900');

/* Custom CSS */
html,
body {
    font-family: Roboto Slab, Nunito, serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;

}

#renaissance .header {
    position: fixed;
    height: 80px;
    width: 100%;
    padding: 0 120px;
    background: #fff;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .15);
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s ease;
}

#renaissnace .header .header-icon {
    height: 40px;
    max-width: 100%;
}

.empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.empty-state img {
    max-width: 100%;
    height: auto;
    display: block;
    float: right;
    margin: 0 auto;
}

.empty-state-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
}

.empty-state-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;

}

.empty-state-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
    width: 100%;
    word-wrap: break-word;
}

.empty-state-content .button {
    font-weight: 500;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
    padding: 0px 24px 0px 24px;
    border: 2px;
    border-radius: 20px;
}

a {
    color: inherit;
    text-decoration: underline;
    text-transform: capitalize;
}

.alert {
    color: #906823 !important;
}

/* Mobile (e.g., 320px - 479px) */
@media (min-width: 320px) and (max-width:479px) {

    #renaissance .header {
        padding: 20px;
        height: 60px;
    }

    #renaissance .header .header-icon {
        height: 30px;
    }


    .empty-state img {
        float: none;
    }

    .empty-state-content {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .span4 {
        width: 460px !important;
    }

    .empty-state-content h1 {
        font-size: 22px;
    }
}

/* Mobile Landscape (e.g., 320px - 480px) */
@media (max-width: 480px) and (orientation: landscape) {
    .empty-state {
        flex-direction: column;
    }

    .empty-state img {
        float: none;
        margin-bottom: 20px;
    }

    .empty-state-content {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .empty-state-content h1 {
        font-size: 22px;
    }

    .empty-state-content .button {
        padding: 8px 16px;
    }
}

/* Tablets (e.g., 481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {

    #renaissance .header {
        padding: 0 20px;
        height: 60px;
    }

    #renaissance .header .header-icon {
        height: 30px;
    }

    .empty-state {
        flex-direction: column;
    }

    .empty-state-content {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .empty-state-content h1 {
        font-size: 24px;
    }

    .empty-state-content p {
        font-size: 15px;
    }

    .empty-state-content .button {
        padding: 10px 20px;
    }

    .empty-state img {
        float: none;
        margin-bottom: 20px;
        margin: 0 auto;
    }
}

/* Laptop (e.g., 769px - 1024px)*/
@media (min-width: 769px) and (max-width: 1024px) {}