﻿/* MAIN CSS FILE */

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* NAVBAR */

.navbar-brand {
    height: auto;
    display: flex;
    align-items: center;
}

    .navbar-brand span {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 2.2rem;
        color: #333;
    }

.navbar-main {
    border-bottom: 1px solid #ddd;
    margin: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
}

/*.navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
}*/

.nav-container::before,
.nav-container::after {
    content: none;
}

@media (min-width: 768px) {
    .container-small {
        width: 700px;
    }

    .container-large {
        width: 970px;
    }
}

@media (min-width: 992px) {
    .container-small {
        width: 700px;
    }

    .container-large {
        width: 1170px;
    }
}

@media (min-width: 1200px) {
    .container-small {
        width: 700px;
    }

    .container-large {
        width: 1500px;
    }
}

@media (max-width: 768px) {
    .navbar-brand span {
        display: none;
    }
}

.container-small, .container-large {
    max-width: 100%;
}


.row {
    display: flex;
    flex-direction: row;
}

.col {
    padding: 0 1.5rem;
    width: -webkit-fill-available;
}

a i {
    color: #729961;
    font-size: 2rem;
}

/*a:hover {
    text-decoration: none;
    font-weight: 600;
}*/

a, a:hover, a:active, a:visited, a:focus {
    text-decoration: none;
}

.link {
    cursor: pointer;
    text-decoration: underline;
}

.btn-outline-success {
    color: #729961;
    font-weight: 600;
    border-radius: 0;
    border: 1px solid #729961;
    background-color: #fff;
}

.btn-back {
    color: #729961;
    background-color: #fff;
    margin-left: 1.5rem;
    font-size: 2rem;
}

.btn-success {
    background-color: #729961;
    color: #fff !important;
    text-transform: uppercase;
    border-radius: 0;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary {
    text-transform: uppercase;
    border-radius: 0;
    border: none;
    color: #333;
    font-weight: 600;
}

.btn-large {
    padding: 1rem 1.5rem;
}

/* Steps Style */
.steps {
    padding: 1rem 0;
    overflow: hidden;
    width: 100%;
    color: #fff;
}

    .steps li {
        float: left;
        margin-left: 0;
        width: calc(100% / 3); /* 100 / number of steps */
        height: 4rem;
        list-style-type: none;
        padding: 1rem 2rem 1rem 3rem;
        border-right: 4px solid white;
        position: relative;
        transition: background-color 0.3s;
    }

        .steps li:first-child {
            padding-left: 1.5rem;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .steps li:nth-child(n+2)::before {
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            border-left: 1.2rem solid white; /* width: arrow width, color: background of document */
            border-top: 2rem solid transparent; /* width: half height */
            border-bottom: 2rem solid transparent; /* width: half height */
            width: 0;
            height: 0;
            content: " ";
        }
        /* colored arrow to the right */
        .steps li::after {
            z-index: 1;
            position: absolute;
            top: 0;
            right: -1.2rem; /* arrow width (negated) */
            display: block;
            border-left: 1.2rem solid #729961; /* width: arrow width */
            border-top: 2rem solid transparent; /* width: half height */
            border-bottom: 2rem solid transparent; /* width: half height */
            width: 0;
            height: 0;
            content: " ";
        }

        .steps li:last-child::after {
            content: none;
        }

        .steps li:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }


    /* Setup colors (both the background and the arrow) */

    /* Completed */
    .steps li {
        background-color: #ddd;
        color: #333
    }

        .steps li::after {
            border-left-color: #ddd;
        }

        /* Current */
        .steps li.step-done {
            background-color: #729961;
            color: #fff;
        }

            .steps li.step-done::after {
                border-left-color: #729961;
            }


        /* Hover for completed and current */
        /*.steps li:hover {
            background-color: #5cb85c
        }

            .steps li:hover::after {
                border-left-color: #5cb85c
            }*/


@media (max-width: 768px) {
    .steps li {
        padding: 1rem 0rem 1rem 1.8rem;
        font-size: 1.4rem;
    }
}

.easy-autocomplete {
    width: 100%;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
